composer.lock 505 KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834128351283612837128381283912840128411284212843128441284512846128471284812849128501285112852128531285412855128561285712858128591286012861128621286312864128651286612867128681286912870128711287212873128741287512876128771287812879128801288112882128831288412885128861288712888128891289012891128921289312894128951289612897128981289912900129011290212903129041290512906129071290812909129101291112912129131291412915129161291712918129191292012921129221292312924129251292612927129281292912930129311293212933129341293512936129371293812939129401294112942129431294412945129461294712948129491295012951129521295312954129551295612957129581295912960129611296212963129641296512966129671296812969129701297112972129731297412975129761297712978129791298012981129821298312984129851298612987129881298912990129911299212993129941299512996129971299812999130001300113002130031300413005130061300713008130091301013011130121301313014130151301613017130181301913020130211302213023130241302513026130271302813029130301303113032130331303413035130361303713038130391304013041130421304313044130451304613047130481304913050130511305213053130541305513056130571305813059130601306113062130631306413065130661306713068130691307013071130721307313074130751307613077130781307913080130811308213083130841308513086130871308813089130901309113092130931309413095130961309713098130991310013101131021310313104131051310613107131081310913110131111311213113131141311513116131171311813119131201312113122131231312413125131261312713128131291313013131131321313313134131351313613137131381313913140131411314213143131441314513146131471314813149131501315113152131531315413155131561315713158131591316013161131621316313164131651316613167131681316913170131711317213173131741317513176131771317813179131801318113182131831318413185131861318713188131891319013191131921319313194131951319613197131981319913200132011320213203132041320513206132071320813209132101321113212132131321413215132161321713218132191322013221132221322313224132251322613227132281322913230132311323213233132341323513236132371323813239132401324113242132431324413245132461324713248132491325013251132521325313254132551325613257132581325913260132611326213263132641326513266132671326813269132701327113272132731327413275132761327713278132791328013281132821328313284132851328613287132881328913290132911329213293132941329513296132971329813299133001330113302133031330413305133061330713308133091331013311133121331313314133151331613317133181331913320133211332213323133241332513326133271332813329133301333113332133331333413335133361333713338133391334013341133421334313344133451334613347133481334913350133511335213353133541335513356133571335813359133601336113362133631336413365133661336713368133691337013371133721337313374133751337613377133781337913380133811338213383133841338513386133871338813389133901339113392133931339413395133961339713398133991340013401134021340313404134051340613407134081340913410134111341213413134141341513416134171341813419134201342113422134231342413425134261342713428134291343013431134321343313434134351343613437134381343913440134411344213443134441344513446134471344813449134501345113452134531345413455134561345713458134591346013461134621346313464134651346613467134681346913470134711347213473134741347513476134771347813479134801348113482134831348413485134861348713488134891349013491134921349313494134951349613497134981349913500135011350213503135041350513506135071350813509135101351113512135131351413515135161351713518135191352013521135221352313524135251352613527135281352913530135311353213533135341353513536135371353813539135401354113542135431354413545135461354713548135491355013551135521355313554135551355613557135581355913560135611356213563135641356513566135671356813569135701357113572135731357413575135761357713578135791358013581135821358313584135851358613587135881358913590135911359213593135941359513596135971359813599136001360113602136031360413605136061360713608136091361013611136121361313614136151361613617136181361913620136211362213623136241362513626136271362813629136301363113632136331363413635136361363713638136391364013641136421364313644136451364613647136481364913650136511365213653136541365513656136571365813659136601366113662136631366413665136661366713668136691367013671136721367313674136751367613677136781367913680136811368213683136841368513686136871368813689136901369113692136931369413695136961369713698136991370013701137021370313704137051370613707137081370913710137111371213713137141371513716137171371813719137201372113722137231372413725137261372713728137291373013731137321373313734137351373613737137381373913740137411374213743137441374513746137471374813749137501375113752137531375413755137561375713758137591376013761137621376313764137651376613767137681376913770137711377213773137741377513776137771377813779137801378113782137831378413785137861378713788137891379013791137921379313794137951379613797137981379913800138011380213803138041380513806138071380813809138101381113812138131381413815138161381713818138191382013821138221382313824138251382613827138281382913830138311383213833138341383513836138371383813839138401384113842138431384413845138461384713848138491385013851138521385313854138551385613857138581385913860138611386213863138641386513866138671386813869138701387113872138731387413875138761387713878138791388013881138821388313884138851388613887138881388913890138911389213893138941389513896138971389813899139001390113902139031390413905139061390713908139091391013911139121391313914139151391613917139181391913920139211392213923139241392513926139271392813929139301393113932139331393413935139361393713938139391394013941139421394313944139451394613947139481394913950139511395213953139541395513956139571395813959139601396113962139631396413965139661396713968139691397013971139721397313974139751397613977139781397913980139811398213983139841398513986139871398813989139901399113992139931399413995139961399713998139991400014001140021400314004140051400614007140081400914010140111401214013140141401514016
  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": "2f992bd3a65209139a1efcb24489d967",
  8. "packages": [
  9. {
  10. "name": "astrotomic/laravel-translatable",
  11. "version": "v11.15.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Astrotomic/laravel-translatable.git",
  15. "reference": "0d065da7fb06b4b957afce79fdda159764561345"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Astrotomic/laravel-translatable/zipball/0d065da7fb06b4b957afce79fdda159764561345",
  20. "reference": "0d065da7fb06b4b957afce79fdda159764561345",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/contracts": "^9.0 || ^10.0 || ^11.0",
  25. "illuminate/database": "^9.0 || ^10.0 || ^11.0",
  26. "illuminate/support": "^9.0 || ^10.0 || ^11.0",
  27. "php": "^8.0"
  28. },
  29. "require-dev": {
  30. "larastan/larastan": "^2.0",
  31. "laravel/legacy-factories": "^1.0.4",
  32. "laravel/pint": "^1.0",
  33. "mockery/mockery": "^1.3.3",
  34. "orchestra/testbench": "^7.0 || ^8.0 || ^9.0",
  35. "phpunit/phpunit": "^10.0"
  36. },
  37. "type": "library",
  38. "extra": {
  39. "laravel": {
  40. "providers": [
  41. "Astrotomic\\Translatable\\TranslatableServiceProvider"
  42. ]
  43. }
  44. },
  45. "autoload": {
  46. "psr-4": {
  47. "Astrotomic\\Translatable\\": "src/Translatable/"
  48. }
  49. },
  50. "notification-url": "https://packagist.org/downloads/",
  51. "license": [
  52. "MIT"
  53. ],
  54. "authors": [
  55. {
  56. "name": "Tom Witkowski",
  57. "email": "gummibeer@astrotomic.info",
  58. "homepage": "https://gummibeer.de",
  59. "role": "Developer"
  60. },
  61. {
  62. "name": "Dimitrios Savvopoulos",
  63. "email": "ds@dimsav.com",
  64. "homepage": "http://dimsav.com",
  65. "role": "Developer"
  66. }
  67. ],
  68. "description": "A Laravel package for multilingual models",
  69. "homepage": "https://astrotomic.info",
  70. "keywords": [
  71. "database",
  72. "language",
  73. "laravel",
  74. "translation"
  75. ],
  76. "support": {
  77. "docs": "https://docs.astrotomic.info/laravel-translatable",
  78. "email": "dev@astrotomic.info",
  79. "issues": "https://github.com/Astrotomic/laravel-translatable/issues",
  80. "source": "https://github.com/Astrotomic/laravel-translatable"
  81. },
  82. "funding": [
  83. {
  84. "url": "https://forest.astrotomic.info",
  85. "type": "custom"
  86. },
  87. {
  88. "url": "https://github.com/Gummibeer",
  89. "type": "github"
  90. },
  91. {
  92. "url": "https://github.com/SarahSibert",
  93. "type": "github"
  94. },
  95. {
  96. "url": "https://issuehunt.io/r/astrotomic",
  97. "type": "issuehunt"
  98. }
  99. ],
  100. "time": "2024-08-28T09:20:26+00:00"
  101. },
  102. {
  103. "name": "bagisto/image-cache",
  104. "version": "dev-master",
  105. "source": {
  106. "type": "git",
  107. "url": "https://github.com/bagisto/image-cache.git",
  108. "reference": "b5a24e83ec4387261ae55947534d573fb897c86c"
  109. },
  110. "dist": {
  111. "type": "zip",
  112. "url": "https://api.github.com/repos/bagisto/image-cache/zipball/b5a24e83ec4387261ae55947534d573fb897c86c",
  113. "reference": "b5a24e83ec4387261ae55947534d573fb897c86c",
  114. "shasum": ""
  115. },
  116. "require": {
  117. "illuminate/cache": "^9|~10|~11",
  118. "illuminate/filesystem": "^9|~10|~11",
  119. "intervention/image": "~2.2",
  120. "nesbot/carbon": "^2.72.2",
  121. "opis/closure": "^3.5",
  122. "php": "^8.2"
  123. },
  124. "require-dev": {
  125. "phpunit/phpunit": "^10.0"
  126. },
  127. "default-branch": true,
  128. "type": "library",
  129. "autoload": {
  130. "psr-4": {
  131. "Intervention\\Image\\": "src/Intervention/Image"
  132. }
  133. },
  134. "notification-url": "https://packagist.org/downloads/",
  135. "license": [
  136. "MIT"
  137. ],
  138. "authors": [
  139. {
  140. "name": "Oliver Vogel",
  141. "email": "oliver@intervention.io",
  142. "homepage": "http://intervention.io/"
  143. }
  144. ],
  145. "description": "Caching extension for the Intervention Image Class",
  146. "homepage": "https://image.intervention.io",
  147. "keywords": [
  148. "cache",
  149. "gd",
  150. "image",
  151. "imagick",
  152. "laravel"
  153. ],
  154. "support": {
  155. "source": "https://github.com/bagisto/image-cache/tree/master"
  156. },
  157. "time": "2024-10-03T06:31:17+00:00"
  158. },
  159. {
  160. "name": "barryvdh/laravel-dompdf",
  161. "version": "v2.2.0",
  162. "source": {
  163. "type": "git",
  164. "url": "https://github.com/barryvdh/laravel-dompdf.git",
  165. "reference": "c96f90c97666cebec154ca1ffb67afed372114d8"
  166. },
  167. "dist": {
  168. "type": "zip",
  169. "url": "https://api.github.com/repos/barryvdh/laravel-dompdf/zipball/c96f90c97666cebec154ca1ffb67afed372114d8",
  170. "reference": "c96f90c97666cebec154ca1ffb67afed372114d8",
  171. "shasum": ""
  172. },
  173. "require": {
  174. "dompdf/dompdf": "^2.0.7",
  175. "illuminate/support": "^6|^7|^8|^9|^10|^11",
  176. "php": "^7.2 || ^8.0"
  177. },
  178. "require-dev": {
  179. "larastan/larastan": "^1.0|^2.7.0",
  180. "orchestra/testbench": "^4|^5|^6|^7|^8|^9",
  181. "phpro/grumphp": "^1 || ^2.5",
  182. "squizlabs/php_codesniffer": "^3.5"
  183. },
  184. "type": "library",
  185. "extra": {
  186. "laravel": {
  187. "aliases": {
  188. "PDF": "Barryvdh\\DomPDF\\Facade\\Pdf",
  189. "Pdf": "Barryvdh\\DomPDF\\Facade\\Pdf"
  190. },
  191. "providers": [
  192. "Barryvdh\\DomPDF\\ServiceProvider"
  193. ]
  194. },
  195. "branch-alias": {
  196. "dev-master": "2.0-dev"
  197. }
  198. },
  199. "autoload": {
  200. "psr-4": {
  201. "Barryvdh\\DomPDF\\": "src"
  202. }
  203. },
  204. "notification-url": "https://packagist.org/downloads/",
  205. "license": [
  206. "MIT"
  207. ],
  208. "authors": [
  209. {
  210. "name": "Barry vd. Heuvel",
  211. "email": "barryvdh@gmail.com"
  212. }
  213. ],
  214. "description": "A DOMPDF Wrapper for Laravel",
  215. "keywords": [
  216. "dompdf",
  217. "laravel",
  218. "pdf"
  219. ],
  220. "support": {
  221. "issues": "https://github.com/barryvdh/laravel-dompdf/issues",
  222. "source": "https://github.com/barryvdh/laravel-dompdf/tree/v2.2.0"
  223. },
  224. "funding": [
  225. {
  226. "url": "https://fruitcake.nl",
  227. "type": "custom"
  228. },
  229. {
  230. "url": "https://github.com/barryvdh",
  231. "type": "github"
  232. }
  233. ],
  234. "time": "2024-04-25T13:16:04+00:00"
  235. },
  236. {
  237. "name": "brick/math",
  238. "version": "0.12.3",
  239. "source": {
  240. "type": "git",
  241. "url": "https://github.com/brick/math.git",
  242. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
  243. },
  244. "dist": {
  245. "type": "zip",
  246. "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
  247. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
  248. "shasum": ""
  249. },
  250. "require": {
  251. "php": "^8.1"
  252. },
  253. "require-dev": {
  254. "php-coveralls/php-coveralls": "^2.2",
  255. "phpunit/phpunit": "^10.1",
  256. "vimeo/psalm": "6.8.8"
  257. },
  258. "type": "library",
  259. "autoload": {
  260. "psr-4": {
  261. "Brick\\Math\\": "src/"
  262. }
  263. },
  264. "notification-url": "https://packagist.org/downloads/",
  265. "license": [
  266. "MIT"
  267. ],
  268. "description": "Arbitrary-precision arithmetic library",
  269. "keywords": [
  270. "Arbitrary-precision",
  271. "BigInteger",
  272. "BigRational",
  273. "arithmetic",
  274. "bigdecimal",
  275. "bignum",
  276. "bignumber",
  277. "brick",
  278. "decimal",
  279. "integer",
  280. "math",
  281. "mathematics",
  282. "rational"
  283. ],
  284. "support": {
  285. "issues": "https://github.com/brick/math/issues",
  286. "source": "https://github.com/brick/math/tree/0.12.3"
  287. },
  288. "funding": [
  289. {
  290. "url": "https://github.com/BenMorel",
  291. "type": "github"
  292. }
  293. ],
  294. "time": "2025-02-28T13:11:00+00:00"
  295. },
  296. {
  297. "name": "carbonphp/carbon-doctrine-types",
  298. "version": "3.2.0",
  299. "source": {
  300. "type": "git",
  301. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  302. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  303. },
  304. "dist": {
  305. "type": "zip",
  306. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  307. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  308. "shasum": ""
  309. },
  310. "require": {
  311. "php": "^8.1"
  312. },
  313. "conflict": {
  314. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  315. },
  316. "require-dev": {
  317. "doctrine/dbal": "^4.0.0",
  318. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  319. "phpunit/phpunit": "^10.3"
  320. },
  321. "type": "library",
  322. "autoload": {
  323. "psr-4": {
  324. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  325. }
  326. },
  327. "notification-url": "https://packagist.org/downloads/",
  328. "license": [
  329. "MIT"
  330. ],
  331. "authors": [
  332. {
  333. "name": "KyleKatarn",
  334. "email": "kylekatarnls@gmail.com"
  335. }
  336. ],
  337. "description": "Types to use Carbon in Doctrine",
  338. "keywords": [
  339. "carbon",
  340. "date",
  341. "datetime",
  342. "doctrine",
  343. "time"
  344. ],
  345. "support": {
  346. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  347. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  348. },
  349. "funding": [
  350. {
  351. "url": "https://github.com/kylekatarnls",
  352. "type": "github"
  353. },
  354. {
  355. "url": "https://opencollective.com/Carbon",
  356. "type": "open_collective"
  357. },
  358. {
  359. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  360. "type": "tidelift"
  361. }
  362. ],
  363. "time": "2024-02-09T16:56:22+00:00"
  364. },
  365. {
  366. "name": "composer/ca-bundle",
  367. "version": "1.5.6",
  368. "source": {
  369. "type": "git",
  370. "url": "https://github.com/composer/ca-bundle.git",
  371. "reference": "f65c239c970e7f072f067ab78646e9f0b2935175"
  372. },
  373. "dist": {
  374. "type": "zip",
  375. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/f65c239c970e7f072f067ab78646e9f0b2935175",
  376. "reference": "f65c239c970e7f072f067ab78646e9f0b2935175",
  377. "shasum": ""
  378. },
  379. "require": {
  380. "ext-openssl": "*",
  381. "ext-pcre": "*",
  382. "php": "^7.2 || ^8.0"
  383. },
  384. "require-dev": {
  385. "phpstan/phpstan": "^1.10",
  386. "phpunit/phpunit": "^8 || ^9",
  387. "psr/log": "^1.0 || ^2.0 || ^3.0",
  388. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  389. },
  390. "type": "library",
  391. "extra": {
  392. "branch-alias": {
  393. "dev-main": "1.x-dev"
  394. }
  395. },
  396. "autoload": {
  397. "psr-4": {
  398. "Composer\\CaBundle\\": "src"
  399. }
  400. },
  401. "notification-url": "https://packagist.org/downloads/",
  402. "license": [
  403. "MIT"
  404. ],
  405. "authors": [
  406. {
  407. "name": "Jordi Boggiano",
  408. "email": "j.boggiano@seld.be",
  409. "homepage": "http://seld.be"
  410. }
  411. ],
  412. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  413. "keywords": [
  414. "cabundle",
  415. "cacert",
  416. "certificate",
  417. "ssl",
  418. "tls"
  419. ],
  420. "support": {
  421. "irc": "irc://irc.freenode.org/composer",
  422. "issues": "https://github.com/composer/ca-bundle/issues",
  423. "source": "https://github.com/composer/ca-bundle/tree/1.5.6"
  424. },
  425. "funding": [
  426. {
  427. "url": "https://packagist.com",
  428. "type": "custom"
  429. },
  430. {
  431. "url": "https://github.com/composer",
  432. "type": "github"
  433. },
  434. {
  435. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  436. "type": "tidelift"
  437. }
  438. ],
  439. "time": "2025-03-06T14:30:56+00:00"
  440. },
  441. {
  442. "name": "composer/pcre",
  443. "version": "3.3.2",
  444. "source": {
  445. "type": "git",
  446. "url": "https://github.com/composer/pcre.git",
  447. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e"
  448. },
  449. "dist": {
  450. "type": "zip",
  451. "url": "https://api.github.com/repos/composer/pcre/zipball/b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  452. "reference": "b2bed4734f0cc156ee1fe9c0da2550420d99a21e",
  453. "shasum": ""
  454. },
  455. "require": {
  456. "php": "^7.4 || ^8.0"
  457. },
  458. "conflict": {
  459. "phpstan/phpstan": "<1.11.10"
  460. },
  461. "require-dev": {
  462. "phpstan/phpstan": "^1.12 || ^2",
  463. "phpstan/phpstan-strict-rules": "^1 || ^2",
  464. "phpunit/phpunit": "^8 || ^9"
  465. },
  466. "type": "library",
  467. "extra": {
  468. "phpstan": {
  469. "includes": [
  470. "extension.neon"
  471. ]
  472. },
  473. "branch-alias": {
  474. "dev-main": "3.x-dev"
  475. }
  476. },
  477. "autoload": {
  478. "psr-4": {
  479. "Composer\\Pcre\\": "src"
  480. }
  481. },
  482. "notification-url": "https://packagist.org/downloads/",
  483. "license": [
  484. "MIT"
  485. ],
  486. "authors": [
  487. {
  488. "name": "Jordi Boggiano",
  489. "email": "j.boggiano@seld.be",
  490. "homepage": "http://seld.be"
  491. }
  492. ],
  493. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  494. "keywords": [
  495. "PCRE",
  496. "preg",
  497. "regex",
  498. "regular expression"
  499. ],
  500. "support": {
  501. "issues": "https://github.com/composer/pcre/issues",
  502. "source": "https://github.com/composer/pcre/tree/3.3.2"
  503. },
  504. "funding": [
  505. {
  506. "url": "https://packagist.com",
  507. "type": "custom"
  508. },
  509. {
  510. "url": "https://github.com/composer",
  511. "type": "github"
  512. },
  513. {
  514. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  515. "type": "tidelift"
  516. }
  517. ],
  518. "time": "2024-11-12T16:29:46+00:00"
  519. },
  520. {
  521. "name": "composer/semver",
  522. "version": "3.4.4",
  523. "source": {
  524. "type": "git",
  525. "url": "https://github.com/composer/semver.git",
  526. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95"
  527. },
  528. "dist": {
  529. "type": "zip",
  530. "url": "https://api.github.com/repos/composer/semver/zipball/198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  531. "reference": "198166618906cb2de69b95d7d47e5fa8aa1b2b95",
  532. "shasum": ""
  533. },
  534. "require": {
  535. "php": "^5.3.2 || ^7.0 || ^8.0"
  536. },
  537. "require-dev": {
  538. "phpstan/phpstan": "^1.11",
  539. "symfony/phpunit-bridge": "^3 || ^7"
  540. },
  541. "type": "library",
  542. "extra": {
  543. "branch-alias": {
  544. "dev-main": "3.x-dev"
  545. }
  546. },
  547. "autoload": {
  548. "psr-4": {
  549. "Composer\\Semver\\": "src"
  550. }
  551. },
  552. "notification-url": "https://packagist.org/downloads/",
  553. "license": [
  554. "MIT"
  555. ],
  556. "authors": [
  557. {
  558. "name": "Nils Adermann",
  559. "email": "naderman@naderman.de",
  560. "homepage": "http://www.naderman.de"
  561. },
  562. {
  563. "name": "Jordi Boggiano",
  564. "email": "j.boggiano@seld.be",
  565. "homepage": "http://seld.be"
  566. },
  567. {
  568. "name": "Rob Bast",
  569. "email": "rob.bast@gmail.com",
  570. "homepage": "http://robbast.nl"
  571. }
  572. ],
  573. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  574. "keywords": [
  575. "semantic",
  576. "semver",
  577. "validation",
  578. "versioning"
  579. ],
  580. "support": {
  581. "irc": "ircs://irc.libera.chat:6697/composer",
  582. "issues": "https://github.com/composer/semver/issues",
  583. "source": "https://github.com/composer/semver/tree/3.4.4"
  584. },
  585. "funding": [
  586. {
  587. "url": "https://packagist.com",
  588. "type": "custom"
  589. },
  590. {
  591. "url": "https://github.com/composer",
  592. "type": "github"
  593. }
  594. ],
  595. "time": "2025-08-20T19:15:30+00:00"
  596. },
  597. {
  598. "name": "dflydev/dot-access-data",
  599. "version": "v3.0.3",
  600. "source": {
  601. "type": "git",
  602. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  603. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  604. },
  605. "dist": {
  606. "type": "zip",
  607. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  608. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  609. "shasum": ""
  610. },
  611. "require": {
  612. "php": "^7.1 || ^8.0"
  613. },
  614. "require-dev": {
  615. "phpstan/phpstan": "^0.12.42",
  616. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  617. "scrutinizer/ocular": "1.6.0",
  618. "squizlabs/php_codesniffer": "^3.5",
  619. "vimeo/psalm": "^4.0.0"
  620. },
  621. "type": "library",
  622. "extra": {
  623. "branch-alias": {
  624. "dev-main": "3.x-dev"
  625. }
  626. },
  627. "autoload": {
  628. "psr-4": {
  629. "Dflydev\\DotAccessData\\": "src/"
  630. }
  631. },
  632. "notification-url": "https://packagist.org/downloads/",
  633. "license": [
  634. "MIT"
  635. ],
  636. "authors": [
  637. {
  638. "name": "Dragonfly Development Inc.",
  639. "email": "info@dflydev.com",
  640. "homepage": "http://dflydev.com"
  641. },
  642. {
  643. "name": "Beau Simensen",
  644. "email": "beau@dflydev.com",
  645. "homepage": "http://beausimensen.com"
  646. },
  647. {
  648. "name": "Carlos Frutos",
  649. "email": "carlos@kiwing.it",
  650. "homepage": "https://github.com/cfrutos"
  651. },
  652. {
  653. "name": "Colin O'Dell",
  654. "email": "colinodell@gmail.com",
  655. "homepage": "https://www.colinodell.com"
  656. }
  657. ],
  658. "description": "Given a deep data structure, access data by dot notation.",
  659. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  660. "keywords": [
  661. "access",
  662. "data",
  663. "dot",
  664. "notation"
  665. ],
  666. "support": {
  667. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  668. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  669. },
  670. "time": "2024-07-08T12:26:09+00:00"
  671. },
  672. {
  673. "name": "diglactic/laravel-breadcrumbs",
  674. "version": "v9.0.0",
  675. "source": {
  676. "type": "git",
  677. "url": "https://github.com/diglactic/laravel-breadcrumbs.git",
  678. "reference": "88e8f01e013e811215770e27b40a74014c28f2c4"
  679. },
  680. "dist": {
  681. "type": "zip",
  682. "url": "https://api.github.com/repos/diglactic/laravel-breadcrumbs/zipball/88e8f01e013e811215770e27b40a74014c28f2c4",
  683. "reference": "88e8f01e013e811215770e27b40a74014c28f2c4",
  684. "shasum": ""
  685. },
  686. "require": {
  687. "facade/ignition-contracts": "^1.0",
  688. "laravel/framework": "^8.0 || ^9.0 || ^10.0 || ^11.0",
  689. "php": "^7.3 || ^8.0"
  690. },
  691. "conflict": {
  692. "davejamesmiller/laravel-breadcrumbs": "*"
  693. },
  694. "require-dev": {
  695. "orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
  696. "php-coveralls/php-coveralls": "^2.7",
  697. "phpunit/phpunit": "^9.5 || ^10.5",
  698. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1"
  699. },
  700. "type": "library",
  701. "extra": {
  702. "laravel": {
  703. "aliases": {
  704. "Breadcrumbs": "Diglactic\\Breadcrumbs\\Breadcrumbs"
  705. },
  706. "providers": [
  707. "Diglactic\\Breadcrumbs\\ServiceProvider"
  708. ]
  709. }
  710. },
  711. "autoload": {
  712. "psr-4": {
  713. "Diglactic\\Breadcrumbs\\": "src/"
  714. }
  715. },
  716. "notification-url": "https://packagist.org/downloads/",
  717. "license": [
  718. "MIT"
  719. ],
  720. "authors": [
  721. {
  722. "name": "Sheng Slogar",
  723. "email": "sheng@diglactic.com",
  724. "role": "Maintainer"
  725. },
  726. {
  727. "name": "Dave James Miller",
  728. "email": "dave@davejamesmiller.com",
  729. "role": "Original Creator"
  730. }
  731. ],
  732. "description": "A simple Laravel-style way to create breadcrumbs.",
  733. "homepage": "https://github.com/diglactic/laravel-breadcrumbs",
  734. "keywords": [
  735. "laravel"
  736. ],
  737. "support": {
  738. "issues": "https://github.com/diglactic/laravel-breadcrumbs/issues",
  739. "source": "https://github.com/diglactic/laravel-breadcrumbs/tree/v9.0.0"
  740. },
  741. "time": "2024-03-12T00:42:39+00:00"
  742. },
  743. {
  744. "name": "doctrine/inflector",
  745. "version": "2.0.10",
  746. "source": {
  747. "type": "git",
  748. "url": "https://github.com/doctrine/inflector.git",
  749. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  750. },
  751. "dist": {
  752. "type": "zip",
  753. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  754. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  755. "shasum": ""
  756. },
  757. "require": {
  758. "php": "^7.2 || ^8.0"
  759. },
  760. "require-dev": {
  761. "doctrine/coding-standard": "^11.0",
  762. "phpstan/phpstan": "^1.8",
  763. "phpstan/phpstan-phpunit": "^1.1",
  764. "phpstan/phpstan-strict-rules": "^1.3",
  765. "phpunit/phpunit": "^8.5 || ^9.5",
  766. "vimeo/psalm": "^4.25 || ^5.4"
  767. },
  768. "type": "library",
  769. "autoload": {
  770. "psr-4": {
  771. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  772. }
  773. },
  774. "notification-url": "https://packagist.org/downloads/",
  775. "license": [
  776. "MIT"
  777. ],
  778. "authors": [
  779. {
  780. "name": "Guilherme Blanco",
  781. "email": "guilhermeblanco@gmail.com"
  782. },
  783. {
  784. "name": "Roman Borschel",
  785. "email": "roman@code-factory.org"
  786. },
  787. {
  788. "name": "Benjamin Eberlei",
  789. "email": "kontakt@beberlei.de"
  790. },
  791. {
  792. "name": "Jonathan Wage",
  793. "email": "jonwage@gmail.com"
  794. },
  795. {
  796. "name": "Johannes Schmitt",
  797. "email": "schmittjoh@gmail.com"
  798. }
  799. ],
  800. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  801. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  802. "keywords": [
  803. "inflection",
  804. "inflector",
  805. "lowercase",
  806. "manipulation",
  807. "php",
  808. "plural",
  809. "singular",
  810. "strings",
  811. "uppercase",
  812. "words"
  813. ],
  814. "support": {
  815. "issues": "https://github.com/doctrine/inflector/issues",
  816. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  817. },
  818. "funding": [
  819. {
  820. "url": "https://www.doctrine-project.org/sponsorship.html",
  821. "type": "custom"
  822. },
  823. {
  824. "url": "https://www.patreon.com/phpdoctrine",
  825. "type": "patreon"
  826. },
  827. {
  828. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  829. "type": "tidelift"
  830. }
  831. ],
  832. "time": "2024-02-18T20:23:39+00:00"
  833. },
  834. {
  835. "name": "doctrine/lexer",
  836. "version": "3.0.1",
  837. "source": {
  838. "type": "git",
  839. "url": "https://github.com/doctrine/lexer.git",
  840. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  841. },
  842. "dist": {
  843. "type": "zip",
  844. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  845. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  846. "shasum": ""
  847. },
  848. "require": {
  849. "php": "^8.1"
  850. },
  851. "require-dev": {
  852. "doctrine/coding-standard": "^12",
  853. "phpstan/phpstan": "^1.10",
  854. "phpunit/phpunit": "^10.5",
  855. "psalm/plugin-phpunit": "^0.18.3",
  856. "vimeo/psalm": "^5.21"
  857. },
  858. "type": "library",
  859. "autoload": {
  860. "psr-4": {
  861. "Doctrine\\Common\\Lexer\\": "src"
  862. }
  863. },
  864. "notification-url": "https://packagist.org/downloads/",
  865. "license": [
  866. "MIT"
  867. ],
  868. "authors": [
  869. {
  870. "name": "Guilherme Blanco",
  871. "email": "guilhermeblanco@gmail.com"
  872. },
  873. {
  874. "name": "Roman Borschel",
  875. "email": "roman@code-factory.org"
  876. },
  877. {
  878. "name": "Johannes Schmitt",
  879. "email": "schmittjoh@gmail.com"
  880. }
  881. ],
  882. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  883. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  884. "keywords": [
  885. "annotations",
  886. "docblock",
  887. "lexer",
  888. "parser",
  889. "php"
  890. ],
  891. "support": {
  892. "issues": "https://github.com/doctrine/lexer/issues",
  893. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  894. },
  895. "funding": [
  896. {
  897. "url": "https://www.doctrine-project.org/sponsorship.html",
  898. "type": "custom"
  899. },
  900. {
  901. "url": "https://www.patreon.com/phpdoctrine",
  902. "type": "patreon"
  903. },
  904. {
  905. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  906. "type": "tidelift"
  907. }
  908. ],
  909. "time": "2024-02-05T11:56:58+00:00"
  910. },
  911. {
  912. "name": "dompdf/dompdf",
  913. "version": "v2.0.8",
  914. "source": {
  915. "type": "git",
  916. "url": "https://github.com/dompdf/dompdf.git",
  917. "reference": "c20247574601700e1f7c8dab39310fca1964dc52"
  918. },
  919. "dist": {
  920. "type": "zip",
  921. "url": "https://api.github.com/repos/dompdf/dompdf/zipball/c20247574601700e1f7c8dab39310fca1964dc52",
  922. "reference": "c20247574601700e1f7c8dab39310fca1964dc52",
  923. "shasum": ""
  924. },
  925. "require": {
  926. "ext-dom": "*",
  927. "ext-mbstring": "*",
  928. "masterminds/html5": "^2.0",
  929. "phenx/php-font-lib": ">=0.5.4 <1.0.0",
  930. "phenx/php-svg-lib": ">=0.5.2 <1.0.0",
  931. "php": "^7.1 || ^8.0"
  932. },
  933. "require-dev": {
  934. "ext-json": "*",
  935. "ext-zip": "*",
  936. "mockery/mockery": "^1.3",
  937. "phpunit/phpunit": "^7.5 || ^8 || ^9",
  938. "squizlabs/php_codesniffer": "^3.5"
  939. },
  940. "suggest": {
  941. "ext-gd": "Needed to process images",
  942. "ext-gmagick": "Improves image processing performance",
  943. "ext-imagick": "Improves image processing performance",
  944. "ext-zlib": "Needed for pdf stream compression"
  945. },
  946. "type": "library",
  947. "autoload": {
  948. "psr-4": {
  949. "Dompdf\\": "src/"
  950. },
  951. "classmap": [
  952. "lib/"
  953. ]
  954. },
  955. "notification-url": "https://packagist.org/downloads/",
  956. "license": [
  957. "LGPL-2.1"
  958. ],
  959. "authors": [
  960. {
  961. "name": "The Dompdf Community",
  962. "homepage": "https://github.com/dompdf/dompdf/blob/master/AUTHORS.md"
  963. }
  964. ],
  965. "description": "DOMPDF is a CSS 2.1 compliant HTML to PDF converter",
  966. "homepage": "https://github.com/dompdf/dompdf",
  967. "support": {
  968. "issues": "https://github.com/dompdf/dompdf/issues",
  969. "source": "https://github.com/dompdf/dompdf/tree/v2.0.8"
  970. },
  971. "time": "2024-04-29T13:06:17+00:00"
  972. },
  973. {
  974. "name": "dragonmantank/cron-expression",
  975. "version": "v3.4.0",
  976. "source": {
  977. "type": "git",
  978. "url": "https://github.com/dragonmantank/cron-expression.git",
  979. "reference": "8c784d071debd117328803d86b2097615b457500"
  980. },
  981. "dist": {
  982. "type": "zip",
  983. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  984. "reference": "8c784d071debd117328803d86b2097615b457500",
  985. "shasum": ""
  986. },
  987. "require": {
  988. "php": "^7.2|^8.0",
  989. "webmozart/assert": "^1.0"
  990. },
  991. "replace": {
  992. "mtdowling/cron-expression": "^1.0"
  993. },
  994. "require-dev": {
  995. "phpstan/extension-installer": "^1.0",
  996. "phpstan/phpstan": "^1.0",
  997. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  998. },
  999. "type": "library",
  1000. "extra": {
  1001. "branch-alias": {
  1002. "dev-master": "3.x-dev"
  1003. }
  1004. },
  1005. "autoload": {
  1006. "psr-4": {
  1007. "Cron\\": "src/Cron/"
  1008. }
  1009. },
  1010. "notification-url": "https://packagist.org/downloads/",
  1011. "license": [
  1012. "MIT"
  1013. ],
  1014. "authors": [
  1015. {
  1016. "name": "Chris Tankersley",
  1017. "email": "chris@ctankersley.com",
  1018. "homepage": "https://github.com/dragonmantank"
  1019. }
  1020. ],
  1021. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1022. "keywords": [
  1023. "cron",
  1024. "schedule"
  1025. ],
  1026. "support": {
  1027. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1028. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1029. },
  1030. "funding": [
  1031. {
  1032. "url": "https://github.com/dragonmantank",
  1033. "type": "github"
  1034. }
  1035. ],
  1036. "time": "2024-10-09T13:47:03+00:00"
  1037. },
  1038. {
  1039. "name": "egulias/email-validator",
  1040. "version": "4.0.4",
  1041. "source": {
  1042. "type": "git",
  1043. "url": "https://github.com/egulias/EmailValidator.git",
  1044. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1045. },
  1046. "dist": {
  1047. "type": "zip",
  1048. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1049. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1050. "shasum": ""
  1051. },
  1052. "require": {
  1053. "doctrine/lexer": "^2.0 || ^3.0",
  1054. "php": ">=8.1",
  1055. "symfony/polyfill-intl-idn": "^1.26"
  1056. },
  1057. "require-dev": {
  1058. "phpunit/phpunit": "^10.2",
  1059. "vimeo/psalm": "^5.12"
  1060. },
  1061. "suggest": {
  1062. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1063. },
  1064. "type": "library",
  1065. "extra": {
  1066. "branch-alias": {
  1067. "dev-master": "4.0.x-dev"
  1068. }
  1069. },
  1070. "autoload": {
  1071. "psr-4": {
  1072. "Egulias\\EmailValidator\\": "src"
  1073. }
  1074. },
  1075. "notification-url": "https://packagist.org/downloads/",
  1076. "license": [
  1077. "MIT"
  1078. ],
  1079. "authors": [
  1080. {
  1081. "name": "Eduardo Gulias Davis"
  1082. }
  1083. ],
  1084. "description": "A library for validating emails against several RFCs",
  1085. "homepage": "https://github.com/egulias/EmailValidator",
  1086. "keywords": [
  1087. "email",
  1088. "emailvalidation",
  1089. "emailvalidator",
  1090. "validation",
  1091. "validator"
  1092. ],
  1093. "support": {
  1094. "issues": "https://github.com/egulias/EmailValidator/issues",
  1095. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1096. },
  1097. "funding": [
  1098. {
  1099. "url": "https://github.com/egulias",
  1100. "type": "github"
  1101. }
  1102. ],
  1103. "time": "2025-03-06T22:45:56+00:00"
  1104. },
  1105. {
  1106. "name": "elastic/transport",
  1107. "version": "v8.10.0",
  1108. "source": {
  1109. "type": "git",
  1110. "url": "https://github.com/elastic/elastic-transport-php.git",
  1111. "reference": "8be37d679637545e50b1cea9f8ee903888783021"
  1112. },
  1113. "dist": {
  1114. "type": "zip",
  1115. "url": "https://api.github.com/repos/elastic/elastic-transport-php/zipball/8be37d679637545e50b1cea9f8ee903888783021",
  1116. "reference": "8be37d679637545e50b1cea9f8ee903888783021",
  1117. "shasum": ""
  1118. },
  1119. "require": {
  1120. "composer-runtime-api": "^2.0",
  1121. "open-telemetry/api": "^1.0",
  1122. "php": "^7.4 || ^8.0",
  1123. "php-http/discovery": "^1.14",
  1124. "php-http/httplug": "^2.3",
  1125. "psr/http-client": "^1.0",
  1126. "psr/http-factory": "^1.0",
  1127. "psr/http-message": "^1.0 || ^2.0",
  1128. "psr/log": "^1 || ^2 || ^3"
  1129. },
  1130. "require-dev": {
  1131. "nyholm/psr7": "^1.5",
  1132. "open-telemetry/sdk": "^1.0",
  1133. "php-http/mock-client": "^1.5",
  1134. "phpstan/phpstan": "^1.4",
  1135. "phpunit/phpunit": "^9.5",
  1136. "symfony/http-client": "^5.4"
  1137. },
  1138. "type": "library",
  1139. "autoload": {
  1140. "psr-4": {
  1141. "Elastic\\Transport\\": "src/"
  1142. }
  1143. },
  1144. "notification-url": "https://packagist.org/downloads/",
  1145. "license": [
  1146. "MIT"
  1147. ],
  1148. "description": "HTTP transport PHP library for Elastic products",
  1149. "keywords": [
  1150. "PSR_17",
  1151. "elastic",
  1152. "http",
  1153. "psr-18",
  1154. "psr-7",
  1155. "transport"
  1156. ],
  1157. "support": {
  1158. "issues": "https://github.com/elastic/elastic-transport-php/issues",
  1159. "source": "https://github.com/elastic/elastic-transport-php/tree/v8.10.0"
  1160. },
  1161. "time": "2024-08-14T08:55:07+00:00"
  1162. },
  1163. {
  1164. "name": "elasticsearch/elasticsearch",
  1165. "version": "v8.17.0",
  1166. "source": {
  1167. "type": "git",
  1168. "url": "https://github.com/elastic/elasticsearch-php.git",
  1169. "reference": "6cd0fe6a95fdb7198a2795624927b094813b3d8b"
  1170. },
  1171. "dist": {
  1172. "type": "zip",
  1173. "url": "https://api.github.com/repos/elastic/elasticsearch-php/zipball/6cd0fe6a95fdb7198a2795624927b094813b3d8b",
  1174. "reference": "6cd0fe6a95fdb7198a2795624927b094813b3d8b",
  1175. "shasum": ""
  1176. },
  1177. "require": {
  1178. "elastic/transport": "^8.10",
  1179. "guzzlehttp/guzzle": "^7.0",
  1180. "php": "^7.4 || ^8.0",
  1181. "psr/http-client": "^1.0",
  1182. "psr/http-message": "^1.1 || ^2.0",
  1183. "psr/log": "^1|^2|^3"
  1184. },
  1185. "require-dev": {
  1186. "ext-yaml": "*",
  1187. "ext-zip": "*",
  1188. "mockery/mockery": "^1.5",
  1189. "nyholm/psr7": "^1.5",
  1190. "php-http/message-factory": "^1.0",
  1191. "php-http/mock-client": "^1.5",
  1192. "phpstan/phpstan": "^1.4",
  1193. "phpunit/phpunit": "^9.5",
  1194. "psr/http-factory": "^1.0",
  1195. "symfony/finder": "~4.0",
  1196. "symfony/http-client": "^5.0|^6.0|^7.0"
  1197. },
  1198. "type": "library",
  1199. "autoload": {
  1200. "psr-4": {
  1201. "Elastic\\Elasticsearch\\": "src/"
  1202. }
  1203. },
  1204. "notification-url": "https://packagist.org/downloads/",
  1205. "license": [
  1206. "MIT"
  1207. ],
  1208. "description": "PHP Client for Elasticsearch",
  1209. "keywords": [
  1210. "client",
  1211. "elastic",
  1212. "elasticsearch",
  1213. "search"
  1214. ],
  1215. "support": {
  1216. "issues": "https://github.com/elastic/elasticsearch-php/issues",
  1217. "source": "https://github.com/elastic/elasticsearch-php/tree/v8.17.0"
  1218. },
  1219. "time": "2024-12-18T11:00:27+00:00"
  1220. },
  1221. {
  1222. "name": "enshrined/svg-sanitize",
  1223. "version": "0.22.0",
  1224. "source": {
  1225. "type": "git",
  1226. "url": "https://github.com/darylldoyle/svg-sanitizer.git",
  1227. "reference": "0afa95ea74be155a7bcd6c6fb60c276c39984500"
  1228. },
  1229. "dist": {
  1230. "type": "zip",
  1231. "url": "https://api.github.com/repos/darylldoyle/svg-sanitizer/zipball/0afa95ea74be155a7bcd6c6fb60c276c39984500",
  1232. "reference": "0afa95ea74be155a7bcd6c6fb60c276c39984500",
  1233. "shasum": ""
  1234. },
  1235. "require": {
  1236. "ext-dom": "*",
  1237. "ext-libxml": "*",
  1238. "php": "^7.1 || ^8.0"
  1239. },
  1240. "require-dev": {
  1241. "phpunit/phpunit": "^6.5 || ^8.5"
  1242. },
  1243. "type": "library",
  1244. "autoload": {
  1245. "psr-4": {
  1246. "enshrined\\svgSanitize\\": "src"
  1247. }
  1248. },
  1249. "notification-url": "https://packagist.org/downloads/",
  1250. "license": [
  1251. "GPL-2.0-or-later"
  1252. ],
  1253. "authors": [
  1254. {
  1255. "name": "Daryll Doyle",
  1256. "email": "daryll@enshrined.co.uk"
  1257. }
  1258. ],
  1259. "description": "An SVG sanitizer for PHP",
  1260. "support": {
  1261. "issues": "https://github.com/darylldoyle/svg-sanitizer/issues",
  1262. "source": "https://github.com/darylldoyle/svg-sanitizer/tree/0.22.0"
  1263. },
  1264. "time": "2025-08-12T10:13:48+00:00"
  1265. },
  1266. {
  1267. "name": "ezyang/htmlpurifier",
  1268. "version": "v4.18.0",
  1269. "source": {
  1270. "type": "git",
  1271. "url": "https://github.com/ezyang/htmlpurifier.git",
  1272. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  1273. },
  1274. "dist": {
  1275. "type": "zip",
  1276. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  1277. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  1278. "shasum": ""
  1279. },
  1280. "require": {
  1281. "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"
  1282. },
  1283. "require-dev": {
  1284. "cerdic/css-tidy": "^1.7 || ^2.0",
  1285. "simpletest/simpletest": "dev-master"
  1286. },
  1287. "suggest": {
  1288. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1289. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1290. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1291. "ext-tidy": "Used for pretty-printing HTML"
  1292. },
  1293. "type": "library",
  1294. "autoload": {
  1295. "files": [
  1296. "library/HTMLPurifier.composer.php"
  1297. ],
  1298. "psr-0": {
  1299. "HTMLPurifier": "library/"
  1300. },
  1301. "exclude-from-classmap": [
  1302. "/library/HTMLPurifier/Language/"
  1303. ]
  1304. },
  1305. "notification-url": "https://packagist.org/downloads/",
  1306. "license": [
  1307. "LGPL-2.1-or-later"
  1308. ],
  1309. "authors": [
  1310. {
  1311. "name": "Edward Z. Yang",
  1312. "email": "admin@htmlpurifier.org",
  1313. "homepage": "http://ezyang.com"
  1314. }
  1315. ],
  1316. "description": "Standards compliant HTML filter written in PHP",
  1317. "homepage": "http://htmlpurifier.org/",
  1318. "keywords": [
  1319. "html"
  1320. ],
  1321. "support": {
  1322. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1323. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  1324. },
  1325. "time": "2024-11-01T03:51:45+00:00"
  1326. },
  1327. {
  1328. "name": "facade/ignition-contracts",
  1329. "version": "1.0.2",
  1330. "source": {
  1331. "type": "git",
  1332. "url": "https://github.com/facade/ignition-contracts.git",
  1333. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267"
  1334. },
  1335. "dist": {
  1336. "type": "zip",
  1337. "url": "https://api.github.com/repos/facade/ignition-contracts/zipball/3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1338. "reference": "3c921a1cdba35b68a7f0ccffc6dffc1995b18267",
  1339. "shasum": ""
  1340. },
  1341. "require": {
  1342. "php": "^7.3|^8.0"
  1343. },
  1344. "require-dev": {
  1345. "friendsofphp/php-cs-fixer": "^v2.15.8",
  1346. "phpunit/phpunit": "^9.3.11",
  1347. "vimeo/psalm": "^3.17.1"
  1348. },
  1349. "type": "library",
  1350. "autoload": {
  1351. "psr-4": {
  1352. "Facade\\IgnitionContracts\\": "src"
  1353. }
  1354. },
  1355. "notification-url": "https://packagist.org/downloads/",
  1356. "license": [
  1357. "MIT"
  1358. ],
  1359. "authors": [
  1360. {
  1361. "name": "Freek Van der Herten",
  1362. "email": "freek@spatie.be",
  1363. "homepage": "https://flareapp.io",
  1364. "role": "Developer"
  1365. }
  1366. ],
  1367. "description": "Solution contracts for Ignition",
  1368. "homepage": "https://github.com/facade/ignition-contracts",
  1369. "keywords": [
  1370. "contracts",
  1371. "flare",
  1372. "ignition"
  1373. ],
  1374. "support": {
  1375. "issues": "https://github.com/facade/ignition-contracts/issues",
  1376. "source": "https://github.com/facade/ignition-contracts/tree/1.0.2"
  1377. },
  1378. "time": "2020-10-16T08:27:54+00:00"
  1379. },
  1380. {
  1381. "name": "firebase/php-jwt",
  1382. "version": "v6.11.0",
  1383. "source": {
  1384. "type": "git",
  1385. "url": "https://github.com/firebase/php-jwt.git",
  1386. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  1387. },
  1388. "dist": {
  1389. "type": "zip",
  1390. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1391. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1392. "shasum": ""
  1393. },
  1394. "require": {
  1395. "php": "^8.0"
  1396. },
  1397. "require-dev": {
  1398. "guzzlehttp/guzzle": "^7.4",
  1399. "phpspec/prophecy-phpunit": "^2.0",
  1400. "phpunit/phpunit": "^9.5",
  1401. "psr/cache": "^2.0||^3.0",
  1402. "psr/http-client": "^1.0",
  1403. "psr/http-factory": "^1.0"
  1404. },
  1405. "suggest": {
  1406. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1407. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1408. },
  1409. "type": "library",
  1410. "autoload": {
  1411. "psr-4": {
  1412. "Firebase\\JWT\\": "src"
  1413. }
  1414. },
  1415. "notification-url": "https://packagist.org/downloads/",
  1416. "license": [
  1417. "BSD-3-Clause"
  1418. ],
  1419. "authors": [
  1420. {
  1421. "name": "Neuman Vong",
  1422. "email": "neuman+pear@twilio.com",
  1423. "role": "Developer"
  1424. },
  1425. {
  1426. "name": "Anant Narayanan",
  1427. "email": "anant@php.net",
  1428. "role": "Developer"
  1429. }
  1430. ],
  1431. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1432. "homepage": "https://github.com/firebase/php-jwt",
  1433. "keywords": [
  1434. "jwt",
  1435. "php"
  1436. ],
  1437. "support": {
  1438. "issues": "https://github.com/firebase/php-jwt/issues",
  1439. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  1440. },
  1441. "time": "2025-01-23T05:11:06+00:00"
  1442. },
  1443. {
  1444. "name": "fruitcake/php-cors",
  1445. "version": "v1.3.0",
  1446. "source": {
  1447. "type": "git",
  1448. "url": "https://github.com/fruitcake/php-cors.git",
  1449. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  1450. },
  1451. "dist": {
  1452. "type": "zip",
  1453. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  1454. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  1455. "shasum": ""
  1456. },
  1457. "require": {
  1458. "php": "^7.4|^8.0",
  1459. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  1460. },
  1461. "require-dev": {
  1462. "phpstan/phpstan": "^1.4",
  1463. "phpunit/phpunit": "^9",
  1464. "squizlabs/php_codesniffer": "^3.5"
  1465. },
  1466. "type": "library",
  1467. "extra": {
  1468. "branch-alias": {
  1469. "dev-master": "1.2-dev"
  1470. }
  1471. },
  1472. "autoload": {
  1473. "psr-4": {
  1474. "Fruitcake\\Cors\\": "src/"
  1475. }
  1476. },
  1477. "notification-url": "https://packagist.org/downloads/",
  1478. "license": [
  1479. "MIT"
  1480. ],
  1481. "authors": [
  1482. {
  1483. "name": "Fruitcake",
  1484. "homepage": "https://fruitcake.nl"
  1485. },
  1486. {
  1487. "name": "Barryvdh",
  1488. "email": "barryvdh@gmail.com"
  1489. }
  1490. ],
  1491. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1492. "homepage": "https://github.com/fruitcake/php-cors",
  1493. "keywords": [
  1494. "cors",
  1495. "laravel",
  1496. "symfony"
  1497. ],
  1498. "support": {
  1499. "issues": "https://github.com/fruitcake/php-cors/issues",
  1500. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  1501. },
  1502. "funding": [
  1503. {
  1504. "url": "https://fruitcake.nl",
  1505. "type": "custom"
  1506. },
  1507. {
  1508. "url": "https://github.com/barryvdh",
  1509. "type": "github"
  1510. }
  1511. ],
  1512. "time": "2023-10-12T05:21:21+00:00"
  1513. },
  1514. {
  1515. "name": "graham-campbell/result-type",
  1516. "version": "v1.1.3",
  1517. "source": {
  1518. "type": "git",
  1519. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1520. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  1521. },
  1522. "dist": {
  1523. "type": "zip",
  1524. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  1525. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  1526. "shasum": ""
  1527. },
  1528. "require": {
  1529. "php": "^7.2.5 || ^8.0",
  1530. "phpoption/phpoption": "^1.9.3"
  1531. },
  1532. "require-dev": {
  1533. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1534. },
  1535. "type": "library",
  1536. "autoload": {
  1537. "psr-4": {
  1538. "GrahamCampbell\\ResultType\\": "src/"
  1539. }
  1540. },
  1541. "notification-url": "https://packagist.org/downloads/",
  1542. "license": [
  1543. "MIT"
  1544. ],
  1545. "authors": [
  1546. {
  1547. "name": "Graham Campbell",
  1548. "email": "hello@gjcampbell.co.uk",
  1549. "homepage": "https://github.com/GrahamCampbell"
  1550. }
  1551. ],
  1552. "description": "An Implementation Of The Result Type",
  1553. "keywords": [
  1554. "Graham Campbell",
  1555. "GrahamCampbell",
  1556. "Result Type",
  1557. "Result-Type",
  1558. "result"
  1559. ],
  1560. "support": {
  1561. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1562. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  1563. },
  1564. "funding": [
  1565. {
  1566. "url": "https://github.com/GrahamCampbell",
  1567. "type": "github"
  1568. },
  1569. {
  1570. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1571. "type": "tidelift"
  1572. }
  1573. ],
  1574. "time": "2024-07-20T21:45:45+00:00"
  1575. },
  1576. {
  1577. "name": "guzzlehttp/guzzle",
  1578. "version": "7.9.2",
  1579. "source": {
  1580. "type": "git",
  1581. "url": "https://github.com/guzzle/guzzle.git",
  1582. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1583. },
  1584. "dist": {
  1585. "type": "zip",
  1586. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1587. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1588. "shasum": ""
  1589. },
  1590. "require": {
  1591. "ext-json": "*",
  1592. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1593. "guzzlehttp/psr7": "^2.7.0",
  1594. "php": "^7.2.5 || ^8.0",
  1595. "psr/http-client": "^1.0",
  1596. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1597. },
  1598. "provide": {
  1599. "psr/http-client-implementation": "1.0"
  1600. },
  1601. "require-dev": {
  1602. "bamarni/composer-bin-plugin": "^1.8.2",
  1603. "ext-curl": "*",
  1604. "guzzle/client-integration-tests": "3.0.2",
  1605. "php-http/message-factory": "^1.1",
  1606. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1607. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1608. },
  1609. "suggest": {
  1610. "ext-curl": "Required for CURL handler support",
  1611. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1612. "psr/log": "Required for using the Log middleware"
  1613. },
  1614. "type": "library",
  1615. "extra": {
  1616. "bamarni-bin": {
  1617. "bin-links": true,
  1618. "forward-command": false
  1619. }
  1620. },
  1621. "autoload": {
  1622. "files": [
  1623. "src/functions_include.php"
  1624. ],
  1625. "psr-4": {
  1626. "GuzzleHttp\\": "src/"
  1627. }
  1628. },
  1629. "notification-url": "https://packagist.org/downloads/",
  1630. "license": [
  1631. "MIT"
  1632. ],
  1633. "authors": [
  1634. {
  1635. "name": "Graham Campbell",
  1636. "email": "hello@gjcampbell.co.uk",
  1637. "homepage": "https://github.com/GrahamCampbell"
  1638. },
  1639. {
  1640. "name": "Michael Dowling",
  1641. "email": "mtdowling@gmail.com",
  1642. "homepage": "https://github.com/mtdowling"
  1643. },
  1644. {
  1645. "name": "Jeremy Lindblom",
  1646. "email": "jeremeamia@gmail.com",
  1647. "homepage": "https://github.com/jeremeamia"
  1648. },
  1649. {
  1650. "name": "George Mponos",
  1651. "email": "gmponos@gmail.com",
  1652. "homepage": "https://github.com/gmponos"
  1653. },
  1654. {
  1655. "name": "Tobias Nyholm",
  1656. "email": "tobias.nyholm@gmail.com",
  1657. "homepage": "https://github.com/Nyholm"
  1658. },
  1659. {
  1660. "name": "Márk Sági-Kazár",
  1661. "email": "mark.sagikazar@gmail.com",
  1662. "homepage": "https://github.com/sagikazarmark"
  1663. },
  1664. {
  1665. "name": "Tobias Schultze",
  1666. "email": "webmaster@tubo-world.de",
  1667. "homepage": "https://github.com/Tobion"
  1668. }
  1669. ],
  1670. "description": "Guzzle is a PHP HTTP client library",
  1671. "keywords": [
  1672. "client",
  1673. "curl",
  1674. "framework",
  1675. "http",
  1676. "http client",
  1677. "psr-18",
  1678. "psr-7",
  1679. "rest",
  1680. "web service"
  1681. ],
  1682. "support": {
  1683. "issues": "https://github.com/guzzle/guzzle/issues",
  1684. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1685. },
  1686. "funding": [
  1687. {
  1688. "url": "https://github.com/GrahamCampbell",
  1689. "type": "github"
  1690. },
  1691. {
  1692. "url": "https://github.com/Nyholm",
  1693. "type": "github"
  1694. },
  1695. {
  1696. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1697. "type": "tidelift"
  1698. }
  1699. ],
  1700. "time": "2024-07-24T11:22:20+00:00"
  1701. },
  1702. {
  1703. "name": "guzzlehttp/promises",
  1704. "version": "2.0.4",
  1705. "source": {
  1706. "type": "git",
  1707. "url": "https://github.com/guzzle/promises.git",
  1708. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  1709. },
  1710. "dist": {
  1711. "type": "zip",
  1712. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1713. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1714. "shasum": ""
  1715. },
  1716. "require": {
  1717. "php": "^7.2.5 || ^8.0"
  1718. },
  1719. "require-dev": {
  1720. "bamarni/composer-bin-plugin": "^1.8.2",
  1721. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1722. },
  1723. "type": "library",
  1724. "extra": {
  1725. "bamarni-bin": {
  1726. "bin-links": true,
  1727. "forward-command": false
  1728. }
  1729. },
  1730. "autoload": {
  1731. "psr-4": {
  1732. "GuzzleHttp\\Promise\\": "src/"
  1733. }
  1734. },
  1735. "notification-url": "https://packagist.org/downloads/",
  1736. "license": [
  1737. "MIT"
  1738. ],
  1739. "authors": [
  1740. {
  1741. "name": "Graham Campbell",
  1742. "email": "hello@gjcampbell.co.uk",
  1743. "homepage": "https://github.com/GrahamCampbell"
  1744. },
  1745. {
  1746. "name": "Michael Dowling",
  1747. "email": "mtdowling@gmail.com",
  1748. "homepage": "https://github.com/mtdowling"
  1749. },
  1750. {
  1751. "name": "Tobias Nyholm",
  1752. "email": "tobias.nyholm@gmail.com",
  1753. "homepage": "https://github.com/Nyholm"
  1754. },
  1755. {
  1756. "name": "Tobias Schultze",
  1757. "email": "webmaster@tubo-world.de",
  1758. "homepage": "https://github.com/Tobion"
  1759. }
  1760. ],
  1761. "description": "Guzzle promises library",
  1762. "keywords": [
  1763. "promise"
  1764. ],
  1765. "support": {
  1766. "issues": "https://github.com/guzzle/promises/issues",
  1767. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1768. },
  1769. "funding": [
  1770. {
  1771. "url": "https://github.com/GrahamCampbell",
  1772. "type": "github"
  1773. },
  1774. {
  1775. "url": "https://github.com/Nyholm",
  1776. "type": "github"
  1777. },
  1778. {
  1779. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1780. "type": "tidelift"
  1781. }
  1782. ],
  1783. "time": "2024-10-17T10:06:22+00:00"
  1784. },
  1785. {
  1786. "name": "guzzlehttp/psr7",
  1787. "version": "2.7.0",
  1788. "source": {
  1789. "type": "git",
  1790. "url": "https://github.com/guzzle/psr7.git",
  1791. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1792. },
  1793. "dist": {
  1794. "type": "zip",
  1795. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1796. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1797. "shasum": ""
  1798. },
  1799. "require": {
  1800. "php": "^7.2.5 || ^8.0",
  1801. "psr/http-factory": "^1.0",
  1802. "psr/http-message": "^1.1 || ^2.0",
  1803. "ralouphie/getallheaders": "^3.0"
  1804. },
  1805. "provide": {
  1806. "psr/http-factory-implementation": "1.0",
  1807. "psr/http-message-implementation": "1.0"
  1808. },
  1809. "require-dev": {
  1810. "bamarni/composer-bin-plugin": "^1.8.2",
  1811. "http-interop/http-factory-tests": "0.9.0",
  1812. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1813. },
  1814. "suggest": {
  1815. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1816. },
  1817. "type": "library",
  1818. "extra": {
  1819. "bamarni-bin": {
  1820. "bin-links": true,
  1821. "forward-command": false
  1822. }
  1823. },
  1824. "autoload": {
  1825. "psr-4": {
  1826. "GuzzleHttp\\Psr7\\": "src/"
  1827. }
  1828. },
  1829. "notification-url": "https://packagist.org/downloads/",
  1830. "license": [
  1831. "MIT"
  1832. ],
  1833. "authors": [
  1834. {
  1835. "name": "Graham Campbell",
  1836. "email": "hello@gjcampbell.co.uk",
  1837. "homepage": "https://github.com/GrahamCampbell"
  1838. },
  1839. {
  1840. "name": "Michael Dowling",
  1841. "email": "mtdowling@gmail.com",
  1842. "homepage": "https://github.com/mtdowling"
  1843. },
  1844. {
  1845. "name": "George Mponos",
  1846. "email": "gmponos@gmail.com",
  1847. "homepage": "https://github.com/gmponos"
  1848. },
  1849. {
  1850. "name": "Tobias Nyholm",
  1851. "email": "tobias.nyholm@gmail.com",
  1852. "homepage": "https://github.com/Nyholm"
  1853. },
  1854. {
  1855. "name": "Márk Sági-Kazár",
  1856. "email": "mark.sagikazar@gmail.com",
  1857. "homepage": "https://github.com/sagikazarmark"
  1858. },
  1859. {
  1860. "name": "Tobias Schultze",
  1861. "email": "webmaster@tubo-world.de",
  1862. "homepage": "https://github.com/Tobion"
  1863. },
  1864. {
  1865. "name": "Márk Sági-Kazár",
  1866. "email": "mark.sagikazar@gmail.com",
  1867. "homepage": "https://sagikazarmark.hu"
  1868. }
  1869. ],
  1870. "description": "PSR-7 message implementation that also provides common utility methods",
  1871. "keywords": [
  1872. "http",
  1873. "message",
  1874. "psr-7",
  1875. "request",
  1876. "response",
  1877. "stream",
  1878. "uri",
  1879. "url"
  1880. ],
  1881. "support": {
  1882. "issues": "https://github.com/guzzle/psr7/issues",
  1883. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1884. },
  1885. "funding": [
  1886. {
  1887. "url": "https://github.com/GrahamCampbell",
  1888. "type": "github"
  1889. },
  1890. {
  1891. "url": "https://github.com/Nyholm",
  1892. "type": "github"
  1893. },
  1894. {
  1895. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1896. "type": "tidelift"
  1897. }
  1898. ],
  1899. "time": "2024-07-18T11:15:46+00:00"
  1900. },
  1901. {
  1902. "name": "guzzlehttp/uri-template",
  1903. "version": "v1.0.4",
  1904. "source": {
  1905. "type": "git",
  1906. "url": "https://github.com/guzzle/uri-template.git",
  1907. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2"
  1908. },
  1909. "dist": {
  1910. "type": "zip",
  1911. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2",
  1912. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2",
  1913. "shasum": ""
  1914. },
  1915. "require": {
  1916. "php": "^7.2.5 || ^8.0",
  1917. "symfony/polyfill-php80": "^1.24"
  1918. },
  1919. "require-dev": {
  1920. "bamarni/composer-bin-plugin": "^1.8.2",
  1921. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1922. "uri-template/tests": "1.0.0"
  1923. },
  1924. "type": "library",
  1925. "extra": {
  1926. "bamarni-bin": {
  1927. "bin-links": true,
  1928. "forward-command": false
  1929. }
  1930. },
  1931. "autoload": {
  1932. "psr-4": {
  1933. "GuzzleHttp\\UriTemplate\\": "src"
  1934. }
  1935. },
  1936. "notification-url": "https://packagist.org/downloads/",
  1937. "license": [
  1938. "MIT"
  1939. ],
  1940. "authors": [
  1941. {
  1942. "name": "Graham Campbell",
  1943. "email": "hello@gjcampbell.co.uk",
  1944. "homepage": "https://github.com/GrahamCampbell"
  1945. },
  1946. {
  1947. "name": "Michael Dowling",
  1948. "email": "mtdowling@gmail.com",
  1949. "homepage": "https://github.com/mtdowling"
  1950. },
  1951. {
  1952. "name": "George Mponos",
  1953. "email": "gmponos@gmail.com",
  1954. "homepage": "https://github.com/gmponos"
  1955. },
  1956. {
  1957. "name": "Tobias Nyholm",
  1958. "email": "tobias.nyholm@gmail.com",
  1959. "homepage": "https://github.com/Nyholm"
  1960. }
  1961. ],
  1962. "description": "A polyfill class for uri_template of PHP",
  1963. "keywords": [
  1964. "guzzlehttp",
  1965. "uri-template"
  1966. ],
  1967. "support": {
  1968. "issues": "https://github.com/guzzle/uri-template/issues",
  1969. "source": "https://github.com/guzzle/uri-template/tree/v1.0.4"
  1970. },
  1971. "funding": [
  1972. {
  1973. "url": "https://github.com/GrahamCampbell",
  1974. "type": "github"
  1975. },
  1976. {
  1977. "url": "https://github.com/Nyholm",
  1978. "type": "github"
  1979. },
  1980. {
  1981. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1982. "type": "tidelift"
  1983. }
  1984. ],
  1985. "time": "2025-02-03T10:55:03+00:00"
  1986. },
  1987. {
  1988. "name": "intervention/image",
  1989. "version": "2.7.2",
  1990. "source": {
  1991. "type": "git",
  1992. "url": "https://github.com/Intervention/image.git",
  1993. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  1994. },
  1995. "dist": {
  1996. "type": "zip",
  1997. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  1998. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  1999. "shasum": ""
  2000. },
  2001. "require": {
  2002. "ext-fileinfo": "*",
  2003. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2004. "php": ">=5.4.0"
  2005. },
  2006. "require-dev": {
  2007. "mockery/mockery": "~0.9.2",
  2008. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2009. },
  2010. "suggest": {
  2011. "ext-gd": "to use GD library based image processing.",
  2012. "ext-imagick": "to use Imagick based image processing.",
  2013. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2014. },
  2015. "type": "library",
  2016. "extra": {
  2017. "laravel": {
  2018. "aliases": {
  2019. "Image": "Intervention\\Image\\Facades\\Image"
  2020. },
  2021. "providers": [
  2022. "Intervention\\Image\\ImageServiceProvider"
  2023. ]
  2024. },
  2025. "branch-alias": {
  2026. "dev-master": "2.4-dev"
  2027. }
  2028. },
  2029. "autoload": {
  2030. "psr-4": {
  2031. "Intervention\\Image\\": "src/Intervention/Image"
  2032. }
  2033. },
  2034. "notification-url": "https://packagist.org/downloads/",
  2035. "license": [
  2036. "MIT"
  2037. ],
  2038. "authors": [
  2039. {
  2040. "name": "Oliver Vogel",
  2041. "email": "oliver@intervention.io",
  2042. "homepage": "https://intervention.io/"
  2043. }
  2044. ],
  2045. "description": "Image handling and manipulation library with support for Laravel integration",
  2046. "homepage": "http://image.intervention.io/",
  2047. "keywords": [
  2048. "gd",
  2049. "image",
  2050. "imagick",
  2051. "laravel",
  2052. "thumbnail",
  2053. "watermark"
  2054. ],
  2055. "support": {
  2056. "issues": "https://github.com/Intervention/image/issues",
  2057. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2058. },
  2059. "funding": [
  2060. {
  2061. "url": "https://paypal.me/interventionio",
  2062. "type": "custom"
  2063. },
  2064. {
  2065. "url": "https://github.com/Intervention",
  2066. "type": "github"
  2067. }
  2068. ],
  2069. "time": "2022-05-21T17:30:32+00:00"
  2070. },
  2071. {
  2072. "name": "jaybizzle/crawler-detect",
  2073. "version": "v1.3.4",
  2074. "source": {
  2075. "type": "git",
  2076. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  2077. "reference": "d3b7ff28994e1b0de764ab7412fa269a79634ff3"
  2078. },
  2079. "dist": {
  2080. "type": "zip",
  2081. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/d3b7ff28994e1b0de764ab7412fa269a79634ff3",
  2082. "reference": "d3b7ff28994e1b0de764ab7412fa269a79634ff3",
  2083. "shasum": ""
  2084. },
  2085. "require": {
  2086. "php": ">=7.1.0"
  2087. },
  2088. "require-dev": {
  2089. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  2090. },
  2091. "type": "library",
  2092. "autoload": {
  2093. "psr-4": {
  2094. "Jaybizzle\\CrawlerDetect\\": "src/"
  2095. }
  2096. },
  2097. "notification-url": "https://packagist.org/downloads/",
  2098. "license": [
  2099. "MIT"
  2100. ],
  2101. "authors": [
  2102. {
  2103. "name": "Mark Beech",
  2104. "email": "m@rkbee.ch",
  2105. "role": "Developer"
  2106. }
  2107. ],
  2108. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  2109. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  2110. "keywords": [
  2111. "crawler",
  2112. "crawler detect",
  2113. "crawler detector",
  2114. "crawlerdetect",
  2115. "php crawler detect"
  2116. ],
  2117. "support": {
  2118. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  2119. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.3.4"
  2120. },
  2121. "time": "2025-03-05T23:12:10+00:00"
  2122. },
  2123. {
  2124. "name": "kalnoy/nestedset",
  2125. "version": "v6.0.5",
  2126. "source": {
  2127. "type": "git",
  2128. "url": "https://github.com/lazychaser/laravel-nestedset.git",
  2129. "reference": "fa3f77bb96709eb6b394f66b54eb08f0d8d47d63"
  2130. },
  2131. "dist": {
  2132. "type": "zip",
  2133. "url": "https://api.github.com/repos/lazychaser/laravel-nestedset/zipball/fa3f77bb96709eb6b394f66b54eb08f0d8d47d63",
  2134. "reference": "fa3f77bb96709eb6b394f66b54eb08f0d8d47d63",
  2135. "shasum": ""
  2136. },
  2137. "require": {
  2138. "illuminate/database": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2139. "illuminate/events": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2140. "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2141. "php": "^7.2.5|^8.0"
  2142. },
  2143. "require-dev": {
  2144. "phpunit/phpunit": "7.*|8.*|9.*|^10.5"
  2145. },
  2146. "type": "library",
  2147. "extra": {
  2148. "laravel": {
  2149. "providers": [
  2150. "Kalnoy\\Nestedset\\NestedSetServiceProvider"
  2151. ]
  2152. },
  2153. "branch-alias": {
  2154. "dev-master": "v5.0.x-dev"
  2155. }
  2156. },
  2157. "autoload": {
  2158. "psr-4": {
  2159. "Kalnoy\\Nestedset\\": "src/"
  2160. }
  2161. },
  2162. "notification-url": "https://packagist.org/downloads/",
  2163. "license": [
  2164. "MIT"
  2165. ],
  2166. "authors": [
  2167. {
  2168. "name": "Alexander Kalnoy",
  2169. "email": "lazychaser@gmail.com"
  2170. }
  2171. ],
  2172. "description": "Nested Set Model for Laravel 5.7 and up",
  2173. "keywords": [
  2174. "database",
  2175. "hierarchy",
  2176. "laravel",
  2177. "nested sets",
  2178. "nsm"
  2179. ],
  2180. "support": {
  2181. "issues": "https://github.com/lazychaser/laravel-nestedset/issues",
  2182. "source": "https://github.com/lazychaser/laravel-nestedset/tree/v6.0.5"
  2183. },
  2184. "time": "2025-02-25T11:09:07+00:00"
  2185. },
  2186. {
  2187. "name": "khaled.alshamaa/ar-php",
  2188. "version": "v6.3.4",
  2189. "source": {
  2190. "type": "git",
  2191. "url": "https://github.com/khaled-alshamaa/ar-php.git",
  2192. "reference": "36550a0d805dc50fcede0132cd8b83c80fe1fd6c"
  2193. },
  2194. "dist": {
  2195. "type": "zip",
  2196. "url": "https://api.github.com/repos/khaled-alshamaa/ar-php/zipball/36550a0d805dc50fcede0132cd8b83c80fe1fd6c",
  2197. "reference": "36550a0d805dc50fcede0132cd8b83c80fe1fd6c",
  2198. "shasum": ""
  2199. },
  2200. "require": {
  2201. "ext-calendar": "*",
  2202. "ext-mbstring": "*",
  2203. "php": ">=5.6.0"
  2204. },
  2205. "require-dev": {
  2206. "phpunit/phpunit": "9.*"
  2207. },
  2208. "type": "library",
  2209. "autoload": {
  2210. "psr-4": {
  2211. "ArPHP\\I18N\\": "src"
  2212. }
  2213. },
  2214. "notification-url": "https://packagist.org/downloads/",
  2215. "license": [
  2216. "LGPL-3.0"
  2217. ],
  2218. "authors": [
  2219. {
  2220. "name": "Khaled Al-Sham'aa",
  2221. "email": "khaled@ar-php.org",
  2222. "homepage": "http://www.ar-php.org",
  2223. "role": "Developer"
  2224. }
  2225. ],
  2226. "description": "Set of functionalities enable Arabic website developers to serve professional search, present and process Arabic content in PHP",
  2227. "homepage": "https://github.com/khaled-alshamaa/ar-php",
  2228. "keywords": [
  2229. "arabic",
  2230. "arabic-calendar",
  2231. "arabic-glyphs",
  2232. "arabic-numbers",
  2233. "arabic-segments-identifier",
  2234. "arabic-sentiment",
  2235. "arabic-sql-query"
  2236. ],
  2237. "support": {
  2238. "issues": "https://github.com/khaled-alshamaa/ar-php/issues",
  2239. "source": "https://github.com/khaled-alshamaa/ar-php/tree/v6.3.4"
  2240. },
  2241. "funding": [
  2242. {
  2243. "url": "https://github.com/khaled-alshamaa",
  2244. "type": "github"
  2245. }
  2246. ],
  2247. "time": "2023-04-04T22:05:31+00:00"
  2248. },
  2249. {
  2250. "name": "konekt/concord",
  2251. "version": "1.16.0",
  2252. "source": {
  2253. "type": "git",
  2254. "url": "https://github.com/artkonekt/concord.git",
  2255. "reference": "56d337f6ffc8534175c98b82071556a2d74f659c"
  2256. },
  2257. "dist": {
  2258. "type": "zip",
  2259. "url": "https://api.github.com/repos/artkonekt/concord/zipball/56d337f6ffc8534175c98b82071556a2d74f659c",
  2260. "reference": "56d337f6ffc8534175c98b82071556a2d74f659c",
  2261. "shasum": ""
  2262. },
  2263. "require": {
  2264. "illuminate/console": "^10.0|^11.0|^12.0",
  2265. "illuminate/support": "^10.0|^11.0|^12.0",
  2266. "konekt/enum": "^2.1|^3.0|^4.0",
  2267. "konekt/enum-eloquent": "^1.7",
  2268. "php": "^8.1"
  2269. },
  2270. "require-dev": {
  2271. "orchestra/testbench": "^8.0|^9.0|^10.0",
  2272. "phpunit/phpunit": "9 - 11"
  2273. },
  2274. "type": "library",
  2275. "extra": {
  2276. "laravel": {
  2277. "aliases": {
  2278. "Helper": "Konekt\\Concord\\Facades\\Helper",
  2279. "Concord": "Konekt\\Concord\\Facades\\Concord"
  2280. },
  2281. "providers": [
  2282. "Konekt\\Concord\\ConcordServiceProvider"
  2283. ]
  2284. }
  2285. },
  2286. "autoload": {
  2287. "files": [
  2288. "src/Support/functions.php"
  2289. ],
  2290. "psr-4": {
  2291. "Konekt\\Concord\\": "src"
  2292. }
  2293. },
  2294. "notification-url": "https://packagist.org/downloads/",
  2295. "license": [
  2296. "MIT"
  2297. ],
  2298. "authors": [
  2299. {
  2300. "name": "Attila Fulop",
  2301. "homepage": "https://github.com/fulopattila122"
  2302. }
  2303. ],
  2304. "description": "Concord is a Laravel Extension for building modular Laravel Applications",
  2305. "support": {
  2306. "issues": "https://github.com/artkonekt/concord",
  2307. "source": "https://github.com/artkonekt/concord/tree/1.16.0"
  2308. },
  2309. "time": "2025-03-03T11:39:09+00:00"
  2310. },
  2311. {
  2312. "name": "konekt/enum",
  2313. "version": "4.2.0",
  2314. "source": {
  2315. "type": "git",
  2316. "url": "https://github.com/artkonekt/enum.git",
  2317. "reference": "e3c723fc65e6c7bc901f022477a9e37f0f278bdb"
  2318. },
  2319. "dist": {
  2320. "type": "zip",
  2321. "url": "https://api.github.com/repos/artkonekt/enum/zipball/e3c723fc65e6c7bc901f022477a9e37f0f278bdb",
  2322. "reference": "e3c723fc65e6c7bc901f022477a9e37f0f278bdb",
  2323. "shasum": ""
  2324. },
  2325. "require": {
  2326. "php": "^8.0"
  2327. },
  2328. "require-dev": {
  2329. "phpunit/phpunit": "^9.0"
  2330. },
  2331. "type": "library",
  2332. "extra": {
  2333. "branch-alias": {
  2334. "dev-master": "4.x-dev"
  2335. }
  2336. },
  2337. "autoload": {
  2338. "psr-4": {
  2339. "Konekt\\Enum\\": "src/"
  2340. }
  2341. },
  2342. "notification-url": "https://packagist.org/downloads/",
  2343. "license": [
  2344. "MIT"
  2345. ],
  2346. "authors": [
  2347. {
  2348. "name": "Attila Fulop",
  2349. "homepage": "https://github.com/fulopattila122"
  2350. }
  2351. ],
  2352. "description": "SPL inspired PHP enum class implementation",
  2353. "keywords": [
  2354. "artkonekt",
  2355. "enum",
  2356. "konekt"
  2357. ],
  2358. "support": {
  2359. "issues": "https://github.com/artkonekt/enum/issues",
  2360. "source": "https://github.com/artkonekt/enum"
  2361. },
  2362. "time": "2024-02-29T15:32:06+00:00"
  2363. },
  2364. {
  2365. "name": "konekt/enum-eloquent",
  2366. "version": "1.10.0",
  2367. "source": {
  2368. "type": "git",
  2369. "url": "https://github.com/artkonekt/enum-eloquent.git",
  2370. "reference": "ebfbc29706c407eb98fdabd90c38501315d99ec7"
  2371. },
  2372. "dist": {
  2373. "type": "zip",
  2374. "url": "https://api.github.com/repos/artkonekt/enum-eloquent/zipball/ebfbc29706c407eb98fdabd90c38501315d99ec7",
  2375. "reference": "ebfbc29706c407eb98fdabd90c38501315d99ec7",
  2376. "shasum": ""
  2377. },
  2378. "require": {
  2379. "illuminate/database": "^8.75|9.*|10.*|11.*|12.*",
  2380. "konekt/enum": "^2.0.2 || ^3.0 | ^4.0",
  2381. "php": "^8.0"
  2382. },
  2383. "require-dev": {
  2384. "illuminate/events": "^8.75|9.*|10.*|11.*|12.*",
  2385. "phpunit/phpunit": "9 - 11"
  2386. },
  2387. "type": "library",
  2388. "extra": {
  2389. "laravel": {
  2390. "providers": [
  2391. "Konekt\\Enum\\Eloquent\\EnumServiceProvider"
  2392. ]
  2393. }
  2394. },
  2395. "autoload": {
  2396. "psr-4": {
  2397. "Konekt\\Enum\\Eloquent\\": "src/"
  2398. }
  2399. },
  2400. "notification-url": "https://packagist.org/downloads/",
  2401. "license": [
  2402. "MIT"
  2403. ],
  2404. "authors": [
  2405. {
  2406. "name": "Attila Fulop",
  2407. "homepage": "https://github.com/fulopattila122"
  2408. },
  2409. {
  2410. "name": "Semyon Chetvertnyh",
  2411. "homepage": "https://github.com/semyonchetvertnyh"
  2412. },
  2413. {
  2414. "name": "Mark Boessenkool",
  2415. "homepage": "https://github.com/TheM1984"
  2416. }
  2417. ],
  2418. "description": "Enum attribute casting for Eloquent models",
  2419. "keywords": [
  2420. "artkonekt",
  2421. "eloquent",
  2422. "enum",
  2423. "konekt",
  2424. "laravel"
  2425. ],
  2426. "support": {
  2427. "issues": "https://github.com/artkonekt/enum-eloquent/issues",
  2428. "source": "https://github.com/artkonekt/enum-eloquent"
  2429. },
  2430. "time": "2025-03-03T11:34:47+00:00"
  2431. },
  2432. {
  2433. "name": "laminas/laminas-diactoros",
  2434. "version": "3.5.0",
  2435. "source": {
  2436. "type": "git",
  2437. "url": "https://github.com/laminas/laminas-diactoros.git",
  2438. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2"
  2439. },
  2440. "dist": {
  2441. "type": "zip",
  2442. "url": "https://api.github.com/repos/laminas/laminas-diactoros/zipball/143a16306602ce56b8b092a7914fef03c37f9ed2",
  2443. "reference": "143a16306602ce56b8b092a7914fef03c37f9ed2",
  2444. "shasum": ""
  2445. },
  2446. "require": {
  2447. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  2448. "psr/http-factory": "^1.1",
  2449. "psr/http-message": "^1.1 || ^2.0"
  2450. },
  2451. "conflict": {
  2452. "amphp/amp": "<2.6.4"
  2453. },
  2454. "provide": {
  2455. "psr/http-factory-implementation": "^1.0",
  2456. "psr/http-message-implementation": "^1.1 || ^2.0"
  2457. },
  2458. "require-dev": {
  2459. "ext-curl": "*",
  2460. "ext-dom": "*",
  2461. "ext-gd": "*",
  2462. "ext-libxml": "*",
  2463. "http-interop/http-factory-tests": "^2.2.0",
  2464. "laminas/laminas-coding-standard": "~2.5.0",
  2465. "php-http/psr7-integration-tests": "^1.4.0",
  2466. "phpunit/phpunit": "^10.5.36",
  2467. "psalm/plugin-phpunit": "^0.19.0",
  2468. "vimeo/psalm": "^5.26.1"
  2469. },
  2470. "type": "library",
  2471. "extra": {
  2472. "laminas": {
  2473. "module": "Laminas\\Diactoros",
  2474. "config-provider": "Laminas\\Diactoros\\ConfigProvider"
  2475. }
  2476. },
  2477. "autoload": {
  2478. "files": [
  2479. "src/functions/create_uploaded_file.php",
  2480. "src/functions/marshal_headers_from_sapi.php",
  2481. "src/functions/marshal_method_from_sapi.php",
  2482. "src/functions/marshal_protocol_version_from_sapi.php",
  2483. "src/functions/normalize_server.php",
  2484. "src/functions/normalize_uploaded_files.php",
  2485. "src/functions/parse_cookie_header.php"
  2486. ],
  2487. "psr-4": {
  2488. "Laminas\\Diactoros\\": "src/"
  2489. }
  2490. },
  2491. "notification-url": "https://packagist.org/downloads/",
  2492. "license": [
  2493. "BSD-3-Clause"
  2494. ],
  2495. "description": "PSR HTTP Message implementations",
  2496. "homepage": "https://laminas.dev",
  2497. "keywords": [
  2498. "http",
  2499. "laminas",
  2500. "psr",
  2501. "psr-17",
  2502. "psr-7"
  2503. ],
  2504. "support": {
  2505. "chat": "https://laminas.dev/chat",
  2506. "docs": "https://docs.laminas.dev/laminas-diactoros/",
  2507. "forum": "https://discourse.laminas.dev",
  2508. "issues": "https://github.com/laminas/laminas-diactoros/issues",
  2509. "rss": "https://github.com/laminas/laminas-diactoros/releases.atom",
  2510. "source": "https://github.com/laminas/laminas-diactoros"
  2511. },
  2512. "funding": [
  2513. {
  2514. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2515. "type": "community_bridge"
  2516. }
  2517. ],
  2518. "time": "2024-10-14T11:59:49+00:00"
  2519. },
  2520. {
  2521. "name": "laravel/framework",
  2522. "version": "v11.44.2",
  2523. "source": {
  2524. "type": "git",
  2525. "url": "https://github.com/laravel/framework.git",
  2526. "reference": "f85216c82cbd38b66d67ebd20ea762cb3751a4b4"
  2527. },
  2528. "dist": {
  2529. "type": "zip",
  2530. "url": "https://api.github.com/repos/laravel/framework/zipball/f85216c82cbd38b66d67ebd20ea762cb3751a4b4",
  2531. "reference": "f85216c82cbd38b66d67ebd20ea762cb3751a4b4",
  2532. "shasum": ""
  2533. },
  2534. "require": {
  2535. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  2536. "composer-runtime-api": "^2.2",
  2537. "doctrine/inflector": "^2.0.5",
  2538. "dragonmantank/cron-expression": "^3.4",
  2539. "egulias/email-validator": "^3.2.1|^4.0",
  2540. "ext-ctype": "*",
  2541. "ext-filter": "*",
  2542. "ext-hash": "*",
  2543. "ext-mbstring": "*",
  2544. "ext-openssl": "*",
  2545. "ext-session": "*",
  2546. "ext-tokenizer": "*",
  2547. "fruitcake/php-cors": "^1.3",
  2548. "guzzlehttp/guzzle": "^7.8.2",
  2549. "guzzlehttp/uri-template": "^1.0",
  2550. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  2551. "laravel/serializable-closure": "^1.3|^2.0",
  2552. "league/commonmark": "^2.6",
  2553. "league/flysystem": "^3.25.1",
  2554. "league/flysystem-local": "^3.25.1",
  2555. "league/uri": "^7.5.1",
  2556. "monolog/monolog": "^3.0",
  2557. "nesbot/carbon": "^2.72.6|^3.8.4",
  2558. "nunomaduro/termwind": "^2.0",
  2559. "php": "^8.2",
  2560. "psr/container": "^1.1.1|^2.0.1",
  2561. "psr/log": "^1.0|^2.0|^3.0",
  2562. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2563. "ramsey/uuid": "^4.7",
  2564. "symfony/console": "^7.0.3",
  2565. "symfony/error-handler": "^7.0.3",
  2566. "symfony/finder": "^7.0.3",
  2567. "symfony/http-foundation": "^7.2.0",
  2568. "symfony/http-kernel": "^7.0.3",
  2569. "symfony/mailer": "^7.0.3",
  2570. "symfony/mime": "^7.0.3",
  2571. "symfony/polyfill-php83": "^1.31",
  2572. "symfony/process": "^7.0.3",
  2573. "symfony/routing": "^7.0.3",
  2574. "symfony/uid": "^7.0.3",
  2575. "symfony/var-dumper": "^7.0.3",
  2576. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2577. "vlucas/phpdotenv": "^5.6.1",
  2578. "voku/portable-ascii": "^2.0.2"
  2579. },
  2580. "conflict": {
  2581. "tightenco/collect": "<5.5.33"
  2582. },
  2583. "provide": {
  2584. "psr/container-implementation": "1.1|2.0",
  2585. "psr/log-implementation": "1.0|2.0|3.0",
  2586. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2587. },
  2588. "replace": {
  2589. "illuminate/auth": "self.version",
  2590. "illuminate/broadcasting": "self.version",
  2591. "illuminate/bus": "self.version",
  2592. "illuminate/cache": "self.version",
  2593. "illuminate/collections": "self.version",
  2594. "illuminate/concurrency": "self.version",
  2595. "illuminate/conditionable": "self.version",
  2596. "illuminate/config": "self.version",
  2597. "illuminate/console": "self.version",
  2598. "illuminate/container": "self.version",
  2599. "illuminate/contracts": "self.version",
  2600. "illuminate/cookie": "self.version",
  2601. "illuminate/database": "self.version",
  2602. "illuminate/encryption": "self.version",
  2603. "illuminate/events": "self.version",
  2604. "illuminate/filesystem": "self.version",
  2605. "illuminate/hashing": "self.version",
  2606. "illuminate/http": "self.version",
  2607. "illuminate/log": "self.version",
  2608. "illuminate/macroable": "self.version",
  2609. "illuminate/mail": "self.version",
  2610. "illuminate/notifications": "self.version",
  2611. "illuminate/pagination": "self.version",
  2612. "illuminate/pipeline": "self.version",
  2613. "illuminate/process": "self.version",
  2614. "illuminate/queue": "self.version",
  2615. "illuminate/redis": "self.version",
  2616. "illuminate/routing": "self.version",
  2617. "illuminate/session": "self.version",
  2618. "illuminate/support": "self.version",
  2619. "illuminate/testing": "self.version",
  2620. "illuminate/translation": "self.version",
  2621. "illuminate/validation": "self.version",
  2622. "illuminate/view": "self.version",
  2623. "spatie/once": "*"
  2624. },
  2625. "require-dev": {
  2626. "ably/ably-php": "^1.0",
  2627. "aws/aws-sdk-php": "^3.322.9",
  2628. "ext-gmp": "*",
  2629. "fakerphp/faker": "^1.24",
  2630. "guzzlehttp/promises": "^2.0.3",
  2631. "guzzlehttp/psr7": "^2.4",
  2632. "laravel/pint": "^1.18",
  2633. "league/flysystem-aws-s3-v3": "^3.25.1",
  2634. "league/flysystem-ftp": "^3.25.1",
  2635. "league/flysystem-path-prefixing": "^3.25.1",
  2636. "league/flysystem-read-only": "^3.25.1",
  2637. "league/flysystem-sftp-v3": "^3.25.1",
  2638. "mockery/mockery": "^1.6.10",
  2639. "orchestra/testbench-core": "^9.11.2",
  2640. "pda/pheanstalk": "^5.0.6",
  2641. "php-http/discovery": "^1.15",
  2642. "phpstan/phpstan": "^2.0",
  2643. "phpunit/phpunit": "^10.5.35|^11.3.6|^12.0.1",
  2644. "predis/predis": "^2.3",
  2645. "resend/resend-php": "^0.10.0",
  2646. "symfony/cache": "^7.0.3",
  2647. "symfony/http-client": "^7.0.3",
  2648. "symfony/psr-http-message-bridge": "^7.0.3",
  2649. "symfony/translation": "^7.0.3"
  2650. },
  2651. "suggest": {
  2652. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2653. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  2654. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  2655. "ext-apcu": "Required to use the APC cache driver.",
  2656. "ext-fileinfo": "Required to use the Filesystem class.",
  2657. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2658. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2659. "ext-memcached": "Required to use the memcache cache driver.",
  2660. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2661. "ext-pdo": "Required to use all database features.",
  2662. "ext-posix": "Required to use all features of the queue worker.",
  2663. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  2664. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2665. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2666. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2667. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  2668. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  2669. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  2670. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  2671. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  2672. "mockery/mockery": "Required to use mocking (^1.6).",
  2673. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  2674. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  2675. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.3.6|^12.0.1).",
  2676. "predis/predis": "Required to use the predis connector (^2.3).",
  2677. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2678. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2679. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  2680. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  2681. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  2682. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  2683. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  2684. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  2685. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  2686. },
  2687. "type": "library",
  2688. "extra": {
  2689. "branch-alias": {
  2690. "dev-master": "11.x-dev"
  2691. }
  2692. },
  2693. "autoload": {
  2694. "files": [
  2695. "src/Illuminate/Collections/functions.php",
  2696. "src/Illuminate/Collections/helpers.php",
  2697. "src/Illuminate/Events/functions.php",
  2698. "src/Illuminate/Filesystem/functions.php",
  2699. "src/Illuminate/Foundation/helpers.php",
  2700. "src/Illuminate/Log/functions.php",
  2701. "src/Illuminate/Support/functions.php",
  2702. "src/Illuminate/Support/helpers.php"
  2703. ],
  2704. "psr-4": {
  2705. "Illuminate\\": "src/Illuminate/",
  2706. "Illuminate\\Support\\": [
  2707. "src/Illuminate/Macroable/",
  2708. "src/Illuminate/Collections/",
  2709. "src/Illuminate/Conditionable/"
  2710. ]
  2711. }
  2712. },
  2713. "notification-url": "https://packagist.org/downloads/",
  2714. "license": [
  2715. "MIT"
  2716. ],
  2717. "authors": [
  2718. {
  2719. "name": "Taylor Otwell",
  2720. "email": "taylor@laravel.com"
  2721. }
  2722. ],
  2723. "description": "The Laravel Framework.",
  2724. "homepage": "https://laravel.com",
  2725. "keywords": [
  2726. "framework",
  2727. "laravel"
  2728. ],
  2729. "support": {
  2730. "issues": "https://github.com/laravel/framework/issues",
  2731. "source": "https://github.com/laravel/framework"
  2732. },
  2733. "time": "2025-03-12T14:34:30+00:00"
  2734. },
  2735. {
  2736. "name": "laravel/octane",
  2737. "version": "v2.8.2",
  2738. "source": {
  2739. "type": "git",
  2740. "url": "https://github.com/laravel/octane.git",
  2741. "reference": "74fef270e9f7d2dfbfd8f272de81aac839942c29"
  2742. },
  2743. "dist": {
  2744. "type": "zip",
  2745. "url": "https://api.github.com/repos/laravel/octane/zipball/74fef270e9f7d2dfbfd8f272de81aac839942c29",
  2746. "reference": "74fef270e9f7d2dfbfd8f272de81aac839942c29",
  2747. "shasum": ""
  2748. },
  2749. "require": {
  2750. "laminas/laminas-diactoros": "^3.0",
  2751. "laravel/framework": "^10.10.1|^11.0|^12.0",
  2752. "laravel/prompts": "^0.1.24|^0.2.0|^0.3.0",
  2753. "laravel/serializable-closure": "^1.3|^2.0",
  2754. "nesbot/carbon": "^2.66.0|^3.0",
  2755. "php": "^8.1.0",
  2756. "symfony/console": "^6.0|^7.0",
  2757. "symfony/psr-http-message-bridge": "^2.2.0|^6.4|^7.0"
  2758. },
  2759. "conflict": {
  2760. "spiral/roadrunner": "<2023.1.0",
  2761. "spiral/roadrunner-cli": "<2.6.0",
  2762. "spiral/roadrunner-http": "<3.3.0"
  2763. },
  2764. "require-dev": {
  2765. "guzzlehttp/guzzle": "^7.6.1",
  2766. "inertiajs/inertia-laravel": "^1.3.2|^2.0",
  2767. "laravel/scout": "^10.2.1",
  2768. "laravel/socialite": "^5.6.1",
  2769. "livewire/livewire": "^2.12.3|^3.0",
  2770. "mockery/mockery": "^1.5.1",
  2771. "nunomaduro/collision": "^6.4.0|^7.5.2|^8.0",
  2772. "orchestra/testbench": "^8.21|^9.0|^10.0",
  2773. "phpstan/phpstan": "^2.1.7",
  2774. "phpunit/phpunit": "^10.4|^11.5",
  2775. "spiral/roadrunner-cli": "^2.6.0",
  2776. "spiral/roadrunner-http": "^3.3.0"
  2777. },
  2778. "bin": [
  2779. "bin/roadrunner-worker",
  2780. "bin/swoole-server"
  2781. ],
  2782. "type": "library",
  2783. "extra": {
  2784. "laravel": {
  2785. "aliases": {
  2786. "Octane": "Laravel\\Octane\\Facades\\Octane"
  2787. },
  2788. "providers": [
  2789. "Laravel\\Octane\\OctaneServiceProvider"
  2790. ]
  2791. },
  2792. "branch-alias": {
  2793. "dev-master": "2.x-dev"
  2794. }
  2795. },
  2796. "autoload": {
  2797. "psr-4": {
  2798. "Laravel\\Octane\\": "src"
  2799. }
  2800. },
  2801. "notification-url": "https://packagist.org/downloads/",
  2802. "license": [
  2803. "MIT"
  2804. ],
  2805. "authors": [
  2806. {
  2807. "name": "Taylor Otwell",
  2808. "email": "taylor@laravel.com"
  2809. }
  2810. ],
  2811. "description": "Supercharge your Laravel application's performance.",
  2812. "keywords": [
  2813. "frankenphp",
  2814. "laravel",
  2815. "octane",
  2816. "roadrunner",
  2817. "swoole"
  2818. ],
  2819. "support": {
  2820. "issues": "https://github.com/laravel/octane/issues",
  2821. "source": "https://github.com/laravel/octane"
  2822. },
  2823. "time": "2025-03-12T14:26:35+00:00"
  2824. },
  2825. {
  2826. "name": "laravel/prompts",
  2827. "version": "v0.3.5",
  2828. "source": {
  2829. "type": "git",
  2830. "url": "https://github.com/laravel/prompts.git",
  2831. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1"
  2832. },
  2833. "dist": {
  2834. "type": "zip",
  2835. "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1",
  2836. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1",
  2837. "shasum": ""
  2838. },
  2839. "require": {
  2840. "composer-runtime-api": "^2.2",
  2841. "ext-mbstring": "*",
  2842. "php": "^8.1",
  2843. "symfony/console": "^6.2|^7.0"
  2844. },
  2845. "conflict": {
  2846. "illuminate/console": ">=10.17.0 <10.25.0",
  2847. "laravel/framework": ">=10.17.0 <10.25.0"
  2848. },
  2849. "require-dev": {
  2850. "illuminate/collections": "^10.0|^11.0|^12.0",
  2851. "mockery/mockery": "^1.5",
  2852. "pestphp/pest": "^2.3|^3.4",
  2853. "phpstan/phpstan": "^1.11",
  2854. "phpstan/phpstan-mockery": "^1.1"
  2855. },
  2856. "suggest": {
  2857. "ext-pcntl": "Required for the spinner to be animated."
  2858. },
  2859. "type": "library",
  2860. "extra": {
  2861. "branch-alias": {
  2862. "dev-main": "0.3.x-dev"
  2863. }
  2864. },
  2865. "autoload": {
  2866. "files": [
  2867. "src/helpers.php"
  2868. ],
  2869. "psr-4": {
  2870. "Laravel\\Prompts\\": "src/"
  2871. }
  2872. },
  2873. "notification-url": "https://packagist.org/downloads/",
  2874. "license": [
  2875. "MIT"
  2876. ],
  2877. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  2878. "support": {
  2879. "issues": "https://github.com/laravel/prompts/issues",
  2880. "source": "https://github.com/laravel/prompts/tree/v0.3.5"
  2881. },
  2882. "time": "2025-02-11T13:34:40+00:00"
  2883. },
  2884. {
  2885. "name": "laravel/sanctum",
  2886. "version": "v4.0.8",
  2887. "source": {
  2888. "type": "git",
  2889. "url": "https://github.com/laravel/sanctum.git",
  2890. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c"
  2891. },
  2892. "dist": {
  2893. "type": "zip",
  2894. "url": "https://api.github.com/repos/laravel/sanctum/zipball/ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  2895. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  2896. "shasum": ""
  2897. },
  2898. "require": {
  2899. "ext-json": "*",
  2900. "illuminate/console": "^11.0|^12.0",
  2901. "illuminate/contracts": "^11.0|^12.0",
  2902. "illuminate/database": "^11.0|^12.0",
  2903. "illuminate/support": "^11.0|^12.0",
  2904. "php": "^8.2",
  2905. "symfony/console": "^7.0"
  2906. },
  2907. "require-dev": {
  2908. "mockery/mockery": "^1.6",
  2909. "orchestra/testbench": "^9.0|^10.0",
  2910. "phpstan/phpstan": "^1.10",
  2911. "phpunit/phpunit": "^11.3"
  2912. },
  2913. "type": "library",
  2914. "extra": {
  2915. "laravel": {
  2916. "providers": [
  2917. "Laravel\\Sanctum\\SanctumServiceProvider"
  2918. ]
  2919. }
  2920. },
  2921. "autoload": {
  2922. "psr-4": {
  2923. "Laravel\\Sanctum\\": "src/"
  2924. }
  2925. },
  2926. "notification-url": "https://packagist.org/downloads/",
  2927. "license": [
  2928. "MIT"
  2929. ],
  2930. "authors": [
  2931. {
  2932. "name": "Taylor Otwell",
  2933. "email": "taylor@laravel.com"
  2934. }
  2935. ],
  2936. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2937. "keywords": [
  2938. "auth",
  2939. "laravel",
  2940. "sanctum"
  2941. ],
  2942. "support": {
  2943. "issues": "https://github.com/laravel/sanctum/issues",
  2944. "source": "https://github.com/laravel/sanctum"
  2945. },
  2946. "time": "2025-01-26T19:34:36+00:00"
  2947. },
  2948. {
  2949. "name": "laravel/serializable-closure",
  2950. "version": "v2.0.3",
  2951. "source": {
  2952. "type": "git",
  2953. "url": "https://github.com/laravel/serializable-closure.git",
  2954. "reference": "f379c13663245f7aa4512a7869f62eb14095f23f"
  2955. },
  2956. "dist": {
  2957. "type": "zip",
  2958. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f379c13663245f7aa4512a7869f62eb14095f23f",
  2959. "reference": "f379c13663245f7aa4512a7869f62eb14095f23f",
  2960. "shasum": ""
  2961. },
  2962. "require": {
  2963. "php": "^8.1"
  2964. },
  2965. "require-dev": {
  2966. "illuminate/support": "^10.0|^11.0|^12.0",
  2967. "nesbot/carbon": "^2.67|^3.0",
  2968. "pestphp/pest": "^2.36|^3.0",
  2969. "phpstan/phpstan": "^2.0",
  2970. "symfony/var-dumper": "^6.2.0|^7.0.0"
  2971. },
  2972. "type": "library",
  2973. "extra": {
  2974. "branch-alias": {
  2975. "dev-master": "2.x-dev"
  2976. }
  2977. },
  2978. "autoload": {
  2979. "psr-4": {
  2980. "Laravel\\SerializableClosure\\": "src/"
  2981. }
  2982. },
  2983. "notification-url": "https://packagist.org/downloads/",
  2984. "license": [
  2985. "MIT"
  2986. ],
  2987. "authors": [
  2988. {
  2989. "name": "Taylor Otwell",
  2990. "email": "taylor@laravel.com"
  2991. },
  2992. {
  2993. "name": "Nuno Maduro",
  2994. "email": "nuno@laravel.com"
  2995. }
  2996. ],
  2997. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2998. "keywords": [
  2999. "closure",
  3000. "laravel",
  3001. "serializable"
  3002. ],
  3003. "support": {
  3004. "issues": "https://github.com/laravel/serializable-closure/issues",
  3005. "source": "https://github.com/laravel/serializable-closure"
  3006. },
  3007. "time": "2025-02-11T15:03:05+00:00"
  3008. },
  3009. {
  3010. "name": "laravel/socialite",
  3011. "version": "v5.18.0",
  3012. "source": {
  3013. "type": "git",
  3014. "url": "https://github.com/laravel/socialite.git",
  3015. "reference": "7809dc71250e074cd42970f0f803f2cddc04c5de"
  3016. },
  3017. "dist": {
  3018. "type": "zip",
  3019. "url": "https://api.github.com/repos/laravel/socialite/zipball/7809dc71250e074cd42970f0f803f2cddc04c5de",
  3020. "reference": "7809dc71250e074cd42970f0f803f2cddc04c5de",
  3021. "shasum": ""
  3022. },
  3023. "require": {
  3024. "ext-json": "*",
  3025. "firebase/php-jwt": "^6.4",
  3026. "guzzlehttp/guzzle": "^6.0|^7.0",
  3027. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3028. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3029. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3030. "league/oauth1-client": "^1.11",
  3031. "php": "^7.2|^8.0",
  3032. "phpseclib/phpseclib": "^3.0"
  3033. },
  3034. "require-dev": {
  3035. "mockery/mockery": "^1.0",
  3036. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  3037. "phpstan/phpstan": "^1.10",
  3038. "phpunit/phpunit": "^8.0|^9.3|^10.4|^11.5"
  3039. },
  3040. "type": "library",
  3041. "extra": {
  3042. "laravel": {
  3043. "aliases": {
  3044. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3045. },
  3046. "providers": [
  3047. "Laravel\\Socialite\\SocialiteServiceProvider"
  3048. ]
  3049. },
  3050. "branch-alias": {
  3051. "dev-master": "5.x-dev"
  3052. }
  3053. },
  3054. "autoload": {
  3055. "psr-4": {
  3056. "Laravel\\Socialite\\": "src/"
  3057. }
  3058. },
  3059. "notification-url": "https://packagist.org/downloads/",
  3060. "license": [
  3061. "MIT"
  3062. ],
  3063. "authors": [
  3064. {
  3065. "name": "Taylor Otwell",
  3066. "email": "taylor@laravel.com"
  3067. }
  3068. ],
  3069. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3070. "homepage": "https://laravel.com",
  3071. "keywords": [
  3072. "laravel",
  3073. "oauth"
  3074. ],
  3075. "support": {
  3076. "issues": "https://github.com/laravel/socialite/issues",
  3077. "source": "https://github.com/laravel/socialite"
  3078. },
  3079. "time": "2025-02-11T13:38:19+00:00"
  3080. },
  3081. {
  3082. "name": "laravel/tinker",
  3083. "version": "v2.10.1",
  3084. "source": {
  3085. "type": "git",
  3086. "url": "https://github.com/laravel/tinker.git",
  3087. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
  3088. },
  3089. "dist": {
  3090. "type": "zip",
  3091. "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
  3092. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
  3093. "shasum": ""
  3094. },
  3095. "require": {
  3096. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3097. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3098. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3099. "php": "^7.2.5|^8.0",
  3100. "psy/psysh": "^0.11.1|^0.12.0",
  3101. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3102. },
  3103. "require-dev": {
  3104. "mockery/mockery": "~1.3.3|^1.4.2",
  3105. "phpstan/phpstan": "^1.10",
  3106. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  3107. },
  3108. "suggest": {
  3109. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  3110. },
  3111. "type": "library",
  3112. "extra": {
  3113. "laravel": {
  3114. "providers": [
  3115. "Laravel\\Tinker\\TinkerServiceProvider"
  3116. ]
  3117. }
  3118. },
  3119. "autoload": {
  3120. "psr-4": {
  3121. "Laravel\\Tinker\\": "src/"
  3122. }
  3123. },
  3124. "notification-url": "https://packagist.org/downloads/",
  3125. "license": [
  3126. "MIT"
  3127. ],
  3128. "authors": [
  3129. {
  3130. "name": "Taylor Otwell",
  3131. "email": "taylor@laravel.com"
  3132. }
  3133. ],
  3134. "description": "Powerful REPL for the Laravel framework.",
  3135. "keywords": [
  3136. "REPL",
  3137. "Tinker",
  3138. "laravel",
  3139. "psysh"
  3140. ],
  3141. "support": {
  3142. "issues": "https://github.com/laravel/tinker/issues",
  3143. "source": "https://github.com/laravel/tinker/tree/v2.10.1"
  3144. },
  3145. "time": "2025-01-27T14:24:01+00:00"
  3146. },
  3147. {
  3148. "name": "laravel/ui",
  3149. "version": "v4.6.1",
  3150. "source": {
  3151. "type": "git",
  3152. "url": "https://github.com/laravel/ui.git",
  3153. "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88"
  3154. },
  3155. "dist": {
  3156. "type": "zip",
  3157. "url": "https://api.github.com/repos/laravel/ui/zipball/7d6ffa38d79f19c9b3e70a751a9af845e8f41d88",
  3158. "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88",
  3159. "shasum": ""
  3160. },
  3161. "require": {
  3162. "illuminate/console": "^9.21|^10.0|^11.0|^12.0",
  3163. "illuminate/filesystem": "^9.21|^10.0|^11.0|^12.0",
  3164. "illuminate/support": "^9.21|^10.0|^11.0|^12.0",
  3165. "illuminate/validation": "^9.21|^10.0|^11.0|^12.0",
  3166. "php": "^8.0",
  3167. "symfony/console": "^6.0|^7.0"
  3168. },
  3169. "require-dev": {
  3170. "orchestra/testbench": "^7.35|^8.15|^9.0|^10.0",
  3171. "phpunit/phpunit": "^9.3|^10.4|^11.5"
  3172. },
  3173. "type": "library",
  3174. "extra": {
  3175. "laravel": {
  3176. "providers": [
  3177. "Laravel\\Ui\\UiServiceProvider"
  3178. ]
  3179. },
  3180. "branch-alias": {
  3181. "dev-master": "4.x-dev"
  3182. }
  3183. },
  3184. "autoload": {
  3185. "psr-4": {
  3186. "Laravel\\Ui\\": "src/",
  3187. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  3188. }
  3189. },
  3190. "notification-url": "https://packagist.org/downloads/",
  3191. "license": [
  3192. "MIT"
  3193. ],
  3194. "authors": [
  3195. {
  3196. "name": "Taylor Otwell",
  3197. "email": "taylor@laravel.com"
  3198. }
  3199. ],
  3200. "description": "Laravel UI utilities and presets.",
  3201. "keywords": [
  3202. "laravel",
  3203. "ui"
  3204. ],
  3205. "support": {
  3206. "source": "https://github.com/laravel/ui/tree/v4.6.1"
  3207. },
  3208. "time": "2025-01-28T15:15:29+00:00"
  3209. },
  3210. {
  3211. "name": "league/commonmark",
  3212. "version": "2.7.0",
  3213. "source": {
  3214. "type": "git",
  3215. "url": "https://github.com/thephpleague/commonmark.git",
  3216. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405"
  3217. },
  3218. "dist": {
  3219. "type": "zip",
  3220. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  3221. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  3222. "shasum": ""
  3223. },
  3224. "require": {
  3225. "ext-mbstring": "*",
  3226. "league/config": "^1.1.1",
  3227. "php": "^7.4 || ^8.0",
  3228. "psr/event-dispatcher": "^1.0",
  3229. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3230. "symfony/polyfill-php80": "^1.16"
  3231. },
  3232. "require-dev": {
  3233. "cebe/markdown": "^1.0",
  3234. "commonmark/cmark": "0.31.1",
  3235. "commonmark/commonmark.js": "0.31.1",
  3236. "composer/package-versions-deprecated": "^1.8",
  3237. "embed/embed": "^4.4",
  3238. "erusev/parsedown": "^1.0",
  3239. "ext-json": "*",
  3240. "github/gfm": "0.29.0",
  3241. "michelf/php-markdown": "^1.4 || ^2.0",
  3242. "nyholm/psr7": "^1.5",
  3243. "phpstan/phpstan": "^1.8.2",
  3244. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3245. "scrutinizer/ocular": "^1.8.1",
  3246. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  3247. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  3248. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  3249. "unleashedtech/php-coding-standard": "^3.1.1",
  3250. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3251. },
  3252. "suggest": {
  3253. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3254. },
  3255. "type": "library",
  3256. "extra": {
  3257. "branch-alias": {
  3258. "dev-main": "2.8-dev"
  3259. }
  3260. },
  3261. "autoload": {
  3262. "psr-4": {
  3263. "League\\CommonMark\\": "src"
  3264. }
  3265. },
  3266. "notification-url": "https://packagist.org/downloads/",
  3267. "license": [
  3268. "BSD-3-Clause"
  3269. ],
  3270. "authors": [
  3271. {
  3272. "name": "Colin O'Dell",
  3273. "email": "colinodell@gmail.com",
  3274. "homepage": "https://www.colinodell.com",
  3275. "role": "Lead Developer"
  3276. }
  3277. ],
  3278. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3279. "homepage": "https://commonmark.thephpleague.com",
  3280. "keywords": [
  3281. "commonmark",
  3282. "flavored",
  3283. "gfm",
  3284. "github",
  3285. "github-flavored",
  3286. "markdown",
  3287. "md",
  3288. "parser"
  3289. ],
  3290. "support": {
  3291. "docs": "https://commonmark.thephpleague.com/",
  3292. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3293. "issues": "https://github.com/thephpleague/commonmark/issues",
  3294. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3295. "source": "https://github.com/thephpleague/commonmark"
  3296. },
  3297. "funding": [
  3298. {
  3299. "url": "https://www.colinodell.com/sponsor",
  3300. "type": "custom"
  3301. },
  3302. {
  3303. "url": "https://www.paypal.me/colinpodell/10.00",
  3304. "type": "custom"
  3305. },
  3306. {
  3307. "url": "https://github.com/colinodell",
  3308. "type": "github"
  3309. },
  3310. {
  3311. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3312. "type": "tidelift"
  3313. }
  3314. ],
  3315. "time": "2025-05-05T12:20:28+00:00"
  3316. },
  3317. {
  3318. "name": "league/config",
  3319. "version": "v1.2.0",
  3320. "source": {
  3321. "type": "git",
  3322. "url": "https://github.com/thephpleague/config.git",
  3323. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3324. },
  3325. "dist": {
  3326. "type": "zip",
  3327. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3328. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3329. "shasum": ""
  3330. },
  3331. "require": {
  3332. "dflydev/dot-access-data": "^3.0.1",
  3333. "nette/schema": "^1.2",
  3334. "php": "^7.4 || ^8.0"
  3335. },
  3336. "require-dev": {
  3337. "phpstan/phpstan": "^1.8.2",
  3338. "phpunit/phpunit": "^9.5.5",
  3339. "scrutinizer/ocular": "^1.8.1",
  3340. "unleashedtech/php-coding-standard": "^3.1",
  3341. "vimeo/psalm": "^4.7.3"
  3342. },
  3343. "type": "library",
  3344. "extra": {
  3345. "branch-alias": {
  3346. "dev-main": "1.2-dev"
  3347. }
  3348. },
  3349. "autoload": {
  3350. "psr-4": {
  3351. "League\\Config\\": "src"
  3352. }
  3353. },
  3354. "notification-url": "https://packagist.org/downloads/",
  3355. "license": [
  3356. "BSD-3-Clause"
  3357. ],
  3358. "authors": [
  3359. {
  3360. "name": "Colin O'Dell",
  3361. "email": "colinodell@gmail.com",
  3362. "homepage": "https://www.colinodell.com",
  3363. "role": "Lead Developer"
  3364. }
  3365. ],
  3366. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3367. "homepage": "https://config.thephpleague.com",
  3368. "keywords": [
  3369. "array",
  3370. "config",
  3371. "configuration",
  3372. "dot",
  3373. "dot-access",
  3374. "nested",
  3375. "schema"
  3376. ],
  3377. "support": {
  3378. "docs": "https://config.thephpleague.com/",
  3379. "issues": "https://github.com/thephpleague/config/issues",
  3380. "rss": "https://github.com/thephpleague/config/releases.atom",
  3381. "source": "https://github.com/thephpleague/config"
  3382. },
  3383. "funding": [
  3384. {
  3385. "url": "https://www.colinodell.com/sponsor",
  3386. "type": "custom"
  3387. },
  3388. {
  3389. "url": "https://www.paypal.me/colinpodell/10.00",
  3390. "type": "custom"
  3391. },
  3392. {
  3393. "url": "https://github.com/colinodell",
  3394. "type": "github"
  3395. }
  3396. ],
  3397. "time": "2022-12-11T20:36:23+00:00"
  3398. },
  3399. {
  3400. "name": "league/flysystem",
  3401. "version": "3.29.1",
  3402. "source": {
  3403. "type": "git",
  3404. "url": "https://github.com/thephpleague/flysystem.git",
  3405. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  3406. },
  3407. "dist": {
  3408. "type": "zip",
  3409. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3410. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3411. "shasum": ""
  3412. },
  3413. "require": {
  3414. "league/flysystem-local": "^3.0.0",
  3415. "league/mime-type-detection": "^1.0.0",
  3416. "php": "^8.0.2"
  3417. },
  3418. "conflict": {
  3419. "async-aws/core": "<1.19.0",
  3420. "async-aws/s3": "<1.14.0",
  3421. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3422. "guzzlehttp/guzzle": "<7.0",
  3423. "guzzlehttp/ringphp": "<1.1.1",
  3424. "phpseclib/phpseclib": "3.0.15",
  3425. "symfony/http-client": "<5.2"
  3426. },
  3427. "require-dev": {
  3428. "async-aws/s3": "^1.5 || ^2.0",
  3429. "async-aws/simple-s3": "^1.1 || ^2.0",
  3430. "aws/aws-sdk-php": "^3.295.10",
  3431. "composer/semver": "^3.0",
  3432. "ext-fileinfo": "*",
  3433. "ext-ftp": "*",
  3434. "ext-mongodb": "^1.3",
  3435. "ext-zip": "*",
  3436. "friendsofphp/php-cs-fixer": "^3.5",
  3437. "google/cloud-storage": "^1.23",
  3438. "guzzlehttp/psr7": "^2.6",
  3439. "microsoft/azure-storage-blob": "^1.1",
  3440. "mongodb/mongodb": "^1.2",
  3441. "phpseclib/phpseclib": "^3.0.36",
  3442. "phpstan/phpstan": "^1.10",
  3443. "phpunit/phpunit": "^9.5.11|^10.0",
  3444. "sabre/dav": "^4.6.0"
  3445. },
  3446. "type": "library",
  3447. "autoload": {
  3448. "psr-4": {
  3449. "League\\Flysystem\\": "src"
  3450. }
  3451. },
  3452. "notification-url": "https://packagist.org/downloads/",
  3453. "license": [
  3454. "MIT"
  3455. ],
  3456. "authors": [
  3457. {
  3458. "name": "Frank de Jonge",
  3459. "email": "info@frankdejonge.nl"
  3460. }
  3461. ],
  3462. "description": "File storage abstraction for PHP",
  3463. "keywords": [
  3464. "WebDAV",
  3465. "aws",
  3466. "cloud",
  3467. "file",
  3468. "files",
  3469. "filesystem",
  3470. "filesystems",
  3471. "ftp",
  3472. "s3",
  3473. "sftp",
  3474. "storage"
  3475. ],
  3476. "support": {
  3477. "issues": "https://github.com/thephpleague/flysystem/issues",
  3478. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  3479. },
  3480. "time": "2024-10-08T08:58:34+00:00"
  3481. },
  3482. {
  3483. "name": "league/flysystem-local",
  3484. "version": "3.29.0",
  3485. "source": {
  3486. "type": "git",
  3487. "url": "https://github.com/thephpleague/flysystem-local.git",
  3488. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  3489. },
  3490. "dist": {
  3491. "type": "zip",
  3492. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3493. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3494. "shasum": ""
  3495. },
  3496. "require": {
  3497. "ext-fileinfo": "*",
  3498. "league/flysystem": "^3.0.0",
  3499. "league/mime-type-detection": "^1.0.0",
  3500. "php": "^8.0.2"
  3501. },
  3502. "type": "library",
  3503. "autoload": {
  3504. "psr-4": {
  3505. "League\\Flysystem\\Local\\": ""
  3506. }
  3507. },
  3508. "notification-url": "https://packagist.org/downloads/",
  3509. "license": [
  3510. "MIT"
  3511. ],
  3512. "authors": [
  3513. {
  3514. "name": "Frank de Jonge",
  3515. "email": "info@frankdejonge.nl"
  3516. }
  3517. ],
  3518. "description": "Local filesystem adapter for Flysystem.",
  3519. "keywords": [
  3520. "Flysystem",
  3521. "file",
  3522. "files",
  3523. "filesystem",
  3524. "local"
  3525. ],
  3526. "support": {
  3527. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  3528. },
  3529. "time": "2024-08-09T21:24:39+00:00"
  3530. },
  3531. {
  3532. "name": "league/mime-type-detection",
  3533. "version": "1.16.0",
  3534. "source": {
  3535. "type": "git",
  3536. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3537. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  3538. },
  3539. "dist": {
  3540. "type": "zip",
  3541. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  3542. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  3543. "shasum": ""
  3544. },
  3545. "require": {
  3546. "ext-fileinfo": "*",
  3547. "php": "^7.4 || ^8.0"
  3548. },
  3549. "require-dev": {
  3550. "friendsofphp/php-cs-fixer": "^3.2",
  3551. "phpstan/phpstan": "^0.12.68",
  3552. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3553. },
  3554. "type": "library",
  3555. "autoload": {
  3556. "psr-4": {
  3557. "League\\MimeTypeDetection\\": "src"
  3558. }
  3559. },
  3560. "notification-url": "https://packagist.org/downloads/",
  3561. "license": [
  3562. "MIT"
  3563. ],
  3564. "authors": [
  3565. {
  3566. "name": "Frank de Jonge",
  3567. "email": "info@frankdejonge.nl"
  3568. }
  3569. ],
  3570. "description": "Mime-type detection for Flysystem",
  3571. "support": {
  3572. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3573. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  3574. },
  3575. "funding": [
  3576. {
  3577. "url": "https://github.com/frankdejonge",
  3578. "type": "github"
  3579. },
  3580. {
  3581. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3582. "type": "tidelift"
  3583. }
  3584. ],
  3585. "time": "2024-09-21T08:32:55+00:00"
  3586. },
  3587. {
  3588. "name": "league/oauth1-client",
  3589. "version": "v1.11.0",
  3590. "source": {
  3591. "type": "git",
  3592. "url": "https://github.com/thephpleague/oauth1-client.git",
  3593. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055"
  3594. },
  3595. "dist": {
  3596. "type": "zip",
  3597. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  3598. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  3599. "shasum": ""
  3600. },
  3601. "require": {
  3602. "ext-json": "*",
  3603. "ext-openssl": "*",
  3604. "guzzlehttp/guzzle": "^6.0|^7.0",
  3605. "guzzlehttp/psr7": "^1.7|^2.0",
  3606. "php": ">=7.1||>=8.0"
  3607. },
  3608. "require-dev": {
  3609. "ext-simplexml": "*",
  3610. "friendsofphp/php-cs-fixer": "^2.17",
  3611. "mockery/mockery": "^1.3.3",
  3612. "phpstan/phpstan": "^0.12.42",
  3613. "phpunit/phpunit": "^7.5||9.5"
  3614. },
  3615. "suggest": {
  3616. "ext-simplexml": "For decoding XML-based responses."
  3617. },
  3618. "type": "library",
  3619. "extra": {
  3620. "branch-alias": {
  3621. "dev-master": "1.0-dev",
  3622. "dev-develop": "2.0-dev"
  3623. }
  3624. },
  3625. "autoload": {
  3626. "psr-4": {
  3627. "League\\OAuth1\\Client\\": "src/"
  3628. }
  3629. },
  3630. "notification-url": "https://packagist.org/downloads/",
  3631. "license": [
  3632. "MIT"
  3633. ],
  3634. "authors": [
  3635. {
  3636. "name": "Ben Corlett",
  3637. "email": "bencorlett@me.com",
  3638. "homepage": "http://www.webcomm.com.au",
  3639. "role": "Developer"
  3640. }
  3641. ],
  3642. "description": "OAuth 1.0 Client Library",
  3643. "keywords": [
  3644. "Authentication",
  3645. "SSO",
  3646. "authorization",
  3647. "bitbucket",
  3648. "identity",
  3649. "idp",
  3650. "oauth",
  3651. "oauth1",
  3652. "single sign on",
  3653. "trello",
  3654. "tumblr",
  3655. "twitter"
  3656. ],
  3657. "support": {
  3658. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  3659. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.11.0"
  3660. },
  3661. "time": "2024-12-10T19:59:05+00:00"
  3662. },
  3663. {
  3664. "name": "league/uri",
  3665. "version": "7.5.1",
  3666. "source": {
  3667. "type": "git",
  3668. "url": "https://github.com/thephpleague/uri.git",
  3669. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  3670. },
  3671. "dist": {
  3672. "type": "zip",
  3673. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  3674. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  3675. "shasum": ""
  3676. },
  3677. "require": {
  3678. "league/uri-interfaces": "^7.5",
  3679. "php": "^8.1"
  3680. },
  3681. "conflict": {
  3682. "league/uri-schemes": "^1.0"
  3683. },
  3684. "suggest": {
  3685. "ext-bcmath": "to improve IPV4 host parsing",
  3686. "ext-fileinfo": "to create Data URI from file contennts",
  3687. "ext-gmp": "to improve IPV4 host parsing",
  3688. "ext-intl": "to handle IDN host with the best performance",
  3689. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  3690. "league/uri-components": "Needed to easily manipulate URI objects components",
  3691. "php-64bit": "to improve IPV4 host parsing",
  3692. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3693. },
  3694. "type": "library",
  3695. "extra": {
  3696. "branch-alias": {
  3697. "dev-master": "7.x-dev"
  3698. }
  3699. },
  3700. "autoload": {
  3701. "psr-4": {
  3702. "League\\Uri\\": ""
  3703. }
  3704. },
  3705. "notification-url": "https://packagist.org/downloads/",
  3706. "license": [
  3707. "MIT"
  3708. ],
  3709. "authors": [
  3710. {
  3711. "name": "Ignace Nyamagana Butera",
  3712. "email": "nyamsprod@gmail.com",
  3713. "homepage": "https://nyamsprod.com"
  3714. }
  3715. ],
  3716. "description": "URI manipulation library",
  3717. "homepage": "https://uri.thephpleague.com",
  3718. "keywords": [
  3719. "data-uri",
  3720. "file-uri",
  3721. "ftp",
  3722. "hostname",
  3723. "http",
  3724. "https",
  3725. "middleware",
  3726. "parse_str",
  3727. "parse_url",
  3728. "psr-7",
  3729. "query-string",
  3730. "querystring",
  3731. "rfc3986",
  3732. "rfc3987",
  3733. "rfc6570",
  3734. "uri",
  3735. "uri-template",
  3736. "url",
  3737. "ws"
  3738. ],
  3739. "support": {
  3740. "docs": "https://uri.thephpleague.com",
  3741. "forum": "https://thephpleague.slack.com",
  3742. "issues": "https://github.com/thephpleague/uri-src/issues",
  3743. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  3744. },
  3745. "funding": [
  3746. {
  3747. "url": "https://github.com/sponsors/nyamsprod",
  3748. "type": "github"
  3749. }
  3750. ],
  3751. "time": "2024-12-08T08:40:02+00:00"
  3752. },
  3753. {
  3754. "name": "league/uri-interfaces",
  3755. "version": "7.5.0",
  3756. "source": {
  3757. "type": "git",
  3758. "url": "https://github.com/thephpleague/uri-interfaces.git",
  3759. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  3760. },
  3761. "dist": {
  3762. "type": "zip",
  3763. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  3764. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  3765. "shasum": ""
  3766. },
  3767. "require": {
  3768. "ext-filter": "*",
  3769. "php": "^8.1",
  3770. "psr/http-factory": "^1",
  3771. "psr/http-message": "^1.1 || ^2.0"
  3772. },
  3773. "suggest": {
  3774. "ext-bcmath": "to improve IPV4 host parsing",
  3775. "ext-gmp": "to improve IPV4 host parsing",
  3776. "ext-intl": "to handle IDN host with the best performance",
  3777. "php-64bit": "to improve IPV4 host parsing",
  3778. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3779. },
  3780. "type": "library",
  3781. "extra": {
  3782. "branch-alias": {
  3783. "dev-master": "7.x-dev"
  3784. }
  3785. },
  3786. "autoload": {
  3787. "psr-4": {
  3788. "League\\Uri\\": ""
  3789. }
  3790. },
  3791. "notification-url": "https://packagist.org/downloads/",
  3792. "license": [
  3793. "MIT"
  3794. ],
  3795. "authors": [
  3796. {
  3797. "name": "Ignace Nyamagana Butera",
  3798. "email": "nyamsprod@gmail.com",
  3799. "homepage": "https://nyamsprod.com"
  3800. }
  3801. ],
  3802. "description": "Common interfaces and classes for URI representation and interaction",
  3803. "homepage": "https://uri.thephpleague.com",
  3804. "keywords": [
  3805. "data-uri",
  3806. "file-uri",
  3807. "ftp",
  3808. "hostname",
  3809. "http",
  3810. "https",
  3811. "parse_str",
  3812. "parse_url",
  3813. "psr-7",
  3814. "query-string",
  3815. "querystring",
  3816. "rfc3986",
  3817. "rfc3987",
  3818. "rfc6570",
  3819. "uri",
  3820. "url",
  3821. "ws"
  3822. ],
  3823. "support": {
  3824. "docs": "https://uri.thephpleague.com",
  3825. "forum": "https://thephpleague.slack.com",
  3826. "issues": "https://github.com/thephpleague/uri-src/issues",
  3827. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  3828. },
  3829. "funding": [
  3830. {
  3831. "url": "https://github.com/sponsors/nyamsprod",
  3832. "type": "github"
  3833. }
  3834. ],
  3835. "time": "2024-12-08T08:18:47+00:00"
  3836. },
  3837. {
  3838. "name": "maatwebsite/excel",
  3839. "version": "3.1.64",
  3840. "source": {
  3841. "type": "git",
  3842. "url": "https://github.com/SpartnerNL/Laravel-Excel.git",
  3843. "reference": "e25d44a2d91da9179cd2d7fec952313548597a79"
  3844. },
  3845. "dist": {
  3846. "type": "zip",
  3847. "url": "https://api.github.com/repos/SpartnerNL/Laravel-Excel/zipball/e25d44a2d91da9179cd2d7fec952313548597a79",
  3848. "reference": "e25d44a2d91da9179cd2d7fec952313548597a79",
  3849. "shasum": ""
  3850. },
  3851. "require": {
  3852. "composer/semver": "^3.3",
  3853. "ext-json": "*",
  3854. "illuminate/support": "5.8.*||^6.0||^7.0||^8.0||^9.0||^10.0||^11.0||^12.0",
  3855. "php": "^7.0||^8.0",
  3856. "phpoffice/phpspreadsheet": "^1.29.9",
  3857. "psr/simple-cache": "^1.0||^2.0||^3.0"
  3858. },
  3859. "require-dev": {
  3860. "laravel/scout": "^7.0||^8.0||^9.0||^10.0",
  3861. "orchestra/testbench": "^6.0||^7.0||^8.0||^9.0||^10.0",
  3862. "predis/predis": "^1.1"
  3863. },
  3864. "type": "library",
  3865. "extra": {
  3866. "laravel": {
  3867. "aliases": {
  3868. "Excel": "Maatwebsite\\Excel\\Facades\\Excel"
  3869. },
  3870. "providers": [
  3871. "Maatwebsite\\Excel\\ExcelServiceProvider"
  3872. ]
  3873. }
  3874. },
  3875. "autoload": {
  3876. "psr-4": {
  3877. "Maatwebsite\\Excel\\": "src/"
  3878. }
  3879. },
  3880. "notification-url": "https://packagist.org/downloads/",
  3881. "license": [
  3882. "MIT"
  3883. ],
  3884. "authors": [
  3885. {
  3886. "name": "Patrick Brouwers",
  3887. "email": "patrick@spartner.nl"
  3888. }
  3889. ],
  3890. "description": "Supercharged Excel exports and imports in Laravel",
  3891. "keywords": [
  3892. "PHPExcel",
  3893. "batch",
  3894. "csv",
  3895. "excel",
  3896. "export",
  3897. "import",
  3898. "laravel",
  3899. "php",
  3900. "phpspreadsheet"
  3901. ],
  3902. "support": {
  3903. "issues": "https://github.com/SpartnerNL/Laravel-Excel/issues",
  3904. "source": "https://github.com/SpartnerNL/Laravel-Excel/tree/3.1.64"
  3905. },
  3906. "funding": [
  3907. {
  3908. "url": "https://laravel-excel.com/commercial-support",
  3909. "type": "custom"
  3910. },
  3911. {
  3912. "url": "https://github.com/patrickbrouwers",
  3913. "type": "github"
  3914. }
  3915. ],
  3916. "time": "2025-02-24T11:12:50+00:00"
  3917. },
  3918. {
  3919. "name": "maennchen/zipstream-php",
  3920. "version": "3.1.2",
  3921. "source": {
  3922. "type": "git",
  3923. "url": "https://github.com/maennchen/ZipStream-PHP.git",
  3924. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f"
  3925. },
  3926. "dist": {
  3927. "type": "zip",
  3928. "url": "https://api.github.com/repos/maennchen/ZipStream-PHP/zipball/aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  3929. "reference": "aeadcf5c412332eb426c0f9b4485f6accba2a99f",
  3930. "shasum": ""
  3931. },
  3932. "require": {
  3933. "ext-mbstring": "*",
  3934. "ext-zlib": "*",
  3935. "php-64bit": "^8.2"
  3936. },
  3937. "require-dev": {
  3938. "brianium/paratest": "^7.7",
  3939. "ext-zip": "*",
  3940. "friendsofphp/php-cs-fixer": "^3.16",
  3941. "guzzlehttp/guzzle": "^7.5",
  3942. "mikey179/vfsstream": "^1.6",
  3943. "php-coveralls/php-coveralls": "^2.5",
  3944. "phpunit/phpunit": "^11.0",
  3945. "vimeo/psalm": "^6.0"
  3946. },
  3947. "suggest": {
  3948. "guzzlehttp/psr7": "^2.4",
  3949. "psr/http-message": "^2.0"
  3950. },
  3951. "type": "library",
  3952. "autoload": {
  3953. "psr-4": {
  3954. "ZipStream\\": "src/"
  3955. }
  3956. },
  3957. "notification-url": "https://packagist.org/downloads/",
  3958. "license": [
  3959. "MIT"
  3960. ],
  3961. "authors": [
  3962. {
  3963. "name": "Paul Duncan",
  3964. "email": "pabs@pablotron.org"
  3965. },
  3966. {
  3967. "name": "Jonatan Männchen",
  3968. "email": "jonatan@maennchen.ch"
  3969. },
  3970. {
  3971. "name": "Jesse Donat",
  3972. "email": "donatj@gmail.com"
  3973. },
  3974. {
  3975. "name": "András Kolesár",
  3976. "email": "kolesar@kolesar.hu"
  3977. }
  3978. ],
  3979. "description": "ZipStream is a library for dynamically streaming dynamic zip files from PHP without writing to the disk at all on the server.",
  3980. "keywords": [
  3981. "stream",
  3982. "zip"
  3983. ],
  3984. "support": {
  3985. "issues": "https://github.com/maennchen/ZipStream-PHP/issues",
  3986. "source": "https://github.com/maennchen/ZipStream-PHP/tree/3.1.2"
  3987. },
  3988. "funding": [
  3989. {
  3990. "url": "https://github.com/maennchen",
  3991. "type": "github"
  3992. }
  3993. ],
  3994. "time": "2025-01-27T12:07:53+00:00"
  3995. },
  3996. {
  3997. "name": "markbaker/complex",
  3998. "version": "3.0.2",
  3999. "source": {
  4000. "type": "git",
  4001. "url": "https://github.com/MarkBaker/PHPComplex.git",
  4002. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9"
  4003. },
  4004. "dist": {
  4005. "type": "zip",
  4006. "url": "https://api.github.com/repos/MarkBaker/PHPComplex/zipball/95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  4007. "reference": "95c56caa1cf5c766ad6d65b6344b807c1e8405b9",
  4008. "shasum": ""
  4009. },
  4010. "require": {
  4011. "php": "^7.2 || ^8.0"
  4012. },
  4013. "require-dev": {
  4014. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4015. "phpcompatibility/php-compatibility": "^9.3",
  4016. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  4017. "squizlabs/php_codesniffer": "^3.7"
  4018. },
  4019. "type": "library",
  4020. "autoload": {
  4021. "psr-4": {
  4022. "Complex\\": "classes/src/"
  4023. }
  4024. },
  4025. "notification-url": "https://packagist.org/downloads/",
  4026. "license": [
  4027. "MIT"
  4028. ],
  4029. "authors": [
  4030. {
  4031. "name": "Mark Baker",
  4032. "email": "mark@lange.demon.co.uk"
  4033. }
  4034. ],
  4035. "description": "PHP Class for working with complex numbers",
  4036. "homepage": "https://github.com/MarkBaker/PHPComplex",
  4037. "keywords": [
  4038. "complex",
  4039. "mathematics"
  4040. ],
  4041. "support": {
  4042. "issues": "https://github.com/MarkBaker/PHPComplex/issues",
  4043. "source": "https://github.com/MarkBaker/PHPComplex/tree/3.0.2"
  4044. },
  4045. "time": "2022-12-06T16:21:08+00:00"
  4046. },
  4047. {
  4048. "name": "markbaker/matrix",
  4049. "version": "3.0.1",
  4050. "source": {
  4051. "type": "git",
  4052. "url": "https://github.com/MarkBaker/PHPMatrix.git",
  4053. "reference": "728434227fe21be27ff6d86621a1b13107a2562c"
  4054. },
  4055. "dist": {
  4056. "type": "zip",
  4057. "url": "https://api.github.com/repos/MarkBaker/PHPMatrix/zipball/728434227fe21be27ff6d86621a1b13107a2562c",
  4058. "reference": "728434227fe21be27ff6d86621a1b13107a2562c",
  4059. "shasum": ""
  4060. },
  4061. "require": {
  4062. "php": "^7.1 || ^8.0"
  4063. },
  4064. "require-dev": {
  4065. "dealerdirect/phpcodesniffer-composer-installer": "dev-master",
  4066. "phpcompatibility/php-compatibility": "^9.3",
  4067. "phpdocumentor/phpdocumentor": "2.*",
  4068. "phploc/phploc": "^4.0",
  4069. "phpmd/phpmd": "2.*",
  4070. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0",
  4071. "sebastian/phpcpd": "^4.0",
  4072. "squizlabs/php_codesniffer": "^3.7"
  4073. },
  4074. "type": "library",
  4075. "autoload": {
  4076. "psr-4": {
  4077. "Matrix\\": "classes/src/"
  4078. }
  4079. },
  4080. "notification-url": "https://packagist.org/downloads/",
  4081. "license": [
  4082. "MIT"
  4083. ],
  4084. "authors": [
  4085. {
  4086. "name": "Mark Baker",
  4087. "email": "mark@demon-angel.eu"
  4088. }
  4089. ],
  4090. "description": "PHP Class for working with matrices",
  4091. "homepage": "https://github.com/MarkBaker/PHPMatrix",
  4092. "keywords": [
  4093. "mathematics",
  4094. "matrix",
  4095. "vector"
  4096. ],
  4097. "support": {
  4098. "issues": "https://github.com/MarkBaker/PHPMatrix/issues",
  4099. "source": "https://github.com/MarkBaker/PHPMatrix/tree/3.0.1"
  4100. },
  4101. "time": "2022-12-02T22:17:43+00:00"
  4102. },
  4103. {
  4104. "name": "masterminds/html5",
  4105. "version": "2.9.0",
  4106. "source": {
  4107. "type": "git",
  4108. "url": "https://github.com/Masterminds/html5-php.git",
  4109. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  4110. },
  4111. "dist": {
  4112. "type": "zip",
  4113. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4114. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4115. "shasum": ""
  4116. },
  4117. "require": {
  4118. "ext-dom": "*",
  4119. "php": ">=5.3.0"
  4120. },
  4121. "require-dev": {
  4122. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4123. },
  4124. "type": "library",
  4125. "extra": {
  4126. "branch-alias": {
  4127. "dev-master": "2.7-dev"
  4128. }
  4129. },
  4130. "autoload": {
  4131. "psr-4": {
  4132. "Masterminds\\": "src"
  4133. }
  4134. },
  4135. "notification-url": "https://packagist.org/downloads/",
  4136. "license": [
  4137. "MIT"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "Matt Butcher",
  4142. "email": "technosophos@gmail.com"
  4143. },
  4144. {
  4145. "name": "Matt Farina",
  4146. "email": "matt@mattfarina.com"
  4147. },
  4148. {
  4149. "name": "Asmir Mustafic",
  4150. "email": "goetas@gmail.com"
  4151. }
  4152. ],
  4153. "description": "An HTML5 parser and serializer.",
  4154. "homepage": "http://masterminds.github.io/html5-php",
  4155. "keywords": [
  4156. "HTML5",
  4157. "dom",
  4158. "html",
  4159. "parser",
  4160. "querypath",
  4161. "serializer",
  4162. "xml"
  4163. ],
  4164. "support": {
  4165. "issues": "https://github.com/Masterminds/html5-php/issues",
  4166. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  4167. },
  4168. "time": "2024-03-31T07:05:07+00:00"
  4169. },
  4170. {
  4171. "name": "mobiledetect/mobiledetectlib",
  4172. "version": "4.8.09",
  4173. "source": {
  4174. "type": "git",
  4175. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  4176. "reference": "a06fe2e546a06bb8c2639d6823d5250b2efb3209"
  4177. },
  4178. "dist": {
  4179. "type": "zip",
  4180. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/a06fe2e546a06bb8c2639d6823d5250b2efb3209",
  4181. "reference": "a06fe2e546a06bb8c2639d6823d5250b2efb3209",
  4182. "shasum": ""
  4183. },
  4184. "require": {
  4185. "php": ">=8.0",
  4186. "psr/cache": "^3.0",
  4187. "psr/simple-cache": "^3"
  4188. },
  4189. "require-dev": {
  4190. "friendsofphp/php-cs-fixer": "^v3.65.0",
  4191. "phpbench/phpbench": "^1.2",
  4192. "phpstan/phpstan": "^1.12.x-dev",
  4193. "phpunit/phpunit": "^9.6.18",
  4194. "squizlabs/php_codesniffer": "^3.11.1"
  4195. },
  4196. "type": "library",
  4197. "autoload": {
  4198. "psr-4": {
  4199. "Detection\\": "src/"
  4200. }
  4201. },
  4202. "notification-url": "https://packagist.org/downloads/",
  4203. "license": [
  4204. "MIT"
  4205. ],
  4206. "authors": [
  4207. {
  4208. "name": "Serban Ghita",
  4209. "email": "serbanghita@gmail.com",
  4210. "homepage": "http://mobiledetect.net",
  4211. "role": "Developer"
  4212. }
  4213. ],
  4214. "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.",
  4215. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  4216. "keywords": [
  4217. "detect mobile devices",
  4218. "mobile",
  4219. "mobile detect",
  4220. "mobile detector",
  4221. "php mobile detect"
  4222. ],
  4223. "support": {
  4224. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  4225. "source": "https://github.com/serbanghita/Mobile-Detect/tree/4.8.09"
  4226. },
  4227. "funding": [
  4228. {
  4229. "url": "https://github.com/serbanghita",
  4230. "type": "github"
  4231. }
  4232. ],
  4233. "time": "2024-12-10T15:32:06+00:00"
  4234. },
  4235. {
  4236. "name": "monolog/monolog",
  4237. "version": "3.8.1",
  4238. "source": {
  4239. "type": "git",
  4240. "url": "https://github.com/Seldaek/monolog.git",
  4241. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  4242. },
  4243. "dist": {
  4244. "type": "zip",
  4245. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4246. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4247. "shasum": ""
  4248. },
  4249. "require": {
  4250. "php": ">=8.1",
  4251. "psr/log": "^2.0 || ^3.0"
  4252. },
  4253. "provide": {
  4254. "psr/log-implementation": "3.0.0"
  4255. },
  4256. "require-dev": {
  4257. "aws/aws-sdk-php": "^3.0",
  4258. "doctrine/couchdb": "~1.0@dev",
  4259. "elasticsearch/elasticsearch": "^7 || ^8",
  4260. "ext-json": "*",
  4261. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4262. "guzzlehttp/guzzle": "^7.4.5",
  4263. "guzzlehttp/psr7": "^2.2",
  4264. "mongodb/mongodb": "^1.8",
  4265. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4266. "php-console/php-console": "^3.1.8",
  4267. "phpstan/phpstan": "^2",
  4268. "phpstan/phpstan-deprecation-rules": "^2",
  4269. "phpstan/phpstan-strict-rules": "^2",
  4270. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4271. "predis/predis": "^1.1 || ^2",
  4272. "rollbar/rollbar": "^4.0",
  4273. "ruflin/elastica": "^7 || ^8",
  4274. "symfony/mailer": "^5.4 || ^6",
  4275. "symfony/mime": "^5.4 || ^6"
  4276. },
  4277. "suggest": {
  4278. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4279. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4280. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4281. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4282. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4283. "ext-mbstring": "Allow to work properly with unicode symbols",
  4284. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4285. "ext-openssl": "Required to send log messages using SSL",
  4286. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4287. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4288. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4289. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4290. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4291. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4292. },
  4293. "type": "library",
  4294. "extra": {
  4295. "branch-alias": {
  4296. "dev-main": "3.x-dev"
  4297. }
  4298. },
  4299. "autoload": {
  4300. "psr-4": {
  4301. "Monolog\\": "src/Monolog"
  4302. }
  4303. },
  4304. "notification-url": "https://packagist.org/downloads/",
  4305. "license": [
  4306. "MIT"
  4307. ],
  4308. "authors": [
  4309. {
  4310. "name": "Jordi Boggiano",
  4311. "email": "j.boggiano@seld.be",
  4312. "homepage": "https://seld.be"
  4313. }
  4314. ],
  4315. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4316. "homepage": "https://github.com/Seldaek/monolog",
  4317. "keywords": [
  4318. "log",
  4319. "logging",
  4320. "psr-3"
  4321. ],
  4322. "support": {
  4323. "issues": "https://github.com/Seldaek/monolog/issues",
  4324. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  4325. },
  4326. "funding": [
  4327. {
  4328. "url": "https://github.com/Seldaek",
  4329. "type": "github"
  4330. },
  4331. {
  4332. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4333. "type": "tidelift"
  4334. }
  4335. ],
  4336. "time": "2024-12-05T17:15:07+00:00"
  4337. },
  4338. {
  4339. "name": "mpdf/mpdf",
  4340. "version": "v8.2.5",
  4341. "source": {
  4342. "type": "git",
  4343. "url": "https://github.com/mpdf/mpdf.git",
  4344. "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f"
  4345. },
  4346. "dist": {
  4347. "type": "zip",
  4348. "url": "https://api.github.com/repos/mpdf/mpdf/zipball/e175b05e3e00977b85feb96a8cccb174ac63621f",
  4349. "reference": "e175b05e3e00977b85feb96a8cccb174ac63621f",
  4350. "shasum": ""
  4351. },
  4352. "require": {
  4353. "ext-gd": "*",
  4354. "ext-mbstring": "*",
  4355. "mpdf/psr-http-message-shim": "^1.0 || ^2.0",
  4356. "mpdf/psr-log-aware-trait": "^2.0 || ^3.0",
  4357. "myclabs/deep-copy": "^1.7",
  4358. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  4359. "php": "^5.6 || ^7.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0",
  4360. "psr/http-message": "^1.0 || ^2.0",
  4361. "psr/log": "^1.0 || ^2.0 || ^3.0",
  4362. "setasign/fpdi": "^2.1"
  4363. },
  4364. "require-dev": {
  4365. "mockery/mockery": "^1.3.0",
  4366. "mpdf/qrcode": "^1.1.0",
  4367. "squizlabs/php_codesniffer": "^3.5.0",
  4368. "tracy/tracy": "~2.5",
  4369. "yoast/phpunit-polyfills": "^1.0"
  4370. },
  4371. "suggest": {
  4372. "ext-bcmath": "Needed for generation of some types of barcodes",
  4373. "ext-xml": "Needed mainly for SVG manipulation",
  4374. "ext-zlib": "Needed for compression of embedded resources, such as fonts"
  4375. },
  4376. "type": "library",
  4377. "autoload": {
  4378. "files": [
  4379. "src/functions.php"
  4380. ],
  4381. "psr-4": {
  4382. "Mpdf\\": "src/"
  4383. }
  4384. },
  4385. "notification-url": "https://packagist.org/downloads/",
  4386. "license": [
  4387. "GPL-2.0-only"
  4388. ],
  4389. "authors": [
  4390. {
  4391. "name": "Matěj Humpál",
  4392. "role": "Developer, maintainer"
  4393. },
  4394. {
  4395. "name": "Ian Back",
  4396. "role": "Developer (retired)"
  4397. }
  4398. ],
  4399. "description": "PHP library generating PDF files from UTF-8 encoded HTML",
  4400. "homepage": "https://mpdf.github.io",
  4401. "keywords": [
  4402. "pdf",
  4403. "php",
  4404. "utf-8"
  4405. ],
  4406. "support": {
  4407. "docs": "https://mpdf.github.io",
  4408. "issues": "https://github.com/mpdf/mpdf/issues",
  4409. "source": "https://github.com/mpdf/mpdf"
  4410. },
  4411. "funding": [
  4412. {
  4413. "url": "https://www.paypal.me/mpdf",
  4414. "type": "custom"
  4415. }
  4416. ],
  4417. "time": "2024-11-18T15:30:42+00:00"
  4418. },
  4419. {
  4420. "name": "mpdf/psr-http-message-shim",
  4421. "version": "v2.0.1",
  4422. "source": {
  4423. "type": "git",
  4424. "url": "https://github.com/mpdf/psr-http-message-shim.git",
  4425. "reference": "f25a0153d645e234f9db42e5433b16d9b113920f"
  4426. },
  4427. "dist": {
  4428. "type": "zip",
  4429. "url": "https://api.github.com/repos/mpdf/psr-http-message-shim/zipball/f25a0153d645e234f9db42e5433b16d9b113920f",
  4430. "reference": "f25a0153d645e234f9db42e5433b16d9b113920f",
  4431. "shasum": ""
  4432. },
  4433. "require": {
  4434. "psr/http-message": "^2.0"
  4435. },
  4436. "type": "library",
  4437. "autoload": {
  4438. "psr-4": {
  4439. "Mpdf\\PsrHttpMessageShim\\": "src/"
  4440. }
  4441. },
  4442. "notification-url": "https://packagist.org/downloads/",
  4443. "license": [
  4444. "MIT"
  4445. ],
  4446. "authors": [
  4447. {
  4448. "name": "Mark Dorison",
  4449. "email": "mark@chromatichq.com"
  4450. },
  4451. {
  4452. "name": "Kristofer Widholm",
  4453. "email": "kristofer@chromatichq.com"
  4454. },
  4455. {
  4456. "name": "Nigel Cunningham",
  4457. "email": "nigel.cunningham@technocrat.com.au"
  4458. }
  4459. ],
  4460. "description": "Shim to allow support of different psr/message versions.",
  4461. "support": {
  4462. "issues": "https://github.com/mpdf/psr-http-message-shim/issues",
  4463. "source": "https://github.com/mpdf/psr-http-message-shim/tree/v2.0.1"
  4464. },
  4465. "time": "2023-10-02T14:34:03+00:00"
  4466. },
  4467. {
  4468. "name": "mpdf/psr-log-aware-trait",
  4469. "version": "v3.0.0",
  4470. "source": {
  4471. "type": "git",
  4472. "url": "https://github.com/mpdf/psr-log-aware-trait.git",
  4473. "reference": "a633da6065e946cc491e1c962850344bb0bf3e78"
  4474. },
  4475. "dist": {
  4476. "type": "zip",
  4477. "url": "https://api.github.com/repos/mpdf/psr-log-aware-trait/zipball/a633da6065e946cc491e1c962850344bb0bf3e78",
  4478. "reference": "a633da6065e946cc491e1c962850344bb0bf3e78",
  4479. "shasum": ""
  4480. },
  4481. "require": {
  4482. "psr/log": "^3.0"
  4483. },
  4484. "type": "library",
  4485. "autoload": {
  4486. "psr-4": {
  4487. "Mpdf\\PsrLogAwareTrait\\": "src/"
  4488. }
  4489. },
  4490. "notification-url": "https://packagist.org/downloads/",
  4491. "license": [
  4492. "MIT"
  4493. ],
  4494. "authors": [
  4495. {
  4496. "name": "Mark Dorison",
  4497. "email": "mark@chromatichq.com"
  4498. },
  4499. {
  4500. "name": "Kristofer Widholm",
  4501. "email": "kristofer@chromatichq.com"
  4502. }
  4503. ],
  4504. "description": "Trait to allow support of different psr/log versions.",
  4505. "support": {
  4506. "issues": "https://github.com/mpdf/psr-log-aware-trait/issues",
  4507. "source": "https://github.com/mpdf/psr-log-aware-trait/tree/v3.0.0"
  4508. },
  4509. "time": "2023-05-03T06:19:36+00:00"
  4510. },
  4511. {
  4512. "name": "myclabs/deep-copy",
  4513. "version": "1.13.0",
  4514. "source": {
  4515. "type": "git",
  4516. "url": "https://github.com/myclabs/DeepCopy.git",
  4517. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  4518. },
  4519. "dist": {
  4520. "type": "zip",
  4521. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  4522. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  4523. "shasum": ""
  4524. },
  4525. "require": {
  4526. "php": "^7.1 || ^8.0"
  4527. },
  4528. "conflict": {
  4529. "doctrine/collections": "<1.6.8",
  4530. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  4531. },
  4532. "require-dev": {
  4533. "doctrine/collections": "^1.6.8",
  4534. "doctrine/common": "^2.13.3 || ^3.2.2",
  4535. "phpspec/prophecy": "^1.10",
  4536. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  4537. },
  4538. "type": "library",
  4539. "autoload": {
  4540. "files": [
  4541. "src/DeepCopy/deep_copy.php"
  4542. ],
  4543. "psr-4": {
  4544. "DeepCopy\\": "src/DeepCopy/"
  4545. }
  4546. },
  4547. "notification-url": "https://packagist.org/downloads/",
  4548. "license": [
  4549. "MIT"
  4550. ],
  4551. "description": "Create deep copies (clones) of your objects",
  4552. "keywords": [
  4553. "clone",
  4554. "copy",
  4555. "duplicate",
  4556. "object",
  4557. "object graph"
  4558. ],
  4559. "support": {
  4560. "issues": "https://github.com/myclabs/DeepCopy/issues",
  4561. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  4562. },
  4563. "funding": [
  4564. {
  4565. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  4566. "type": "tidelift"
  4567. }
  4568. ],
  4569. "time": "2025-02-12T12:17:51+00:00"
  4570. },
  4571. {
  4572. "name": "nesbot/carbon",
  4573. "version": "2.73.0",
  4574. "source": {
  4575. "type": "git",
  4576. "url": "https://github.com/CarbonPHP/carbon.git",
  4577. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  4578. },
  4579. "dist": {
  4580. "type": "zip",
  4581. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  4582. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  4583. "shasum": ""
  4584. },
  4585. "require": {
  4586. "carbonphp/carbon-doctrine-types": "*",
  4587. "ext-json": "*",
  4588. "php": "^7.1.8 || ^8.0",
  4589. "psr/clock": "^1.0",
  4590. "symfony/polyfill-mbstring": "^1.0",
  4591. "symfony/polyfill-php80": "^1.16",
  4592. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  4593. },
  4594. "provide": {
  4595. "psr/clock-implementation": "1.0"
  4596. },
  4597. "require-dev": {
  4598. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  4599. "doctrine/orm": "^2.7 || ^3.0",
  4600. "friendsofphp/php-cs-fixer": "^3.0",
  4601. "kylekatarnls/multi-tester": "^2.0",
  4602. "ondrejmirtes/better-reflection": "<6",
  4603. "phpmd/phpmd": "^2.9",
  4604. "phpstan/extension-installer": "^1.0",
  4605. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  4606. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  4607. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  4608. "squizlabs/php_codesniffer": "^3.4"
  4609. },
  4610. "bin": [
  4611. "bin/carbon"
  4612. ],
  4613. "type": "library",
  4614. "extra": {
  4615. "laravel": {
  4616. "providers": [
  4617. "Carbon\\Laravel\\ServiceProvider"
  4618. ]
  4619. },
  4620. "phpstan": {
  4621. "includes": [
  4622. "extension.neon"
  4623. ]
  4624. },
  4625. "branch-alias": {
  4626. "dev-2.x": "2.x-dev",
  4627. "dev-master": "3.x-dev"
  4628. }
  4629. },
  4630. "autoload": {
  4631. "psr-4": {
  4632. "Carbon\\": "src/Carbon/"
  4633. }
  4634. },
  4635. "notification-url": "https://packagist.org/downloads/",
  4636. "license": [
  4637. "MIT"
  4638. ],
  4639. "authors": [
  4640. {
  4641. "name": "Brian Nesbitt",
  4642. "email": "brian@nesbot.com",
  4643. "homepage": "https://markido.com"
  4644. },
  4645. {
  4646. "name": "kylekatarnls",
  4647. "homepage": "https://github.com/kylekatarnls"
  4648. }
  4649. ],
  4650. "description": "An API extension for DateTime that supports 281 different languages.",
  4651. "homepage": "https://carbon.nesbot.com",
  4652. "keywords": [
  4653. "date",
  4654. "datetime",
  4655. "time"
  4656. ],
  4657. "support": {
  4658. "docs": "https://carbon.nesbot.com/docs",
  4659. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4660. "source": "https://github.com/briannesbitt/Carbon"
  4661. },
  4662. "funding": [
  4663. {
  4664. "url": "https://github.com/sponsors/kylekatarnls",
  4665. "type": "github"
  4666. },
  4667. {
  4668. "url": "https://opencollective.com/Carbon#sponsor",
  4669. "type": "opencollective"
  4670. },
  4671. {
  4672. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4673. "type": "tidelift"
  4674. }
  4675. ],
  4676. "time": "2025-01-08T20:10:23+00:00"
  4677. },
  4678. {
  4679. "name": "nette/schema",
  4680. "version": "v1.3.2",
  4681. "source": {
  4682. "type": "git",
  4683. "url": "https://github.com/nette/schema.git",
  4684. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  4685. },
  4686. "dist": {
  4687. "type": "zip",
  4688. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  4689. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  4690. "shasum": ""
  4691. },
  4692. "require": {
  4693. "nette/utils": "^4.0",
  4694. "php": "8.1 - 8.4"
  4695. },
  4696. "require-dev": {
  4697. "nette/tester": "^2.5.2",
  4698. "phpstan/phpstan-nette": "^1.0",
  4699. "tracy/tracy": "^2.8"
  4700. },
  4701. "type": "library",
  4702. "extra": {
  4703. "branch-alias": {
  4704. "dev-master": "1.3-dev"
  4705. }
  4706. },
  4707. "autoload": {
  4708. "classmap": [
  4709. "src/"
  4710. ]
  4711. },
  4712. "notification-url": "https://packagist.org/downloads/",
  4713. "license": [
  4714. "BSD-3-Clause",
  4715. "GPL-2.0-only",
  4716. "GPL-3.0-only"
  4717. ],
  4718. "authors": [
  4719. {
  4720. "name": "David Grudl",
  4721. "homepage": "https://davidgrudl.com"
  4722. },
  4723. {
  4724. "name": "Nette Community",
  4725. "homepage": "https://nette.org/contributors"
  4726. }
  4727. ],
  4728. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4729. "homepage": "https://nette.org",
  4730. "keywords": [
  4731. "config",
  4732. "nette"
  4733. ],
  4734. "support": {
  4735. "issues": "https://github.com/nette/schema/issues",
  4736. "source": "https://github.com/nette/schema/tree/v1.3.2"
  4737. },
  4738. "time": "2024-10-06T23:10:23+00:00"
  4739. },
  4740. {
  4741. "name": "nette/utils",
  4742. "version": "v4.0.6",
  4743. "source": {
  4744. "type": "git",
  4745. "url": "https://github.com/nette/utils.git",
  4746. "reference": "ce708655043c7050eb050df361c5e313cf708309"
  4747. },
  4748. "dist": {
  4749. "type": "zip",
  4750. "url": "https://api.github.com/repos/nette/utils/zipball/ce708655043c7050eb050df361c5e313cf708309",
  4751. "reference": "ce708655043c7050eb050df361c5e313cf708309",
  4752. "shasum": ""
  4753. },
  4754. "require": {
  4755. "php": "8.0 - 8.4"
  4756. },
  4757. "conflict": {
  4758. "nette/finder": "<3",
  4759. "nette/schema": "<1.2.2"
  4760. },
  4761. "require-dev": {
  4762. "jetbrains/phpstorm-attributes": "dev-master",
  4763. "nette/tester": "^2.5",
  4764. "phpstan/phpstan": "^1.0",
  4765. "tracy/tracy": "^2.9"
  4766. },
  4767. "suggest": {
  4768. "ext-gd": "to use Image",
  4769. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4770. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4771. "ext-json": "to use Nette\\Utils\\Json",
  4772. "ext-mbstring": "to use Strings::lower() etc...",
  4773. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4774. },
  4775. "type": "library",
  4776. "extra": {
  4777. "branch-alias": {
  4778. "dev-master": "4.0-dev"
  4779. }
  4780. },
  4781. "autoload": {
  4782. "classmap": [
  4783. "src/"
  4784. ]
  4785. },
  4786. "notification-url": "https://packagist.org/downloads/",
  4787. "license": [
  4788. "BSD-3-Clause",
  4789. "GPL-2.0-only",
  4790. "GPL-3.0-only"
  4791. ],
  4792. "authors": [
  4793. {
  4794. "name": "David Grudl",
  4795. "homepage": "https://davidgrudl.com"
  4796. },
  4797. {
  4798. "name": "Nette Community",
  4799. "homepage": "https://nette.org/contributors"
  4800. }
  4801. ],
  4802. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4803. "homepage": "https://nette.org",
  4804. "keywords": [
  4805. "array",
  4806. "core",
  4807. "datetime",
  4808. "images",
  4809. "json",
  4810. "nette",
  4811. "paginator",
  4812. "password",
  4813. "slugify",
  4814. "string",
  4815. "unicode",
  4816. "utf-8",
  4817. "utility",
  4818. "validation"
  4819. ],
  4820. "support": {
  4821. "issues": "https://github.com/nette/utils/issues",
  4822. "source": "https://github.com/nette/utils/tree/v4.0.6"
  4823. },
  4824. "time": "2025-03-30T21:06:30+00:00"
  4825. },
  4826. {
  4827. "name": "nicmart/tree",
  4828. "version": "0.9.0",
  4829. "source": {
  4830. "type": "git",
  4831. "url": "https://github.com/nicmart/Tree.git",
  4832. "reference": "f5e17bf18d78cfb0666ebb9f956c3acd8d14229d"
  4833. },
  4834. "dist": {
  4835. "type": "zip",
  4836. "url": "https://api.github.com/repos/nicmart/Tree/zipball/f5e17bf18d78cfb0666ebb9f956c3acd8d14229d",
  4837. "reference": "f5e17bf18d78cfb0666ebb9f956c3acd8d14229d",
  4838. "shasum": ""
  4839. },
  4840. "require": {
  4841. "php": "~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  4842. },
  4843. "require-dev": {
  4844. "ergebnis/composer-normalize": "^2.44.0",
  4845. "ergebnis/license": "^2.6.0",
  4846. "ergebnis/php-cs-fixer-config": "^6.28.1",
  4847. "fakerphp/faker": "^1.24.1",
  4848. "infection/infection": "~0.26.19",
  4849. "phpunit/phpunit": "^9.6.19",
  4850. "psalm/plugin-phpunit": "~0.19.0",
  4851. "vimeo/psalm": "^5.26.1"
  4852. },
  4853. "type": "library",
  4854. "autoload": {
  4855. "psr-4": {
  4856. "Tree\\": "src/"
  4857. }
  4858. },
  4859. "notification-url": "https://packagist.org/downloads/",
  4860. "license": [
  4861. "MIT"
  4862. ],
  4863. "authors": [
  4864. {
  4865. "name": "Nicolò Martini",
  4866. "email": "nicmartnic@gmail.com"
  4867. },
  4868. {
  4869. "name": "Andreas Möller",
  4870. "email": "am@localheinz.com"
  4871. }
  4872. ],
  4873. "description": "A basic but flexible php tree data structure and a fluent tree builder implementation.",
  4874. "support": {
  4875. "issues": "https://github.com/nicmart/Tree/issues",
  4876. "source": "https://github.com/nicmart/Tree/tree/0.9.0"
  4877. },
  4878. "time": "2024-11-22T15:36:01+00:00"
  4879. },
  4880. {
  4881. "name": "nikic/php-parser",
  4882. "version": "v5.6.1",
  4883. "source": {
  4884. "type": "git",
  4885. "url": "https://github.com/nikic/PHP-Parser.git",
  4886. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2"
  4887. },
  4888. "dist": {
  4889. "type": "zip",
  4890. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  4891. "reference": "f103601b29efebd7ff4a1ca7b3eeea9e3336a2a2",
  4892. "shasum": ""
  4893. },
  4894. "require": {
  4895. "ext-ctype": "*",
  4896. "ext-json": "*",
  4897. "ext-tokenizer": "*",
  4898. "php": ">=7.4"
  4899. },
  4900. "require-dev": {
  4901. "ircmaxell/php-yacc": "^0.0.7",
  4902. "phpunit/phpunit": "^9.0"
  4903. },
  4904. "bin": [
  4905. "bin/php-parse"
  4906. ],
  4907. "type": "library",
  4908. "extra": {
  4909. "branch-alias": {
  4910. "dev-master": "5.x-dev"
  4911. }
  4912. },
  4913. "autoload": {
  4914. "psr-4": {
  4915. "PhpParser\\": "lib/PhpParser"
  4916. }
  4917. },
  4918. "notification-url": "https://packagist.org/downloads/",
  4919. "license": [
  4920. "BSD-3-Clause"
  4921. ],
  4922. "authors": [
  4923. {
  4924. "name": "Nikita Popov"
  4925. }
  4926. ],
  4927. "description": "A PHP parser written in PHP",
  4928. "keywords": [
  4929. "parser",
  4930. "php"
  4931. ],
  4932. "support": {
  4933. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4934. "source": "https://github.com/nikic/PHP-Parser/tree/v5.6.1"
  4935. },
  4936. "time": "2025-08-13T20:13:15+00:00"
  4937. },
  4938. {
  4939. "name": "nunomaduro/termwind",
  4940. "version": "v2.3.0",
  4941. "source": {
  4942. "type": "git",
  4943. "url": "https://github.com/nunomaduro/termwind.git",
  4944. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  4945. },
  4946. "dist": {
  4947. "type": "zip",
  4948. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  4949. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  4950. "shasum": ""
  4951. },
  4952. "require": {
  4953. "ext-mbstring": "*",
  4954. "php": "^8.2",
  4955. "symfony/console": "^7.1.8"
  4956. },
  4957. "require-dev": {
  4958. "illuminate/console": "^11.33.2",
  4959. "laravel/pint": "^1.18.2",
  4960. "mockery/mockery": "^1.6.12",
  4961. "pestphp/pest": "^2.36.0",
  4962. "phpstan/phpstan": "^1.12.11",
  4963. "phpstan/phpstan-strict-rules": "^1.6.1",
  4964. "symfony/var-dumper": "^7.1.8",
  4965. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  4966. },
  4967. "type": "library",
  4968. "extra": {
  4969. "laravel": {
  4970. "providers": [
  4971. "Termwind\\Laravel\\TermwindServiceProvider"
  4972. ]
  4973. },
  4974. "branch-alias": {
  4975. "dev-2.x": "2.x-dev"
  4976. }
  4977. },
  4978. "autoload": {
  4979. "files": [
  4980. "src/Functions.php"
  4981. ],
  4982. "psr-4": {
  4983. "Termwind\\": "src/"
  4984. }
  4985. },
  4986. "notification-url": "https://packagist.org/downloads/",
  4987. "license": [
  4988. "MIT"
  4989. ],
  4990. "authors": [
  4991. {
  4992. "name": "Nuno Maduro",
  4993. "email": "enunomaduro@gmail.com"
  4994. }
  4995. ],
  4996. "description": "Its like Tailwind CSS, but for the console.",
  4997. "keywords": [
  4998. "cli",
  4999. "console",
  5000. "css",
  5001. "package",
  5002. "php",
  5003. "style"
  5004. ],
  5005. "support": {
  5006. "issues": "https://github.com/nunomaduro/termwind/issues",
  5007. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  5008. },
  5009. "funding": [
  5010. {
  5011. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5012. "type": "custom"
  5013. },
  5014. {
  5015. "url": "https://github.com/nunomaduro",
  5016. "type": "github"
  5017. },
  5018. {
  5019. "url": "https://github.com/xiCO2k",
  5020. "type": "github"
  5021. }
  5022. ],
  5023. "time": "2024-11-21T10:39:51+00:00"
  5024. },
  5025. {
  5026. "name": "open-telemetry/api",
  5027. "version": "1.2.3",
  5028. "source": {
  5029. "type": "git",
  5030. "url": "https://github.com/opentelemetry-php/api.git",
  5031. "reference": "199d7ddda88f5f5619fa73463f1a5a7149ccd1f1"
  5032. },
  5033. "dist": {
  5034. "type": "zip",
  5035. "url": "https://api.github.com/repos/opentelemetry-php/api/zipball/199d7ddda88f5f5619fa73463f1a5a7149ccd1f1",
  5036. "reference": "199d7ddda88f5f5619fa73463f1a5a7149ccd1f1",
  5037. "shasum": ""
  5038. },
  5039. "require": {
  5040. "open-telemetry/context": "^1.0",
  5041. "php": "^8.1",
  5042. "psr/log": "^1.1|^2.0|^3.0",
  5043. "symfony/polyfill-php82": "^1.26"
  5044. },
  5045. "conflict": {
  5046. "open-telemetry/sdk": "<=1.0.8"
  5047. },
  5048. "type": "library",
  5049. "extra": {
  5050. "spi": {
  5051. "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\HookManagerInterface": [
  5052. "OpenTelemetry\\API\\Instrumentation\\AutoInstrumentation\\ExtensionHookManager"
  5053. ]
  5054. },
  5055. "branch-alias": {
  5056. "dev-main": "1.1.x-dev"
  5057. }
  5058. },
  5059. "autoload": {
  5060. "files": [
  5061. "Trace/functions.php"
  5062. ],
  5063. "psr-4": {
  5064. "OpenTelemetry\\API\\": "."
  5065. }
  5066. },
  5067. "notification-url": "https://packagist.org/downloads/",
  5068. "license": [
  5069. "Apache-2.0"
  5070. ],
  5071. "authors": [
  5072. {
  5073. "name": "opentelemetry-php contributors",
  5074. "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors"
  5075. }
  5076. ],
  5077. "description": "API for OpenTelemetry PHP.",
  5078. "keywords": [
  5079. "Metrics",
  5080. "api",
  5081. "apm",
  5082. "logging",
  5083. "opentelemetry",
  5084. "otel",
  5085. "tracing"
  5086. ],
  5087. "support": {
  5088. "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V",
  5089. "docs": "https://opentelemetry.io/docs/php",
  5090. "issues": "https://github.com/open-telemetry/opentelemetry-php/issues",
  5091. "source": "https://github.com/open-telemetry/opentelemetry-php"
  5092. },
  5093. "time": "2025-03-05T21:42:54+00:00"
  5094. },
  5095. {
  5096. "name": "open-telemetry/context",
  5097. "version": "1.1.0",
  5098. "source": {
  5099. "type": "git",
  5100. "url": "https://github.com/opentelemetry-php/context.git",
  5101. "reference": "0cba875ea1953435f78aec7f1d75afa87bdbf7f3"
  5102. },
  5103. "dist": {
  5104. "type": "zip",
  5105. "url": "https://api.github.com/repos/opentelemetry-php/context/zipball/0cba875ea1953435f78aec7f1d75afa87bdbf7f3",
  5106. "reference": "0cba875ea1953435f78aec7f1d75afa87bdbf7f3",
  5107. "shasum": ""
  5108. },
  5109. "require": {
  5110. "php": "^8.1",
  5111. "symfony/polyfill-php82": "^1.26"
  5112. },
  5113. "suggest": {
  5114. "ext-ffi": "To allow context switching in Fibers"
  5115. },
  5116. "type": "library",
  5117. "extra": {
  5118. "branch-alias": {
  5119. "dev-main": "1.0.x-dev"
  5120. }
  5121. },
  5122. "autoload": {
  5123. "files": [
  5124. "fiber/initialize_fiber_handler.php"
  5125. ],
  5126. "psr-4": {
  5127. "OpenTelemetry\\Context\\": "."
  5128. }
  5129. },
  5130. "notification-url": "https://packagist.org/downloads/",
  5131. "license": [
  5132. "Apache-2.0"
  5133. ],
  5134. "authors": [
  5135. {
  5136. "name": "opentelemetry-php contributors",
  5137. "homepage": "https://github.com/open-telemetry/opentelemetry-php/graphs/contributors"
  5138. }
  5139. ],
  5140. "description": "Context implementation for OpenTelemetry PHP.",
  5141. "keywords": [
  5142. "Context",
  5143. "opentelemetry",
  5144. "otel"
  5145. ],
  5146. "support": {
  5147. "chat": "https://app.slack.com/client/T08PSQ7BQ/C01NFPCV44V",
  5148. "docs": "https://opentelemetry.io/docs/php",
  5149. "issues": "https://github.com/open-telemetry/opentelemetry-php/issues",
  5150. "source": "https://github.com/open-telemetry/opentelemetry-php"
  5151. },
  5152. "time": "2024-08-21T00:29:20+00:00"
  5153. },
  5154. {
  5155. "name": "openai-php/client",
  5156. "version": "v0.10.3",
  5157. "source": {
  5158. "type": "git",
  5159. "url": "https://github.com/openai-php/client.git",
  5160. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c"
  5161. },
  5162. "dist": {
  5163. "type": "zip",
  5164. "url": "https://api.github.com/repos/openai-php/client/zipball/4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  5165. "reference": "4a565d145e0fb3ea1baba8fffe39d86c56b6dc2c",
  5166. "shasum": ""
  5167. },
  5168. "require": {
  5169. "php": "^8.1.0",
  5170. "php-http/discovery": "^1.20.0",
  5171. "php-http/multipart-stream-builder": "^1.4.2",
  5172. "psr/http-client": "^1.0.3",
  5173. "psr/http-client-implementation": "^1.0.1",
  5174. "psr/http-factory-implementation": "*",
  5175. "psr/http-message": "^1.1.0|^2.0.0"
  5176. },
  5177. "require-dev": {
  5178. "guzzlehttp/guzzle": "^7.9.2",
  5179. "guzzlehttp/psr7": "^2.7.0",
  5180. "laravel/pint": "^1.18.1",
  5181. "mockery/mockery": "^1.6.12",
  5182. "nunomaduro/collision": "^7.11.0|^8.5.0",
  5183. "pestphp/pest": "^2.36.0|^3.5.0",
  5184. "pestphp/pest-plugin-arch": "^2.7|^3.0",
  5185. "pestphp/pest-plugin-type-coverage": "^2.8.7|^3.1.0",
  5186. "phpstan/phpstan": "^1.12.7",
  5187. "symfony/var-dumper": "^6.4.11|^7.1.5"
  5188. },
  5189. "type": "library",
  5190. "autoload": {
  5191. "files": [
  5192. "src/OpenAI.php"
  5193. ],
  5194. "psr-4": {
  5195. "OpenAI\\": "src/"
  5196. }
  5197. },
  5198. "notification-url": "https://packagist.org/downloads/",
  5199. "license": [
  5200. "MIT"
  5201. ],
  5202. "authors": [
  5203. {
  5204. "name": "Nuno Maduro",
  5205. "email": "enunomaduro@gmail.com"
  5206. },
  5207. {
  5208. "name": "Sandro Gehri"
  5209. }
  5210. ],
  5211. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  5212. "keywords": [
  5213. "GPT-3",
  5214. "api",
  5215. "client",
  5216. "codex",
  5217. "dall-e",
  5218. "language",
  5219. "natural",
  5220. "openai",
  5221. "php",
  5222. "processing",
  5223. "sdk"
  5224. ],
  5225. "support": {
  5226. "issues": "https://github.com/openai-php/client/issues",
  5227. "source": "https://github.com/openai-php/client/tree/v0.10.3"
  5228. },
  5229. "funding": [
  5230. {
  5231. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5232. "type": "custom"
  5233. },
  5234. {
  5235. "url": "https://github.com/gehrisandro",
  5236. "type": "github"
  5237. },
  5238. {
  5239. "url": "https://github.com/nunomaduro",
  5240. "type": "github"
  5241. }
  5242. ],
  5243. "time": "2024-11-12T20:51:16+00:00"
  5244. },
  5245. {
  5246. "name": "openai-php/laravel",
  5247. "version": "v0.10.2",
  5248. "source": {
  5249. "type": "git",
  5250. "url": "https://github.com/openai-php/laravel.git",
  5251. "reference": "24815ef1bda71cc0715f7aefe4506e77329e560f"
  5252. },
  5253. "dist": {
  5254. "type": "zip",
  5255. "url": "https://api.github.com/repos/openai-php/laravel/zipball/24815ef1bda71cc0715f7aefe4506e77329e560f",
  5256. "reference": "24815ef1bda71cc0715f7aefe4506e77329e560f",
  5257. "shasum": ""
  5258. },
  5259. "require": {
  5260. "guzzlehttp/guzzle": "^7.9.2",
  5261. "laravel/framework": "^9.46.0|^10.34.2|^11.23.5",
  5262. "openai-php/client": "^0.10.2",
  5263. "php": "^8.1.0"
  5264. },
  5265. "require-dev": {
  5266. "laravel/pint": "^1.17.3",
  5267. "pestphp/pest": "^2.35.1|^3.0.0",
  5268. "pestphp/pest-plugin-arch": "^2.7.0|^3.0.0",
  5269. "phpstan/phpstan": "^1.12.4",
  5270. "symfony/var-dumper": "^6.4.0|^7.1.4"
  5271. },
  5272. "type": "library",
  5273. "extra": {
  5274. "laravel": {
  5275. "providers": [
  5276. "OpenAI\\Laravel\\ServiceProvider"
  5277. ]
  5278. }
  5279. },
  5280. "autoload": {
  5281. "psr-4": {
  5282. "OpenAI\\Laravel\\": "src/"
  5283. }
  5284. },
  5285. "notification-url": "https://packagist.org/downloads/",
  5286. "license": [
  5287. "MIT"
  5288. ],
  5289. "authors": [
  5290. {
  5291. "name": "Nuno Maduro",
  5292. "email": "enunomaduro@gmail.com"
  5293. }
  5294. ],
  5295. "description": "OpenAI PHP for Laravel is a supercharged PHP API client that allows you to interact with the Open AI API",
  5296. "keywords": [
  5297. "GPT-3",
  5298. "api",
  5299. "client",
  5300. "codex",
  5301. "dall-e",
  5302. "language",
  5303. "laravel",
  5304. "natural",
  5305. "openai",
  5306. "php",
  5307. "processing",
  5308. "sdk"
  5309. ],
  5310. "support": {
  5311. "issues": "https://github.com/openai-php/laravel/issues",
  5312. "source": "https://github.com/openai-php/laravel/tree/v0.10.2"
  5313. },
  5314. "funding": [
  5315. {
  5316. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5317. "type": "custom"
  5318. },
  5319. {
  5320. "url": "https://github.com/gehrisandro",
  5321. "type": "github"
  5322. },
  5323. {
  5324. "url": "https://github.com/nunomaduro",
  5325. "type": "github"
  5326. },
  5327. {
  5328. "url": "https://www.patreon.com/nunomaduro",
  5329. "type": "patreon"
  5330. }
  5331. ],
  5332. "time": "2024-10-17T20:34:07+00:00"
  5333. },
  5334. {
  5335. "name": "opis/closure",
  5336. "version": "3.6.3",
  5337. "source": {
  5338. "type": "git",
  5339. "url": "https://github.com/opis/closure.git",
  5340. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad"
  5341. },
  5342. "dist": {
  5343. "type": "zip",
  5344. "url": "https://api.github.com/repos/opis/closure/zipball/3d81e4309d2a927abbe66df935f4bb60082805ad",
  5345. "reference": "3d81e4309d2a927abbe66df935f4bb60082805ad",
  5346. "shasum": ""
  5347. },
  5348. "require": {
  5349. "php": "^5.4 || ^7.0 || ^8.0"
  5350. },
  5351. "require-dev": {
  5352. "jeremeamia/superclosure": "^2.0",
  5353. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  5354. },
  5355. "type": "library",
  5356. "extra": {
  5357. "branch-alias": {
  5358. "dev-master": "3.6.x-dev"
  5359. }
  5360. },
  5361. "autoload": {
  5362. "files": [
  5363. "functions.php"
  5364. ],
  5365. "psr-4": {
  5366. "Opis\\Closure\\": "src/"
  5367. }
  5368. },
  5369. "notification-url": "https://packagist.org/downloads/",
  5370. "license": [
  5371. "MIT"
  5372. ],
  5373. "authors": [
  5374. {
  5375. "name": "Marius Sarca",
  5376. "email": "marius.sarca@gmail.com"
  5377. },
  5378. {
  5379. "name": "Sorin Sarca",
  5380. "email": "sarca_sorin@hotmail.com"
  5381. }
  5382. ],
  5383. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  5384. "homepage": "https://opis.io/closure",
  5385. "keywords": [
  5386. "anonymous functions",
  5387. "closure",
  5388. "function",
  5389. "serializable",
  5390. "serialization",
  5391. "serialize"
  5392. ],
  5393. "support": {
  5394. "issues": "https://github.com/opis/closure/issues",
  5395. "source": "https://github.com/opis/closure/tree/3.6.3"
  5396. },
  5397. "time": "2022-01-27T09:35:39+00:00"
  5398. },
  5399. {
  5400. "name": "paragonie/constant_time_encoding",
  5401. "version": "v3.0.0",
  5402. "source": {
  5403. "type": "git",
  5404. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5405. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5406. },
  5407. "dist": {
  5408. "type": "zip",
  5409. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5410. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5411. "shasum": ""
  5412. },
  5413. "require": {
  5414. "php": "^8"
  5415. },
  5416. "require-dev": {
  5417. "phpunit/phpunit": "^9",
  5418. "vimeo/psalm": "^4|^5"
  5419. },
  5420. "type": "library",
  5421. "autoload": {
  5422. "psr-4": {
  5423. "ParagonIE\\ConstantTime\\": "src/"
  5424. }
  5425. },
  5426. "notification-url": "https://packagist.org/downloads/",
  5427. "license": [
  5428. "MIT"
  5429. ],
  5430. "authors": [
  5431. {
  5432. "name": "Paragon Initiative Enterprises",
  5433. "email": "security@paragonie.com",
  5434. "homepage": "https://paragonie.com",
  5435. "role": "Maintainer"
  5436. },
  5437. {
  5438. "name": "Steve 'Sc00bz' Thomas",
  5439. "email": "steve@tobtu.com",
  5440. "homepage": "https://www.tobtu.com",
  5441. "role": "Original Developer"
  5442. }
  5443. ],
  5444. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5445. "keywords": [
  5446. "base16",
  5447. "base32",
  5448. "base32_decode",
  5449. "base32_encode",
  5450. "base64",
  5451. "base64_decode",
  5452. "base64_encode",
  5453. "bin2hex",
  5454. "encoding",
  5455. "hex",
  5456. "hex2bin",
  5457. "rfc4648"
  5458. ],
  5459. "support": {
  5460. "email": "info@paragonie.com",
  5461. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5462. "source": "https://github.com/paragonie/constant_time_encoding"
  5463. },
  5464. "time": "2024-05-08T12:36:18+00:00"
  5465. },
  5466. {
  5467. "name": "paragonie/random_compat",
  5468. "version": "v9.99.100",
  5469. "source": {
  5470. "type": "git",
  5471. "url": "https://github.com/paragonie/random_compat.git",
  5472. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5473. },
  5474. "dist": {
  5475. "type": "zip",
  5476. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5477. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5478. "shasum": ""
  5479. },
  5480. "require": {
  5481. "php": ">= 7"
  5482. },
  5483. "require-dev": {
  5484. "phpunit/phpunit": "4.*|5.*",
  5485. "vimeo/psalm": "^1"
  5486. },
  5487. "suggest": {
  5488. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5489. },
  5490. "type": "library",
  5491. "notification-url": "https://packagist.org/downloads/",
  5492. "license": [
  5493. "MIT"
  5494. ],
  5495. "authors": [
  5496. {
  5497. "name": "Paragon Initiative Enterprises",
  5498. "email": "security@paragonie.com",
  5499. "homepage": "https://paragonie.com"
  5500. }
  5501. ],
  5502. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5503. "keywords": [
  5504. "csprng",
  5505. "polyfill",
  5506. "pseudorandom",
  5507. "random"
  5508. ],
  5509. "support": {
  5510. "email": "info@paragonie.com",
  5511. "issues": "https://github.com/paragonie/random_compat/issues",
  5512. "source": "https://github.com/paragonie/random_compat"
  5513. },
  5514. "time": "2020-10-15T08:29:30+00:00"
  5515. },
  5516. {
  5517. "name": "paragonie/sodium_compat",
  5518. "version": "v2.5.0",
  5519. "source": {
  5520. "type": "git",
  5521. "url": "https://github.com/paragonie/sodium_compat.git",
  5522. "reference": "4714da6efdc782c06690bc72ce34fae7941c2d9f"
  5523. },
  5524. "dist": {
  5525. "type": "zip",
  5526. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/4714da6efdc782c06690bc72ce34fae7941c2d9f",
  5527. "reference": "4714da6efdc782c06690bc72ce34fae7941c2d9f",
  5528. "shasum": ""
  5529. },
  5530. "require": {
  5531. "php": "^8.1",
  5532. "php-64bit": "*"
  5533. },
  5534. "require-dev": {
  5535. "infection/infection": "^0",
  5536. "nikic/php-fuzzer": "^0",
  5537. "phpunit/phpunit": "^7|^8|^9|^10|^11",
  5538. "vimeo/psalm": "^4|^5|^6"
  5539. },
  5540. "suggest": {
  5541. "ext-sodium": "Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  5542. },
  5543. "type": "library",
  5544. "extra": {
  5545. "branch-alias": {
  5546. "dev-master": "2.0.x-dev"
  5547. }
  5548. },
  5549. "autoload": {
  5550. "files": [
  5551. "autoload.php"
  5552. ],
  5553. "psr-4": {
  5554. "ParagonIE\\Sodium\\": "namespaced/"
  5555. }
  5556. },
  5557. "notification-url": "https://packagist.org/downloads/",
  5558. "license": [
  5559. "ISC"
  5560. ],
  5561. "authors": [
  5562. {
  5563. "name": "Paragon Initiative Enterprises",
  5564. "email": "security@paragonie.com"
  5565. },
  5566. {
  5567. "name": "Frank Denis",
  5568. "email": "jedisct1@pureftpd.org"
  5569. }
  5570. ],
  5571. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  5572. "keywords": [
  5573. "Authentication",
  5574. "BLAKE2b",
  5575. "ChaCha20",
  5576. "ChaCha20-Poly1305",
  5577. "Chapoly",
  5578. "Curve25519",
  5579. "Ed25519",
  5580. "EdDSA",
  5581. "Edwards-curve Digital Signature Algorithm",
  5582. "Elliptic Curve Diffie-Hellman",
  5583. "Poly1305",
  5584. "Pure-PHP cryptography",
  5585. "RFC 7748",
  5586. "RFC 8032",
  5587. "Salpoly",
  5588. "Salsa20",
  5589. "X25519",
  5590. "XChaCha20-Poly1305",
  5591. "XSalsa20-Poly1305",
  5592. "Xchacha20",
  5593. "Xsalsa20",
  5594. "aead",
  5595. "cryptography",
  5596. "ecdh",
  5597. "elliptic curve",
  5598. "elliptic curve cryptography",
  5599. "encryption",
  5600. "libsodium",
  5601. "php",
  5602. "public-key cryptography",
  5603. "secret-key cryptography",
  5604. "side-channel resistant"
  5605. ],
  5606. "support": {
  5607. "issues": "https://github.com/paragonie/sodium_compat/issues",
  5608. "source": "https://github.com/paragonie/sodium_compat/tree/v2.5.0"
  5609. },
  5610. "time": "2025-12-30T16:12:18+00:00"
  5611. },
  5612. {
  5613. "name": "paypal/paypal-checkout-sdk",
  5614. "version": "1.0.1",
  5615. "source": {
  5616. "type": "git",
  5617. "url": "https://github.com/paypal/Checkout-PHP-SDK.git",
  5618. "reference": "ed6a55075448308b87a8b59dcb7fedf04a048cb1"
  5619. },
  5620. "dist": {
  5621. "type": "zip",
  5622. "url": "https://api.github.com/repos/paypal/Checkout-PHP-SDK/zipball/ed6a55075448308b87a8b59dcb7fedf04a048cb1",
  5623. "reference": "ed6a55075448308b87a8b59dcb7fedf04a048cb1",
  5624. "shasum": ""
  5625. },
  5626. "require": {
  5627. "paypal/paypalhttp": "1.0.0"
  5628. },
  5629. "require-dev": {
  5630. "phpunit/phpunit": "^5.7"
  5631. },
  5632. "type": "library",
  5633. "autoload": {
  5634. "psr-4": {
  5635. "Sample\\": "samples/",
  5636. "PayPalCheckoutSdk\\": "lib/PayPalCheckoutSdk"
  5637. }
  5638. },
  5639. "notification-url": "https://packagist.org/downloads/",
  5640. "license": [
  5641. "https://github.com/paypal/Checkout-PHP-SDK/blob/master/LICENSE"
  5642. ],
  5643. "authors": [
  5644. {
  5645. "name": "PayPal",
  5646. "homepage": "https://github.com/paypal/Checkout-PHP-SDK/contributors"
  5647. }
  5648. ],
  5649. "description": "PayPal's PHP SDK for Checkout REST APIs",
  5650. "homepage": "http://github.com/paypal/Checkout-PHP-SDK/",
  5651. "keywords": [
  5652. "checkout",
  5653. "orders",
  5654. "payments",
  5655. "paypal",
  5656. "rest",
  5657. "sdk"
  5658. ],
  5659. "support": {
  5660. "issues": "https://github.com/paypal/Checkout-PHP-SDK/issues",
  5661. "source": "https://github.com/paypal/Checkout-PHP-SDK/tree/1.0.1"
  5662. },
  5663. "abandoned": "paypal/paypal-server-sdk",
  5664. "time": "2019-11-07T23:16:44+00:00"
  5665. },
  5666. {
  5667. "name": "paypal/paypalhttp",
  5668. "version": "1.0.0",
  5669. "source": {
  5670. "type": "git",
  5671. "url": "https://github.com/paypal/paypalhttp_php.git",
  5672. "reference": "1ad9b846a046f09d6135cbf2cbaa7701bbc630a3"
  5673. },
  5674. "dist": {
  5675. "type": "zip",
  5676. "url": "https://api.github.com/repos/paypal/paypalhttp_php/zipball/1ad9b846a046f09d6135cbf2cbaa7701bbc630a3",
  5677. "reference": "1ad9b846a046f09d6135cbf2cbaa7701bbc630a3",
  5678. "shasum": ""
  5679. },
  5680. "require": {
  5681. "ext-curl": "*"
  5682. },
  5683. "require-dev": {
  5684. "phpunit/phpunit": "^5.7",
  5685. "wiremock-php/wiremock-php": "1.43.2"
  5686. },
  5687. "type": "library",
  5688. "autoload": {
  5689. "psr-4": {
  5690. "PayPalHttp\\": "lib/PayPalHttp"
  5691. }
  5692. },
  5693. "notification-url": "https://packagist.org/downloads/",
  5694. "license": [
  5695. "MIT"
  5696. ],
  5697. "authors": [
  5698. {
  5699. "name": "PayPal",
  5700. "homepage": "https://github.com/paypal/paypalhttp_php/contributors"
  5701. }
  5702. ],
  5703. "support": {
  5704. "issues": "https://github.com/paypal/paypalhttp_php/issues",
  5705. "source": "https://github.com/paypal/paypalhttp_php/tree/1.0.0"
  5706. },
  5707. "time": "2019-11-06T21:27:12+00:00"
  5708. },
  5709. {
  5710. "name": "phenx/php-font-lib",
  5711. "version": "0.5.6",
  5712. "source": {
  5713. "type": "git",
  5714. "url": "https://github.com/dompdf/php-font-lib.git",
  5715. "reference": "a1681e9793040740a405ac5b189275059e2a9863"
  5716. },
  5717. "dist": {
  5718. "type": "zip",
  5719. "url": "https://api.github.com/repos/dompdf/php-font-lib/zipball/a1681e9793040740a405ac5b189275059e2a9863",
  5720. "reference": "a1681e9793040740a405ac5b189275059e2a9863",
  5721. "shasum": ""
  5722. },
  5723. "require": {
  5724. "ext-mbstring": "*"
  5725. },
  5726. "require-dev": {
  5727. "symfony/phpunit-bridge": "^3 || ^4 || ^5 || ^6"
  5728. },
  5729. "type": "library",
  5730. "autoload": {
  5731. "psr-4": {
  5732. "FontLib\\": "src/FontLib"
  5733. }
  5734. },
  5735. "notification-url": "https://packagist.org/downloads/",
  5736. "license": [
  5737. "LGPL-2.1-or-later"
  5738. ],
  5739. "authors": [
  5740. {
  5741. "name": "Fabien Ménager",
  5742. "email": "fabien.menager@gmail.com"
  5743. }
  5744. ],
  5745. "description": "A library to read, parse, export and make subsets of different types of font files.",
  5746. "homepage": "https://github.com/PhenX/php-font-lib",
  5747. "support": {
  5748. "issues": "https://github.com/dompdf/php-font-lib/issues",
  5749. "source": "https://github.com/dompdf/php-font-lib/tree/0.5.6"
  5750. },
  5751. "time": "2024-01-29T14:45:26+00:00"
  5752. },
  5753. {
  5754. "name": "phenx/php-svg-lib",
  5755. "version": "0.5.4",
  5756. "source": {
  5757. "type": "git",
  5758. "url": "https://github.com/dompdf/php-svg-lib.git",
  5759. "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691"
  5760. },
  5761. "dist": {
  5762. "type": "zip",
  5763. "url": "https://api.github.com/repos/dompdf/php-svg-lib/zipball/46b25da81613a9cf43c83b2a8c2c1bdab27df691",
  5764. "reference": "46b25da81613a9cf43c83b2a8c2c1bdab27df691",
  5765. "shasum": ""
  5766. },
  5767. "require": {
  5768. "ext-mbstring": "*",
  5769. "php": "^7.1 || ^8.0",
  5770. "sabberworm/php-css-parser": "^8.4"
  5771. },
  5772. "require-dev": {
  5773. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5"
  5774. },
  5775. "type": "library",
  5776. "autoload": {
  5777. "psr-4": {
  5778. "Svg\\": "src/Svg"
  5779. }
  5780. },
  5781. "notification-url": "https://packagist.org/downloads/",
  5782. "license": [
  5783. "LGPL-3.0-or-later"
  5784. ],
  5785. "authors": [
  5786. {
  5787. "name": "Fabien Ménager",
  5788. "email": "fabien.menager@gmail.com"
  5789. }
  5790. ],
  5791. "description": "A library to read, parse and export to PDF SVG files.",
  5792. "homepage": "https://github.com/PhenX/php-svg-lib",
  5793. "support": {
  5794. "issues": "https://github.com/dompdf/php-svg-lib/issues",
  5795. "source": "https://github.com/dompdf/php-svg-lib/tree/0.5.4"
  5796. },
  5797. "time": "2024-04-08T12:52:34+00:00"
  5798. },
  5799. {
  5800. "name": "php-http/discovery",
  5801. "version": "1.20.0",
  5802. "source": {
  5803. "type": "git",
  5804. "url": "https://github.com/php-http/discovery.git",
  5805. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d"
  5806. },
  5807. "dist": {
  5808. "type": "zip",
  5809. "url": "https://api.github.com/repos/php-http/discovery/zipball/82fe4c73ef3363caed49ff8dd1539ba06044910d",
  5810. "reference": "82fe4c73ef3363caed49ff8dd1539ba06044910d",
  5811. "shasum": ""
  5812. },
  5813. "require": {
  5814. "composer-plugin-api": "^1.0|^2.0",
  5815. "php": "^7.1 || ^8.0"
  5816. },
  5817. "conflict": {
  5818. "nyholm/psr7": "<1.0",
  5819. "zendframework/zend-diactoros": "*"
  5820. },
  5821. "provide": {
  5822. "php-http/async-client-implementation": "*",
  5823. "php-http/client-implementation": "*",
  5824. "psr/http-client-implementation": "*",
  5825. "psr/http-factory-implementation": "*",
  5826. "psr/http-message-implementation": "*"
  5827. },
  5828. "require-dev": {
  5829. "composer/composer": "^1.0.2|^2.0",
  5830. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  5831. "php-http/httplug": "^1.0 || ^2.0",
  5832. "php-http/message-factory": "^1.0",
  5833. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  5834. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  5835. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  5836. },
  5837. "type": "composer-plugin",
  5838. "extra": {
  5839. "class": "Http\\Discovery\\Composer\\Plugin",
  5840. "plugin-optional": true
  5841. },
  5842. "autoload": {
  5843. "psr-4": {
  5844. "Http\\Discovery\\": "src/"
  5845. },
  5846. "exclude-from-classmap": [
  5847. "src/Composer/Plugin.php"
  5848. ]
  5849. },
  5850. "notification-url": "https://packagist.org/downloads/",
  5851. "license": [
  5852. "MIT"
  5853. ],
  5854. "authors": [
  5855. {
  5856. "name": "Márk Sági-Kazár",
  5857. "email": "mark.sagikazar@gmail.com"
  5858. }
  5859. ],
  5860. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  5861. "homepage": "http://php-http.org",
  5862. "keywords": [
  5863. "adapter",
  5864. "client",
  5865. "discovery",
  5866. "factory",
  5867. "http",
  5868. "message",
  5869. "psr17",
  5870. "psr7"
  5871. ],
  5872. "support": {
  5873. "issues": "https://github.com/php-http/discovery/issues",
  5874. "source": "https://github.com/php-http/discovery/tree/1.20.0"
  5875. },
  5876. "time": "2024-10-02T11:20:13+00:00"
  5877. },
  5878. {
  5879. "name": "php-http/httplug",
  5880. "version": "2.4.1",
  5881. "source": {
  5882. "type": "git",
  5883. "url": "https://github.com/php-http/httplug.git",
  5884. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4"
  5885. },
  5886. "dist": {
  5887. "type": "zip",
  5888. "url": "https://api.github.com/repos/php-http/httplug/zipball/5cad731844891a4c282f3f3e1b582c46839d22f4",
  5889. "reference": "5cad731844891a4c282f3f3e1b582c46839d22f4",
  5890. "shasum": ""
  5891. },
  5892. "require": {
  5893. "php": "^7.1 || ^8.0",
  5894. "php-http/promise": "^1.1",
  5895. "psr/http-client": "^1.0",
  5896. "psr/http-message": "^1.0 || ^2.0"
  5897. },
  5898. "require-dev": {
  5899. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  5900. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  5901. },
  5902. "type": "library",
  5903. "autoload": {
  5904. "psr-4": {
  5905. "Http\\Client\\": "src/"
  5906. }
  5907. },
  5908. "notification-url": "https://packagist.org/downloads/",
  5909. "license": [
  5910. "MIT"
  5911. ],
  5912. "authors": [
  5913. {
  5914. "name": "Eric GELOEN",
  5915. "email": "geloen.eric@gmail.com"
  5916. },
  5917. {
  5918. "name": "Márk Sági-Kazár",
  5919. "email": "mark.sagikazar@gmail.com",
  5920. "homepage": "https://sagikazarmark.hu"
  5921. }
  5922. ],
  5923. "description": "HTTPlug, the HTTP client abstraction for PHP",
  5924. "homepage": "http://httplug.io",
  5925. "keywords": [
  5926. "client",
  5927. "http"
  5928. ],
  5929. "support": {
  5930. "issues": "https://github.com/php-http/httplug/issues",
  5931. "source": "https://github.com/php-http/httplug/tree/2.4.1"
  5932. },
  5933. "time": "2024-09-23T11:39:58+00:00"
  5934. },
  5935. {
  5936. "name": "php-http/multipart-stream-builder",
  5937. "version": "1.4.2",
  5938. "source": {
  5939. "type": "git",
  5940. "url": "https://github.com/php-http/multipart-stream-builder.git",
  5941. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e"
  5942. },
  5943. "dist": {
  5944. "type": "zip",
  5945. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/10086e6de6f53489cca5ecc45b6f468604d3460e",
  5946. "reference": "10086e6de6f53489cca5ecc45b6f468604d3460e",
  5947. "shasum": ""
  5948. },
  5949. "require": {
  5950. "php": "^7.1 || ^8.0",
  5951. "php-http/discovery": "^1.15",
  5952. "psr/http-factory-implementation": "^1.0"
  5953. },
  5954. "require-dev": {
  5955. "nyholm/psr7": "^1.0",
  5956. "php-http/message": "^1.5",
  5957. "php-http/message-factory": "^1.0.2",
  5958. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  5959. },
  5960. "type": "library",
  5961. "autoload": {
  5962. "psr-4": {
  5963. "Http\\Message\\MultipartStream\\": "src/"
  5964. }
  5965. },
  5966. "notification-url": "https://packagist.org/downloads/",
  5967. "license": [
  5968. "MIT"
  5969. ],
  5970. "authors": [
  5971. {
  5972. "name": "Tobias Nyholm",
  5973. "email": "tobias.nyholm@gmail.com"
  5974. }
  5975. ],
  5976. "description": "A builder class that help you create a multipart stream",
  5977. "homepage": "http://php-http.org",
  5978. "keywords": [
  5979. "factory",
  5980. "http",
  5981. "message",
  5982. "multipart stream",
  5983. "stream"
  5984. ],
  5985. "support": {
  5986. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  5987. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.4.2"
  5988. },
  5989. "time": "2024-09-04T13:22:54+00:00"
  5990. },
  5991. {
  5992. "name": "php-http/promise",
  5993. "version": "1.3.1",
  5994. "source": {
  5995. "type": "git",
  5996. "url": "https://github.com/php-http/promise.git",
  5997. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  5998. },
  5999. "dist": {
  6000. "type": "zip",
  6001. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  6002. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  6003. "shasum": ""
  6004. },
  6005. "require": {
  6006. "php": "^7.1 || ^8.0"
  6007. },
  6008. "require-dev": {
  6009. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  6010. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  6011. },
  6012. "type": "library",
  6013. "autoload": {
  6014. "psr-4": {
  6015. "Http\\Promise\\": "src/"
  6016. }
  6017. },
  6018. "notification-url": "https://packagist.org/downloads/",
  6019. "license": [
  6020. "MIT"
  6021. ],
  6022. "authors": [
  6023. {
  6024. "name": "Joel Wurtz",
  6025. "email": "joel.wurtz@gmail.com"
  6026. },
  6027. {
  6028. "name": "Márk Sági-Kazár",
  6029. "email": "mark.sagikazar@gmail.com"
  6030. }
  6031. ],
  6032. "description": "Promise used for asynchronous HTTP requests",
  6033. "homepage": "http://httplug.io",
  6034. "keywords": [
  6035. "promise"
  6036. ],
  6037. "support": {
  6038. "issues": "https://github.com/php-http/promise/issues",
  6039. "source": "https://github.com/php-http/promise/tree/1.3.1"
  6040. },
  6041. "time": "2024-03-15T13:55:21+00:00"
  6042. },
  6043. {
  6044. "name": "phpoffice/phpspreadsheet",
  6045. "version": "1.30.0",
  6046. "source": {
  6047. "type": "git",
  6048. "url": "https://github.com/PHPOffice/PhpSpreadsheet.git",
  6049. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714"
  6050. },
  6051. "dist": {
  6052. "type": "zip",
  6053. "url": "https://api.github.com/repos/PHPOffice/PhpSpreadsheet/zipball/2f39286e0136673778b7a142b3f0d141e43d1714",
  6054. "reference": "2f39286e0136673778b7a142b3f0d141e43d1714",
  6055. "shasum": ""
  6056. },
  6057. "require": {
  6058. "composer/pcre": "^1||^2||^3",
  6059. "ext-ctype": "*",
  6060. "ext-dom": "*",
  6061. "ext-fileinfo": "*",
  6062. "ext-gd": "*",
  6063. "ext-iconv": "*",
  6064. "ext-libxml": "*",
  6065. "ext-mbstring": "*",
  6066. "ext-simplexml": "*",
  6067. "ext-xml": "*",
  6068. "ext-xmlreader": "*",
  6069. "ext-xmlwriter": "*",
  6070. "ext-zip": "*",
  6071. "ext-zlib": "*",
  6072. "ezyang/htmlpurifier": "^4.15",
  6073. "maennchen/zipstream-php": "^2.1 || ^3.0",
  6074. "markbaker/complex": "^3.0",
  6075. "markbaker/matrix": "^3.0",
  6076. "php": "^7.4 || ^8.0",
  6077. "psr/http-client": "^1.0",
  6078. "psr/http-factory": "^1.0",
  6079. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0"
  6080. },
  6081. "require-dev": {
  6082. "dealerdirect/phpcodesniffer-composer-installer": "dev-main",
  6083. "dompdf/dompdf": "^1.0 || ^2.0 || ^3.0",
  6084. "friendsofphp/php-cs-fixer": "^3.2",
  6085. "mitoteam/jpgraph": "^10.3",
  6086. "mpdf/mpdf": "^8.1.1",
  6087. "phpcompatibility/php-compatibility": "^9.3",
  6088. "phpstan/phpstan": "^1.1",
  6089. "phpstan/phpstan-phpunit": "^1.0",
  6090. "phpunit/phpunit": "^8.5 || ^9.0",
  6091. "squizlabs/php_codesniffer": "^3.7",
  6092. "tecnickcom/tcpdf": "^6.5"
  6093. },
  6094. "suggest": {
  6095. "dompdf/dompdf": "Option for rendering PDF with PDF Writer",
  6096. "ext-intl": "PHP Internationalization Functions",
  6097. "mitoteam/jpgraph": "Option for rendering charts, or including charts with PDF or HTML Writers",
  6098. "mpdf/mpdf": "Option for rendering PDF with PDF Writer",
  6099. "tecnickcom/tcpdf": "Option for rendering PDF with PDF Writer"
  6100. },
  6101. "type": "library",
  6102. "autoload": {
  6103. "psr-4": {
  6104. "PhpOffice\\PhpSpreadsheet\\": "src/PhpSpreadsheet"
  6105. }
  6106. },
  6107. "notification-url": "https://packagist.org/downloads/",
  6108. "license": [
  6109. "MIT"
  6110. ],
  6111. "authors": [
  6112. {
  6113. "name": "Maarten Balliauw",
  6114. "homepage": "https://blog.maartenballiauw.be"
  6115. },
  6116. {
  6117. "name": "Mark Baker",
  6118. "homepage": "https://markbakeruk.net"
  6119. },
  6120. {
  6121. "name": "Franck Lefevre",
  6122. "homepage": "https://rootslabs.net"
  6123. },
  6124. {
  6125. "name": "Erik Tilt"
  6126. },
  6127. {
  6128. "name": "Adrien Crivelli"
  6129. }
  6130. ],
  6131. "description": "PHPSpreadsheet - Read, Create and Write Spreadsheet documents in PHP - Spreadsheet engine",
  6132. "homepage": "https://github.com/PHPOffice/PhpSpreadsheet",
  6133. "keywords": [
  6134. "OpenXML",
  6135. "excel",
  6136. "gnumeric",
  6137. "ods",
  6138. "php",
  6139. "spreadsheet",
  6140. "xls",
  6141. "xlsx"
  6142. ],
  6143. "support": {
  6144. "issues": "https://github.com/PHPOffice/PhpSpreadsheet/issues",
  6145. "source": "https://github.com/PHPOffice/PhpSpreadsheet/tree/1.30.0"
  6146. },
  6147. "time": "2025-08-10T06:28:02+00:00"
  6148. },
  6149. {
  6150. "name": "phpoption/phpoption",
  6151. "version": "1.9.3",
  6152. "source": {
  6153. "type": "git",
  6154. "url": "https://github.com/schmittjoh/php-option.git",
  6155. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  6156. },
  6157. "dist": {
  6158. "type": "zip",
  6159. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6160. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  6161. "shasum": ""
  6162. },
  6163. "require": {
  6164. "php": "^7.2.5 || ^8.0"
  6165. },
  6166. "require-dev": {
  6167. "bamarni/composer-bin-plugin": "^1.8.2",
  6168. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  6169. },
  6170. "type": "library",
  6171. "extra": {
  6172. "bamarni-bin": {
  6173. "bin-links": true,
  6174. "forward-command": false
  6175. },
  6176. "branch-alias": {
  6177. "dev-master": "1.9-dev"
  6178. }
  6179. },
  6180. "autoload": {
  6181. "psr-4": {
  6182. "PhpOption\\": "src/PhpOption/"
  6183. }
  6184. },
  6185. "notification-url": "https://packagist.org/downloads/",
  6186. "license": [
  6187. "Apache-2.0"
  6188. ],
  6189. "authors": [
  6190. {
  6191. "name": "Johannes M. Schmitt",
  6192. "email": "schmittjoh@gmail.com",
  6193. "homepage": "https://github.com/schmittjoh"
  6194. },
  6195. {
  6196. "name": "Graham Campbell",
  6197. "email": "hello@gjcampbell.co.uk",
  6198. "homepage": "https://github.com/GrahamCampbell"
  6199. }
  6200. ],
  6201. "description": "Option Type for PHP",
  6202. "keywords": [
  6203. "language",
  6204. "option",
  6205. "php",
  6206. "type"
  6207. ],
  6208. "support": {
  6209. "issues": "https://github.com/schmittjoh/php-option/issues",
  6210. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  6211. },
  6212. "funding": [
  6213. {
  6214. "url": "https://github.com/GrahamCampbell",
  6215. "type": "github"
  6216. },
  6217. {
  6218. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  6219. "type": "tidelift"
  6220. }
  6221. ],
  6222. "time": "2024-07-20T21:41:07+00:00"
  6223. },
  6224. {
  6225. "name": "phpseclib/phpseclib",
  6226. "version": "3.0.43",
  6227. "source": {
  6228. "type": "git",
  6229. "url": "https://github.com/phpseclib/phpseclib.git",
  6230. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  6231. },
  6232. "dist": {
  6233. "type": "zip",
  6234. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  6235. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  6236. "shasum": ""
  6237. },
  6238. "require": {
  6239. "paragonie/constant_time_encoding": "^1|^2|^3",
  6240. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  6241. "php": ">=5.6.1"
  6242. },
  6243. "require-dev": {
  6244. "phpunit/phpunit": "*"
  6245. },
  6246. "suggest": {
  6247. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  6248. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  6249. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  6250. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  6251. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  6252. },
  6253. "type": "library",
  6254. "autoload": {
  6255. "files": [
  6256. "phpseclib/bootstrap.php"
  6257. ],
  6258. "psr-4": {
  6259. "phpseclib3\\": "phpseclib/"
  6260. }
  6261. },
  6262. "notification-url": "https://packagist.org/downloads/",
  6263. "license": [
  6264. "MIT"
  6265. ],
  6266. "authors": [
  6267. {
  6268. "name": "Jim Wigginton",
  6269. "email": "terrafrost@php.net",
  6270. "role": "Lead Developer"
  6271. },
  6272. {
  6273. "name": "Patrick Monnerat",
  6274. "email": "pm@datasphere.ch",
  6275. "role": "Developer"
  6276. },
  6277. {
  6278. "name": "Andreas Fischer",
  6279. "email": "bantu@phpbb.com",
  6280. "role": "Developer"
  6281. },
  6282. {
  6283. "name": "Hans-Jürgen Petrich",
  6284. "email": "petrich@tronic-media.com",
  6285. "role": "Developer"
  6286. },
  6287. {
  6288. "name": "Graham Campbell",
  6289. "email": "graham@alt-three.com",
  6290. "role": "Developer"
  6291. }
  6292. ],
  6293. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  6294. "homepage": "http://phpseclib.sourceforge.net",
  6295. "keywords": [
  6296. "BigInteger",
  6297. "aes",
  6298. "asn.1",
  6299. "asn1",
  6300. "blowfish",
  6301. "crypto",
  6302. "cryptography",
  6303. "encryption",
  6304. "rsa",
  6305. "security",
  6306. "sftp",
  6307. "signature",
  6308. "signing",
  6309. "ssh",
  6310. "twofish",
  6311. "x.509",
  6312. "x509"
  6313. ],
  6314. "support": {
  6315. "issues": "https://github.com/phpseclib/phpseclib/issues",
  6316. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  6317. },
  6318. "funding": [
  6319. {
  6320. "url": "https://github.com/terrafrost",
  6321. "type": "github"
  6322. },
  6323. {
  6324. "url": "https://www.patreon.com/phpseclib",
  6325. "type": "patreon"
  6326. },
  6327. {
  6328. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  6329. "type": "tidelift"
  6330. }
  6331. ],
  6332. "time": "2024-12-14T21:12:59+00:00"
  6333. },
  6334. {
  6335. "name": "predis/predis",
  6336. "version": "v2.3.0",
  6337. "source": {
  6338. "type": "git",
  6339. "url": "https://github.com/predis/predis.git",
  6340. "reference": "bac46bfdb78cd6e9c7926c697012aae740cb9ec9"
  6341. },
  6342. "dist": {
  6343. "type": "zip",
  6344. "url": "https://api.github.com/repos/predis/predis/zipball/bac46bfdb78cd6e9c7926c697012aae740cb9ec9",
  6345. "reference": "bac46bfdb78cd6e9c7926c697012aae740cb9ec9",
  6346. "shasum": ""
  6347. },
  6348. "require": {
  6349. "php": "^7.2 || ^8.0"
  6350. },
  6351. "require-dev": {
  6352. "friendsofphp/php-cs-fixer": "^3.3",
  6353. "phpstan/phpstan": "^1.9",
  6354. "phpunit/phpunit": "^8.0 || ^9.4"
  6355. },
  6356. "suggest": {
  6357. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  6358. },
  6359. "type": "library",
  6360. "autoload": {
  6361. "psr-4": {
  6362. "Predis\\": "src/"
  6363. }
  6364. },
  6365. "notification-url": "https://packagist.org/downloads/",
  6366. "license": [
  6367. "MIT"
  6368. ],
  6369. "authors": [
  6370. {
  6371. "name": "Till Krüss",
  6372. "homepage": "https://till.im",
  6373. "role": "Maintainer"
  6374. }
  6375. ],
  6376. "description": "A flexible and feature-complete Redis client for PHP.",
  6377. "homepage": "http://github.com/predis/predis",
  6378. "keywords": [
  6379. "nosql",
  6380. "predis",
  6381. "redis"
  6382. ],
  6383. "support": {
  6384. "issues": "https://github.com/predis/predis/issues",
  6385. "source": "https://github.com/predis/predis/tree/v2.3.0"
  6386. },
  6387. "funding": [
  6388. {
  6389. "url": "https://github.com/sponsors/tillkruss",
  6390. "type": "github"
  6391. }
  6392. ],
  6393. "time": "2024-11-21T20:00:02+00:00"
  6394. },
  6395. {
  6396. "name": "prettus/l5-repository",
  6397. "version": "2.10.1",
  6398. "source": {
  6399. "type": "git",
  6400. "url": "https://github.com/andersao/l5-repository.git",
  6401. "reference": "27835088f92f42d73cc7f4f98b9386ddba709dcf"
  6402. },
  6403. "dist": {
  6404. "type": "zip",
  6405. "url": "https://api.github.com/repos/andersao/l5-repository/zipball/27835088f92f42d73cc7f4f98b9386ddba709dcf",
  6406. "reference": "27835088f92f42d73cc7f4f98b9386ddba709dcf",
  6407. "shasum": ""
  6408. },
  6409. "require": {
  6410. "illuminate/config": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  6411. "illuminate/console": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  6412. "illuminate/database": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  6413. "illuminate/filesystem": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  6414. "illuminate/http": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  6415. "illuminate/pagination": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  6416. "illuminate/support": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  6417. "illuminate/validation": "~5.0|~6.0|~7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  6418. "prettus/laravel-validation": "~1.1|~1.2|~1.3|~1.4|~1.5|~1.6|~1.7"
  6419. },
  6420. "suggest": {
  6421. "league/fractal": "Required to use the Fractal Presenter (0.12.*).",
  6422. "prettus/laravel-validation": "Required to provide easy validation with the repository (1.1.*)",
  6423. "robclancy/presenter": "Required to use the Presenter Model (1.3.*)"
  6424. },
  6425. "type": "library",
  6426. "extra": {
  6427. "laravel": {
  6428. "providers": [
  6429. "Prettus\\Repository\\Providers\\RepositoryServiceProvider"
  6430. ]
  6431. }
  6432. },
  6433. "autoload": {
  6434. "psr-4": {
  6435. "Prettus\\Repository\\": "src/Prettus/Repository/"
  6436. }
  6437. },
  6438. "notification-url": "https://packagist.org/downloads/",
  6439. "license": [
  6440. "MIT"
  6441. ],
  6442. "authors": [
  6443. {
  6444. "name": "Anderson Andrade",
  6445. "email": "contato@andersonandra.de",
  6446. "homepage": "http://andersonandra.de",
  6447. "role": "Developer"
  6448. }
  6449. ],
  6450. "description": "Laravel 5|6|7|8|9|10|11|12 - Repositories to the database layer",
  6451. "homepage": "http://andersao.github.io/l5-repository",
  6452. "keywords": [
  6453. "cache",
  6454. "eloquent",
  6455. "laravel",
  6456. "model",
  6457. "repository"
  6458. ],
  6459. "support": {
  6460. "docs": "http://andersao.github.io/l5-repository",
  6461. "email": "contato@andersonandra.de",
  6462. "issues": "https://github.com/andersao/l5-repository/issues",
  6463. "source": "https://github.com/andersao/l5-repository",
  6464. "wiki": "https://github.com/andersao/l5-repository"
  6465. },
  6466. "time": "2025-03-10T11:13:50+00:00"
  6467. },
  6468. {
  6469. "name": "prettus/laravel-validation",
  6470. "version": "1.7.0",
  6471. "source": {
  6472. "type": "git",
  6473. "url": "https://github.com/andersao/laravel-validator.git",
  6474. "reference": "fc6ecaaedb482767592eba2a4178792437c86bda"
  6475. },
  6476. "dist": {
  6477. "type": "zip",
  6478. "url": "https://api.github.com/repos/andersao/laravel-validator/zipball/fc6ecaaedb482767592eba2a4178792437c86bda",
  6479. "reference": "fc6ecaaedb482767592eba2a4178792437c86bda",
  6480. "shasum": ""
  6481. },
  6482. "require": {
  6483. "illuminate/support": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  6484. "illuminate/validation": "~5.4|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  6485. "php": ">=5.4.0"
  6486. },
  6487. "type": "library",
  6488. "autoload": {
  6489. "psr-4": {
  6490. "Prettus\\Validator\\": "src/Prettus/Validator/"
  6491. }
  6492. },
  6493. "notification-url": "https://packagist.org/downloads/",
  6494. "authors": [
  6495. {
  6496. "name": "Anderson Andrade",
  6497. "email": "contato@andersonandra.de",
  6498. "homepage": "http://andersonandra.de",
  6499. "role": "Developer"
  6500. }
  6501. ],
  6502. "description": "Laravel Validation Service",
  6503. "homepage": "http://andersao.github.io/laravel-validation",
  6504. "keywords": [
  6505. "laravel",
  6506. "service",
  6507. "validation"
  6508. ],
  6509. "support": {
  6510. "docs": "http://andersao.github.io/laravel-validation",
  6511. "email": "contato@andersonandra.de",
  6512. "issues": "https://github.com/andersao/laravel-validation/issues",
  6513. "source": "https://github.com/andersao/laravel-validation",
  6514. "wiki": "https://github.com/andersao/laravel-validation"
  6515. },
  6516. "time": "2025-03-07T18:33:05+00:00"
  6517. },
  6518. {
  6519. "name": "psr/cache",
  6520. "version": "3.0.0",
  6521. "source": {
  6522. "type": "git",
  6523. "url": "https://github.com/php-fig/cache.git",
  6524. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  6525. },
  6526. "dist": {
  6527. "type": "zip",
  6528. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6529. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  6530. "shasum": ""
  6531. },
  6532. "require": {
  6533. "php": ">=8.0.0"
  6534. },
  6535. "type": "library",
  6536. "extra": {
  6537. "branch-alias": {
  6538. "dev-master": "1.0.x-dev"
  6539. }
  6540. },
  6541. "autoload": {
  6542. "psr-4": {
  6543. "Psr\\Cache\\": "src/"
  6544. }
  6545. },
  6546. "notification-url": "https://packagist.org/downloads/",
  6547. "license": [
  6548. "MIT"
  6549. ],
  6550. "authors": [
  6551. {
  6552. "name": "PHP-FIG",
  6553. "homepage": "https://www.php-fig.org/"
  6554. }
  6555. ],
  6556. "description": "Common interface for caching libraries",
  6557. "keywords": [
  6558. "cache",
  6559. "psr",
  6560. "psr-6"
  6561. ],
  6562. "support": {
  6563. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  6564. },
  6565. "time": "2021-02-03T23:26:27+00:00"
  6566. },
  6567. {
  6568. "name": "psr/clock",
  6569. "version": "1.0.0",
  6570. "source": {
  6571. "type": "git",
  6572. "url": "https://github.com/php-fig/clock.git",
  6573. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  6574. },
  6575. "dist": {
  6576. "type": "zip",
  6577. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6578. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  6579. "shasum": ""
  6580. },
  6581. "require": {
  6582. "php": "^7.0 || ^8.0"
  6583. },
  6584. "type": "library",
  6585. "autoload": {
  6586. "psr-4": {
  6587. "Psr\\Clock\\": "src/"
  6588. }
  6589. },
  6590. "notification-url": "https://packagist.org/downloads/",
  6591. "license": [
  6592. "MIT"
  6593. ],
  6594. "authors": [
  6595. {
  6596. "name": "PHP-FIG",
  6597. "homepage": "https://www.php-fig.org/"
  6598. }
  6599. ],
  6600. "description": "Common interface for reading the clock.",
  6601. "homepage": "https://github.com/php-fig/clock",
  6602. "keywords": [
  6603. "clock",
  6604. "now",
  6605. "psr",
  6606. "psr-20",
  6607. "time"
  6608. ],
  6609. "support": {
  6610. "issues": "https://github.com/php-fig/clock/issues",
  6611. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  6612. },
  6613. "time": "2022-11-25T14:36:26+00:00"
  6614. },
  6615. {
  6616. "name": "psr/container",
  6617. "version": "2.0.2",
  6618. "source": {
  6619. "type": "git",
  6620. "url": "https://github.com/php-fig/container.git",
  6621. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  6622. },
  6623. "dist": {
  6624. "type": "zip",
  6625. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6626. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  6627. "shasum": ""
  6628. },
  6629. "require": {
  6630. "php": ">=7.4.0"
  6631. },
  6632. "type": "library",
  6633. "extra": {
  6634. "branch-alias": {
  6635. "dev-master": "2.0.x-dev"
  6636. }
  6637. },
  6638. "autoload": {
  6639. "psr-4": {
  6640. "Psr\\Container\\": "src/"
  6641. }
  6642. },
  6643. "notification-url": "https://packagist.org/downloads/",
  6644. "license": [
  6645. "MIT"
  6646. ],
  6647. "authors": [
  6648. {
  6649. "name": "PHP-FIG",
  6650. "homepage": "https://www.php-fig.org/"
  6651. }
  6652. ],
  6653. "description": "Common Container Interface (PHP FIG PSR-11)",
  6654. "homepage": "https://github.com/php-fig/container",
  6655. "keywords": [
  6656. "PSR-11",
  6657. "container",
  6658. "container-interface",
  6659. "container-interop",
  6660. "psr"
  6661. ],
  6662. "support": {
  6663. "issues": "https://github.com/php-fig/container/issues",
  6664. "source": "https://github.com/php-fig/container/tree/2.0.2"
  6665. },
  6666. "time": "2021-11-05T16:47:00+00:00"
  6667. },
  6668. {
  6669. "name": "psr/event-dispatcher",
  6670. "version": "1.0.0",
  6671. "source": {
  6672. "type": "git",
  6673. "url": "https://github.com/php-fig/event-dispatcher.git",
  6674. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  6675. },
  6676. "dist": {
  6677. "type": "zip",
  6678. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6679. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  6680. "shasum": ""
  6681. },
  6682. "require": {
  6683. "php": ">=7.2.0"
  6684. },
  6685. "type": "library",
  6686. "extra": {
  6687. "branch-alias": {
  6688. "dev-master": "1.0.x-dev"
  6689. }
  6690. },
  6691. "autoload": {
  6692. "psr-4": {
  6693. "Psr\\EventDispatcher\\": "src/"
  6694. }
  6695. },
  6696. "notification-url": "https://packagist.org/downloads/",
  6697. "license": [
  6698. "MIT"
  6699. ],
  6700. "authors": [
  6701. {
  6702. "name": "PHP-FIG",
  6703. "homepage": "http://www.php-fig.org/"
  6704. }
  6705. ],
  6706. "description": "Standard interfaces for event handling.",
  6707. "keywords": [
  6708. "events",
  6709. "psr",
  6710. "psr-14"
  6711. ],
  6712. "support": {
  6713. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  6714. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  6715. },
  6716. "time": "2019-01-08T18:20:26+00:00"
  6717. },
  6718. {
  6719. "name": "psr/http-client",
  6720. "version": "1.0.3",
  6721. "source": {
  6722. "type": "git",
  6723. "url": "https://github.com/php-fig/http-client.git",
  6724. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  6725. },
  6726. "dist": {
  6727. "type": "zip",
  6728. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6729. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  6730. "shasum": ""
  6731. },
  6732. "require": {
  6733. "php": "^7.0 || ^8.0",
  6734. "psr/http-message": "^1.0 || ^2.0"
  6735. },
  6736. "type": "library",
  6737. "extra": {
  6738. "branch-alias": {
  6739. "dev-master": "1.0.x-dev"
  6740. }
  6741. },
  6742. "autoload": {
  6743. "psr-4": {
  6744. "Psr\\Http\\Client\\": "src/"
  6745. }
  6746. },
  6747. "notification-url": "https://packagist.org/downloads/",
  6748. "license": [
  6749. "MIT"
  6750. ],
  6751. "authors": [
  6752. {
  6753. "name": "PHP-FIG",
  6754. "homepage": "https://www.php-fig.org/"
  6755. }
  6756. ],
  6757. "description": "Common interface for HTTP clients",
  6758. "homepage": "https://github.com/php-fig/http-client",
  6759. "keywords": [
  6760. "http",
  6761. "http-client",
  6762. "psr",
  6763. "psr-18"
  6764. ],
  6765. "support": {
  6766. "source": "https://github.com/php-fig/http-client"
  6767. },
  6768. "time": "2023-09-23T14:17:50+00:00"
  6769. },
  6770. {
  6771. "name": "psr/http-factory",
  6772. "version": "1.1.0",
  6773. "source": {
  6774. "type": "git",
  6775. "url": "https://github.com/php-fig/http-factory.git",
  6776. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6777. },
  6778. "dist": {
  6779. "type": "zip",
  6780. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6781. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6782. "shasum": ""
  6783. },
  6784. "require": {
  6785. "php": ">=7.1",
  6786. "psr/http-message": "^1.0 || ^2.0"
  6787. },
  6788. "type": "library",
  6789. "extra": {
  6790. "branch-alias": {
  6791. "dev-master": "1.0.x-dev"
  6792. }
  6793. },
  6794. "autoload": {
  6795. "psr-4": {
  6796. "Psr\\Http\\Message\\": "src/"
  6797. }
  6798. },
  6799. "notification-url": "https://packagist.org/downloads/",
  6800. "license": [
  6801. "MIT"
  6802. ],
  6803. "authors": [
  6804. {
  6805. "name": "PHP-FIG",
  6806. "homepage": "https://www.php-fig.org/"
  6807. }
  6808. ],
  6809. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6810. "keywords": [
  6811. "factory",
  6812. "http",
  6813. "message",
  6814. "psr",
  6815. "psr-17",
  6816. "psr-7",
  6817. "request",
  6818. "response"
  6819. ],
  6820. "support": {
  6821. "source": "https://github.com/php-fig/http-factory"
  6822. },
  6823. "time": "2024-04-15T12:06:14+00:00"
  6824. },
  6825. {
  6826. "name": "psr/http-message",
  6827. "version": "2.0",
  6828. "source": {
  6829. "type": "git",
  6830. "url": "https://github.com/php-fig/http-message.git",
  6831. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6832. },
  6833. "dist": {
  6834. "type": "zip",
  6835. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6836. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6837. "shasum": ""
  6838. },
  6839. "require": {
  6840. "php": "^7.2 || ^8.0"
  6841. },
  6842. "type": "library",
  6843. "extra": {
  6844. "branch-alias": {
  6845. "dev-master": "2.0.x-dev"
  6846. }
  6847. },
  6848. "autoload": {
  6849. "psr-4": {
  6850. "Psr\\Http\\Message\\": "src/"
  6851. }
  6852. },
  6853. "notification-url": "https://packagist.org/downloads/",
  6854. "license": [
  6855. "MIT"
  6856. ],
  6857. "authors": [
  6858. {
  6859. "name": "PHP-FIG",
  6860. "homepage": "https://www.php-fig.org/"
  6861. }
  6862. ],
  6863. "description": "Common interface for HTTP messages",
  6864. "homepage": "https://github.com/php-fig/http-message",
  6865. "keywords": [
  6866. "http",
  6867. "http-message",
  6868. "psr",
  6869. "psr-7",
  6870. "request",
  6871. "response"
  6872. ],
  6873. "support": {
  6874. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6875. },
  6876. "time": "2023-04-04T09:54:51+00:00"
  6877. },
  6878. {
  6879. "name": "psr/log",
  6880. "version": "3.0.2",
  6881. "source": {
  6882. "type": "git",
  6883. "url": "https://github.com/php-fig/log.git",
  6884. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6885. },
  6886. "dist": {
  6887. "type": "zip",
  6888. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6889. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6890. "shasum": ""
  6891. },
  6892. "require": {
  6893. "php": ">=8.0.0"
  6894. },
  6895. "type": "library",
  6896. "extra": {
  6897. "branch-alias": {
  6898. "dev-master": "3.x-dev"
  6899. }
  6900. },
  6901. "autoload": {
  6902. "psr-4": {
  6903. "Psr\\Log\\": "src"
  6904. }
  6905. },
  6906. "notification-url": "https://packagist.org/downloads/",
  6907. "license": [
  6908. "MIT"
  6909. ],
  6910. "authors": [
  6911. {
  6912. "name": "PHP-FIG",
  6913. "homepage": "https://www.php-fig.org/"
  6914. }
  6915. ],
  6916. "description": "Common interface for logging libraries",
  6917. "homepage": "https://github.com/php-fig/log",
  6918. "keywords": [
  6919. "log",
  6920. "psr",
  6921. "psr-3"
  6922. ],
  6923. "support": {
  6924. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6925. },
  6926. "time": "2024-09-11T13:17:53+00:00"
  6927. },
  6928. {
  6929. "name": "psr/simple-cache",
  6930. "version": "3.0.0",
  6931. "source": {
  6932. "type": "git",
  6933. "url": "https://github.com/php-fig/simple-cache.git",
  6934. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6935. },
  6936. "dist": {
  6937. "type": "zip",
  6938. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6939. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6940. "shasum": ""
  6941. },
  6942. "require": {
  6943. "php": ">=8.0.0"
  6944. },
  6945. "type": "library",
  6946. "extra": {
  6947. "branch-alias": {
  6948. "dev-master": "3.0.x-dev"
  6949. }
  6950. },
  6951. "autoload": {
  6952. "psr-4": {
  6953. "Psr\\SimpleCache\\": "src/"
  6954. }
  6955. },
  6956. "notification-url": "https://packagist.org/downloads/",
  6957. "license": [
  6958. "MIT"
  6959. ],
  6960. "authors": [
  6961. {
  6962. "name": "PHP-FIG",
  6963. "homepage": "https://www.php-fig.org/"
  6964. }
  6965. ],
  6966. "description": "Common interfaces for simple caching",
  6967. "keywords": [
  6968. "cache",
  6969. "caching",
  6970. "psr",
  6971. "psr-16",
  6972. "simple-cache"
  6973. ],
  6974. "support": {
  6975. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6976. },
  6977. "time": "2021-10-29T13:26:27+00:00"
  6978. },
  6979. {
  6980. "name": "psy/psysh",
  6981. "version": "v0.12.8",
  6982. "source": {
  6983. "type": "git",
  6984. "url": "https://github.com/bobthecow/psysh.git",
  6985. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625"
  6986. },
  6987. "dist": {
  6988. "type": "zip",
  6989. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  6990. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  6991. "shasum": ""
  6992. },
  6993. "require": {
  6994. "ext-json": "*",
  6995. "ext-tokenizer": "*",
  6996. "nikic/php-parser": "^5.0 || ^4.0",
  6997. "php": "^8.0 || ^7.4",
  6998. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6999. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  7000. },
  7001. "conflict": {
  7002. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  7003. },
  7004. "require-dev": {
  7005. "bamarni/composer-bin-plugin": "^1.2"
  7006. },
  7007. "suggest": {
  7008. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  7009. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  7010. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  7011. },
  7012. "bin": [
  7013. "bin/psysh"
  7014. ],
  7015. "type": "library",
  7016. "extra": {
  7017. "bamarni-bin": {
  7018. "bin-links": false,
  7019. "forward-command": false
  7020. },
  7021. "branch-alias": {
  7022. "dev-main": "0.12.x-dev"
  7023. }
  7024. },
  7025. "autoload": {
  7026. "files": [
  7027. "src/functions.php"
  7028. ],
  7029. "psr-4": {
  7030. "Psy\\": "src/"
  7031. }
  7032. },
  7033. "notification-url": "https://packagist.org/downloads/",
  7034. "license": [
  7035. "MIT"
  7036. ],
  7037. "authors": [
  7038. {
  7039. "name": "Justin Hileman",
  7040. "email": "justin@justinhileman.info",
  7041. "homepage": "http://justinhileman.com"
  7042. }
  7043. ],
  7044. "description": "An interactive shell for modern PHP.",
  7045. "homepage": "http://psysh.org",
  7046. "keywords": [
  7047. "REPL",
  7048. "console",
  7049. "interactive",
  7050. "shell"
  7051. ],
  7052. "support": {
  7053. "issues": "https://github.com/bobthecow/psysh/issues",
  7054. "source": "https://github.com/bobthecow/psysh/tree/v0.12.8"
  7055. },
  7056. "time": "2025-03-16T03:05:19+00:00"
  7057. },
  7058. {
  7059. "name": "pusher/pusher-php-server",
  7060. "version": "7.2.7",
  7061. "source": {
  7062. "type": "git",
  7063. "url": "https://github.com/pusher/pusher-http-php.git",
  7064. "reference": "148b0b5100d000ed57195acdf548a2b1b38ee3f7"
  7065. },
  7066. "dist": {
  7067. "type": "zip",
  7068. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/148b0b5100d000ed57195acdf548a2b1b38ee3f7",
  7069. "reference": "148b0b5100d000ed57195acdf548a2b1b38ee3f7",
  7070. "shasum": ""
  7071. },
  7072. "require": {
  7073. "ext-curl": "*",
  7074. "ext-json": "*",
  7075. "guzzlehttp/guzzle": "^7.2",
  7076. "paragonie/sodium_compat": "^1.6|^2.0",
  7077. "php": "^7.3|^8.0",
  7078. "psr/log": "^1.0|^2.0|^3.0"
  7079. },
  7080. "require-dev": {
  7081. "overtrue/phplint": "^2.3",
  7082. "phpunit/phpunit": "^9.3"
  7083. },
  7084. "type": "library",
  7085. "extra": {
  7086. "branch-alias": {
  7087. "dev-master": "5.0-dev"
  7088. }
  7089. },
  7090. "autoload": {
  7091. "psr-4": {
  7092. "Pusher\\": "src/"
  7093. }
  7094. },
  7095. "notification-url": "https://packagist.org/downloads/",
  7096. "license": [
  7097. "MIT"
  7098. ],
  7099. "description": "Library for interacting with the Pusher REST API",
  7100. "keywords": [
  7101. "events",
  7102. "messaging",
  7103. "php-pusher-server",
  7104. "publish",
  7105. "push",
  7106. "pusher",
  7107. "real time",
  7108. "real-time",
  7109. "realtime",
  7110. "rest",
  7111. "trigger"
  7112. ],
  7113. "support": {
  7114. "issues": "https://github.com/pusher/pusher-http-php/issues",
  7115. "source": "https://github.com/pusher/pusher-http-php/tree/7.2.7"
  7116. },
  7117. "time": "2025-01-06T10:56:20+00:00"
  7118. },
  7119. {
  7120. "name": "ralouphie/getallheaders",
  7121. "version": "3.0.3",
  7122. "source": {
  7123. "type": "git",
  7124. "url": "https://github.com/ralouphie/getallheaders.git",
  7125. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  7126. },
  7127. "dist": {
  7128. "type": "zip",
  7129. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  7130. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  7131. "shasum": ""
  7132. },
  7133. "require": {
  7134. "php": ">=5.6"
  7135. },
  7136. "require-dev": {
  7137. "php-coveralls/php-coveralls": "^2.1",
  7138. "phpunit/phpunit": "^5 || ^6.5"
  7139. },
  7140. "type": "library",
  7141. "autoload": {
  7142. "files": [
  7143. "src/getallheaders.php"
  7144. ]
  7145. },
  7146. "notification-url": "https://packagist.org/downloads/",
  7147. "license": [
  7148. "MIT"
  7149. ],
  7150. "authors": [
  7151. {
  7152. "name": "Ralph Khattar",
  7153. "email": "ralph.khattar@gmail.com"
  7154. }
  7155. ],
  7156. "description": "A polyfill for getallheaders.",
  7157. "support": {
  7158. "issues": "https://github.com/ralouphie/getallheaders/issues",
  7159. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  7160. },
  7161. "time": "2019-03-08T08:55:37+00:00"
  7162. },
  7163. {
  7164. "name": "ramsey/collection",
  7165. "version": "2.1.0",
  7166. "source": {
  7167. "type": "git",
  7168. "url": "https://github.com/ramsey/collection.git",
  7169. "reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109"
  7170. },
  7171. "dist": {
  7172. "type": "zip",
  7173. "url": "https://api.github.com/repos/ramsey/collection/zipball/3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109",
  7174. "reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109",
  7175. "shasum": ""
  7176. },
  7177. "require": {
  7178. "php": "^8.1"
  7179. },
  7180. "require-dev": {
  7181. "captainhook/plugin-composer": "^5.3",
  7182. "ergebnis/composer-normalize": "^2.45",
  7183. "fakerphp/faker": "^1.24",
  7184. "hamcrest/hamcrest-php": "^2.0",
  7185. "jangregor/phpstan-prophecy": "^2.1",
  7186. "mockery/mockery": "^1.6",
  7187. "php-parallel-lint/php-console-highlighter": "^1.0",
  7188. "php-parallel-lint/php-parallel-lint": "^1.4",
  7189. "phpspec/prophecy-phpunit": "^2.3",
  7190. "phpstan/extension-installer": "^1.4",
  7191. "phpstan/phpstan": "^2.1",
  7192. "phpstan/phpstan-mockery": "^2.0",
  7193. "phpstan/phpstan-phpunit": "^2.0",
  7194. "phpunit/phpunit": "^10.5",
  7195. "ramsey/coding-standard": "^2.3",
  7196. "ramsey/conventional-commits": "^1.6",
  7197. "roave/security-advisories": "dev-latest"
  7198. },
  7199. "type": "library",
  7200. "extra": {
  7201. "captainhook": {
  7202. "force-install": true
  7203. },
  7204. "ramsey/conventional-commits": {
  7205. "configFile": "conventional-commits.json"
  7206. }
  7207. },
  7208. "autoload": {
  7209. "psr-4": {
  7210. "Ramsey\\Collection\\": "src/"
  7211. }
  7212. },
  7213. "notification-url": "https://packagist.org/downloads/",
  7214. "license": [
  7215. "MIT"
  7216. ],
  7217. "authors": [
  7218. {
  7219. "name": "Ben Ramsey",
  7220. "email": "ben@benramsey.com",
  7221. "homepage": "https://benramsey.com"
  7222. }
  7223. ],
  7224. "description": "A PHP library for representing and manipulating collections.",
  7225. "keywords": [
  7226. "array",
  7227. "collection",
  7228. "hash",
  7229. "map",
  7230. "queue",
  7231. "set"
  7232. ],
  7233. "support": {
  7234. "issues": "https://github.com/ramsey/collection/issues",
  7235. "source": "https://github.com/ramsey/collection/tree/2.1.0"
  7236. },
  7237. "time": "2025-03-02T04:48:29+00:00"
  7238. },
  7239. {
  7240. "name": "ramsey/uuid",
  7241. "version": "4.7.6",
  7242. "source": {
  7243. "type": "git",
  7244. "url": "https://github.com/ramsey/uuid.git",
  7245. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  7246. },
  7247. "dist": {
  7248. "type": "zip",
  7249. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  7250. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  7251. "shasum": ""
  7252. },
  7253. "require": {
  7254. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  7255. "ext-json": "*",
  7256. "php": "^8.0",
  7257. "ramsey/collection": "^1.2 || ^2.0"
  7258. },
  7259. "replace": {
  7260. "rhumsaa/uuid": "self.version"
  7261. },
  7262. "require-dev": {
  7263. "captainhook/captainhook": "^5.10",
  7264. "captainhook/plugin-composer": "^5.3",
  7265. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  7266. "doctrine/annotations": "^1.8",
  7267. "ergebnis/composer-normalize": "^2.15",
  7268. "mockery/mockery": "^1.3",
  7269. "paragonie/random-lib": "^2",
  7270. "php-mock/php-mock": "^2.2",
  7271. "php-mock/php-mock-mockery": "^1.3",
  7272. "php-parallel-lint/php-parallel-lint": "^1.1",
  7273. "phpbench/phpbench": "^1.0",
  7274. "phpstan/extension-installer": "^1.1",
  7275. "phpstan/phpstan": "^1.8",
  7276. "phpstan/phpstan-mockery": "^1.1",
  7277. "phpstan/phpstan-phpunit": "^1.1",
  7278. "phpunit/phpunit": "^8.5 || ^9",
  7279. "ramsey/composer-repl": "^1.4",
  7280. "slevomat/coding-standard": "^8.4",
  7281. "squizlabs/php_codesniffer": "^3.5",
  7282. "vimeo/psalm": "^4.9"
  7283. },
  7284. "suggest": {
  7285. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  7286. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  7287. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  7288. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  7289. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  7290. },
  7291. "type": "library",
  7292. "extra": {
  7293. "captainhook": {
  7294. "force-install": true
  7295. }
  7296. },
  7297. "autoload": {
  7298. "files": [
  7299. "src/functions.php"
  7300. ],
  7301. "psr-4": {
  7302. "Ramsey\\Uuid\\": "src/"
  7303. }
  7304. },
  7305. "notification-url": "https://packagist.org/downloads/",
  7306. "license": [
  7307. "MIT"
  7308. ],
  7309. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  7310. "keywords": [
  7311. "guid",
  7312. "identifier",
  7313. "uuid"
  7314. ],
  7315. "support": {
  7316. "issues": "https://github.com/ramsey/uuid/issues",
  7317. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  7318. },
  7319. "funding": [
  7320. {
  7321. "url": "https://github.com/ramsey",
  7322. "type": "github"
  7323. },
  7324. {
  7325. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  7326. "type": "tidelift"
  7327. }
  7328. ],
  7329. "time": "2024-04-27T21:32:50+00:00"
  7330. },
  7331. {
  7332. "name": "sabberworm/php-css-parser",
  7333. "version": "v8.7.0",
  7334. "source": {
  7335. "type": "git",
  7336. "url": "https://github.com/MyIntervals/PHP-CSS-Parser.git",
  7337. "reference": "f414ff953002a9b18e3a116f5e462c56f21237cf"
  7338. },
  7339. "dist": {
  7340. "type": "zip",
  7341. "url": "https://api.github.com/repos/MyIntervals/PHP-CSS-Parser/zipball/f414ff953002a9b18e3a116f5e462c56f21237cf",
  7342. "reference": "f414ff953002a9b18e3a116f5e462c56f21237cf",
  7343. "shasum": ""
  7344. },
  7345. "require": {
  7346. "ext-iconv": "*",
  7347. "php": "^5.6.20 || ^7.0.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  7348. },
  7349. "require-dev": {
  7350. "phpunit/phpunit": "5.7.27 || 6.5.14 || 7.5.20 || 8.5.40"
  7351. },
  7352. "suggest": {
  7353. "ext-mbstring": "for parsing UTF-8 CSS"
  7354. },
  7355. "type": "library",
  7356. "extra": {
  7357. "branch-alias": {
  7358. "dev-main": "9.0.x-dev"
  7359. }
  7360. },
  7361. "autoload": {
  7362. "psr-4": {
  7363. "Sabberworm\\CSS\\": "src/"
  7364. }
  7365. },
  7366. "notification-url": "https://packagist.org/downloads/",
  7367. "license": [
  7368. "MIT"
  7369. ],
  7370. "authors": [
  7371. {
  7372. "name": "Raphael Schweikert"
  7373. },
  7374. {
  7375. "name": "Oliver Klee",
  7376. "email": "github@oliverklee.de"
  7377. },
  7378. {
  7379. "name": "Jake Hotson",
  7380. "email": "jake.github@qzdesign.co.uk"
  7381. }
  7382. ],
  7383. "description": "Parser for CSS Files written in PHP",
  7384. "homepage": "https://www.sabberworm.com/blog/2010/6/10/php-css-parser",
  7385. "keywords": [
  7386. "css",
  7387. "parser",
  7388. "stylesheet"
  7389. ],
  7390. "support": {
  7391. "issues": "https://github.com/MyIntervals/PHP-CSS-Parser/issues",
  7392. "source": "https://github.com/MyIntervals/PHP-CSS-Parser/tree/v8.7.0"
  7393. },
  7394. "time": "2024-10-27T17:38:32+00:00"
  7395. },
  7396. {
  7397. "name": "setasign/fpdi",
  7398. "version": "v2.6.4",
  7399. "source": {
  7400. "type": "git",
  7401. "url": "https://github.com/Setasign/FPDI.git",
  7402. "reference": "4b53852fde2734ec6a07e458a085db627c60eada"
  7403. },
  7404. "dist": {
  7405. "type": "zip",
  7406. "url": "https://api.github.com/repos/Setasign/FPDI/zipball/4b53852fde2734ec6a07e458a085db627c60eada",
  7407. "reference": "4b53852fde2734ec6a07e458a085db627c60eada",
  7408. "shasum": ""
  7409. },
  7410. "require": {
  7411. "ext-zlib": "*",
  7412. "php": "^7.1 || ^8.0"
  7413. },
  7414. "conflict": {
  7415. "setasign/tfpdf": "<1.31"
  7416. },
  7417. "require-dev": {
  7418. "phpunit/phpunit": "^7",
  7419. "setasign/fpdf": "~1.8.6",
  7420. "setasign/tfpdf": "~1.33",
  7421. "squizlabs/php_codesniffer": "^3.5",
  7422. "tecnickcom/tcpdf": "^6.8"
  7423. },
  7424. "suggest": {
  7425. "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."
  7426. },
  7427. "type": "library",
  7428. "autoload": {
  7429. "psr-4": {
  7430. "setasign\\Fpdi\\": "src/"
  7431. }
  7432. },
  7433. "notification-url": "https://packagist.org/downloads/",
  7434. "license": [
  7435. "MIT"
  7436. ],
  7437. "authors": [
  7438. {
  7439. "name": "Jan Slabon",
  7440. "email": "jan.slabon@setasign.com",
  7441. "homepage": "https://www.setasign.com"
  7442. },
  7443. {
  7444. "name": "Maximilian Kresse",
  7445. "email": "maximilian.kresse@setasign.com",
  7446. "homepage": "https://www.setasign.com"
  7447. }
  7448. ],
  7449. "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.",
  7450. "homepage": "https://www.setasign.com/fpdi",
  7451. "keywords": [
  7452. "fpdf",
  7453. "fpdi",
  7454. "pdf"
  7455. ],
  7456. "support": {
  7457. "issues": "https://github.com/Setasign/FPDI/issues",
  7458. "source": "https://github.com/Setasign/FPDI/tree/v2.6.4"
  7459. },
  7460. "funding": [
  7461. {
  7462. "url": "https://tidelift.com/funding/github/packagist/setasign/fpdi",
  7463. "type": "tidelift"
  7464. }
  7465. ],
  7466. "time": "2025-08-05T09:57:14+00:00"
  7467. },
  7468. {
  7469. "name": "shetabit/visitor",
  7470. "version": "v4.4.1",
  7471. "source": {
  7472. "type": "git",
  7473. "url": "https://github.com/shetabit/visitor.git",
  7474. "reference": "4ec03a2dbb1ca764b88f4d794c0a552ca6b67e96"
  7475. },
  7476. "dist": {
  7477. "type": "zip",
  7478. "url": "https://api.github.com/repos/shetabit/visitor/zipball/4ec03a2dbb1ca764b88f4d794c0a552ca6b67e96",
  7479. "reference": "4ec03a2dbb1ca764b88f4d794c0a552ca6b67e96",
  7480. "shasum": ""
  7481. },
  7482. "require": {
  7483. "illuminate/support": "9.*|10.*|11.*|12.*",
  7484. "jaybizzle/crawler-detect": "^1.2",
  7485. "mobiledetect/mobiledetectlib": "^4.8",
  7486. "php": ">=8.0",
  7487. "ua-parser/uap-php": "^3.9"
  7488. },
  7489. "require-dev": {
  7490. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  7491. "phpunit/phpunit": ">=7.5",
  7492. "squizlabs/php_codesniffer": "^3.4"
  7493. },
  7494. "type": "library",
  7495. "extra": {
  7496. "laravel": {
  7497. "aliases": {
  7498. "Visitor": "Shetabit\\Visitor\\Facade\\Visitor"
  7499. },
  7500. "providers": [
  7501. "Shetabit\\Visitor\\Provider\\VisitorServiceProvider"
  7502. ]
  7503. }
  7504. },
  7505. "autoload": {
  7506. "files": [
  7507. "src/helpers.php"
  7508. ],
  7509. "psr-4": {
  7510. "Shetabit\\Visitor\\": "src"
  7511. }
  7512. },
  7513. "notification-url": "https://packagist.org/downloads/",
  7514. "license": [
  7515. "MIT"
  7516. ],
  7517. "authors": [
  7518. {
  7519. "name": "Mahdi Khanzadi",
  7520. "email": "khanzadimahdi@gmail.com",
  7521. "homepage": "https://github.com/khanzadimahdi",
  7522. "role": "Developer"
  7523. }
  7524. ],
  7525. "description": "Laravel visitor",
  7526. "homepage": "https://github.com/shetabit/visitor",
  7527. "keywords": [
  7528. "parse laravel user agents",
  7529. "shetabit",
  7530. "trace laravel visitors",
  7531. "track laravel visitors",
  7532. "visitor"
  7533. ],
  7534. "support": {
  7535. "issues": "https://github.com/shetabit/visitor/issues",
  7536. "source": "https://github.com/shetabit/visitor/tree/v4.4.1"
  7537. },
  7538. "time": "2025-03-18T14:58:13+00:00"
  7539. },
  7540. {
  7541. "name": "spatie/browsershot",
  7542. "version": "5.0.8",
  7543. "source": {
  7544. "type": "git",
  7545. "url": "https://github.com/spatie/browsershot.git",
  7546. "reference": "0102971ae974022ec4a7a149e8924ea355b52cc3"
  7547. },
  7548. "dist": {
  7549. "type": "zip",
  7550. "url": "https://api.github.com/repos/spatie/browsershot/zipball/0102971ae974022ec4a7a149e8924ea355b52cc3",
  7551. "reference": "0102971ae974022ec4a7a149e8924ea355b52cc3",
  7552. "shasum": ""
  7553. },
  7554. "require": {
  7555. "ext-fileinfo": "*",
  7556. "ext-json": "*",
  7557. "php": "^8.2",
  7558. "spatie/temporary-directory": "^2.0",
  7559. "symfony/process": "^6.0|^7.0"
  7560. },
  7561. "require-dev": {
  7562. "pestphp/pest": "^3.0",
  7563. "spatie/image": "^3.6",
  7564. "spatie/pdf-to-text": "^1.52",
  7565. "spatie/phpunit-snapshot-assertions": "^4.2.3|^5.0"
  7566. },
  7567. "type": "library",
  7568. "autoload": {
  7569. "psr-4": {
  7570. "Spatie\\Browsershot\\": "src"
  7571. }
  7572. },
  7573. "notification-url": "https://packagist.org/downloads/",
  7574. "license": [
  7575. "MIT"
  7576. ],
  7577. "authors": [
  7578. {
  7579. "name": "Freek Van der Herten",
  7580. "email": "freek@spatie.be",
  7581. "homepage": "https://github.com/freekmurze",
  7582. "role": "Developer"
  7583. }
  7584. ],
  7585. "description": "Convert a webpage to an image or pdf using headless Chrome",
  7586. "homepage": "https://github.com/spatie/browsershot",
  7587. "keywords": [
  7588. "chrome",
  7589. "convert",
  7590. "headless",
  7591. "image",
  7592. "pdf",
  7593. "puppeteer",
  7594. "screenshot",
  7595. "webpage"
  7596. ],
  7597. "support": {
  7598. "source": "https://github.com/spatie/browsershot/tree/5.0.8"
  7599. },
  7600. "funding": [
  7601. {
  7602. "url": "https://github.com/spatie",
  7603. "type": "github"
  7604. }
  7605. ],
  7606. "time": "2025-02-17T09:56:12+00:00"
  7607. },
  7608. {
  7609. "name": "spatie/crawler",
  7610. "version": "8.4.2",
  7611. "source": {
  7612. "type": "git",
  7613. "url": "https://github.com/spatie/crawler.git",
  7614. "reference": "4dc593040018885229dfc8df7cc4bf12cd470cf3"
  7615. },
  7616. "dist": {
  7617. "type": "zip",
  7618. "url": "https://api.github.com/repos/spatie/crawler/zipball/4dc593040018885229dfc8df7cc4bf12cd470cf3",
  7619. "reference": "4dc593040018885229dfc8df7cc4bf12cd470cf3",
  7620. "shasum": ""
  7621. },
  7622. "require": {
  7623. "guzzlehttp/guzzle": "^7.3",
  7624. "guzzlehttp/psr7": "^2.0",
  7625. "illuminate/collections": "^10.0|^11.0|^12.0",
  7626. "nicmart/tree": "^0.9",
  7627. "php": "^8.2",
  7628. "spatie/browsershot": "^5.0.5",
  7629. "spatie/robots-txt": "^2.0",
  7630. "symfony/dom-crawler": "^6.0|^7.0"
  7631. },
  7632. "require-dev": {
  7633. "pestphp/pest": "^2.0",
  7634. "spatie/ray": "^1.37"
  7635. },
  7636. "type": "library",
  7637. "autoload": {
  7638. "psr-4": {
  7639. "Spatie\\Crawler\\": "src"
  7640. }
  7641. },
  7642. "notification-url": "https://packagist.org/downloads/",
  7643. "license": [
  7644. "MIT"
  7645. ],
  7646. "authors": [
  7647. {
  7648. "name": "Freek Van der Herten",
  7649. "email": "freek@spatie.be"
  7650. }
  7651. ],
  7652. "description": "Crawl all internal links found on a website",
  7653. "homepage": "https://github.com/spatie/crawler",
  7654. "keywords": [
  7655. "crawler",
  7656. "link",
  7657. "spatie",
  7658. "website"
  7659. ],
  7660. "support": {
  7661. "issues": "https://github.com/spatie/crawler/issues",
  7662. "source": "https://github.com/spatie/crawler/tree/8.4.2"
  7663. },
  7664. "funding": [
  7665. {
  7666. "url": "https://spatie.be/open-source/support-us",
  7667. "type": "custom"
  7668. },
  7669. {
  7670. "url": "https://github.com/spatie",
  7671. "type": "github"
  7672. }
  7673. ],
  7674. "time": "2025-02-24T09:20:47+00:00"
  7675. },
  7676. {
  7677. "name": "spatie/laravel-package-tools",
  7678. "version": "1.19.0",
  7679. "source": {
  7680. "type": "git",
  7681. "url": "https://github.com/spatie/laravel-package-tools.git",
  7682. "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa"
  7683. },
  7684. "dist": {
  7685. "type": "zip",
  7686. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa",
  7687. "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa",
  7688. "shasum": ""
  7689. },
  7690. "require": {
  7691. "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
  7692. "php": "^8.0"
  7693. },
  7694. "require-dev": {
  7695. "mockery/mockery": "^1.5",
  7696. "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
  7697. "pestphp/pest": "^1.23|^2.1|^3.1",
  7698. "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
  7699. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  7700. },
  7701. "type": "library",
  7702. "autoload": {
  7703. "psr-4": {
  7704. "Spatie\\LaravelPackageTools\\": "src"
  7705. }
  7706. },
  7707. "notification-url": "https://packagist.org/downloads/",
  7708. "license": [
  7709. "MIT"
  7710. ],
  7711. "authors": [
  7712. {
  7713. "name": "Freek Van der Herten",
  7714. "email": "freek@spatie.be",
  7715. "role": "Developer"
  7716. }
  7717. ],
  7718. "description": "Tools for creating Laravel packages",
  7719. "homepage": "https://github.com/spatie/laravel-package-tools",
  7720. "keywords": [
  7721. "laravel-package-tools",
  7722. "spatie"
  7723. ],
  7724. "support": {
  7725. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  7726. "source": "https://github.com/spatie/laravel-package-tools/tree/1.19.0"
  7727. },
  7728. "funding": [
  7729. {
  7730. "url": "https://github.com/spatie",
  7731. "type": "github"
  7732. }
  7733. ],
  7734. "time": "2025-02-06T14:58:20+00:00"
  7735. },
  7736. {
  7737. "name": "spatie/laravel-responsecache",
  7738. "version": "7.6.4",
  7739. "source": {
  7740. "type": "git",
  7741. "url": "https://github.com/spatie/laravel-responsecache.git",
  7742. "reference": "fbac90e8df40bc6c877302934e3e971c2da409db"
  7743. },
  7744. "dist": {
  7745. "type": "zip",
  7746. "url": "https://api.github.com/repos/spatie/laravel-responsecache/zipball/fbac90e8df40bc6c877302934e3e971c2da409db",
  7747. "reference": "fbac90e8df40bc6c877302934e3e971c2da409db",
  7748. "shasum": ""
  7749. },
  7750. "require": {
  7751. "illuminate/cache": "^10.0|^11.0|^12.0",
  7752. "illuminate/console": "^10.0|^11.0|^12.0",
  7753. "illuminate/container": "^10.0|^11.0|^12.0",
  7754. "illuminate/http": "^10.0|^11.0|^12.0",
  7755. "illuminate/support": "^10.0|^11.0|^12.0",
  7756. "nesbot/carbon": "^2.63|^3.0",
  7757. "php": "^8.2",
  7758. "spatie/laravel-package-tools": "^1.9"
  7759. },
  7760. "require-dev": {
  7761. "laravel/framework": "^10.0|^11.0|^12.0",
  7762. "mockery/mockery": "^1.4",
  7763. "orchestra/testbench": "^8.0|^9.0|^10.0",
  7764. "pestphp/pest": "^2.22|^3.0"
  7765. },
  7766. "type": "library",
  7767. "extra": {
  7768. "laravel": {
  7769. "aliases": {
  7770. "ResponseCache": "Spatie\\ResponseCache\\Facades\\ResponseCache"
  7771. },
  7772. "providers": [
  7773. "Spatie\\ResponseCache\\ResponseCacheServiceProvider"
  7774. ]
  7775. }
  7776. },
  7777. "autoload": {
  7778. "psr-4": {
  7779. "Spatie\\ResponseCache\\": "src"
  7780. }
  7781. },
  7782. "notification-url": "https://packagist.org/downloads/",
  7783. "license": [
  7784. "MIT"
  7785. ],
  7786. "authors": [
  7787. {
  7788. "name": "Freek Van der Herten",
  7789. "email": "freek@spatie.be",
  7790. "homepage": "https://spatie.be",
  7791. "role": "Developer"
  7792. }
  7793. ],
  7794. "description": "Speed up a Laravel application by caching the entire response",
  7795. "homepage": "https://github.com/spatie/laravel-responsecache",
  7796. "keywords": [
  7797. "cache",
  7798. "laravel",
  7799. "laravel-responsecache",
  7800. "performance",
  7801. "response",
  7802. "spatie"
  7803. ],
  7804. "support": {
  7805. "source": "https://github.com/spatie/laravel-responsecache/tree/7.6.4"
  7806. },
  7807. "funding": [
  7808. {
  7809. "url": "https://spatie.be/open-source/support-us",
  7810. "type": "custom"
  7811. },
  7812. {
  7813. "url": "https://github.com/spatie",
  7814. "type": "github"
  7815. }
  7816. ],
  7817. "time": "2025-02-25T15:05:05+00:00"
  7818. },
  7819. {
  7820. "name": "spatie/laravel-sitemap",
  7821. "version": "7.3.5",
  7822. "source": {
  7823. "type": "git",
  7824. "url": "https://github.com/spatie/laravel-sitemap.git",
  7825. "reference": "329b23c8bc6396de2d47d0633ce2cd3f04921399"
  7826. },
  7827. "dist": {
  7828. "type": "zip",
  7829. "url": "https://api.github.com/repos/spatie/laravel-sitemap/zipball/329b23c8bc6396de2d47d0633ce2cd3f04921399",
  7830. "reference": "329b23c8bc6396de2d47d0633ce2cd3f04921399",
  7831. "shasum": ""
  7832. },
  7833. "require": {
  7834. "guzzlehttp/guzzle": "^7.8",
  7835. "illuminate/support": "^11.0|^12.0",
  7836. "nesbot/carbon": "^2.71|^3.0",
  7837. "php": "^8.2||^8.3||^8.4",
  7838. "spatie/crawler": "^8.0.1",
  7839. "spatie/laravel-package-tools": "^1.16.1",
  7840. "symfony/dom-crawler": "^6.3.4|^7.0"
  7841. },
  7842. "require-dev": {
  7843. "mockery/mockery": "^1.6.6",
  7844. "orchestra/testbench": "^9.0|^10.0",
  7845. "pestphp/pest": "^3.7.4",
  7846. "spatie/pest-plugin-snapshots": "^2.1",
  7847. "spatie/phpunit-snapshot-assertions": "^5.1.2",
  7848. "spatie/temporary-directory": "^2.2"
  7849. },
  7850. "type": "library",
  7851. "extra": {
  7852. "laravel": {
  7853. "providers": [
  7854. "Spatie\\Sitemap\\SitemapServiceProvider"
  7855. ]
  7856. }
  7857. },
  7858. "autoload": {
  7859. "psr-4": {
  7860. "Spatie\\Sitemap\\": "src"
  7861. }
  7862. },
  7863. "notification-url": "https://packagist.org/downloads/",
  7864. "license": [
  7865. "MIT"
  7866. ],
  7867. "authors": [
  7868. {
  7869. "name": "Freek Van der Herten",
  7870. "email": "freek@spatie.be",
  7871. "homepage": "https://spatie.be",
  7872. "role": "Developer"
  7873. }
  7874. ],
  7875. "description": "Create and generate sitemaps with ease",
  7876. "homepage": "https://github.com/spatie/laravel-sitemap",
  7877. "keywords": [
  7878. "laravel-sitemap",
  7879. "spatie"
  7880. ],
  7881. "support": {
  7882. "source": "https://github.com/spatie/laravel-sitemap/tree/7.3.5"
  7883. },
  7884. "funding": [
  7885. {
  7886. "url": "https://spatie.be/open-source/support-us",
  7887. "type": "custom"
  7888. }
  7889. ],
  7890. "time": "2025-02-21T09:20:51+00:00"
  7891. },
  7892. {
  7893. "name": "spatie/robots-txt",
  7894. "version": "2.3.1",
  7895. "source": {
  7896. "type": "git",
  7897. "url": "https://github.com/spatie/robots-txt.git",
  7898. "reference": "58ed7b61c2a59e72f57b46e4d025967dd5f16000"
  7899. },
  7900. "dist": {
  7901. "type": "zip",
  7902. "url": "https://api.github.com/repos/spatie/robots-txt/zipball/58ed7b61c2a59e72f57b46e4d025967dd5f16000",
  7903. "reference": "58ed7b61c2a59e72f57b46e4d025967dd5f16000",
  7904. "shasum": ""
  7905. },
  7906. "require": {
  7907. "php": "^8.1"
  7908. },
  7909. "require-dev": {
  7910. "phpunit/phpunit": "^11.5.2"
  7911. },
  7912. "type": "library",
  7913. "autoload": {
  7914. "psr-4": {
  7915. "Spatie\\Robots\\": "src"
  7916. }
  7917. },
  7918. "notification-url": "https://packagist.org/downloads/",
  7919. "license": [
  7920. "MIT"
  7921. ],
  7922. "authors": [
  7923. {
  7924. "name": "Brent Roose",
  7925. "email": "brent@spatie.be",
  7926. "homepage": "https://spatie.be",
  7927. "role": "Developer"
  7928. }
  7929. ],
  7930. "description": "Determine if a page may be crawled from robots.txt and robots meta tags",
  7931. "homepage": "https://github.com/spatie/robots-txt",
  7932. "keywords": [
  7933. "robots-txt",
  7934. "spatie"
  7935. ],
  7936. "support": {
  7937. "issues": "https://github.com/spatie/robots-txt/issues",
  7938. "source": "https://github.com/spatie/robots-txt/tree/2.3.1"
  7939. },
  7940. "funding": [
  7941. {
  7942. "url": "https://spatie.be/open-source/support-us",
  7943. "type": "custom"
  7944. },
  7945. {
  7946. "url": "https://github.com/spatie",
  7947. "type": "github"
  7948. }
  7949. ],
  7950. "time": "2025-01-31T09:33:25+00:00"
  7951. },
  7952. {
  7953. "name": "spatie/temporary-directory",
  7954. "version": "2.3.0",
  7955. "source": {
  7956. "type": "git",
  7957. "url": "https://github.com/spatie/temporary-directory.git",
  7958. "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b"
  7959. },
  7960. "dist": {
  7961. "type": "zip",
  7962. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
  7963. "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
  7964. "shasum": ""
  7965. },
  7966. "require": {
  7967. "php": "^8.0"
  7968. },
  7969. "require-dev": {
  7970. "phpunit/phpunit": "^9.5"
  7971. },
  7972. "type": "library",
  7973. "autoload": {
  7974. "psr-4": {
  7975. "Spatie\\TemporaryDirectory\\": "src"
  7976. }
  7977. },
  7978. "notification-url": "https://packagist.org/downloads/",
  7979. "license": [
  7980. "MIT"
  7981. ],
  7982. "authors": [
  7983. {
  7984. "name": "Alex Vanderbist",
  7985. "email": "alex@spatie.be",
  7986. "homepage": "https://spatie.be",
  7987. "role": "Developer"
  7988. }
  7989. ],
  7990. "description": "Easily create, use and destroy temporary directories",
  7991. "homepage": "https://github.com/spatie/temporary-directory",
  7992. "keywords": [
  7993. "php",
  7994. "spatie",
  7995. "temporary-directory"
  7996. ],
  7997. "support": {
  7998. "issues": "https://github.com/spatie/temporary-directory/issues",
  7999. "source": "https://github.com/spatie/temporary-directory/tree/2.3.0"
  8000. },
  8001. "funding": [
  8002. {
  8003. "url": "https://spatie.be/open-source/support-us",
  8004. "type": "custom"
  8005. },
  8006. {
  8007. "url": "https://github.com/spatie",
  8008. "type": "github"
  8009. }
  8010. ],
  8011. "time": "2025-01-13T13:04:43+00:00"
  8012. },
  8013. {
  8014. "name": "stevebauman/purify",
  8015. "version": "v6.3.1",
  8016. "source": {
  8017. "type": "git",
  8018. "url": "https://github.com/stevebauman/purify.git",
  8019. "reference": "3acb5e77904f420ce8aad8fa1c7f394e82daa500"
  8020. },
  8021. "dist": {
  8022. "type": "zip",
  8023. "url": "https://api.github.com/repos/stevebauman/purify/zipball/3acb5e77904f420ce8aad8fa1c7f394e82daa500",
  8024. "reference": "3acb5e77904f420ce8aad8fa1c7f394e82daa500",
  8025. "shasum": ""
  8026. },
  8027. "require": {
  8028. "ezyang/htmlpurifier": "^4.17",
  8029. "illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  8030. "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  8031. "php": ">=7.4"
  8032. },
  8033. "require-dev": {
  8034. "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  8035. "phpunit/phpunit": "^8.0|^9.0|^10.0|^11.5.3"
  8036. },
  8037. "type": "library",
  8038. "extra": {
  8039. "laravel": {
  8040. "aliases": {
  8041. "Purify": "Stevebauman\\Purify\\Facades\\Purify"
  8042. },
  8043. "providers": [
  8044. "Stevebauman\\Purify\\PurifyServiceProvider"
  8045. ]
  8046. }
  8047. },
  8048. "autoload": {
  8049. "psr-4": {
  8050. "Stevebauman\\Purify\\": "src/"
  8051. }
  8052. },
  8053. "notification-url": "https://packagist.org/downloads/",
  8054. "license": [
  8055. "MIT"
  8056. ],
  8057. "authors": [
  8058. {
  8059. "name": "Steve Bauman",
  8060. "email": "steven_bauman@outlook.com"
  8061. }
  8062. ],
  8063. "description": "An HTML Purifier / Sanitizer for Laravel",
  8064. "keywords": [
  8065. "Purifier",
  8066. "clean",
  8067. "cleaner",
  8068. "html",
  8069. "laravel",
  8070. "purification",
  8071. "purify"
  8072. ],
  8073. "support": {
  8074. "issues": "https://github.com/stevebauman/purify/issues",
  8075. "source": "https://github.com/stevebauman/purify/tree/v6.3.1"
  8076. },
  8077. "time": "2025-05-21T16:53:09+00:00"
  8078. },
  8079. {
  8080. "name": "symfony/console",
  8081. "version": "v7.3.3",
  8082. "source": {
  8083. "type": "git",
  8084. "url": "https://github.com/symfony/console.git",
  8085. "reference": "cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7"
  8086. },
  8087. "dist": {
  8088. "type": "zip",
  8089. "url": "https://api.github.com/repos/symfony/console/zipball/cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7",
  8090. "reference": "cb0102a1c5ac3807cf3fdf8bea96007df7fdbea7",
  8091. "shasum": ""
  8092. },
  8093. "require": {
  8094. "php": ">=8.2",
  8095. "symfony/deprecation-contracts": "^2.5|^3",
  8096. "symfony/polyfill-mbstring": "~1.0",
  8097. "symfony/service-contracts": "^2.5|^3",
  8098. "symfony/string": "^7.2"
  8099. },
  8100. "conflict": {
  8101. "symfony/dependency-injection": "<6.4",
  8102. "symfony/dotenv": "<6.4",
  8103. "symfony/event-dispatcher": "<6.4",
  8104. "symfony/lock": "<6.4",
  8105. "symfony/process": "<6.4"
  8106. },
  8107. "provide": {
  8108. "psr/log-implementation": "1.0|2.0|3.0"
  8109. },
  8110. "require-dev": {
  8111. "psr/log": "^1|^2|^3",
  8112. "symfony/config": "^6.4|^7.0",
  8113. "symfony/dependency-injection": "^6.4|^7.0",
  8114. "symfony/event-dispatcher": "^6.4|^7.0",
  8115. "symfony/http-foundation": "^6.4|^7.0",
  8116. "symfony/http-kernel": "^6.4|^7.0",
  8117. "symfony/lock": "^6.4|^7.0",
  8118. "symfony/messenger": "^6.4|^7.0",
  8119. "symfony/process": "^6.4|^7.0",
  8120. "symfony/stopwatch": "^6.4|^7.0",
  8121. "symfony/var-dumper": "^6.4|^7.0"
  8122. },
  8123. "type": "library",
  8124. "autoload": {
  8125. "psr-4": {
  8126. "Symfony\\Component\\Console\\": ""
  8127. },
  8128. "exclude-from-classmap": [
  8129. "/Tests/"
  8130. ]
  8131. },
  8132. "notification-url": "https://packagist.org/downloads/",
  8133. "license": [
  8134. "MIT"
  8135. ],
  8136. "authors": [
  8137. {
  8138. "name": "Fabien Potencier",
  8139. "email": "fabien@symfony.com"
  8140. },
  8141. {
  8142. "name": "Symfony Community",
  8143. "homepage": "https://symfony.com/contributors"
  8144. }
  8145. ],
  8146. "description": "Eases the creation of beautiful and testable command line interfaces",
  8147. "homepage": "https://symfony.com",
  8148. "keywords": [
  8149. "cli",
  8150. "command-line",
  8151. "console",
  8152. "terminal"
  8153. ],
  8154. "support": {
  8155. "source": "https://github.com/symfony/console/tree/v7.3.3"
  8156. },
  8157. "funding": [
  8158. {
  8159. "url": "https://symfony.com/sponsor",
  8160. "type": "custom"
  8161. },
  8162. {
  8163. "url": "https://github.com/fabpot",
  8164. "type": "github"
  8165. },
  8166. {
  8167. "url": "https://github.com/nicolas-grekas",
  8168. "type": "github"
  8169. },
  8170. {
  8171. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8172. "type": "tidelift"
  8173. }
  8174. ],
  8175. "time": "2025-08-25T06:35:40+00:00"
  8176. },
  8177. {
  8178. "name": "symfony/css-selector",
  8179. "version": "v7.2.0",
  8180. "source": {
  8181. "type": "git",
  8182. "url": "https://github.com/symfony/css-selector.git",
  8183. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  8184. },
  8185. "dist": {
  8186. "type": "zip",
  8187. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  8188. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  8189. "shasum": ""
  8190. },
  8191. "require": {
  8192. "php": ">=8.2"
  8193. },
  8194. "type": "library",
  8195. "autoload": {
  8196. "psr-4": {
  8197. "Symfony\\Component\\CssSelector\\": ""
  8198. },
  8199. "exclude-from-classmap": [
  8200. "/Tests/"
  8201. ]
  8202. },
  8203. "notification-url": "https://packagist.org/downloads/",
  8204. "license": [
  8205. "MIT"
  8206. ],
  8207. "authors": [
  8208. {
  8209. "name": "Fabien Potencier",
  8210. "email": "fabien@symfony.com"
  8211. },
  8212. {
  8213. "name": "Jean-François Simon",
  8214. "email": "jeanfrancois.simon@sensiolabs.com"
  8215. },
  8216. {
  8217. "name": "Symfony Community",
  8218. "homepage": "https://symfony.com/contributors"
  8219. }
  8220. ],
  8221. "description": "Converts CSS selectors to XPath expressions",
  8222. "homepage": "https://symfony.com",
  8223. "support": {
  8224. "source": "https://github.com/symfony/css-selector/tree/v7.2.0"
  8225. },
  8226. "funding": [
  8227. {
  8228. "url": "https://symfony.com/sponsor",
  8229. "type": "custom"
  8230. },
  8231. {
  8232. "url": "https://github.com/fabpot",
  8233. "type": "github"
  8234. },
  8235. {
  8236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8237. "type": "tidelift"
  8238. }
  8239. ],
  8240. "time": "2024-09-25T14:21:43+00:00"
  8241. },
  8242. {
  8243. "name": "symfony/deprecation-contracts",
  8244. "version": "v3.6.0",
  8245. "source": {
  8246. "type": "git",
  8247. "url": "https://github.com/symfony/deprecation-contracts.git",
  8248. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  8249. },
  8250. "dist": {
  8251. "type": "zip",
  8252. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  8253. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  8254. "shasum": ""
  8255. },
  8256. "require": {
  8257. "php": ">=8.1"
  8258. },
  8259. "type": "library",
  8260. "extra": {
  8261. "thanks": {
  8262. "url": "https://github.com/symfony/contracts",
  8263. "name": "symfony/contracts"
  8264. },
  8265. "branch-alias": {
  8266. "dev-main": "3.6-dev"
  8267. }
  8268. },
  8269. "autoload": {
  8270. "files": [
  8271. "function.php"
  8272. ]
  8273. },
  8274. "notification-url": "https://packagist.org/downloads/",
  8275. "license": [
  8276. "MIT"
  8277. ],
  8278. "authors": [
  8279. {
  8280. "name": "Nicolas Grekas",
  8281. "email": "p@tchwork.com"
  8282. },
  8283. {
  8284. "name": "Symfony Community",
  8285. "homepage": "https://symfony.com/contributors"
  8286. }
  8287. ],
  8288. "description": "A generic function and convention to trigger deprecation notices",
  8289. "homepage": "https://symfony.com",
  8290. "support": {
  8291. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  8292. },
  8293. "funding": [
  8294. {
  8295. "url": "https://symfony.com/sponsor",
  8296. "type": "custom"
  8297. },
  8298. {
  8299. "url": "https://github.com/fabpot",
  8300. "type": "github"
  8301. },
  8302. {
  8303. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8304. "type": "tidelift"
  8305. }
  8306. ],
  8307. "time": "2024-09-25T14:21:43+00:00"
  8308. },
  8309. {
  8310. "name": "symfony/dom-crawler",
  8311. "version": "v7.2.4",
  8312. "source": {
  8313. "type": "git",
  8314. "url": "https://github.com/symfony/dom-crawler.git",
  8315. "reference": "19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7"
  8316. },
  8317. "dist": {
  8318. "type": "zip",
  8319. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7",
  8320. "reference": "19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7",
  8321. "shasum": ""
  8322. },
  8323. "require": {
  8324. "masterminds/html5": "^2.6",
  8325. "php": ">=8.2",
  8326. "symfony/polyfill-ctype": "~1.8",
  8327. "symfony/polyfill-mbstring": "~1.0"
  8328. },
  8329. "require-dev": {
  8330. "symfony/css-selector": "^6.4|^7.0"
  8331. },
  8332. "type": "library",
  8333. "autoload": {
  8334. "psr-4": {
  8335. "Symfony\\Component\\DomCrawler\\": ""
  8336. },
  8337. "exclude-from-classmap": [
  8338. "/Tests/"
  8339. ]
  8340. },
  8341. "notification-url": "https://packagist.org/downloads/",
  8342. "license": [
  8343. "MIT"
  8344. ],
  8345. "authors": [
  8346. {
  8347. "name": "Fabien Potencier",
  8348. "email": "fabien@symfony.com"
  8349. },
  8350. {
  8351. "name": "Symfony Community",
  8352. "homepage": "https://symfony.com/contributors"
  8353. }
  8354. ],
  8355. "description": "Eases DOM navigation for HTML and XML documents",
  8356. "homepage": "https://symfony.com",
  8357. "support": {
  8358. "source": "https://github.com/symfony/dom-crawler/tree/v7.2.4"
  8359. },
  8360. "funding": [
  8361. {
  8362. "url": "https://symfony.com/sponsor",
  8363. "type": "custom"
  8364. },
  8365. {
  8366. "url": "https://github.com/fabpot",
  8367. "type": "github"
  8368. },
  8369. {
  8370. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8371. "type": "tidelift"
  8372. }
  8373. ],
  8374. "time": "2025-02-17T15:53:07+00:00"
  8375. },
  8376. {
  8377. "name": "symfony/error-handler",
  8378. "version": "v7.2.4",
  8379. "source": {
  8380. "type": "git",
  8381. "url": "https://github.com/symfony/error-handler.git",
  8382. "reference": "aabf79938aa795350c07ce6464dd1985607d95d5"
  8383. },
  8384. "dist": {
  8385. "type": "zip",
  8386. "url": "https://api.github.com/repos/symfony/error-handler/zipball/aabf79938aa795350c07ce6464dd1985607d95d5",
  8387. "reference": "aabf79938aa795350c07ce6464dd1985607d95d5",
  8388. "shasum": ""
  8389. },
  8390. "require": {
  8391. "php": ">=8.2",
  8392. "psr/log": "^1|^2|^3",
  8393. "symfony/var-dumper": "^6.4|^7.0"
  8394. },
  8395. "conflict": {
  8396. "symfony/deprecation-contracts": "<2.5",
  8397. "symfony/http-kernel": "<6.4"
  8398. },
  8399. "require-dev": {
  8400. "symfony/deprecation-contracts": "^2.5|^3",
  8401. "symfony/http-kernel": "^6.4|^7.0",
  8402. "symfony/serializer": "^6.4|^7.0"
  8403. },
  8404. "bin": [
  8405. "Resources/bin/patch-type-declarations"
  8406. ],
  8407. "type": "library",
  8408. "autoload": {
  8409. "psr-4": {
  8410. "Symfony\\Component\\ErrorHandler\\": ""
  8411. },
  8412. "exclude-from-classmap": [
  8413. "/Tests/"
  8414. ]
  8415. },
  8416. "notification-url": "https://packagist.org/downloads/",
  8417. "license": [
  8418. "MIT"
  8419. ],
  8420. "authors": [
  8421. {
  8422. "name": "Fabien Potencier",
  8423. "email": "fabien@symfony.com"
  8424. },
  8425. {
  8426. "name": "Symfony Community",
  8427. "homepage": "https://symfony.com/contributors"
  8428. }
  8429. ],
  8430. "description": "Provides tools to manage errors and ease debugging PHP code",
  8431. "homepage": "https://symfony.com",
  8432. "support": {
  8433. "source": "https://github.com/symfony/error-handler/tree/v7.2.4"
  8434. },
  8435. "funding": [
  8436. {
  8437. "url": "https://symfony.com/sponsor",
  8438. "type": "custom"
  8439. },
  8440. {
  8441. "url": "https://github.com/fabpot",
  8442. "type": "github"
  8443. },
  8444. {
  8445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8446. "type": "tidelift"
  8447. }
  8448. ],
  8449. "time": "2025-02-02T20:27:07+00:00"
  8450. },
  8451. {
  8452. "name": "symfony/event-dispatcher",
  8453. "version": "v7.2.0",
  8454. "source": {
  8455. "type": "git",
  8456. "url": "https://github.com/symfony/event-dispatcher.git",
  8457. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
  8458. },
  8459. "dist": {
  8460. "type": "zip",
  8461. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
  8462. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
  8463. "shasum": ""
  8464. },
  8465. "require": {
  8466. "php": ">=8.2",
  8467. "symfony/event-dispatcher-contracts": "^2.5|^3"
  8468. },
  8469. "conflict": {
  8470. "symfony/dependency-injection": "<6.4",
  8471. "symfony/service-contracts": "<2.5"
  8472. },
  8473. "provide": {
  8474. "psr/event-dispatcher-implementation": "1.0",
  8475. "symfony/event-dispatcher-implementation": "2.0|3.0"
  8476. },
  8477. "require-dev": {
  8478. "psr/log": "^1|^2|^3",
  8479. "symfony/config": "^6.4|^7.0",
  8480. "symfony/dependency-injection": "^6.4|^7.0",
  8481. "symfony/error-handler": "^6.4|^7.0",
  8482. "symfony/expression-language": "^6.4|^7.0",
  8483. "symfony/http-foundation": "^6.4|^7.0",
  8484. "symfony/service-contracts": "^2.5|^3",
  8485. "symfony/stopwatch": "^6.4|^7.0"
  8486. },
  8487. "type": "library",
  8488. "autoload": {
  8489. "psr-4": {
  8490. "Symfony\\Component\\EventDispatcher\\": ""
  8491. },
  8492. "exclude-from-classmap": [
  8493. "/Tests/"
  8494. ]
  8495. },
  8496. "notification-url": "https://packagist.org/downloads/",
  8497. "license": [
  8498. "MIT"
  8499. ],
  8500. "authors": [
  8501. {
  8502. "name": "Fabien Potencier",
  8503. "email": "fabien@symfony.com"
  8504. },
  8505. {
  8506. "name": "Symfony Community",
  8507. "homepage": "https://symfony.com/contributors"
  8508. }
  8509. ],
  8510. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  8511. "homepage": "https://symfony.com",
  8512. "support": {
  8513. "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0"
  8514. },
  8515. "funding": [
  8516. {
  8517. "url": "https://symfony.com/sponsor",
  8518. "type": "custom"
  8519. },
  8520. {
  8521. "url": "https://github.com/fabpot",
  8522. "type": "github"
  8523. },
  8524. {
  8525. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8526. "type": "tidelift"
  8527. }
  8528. ],
  8529. "time": "2024-09-25T14:21:43+00:00"
  8530. },
  8531. {
  8532. "name": "symfony/event-dispatcher-contracts",
  8533. "version": "v3.6.0",
  8534. "source": {
  8535. "type": "git",
  8536. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8537. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  8538. },
  8539. "dist": {
  8540. "type": "zip",
  8541. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  8542. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  8543. "shasum": ""
  8544. },
  8545. "require": {
  8546. "php": ">=8.1",
  8547. "psr/event-dispatcher": "^1"
  8548. },
  8549. "type": "library",
  8550. "extra": {
  8551. "thanks": {
  8552. "url": "https://github.com/symfony/contracts",
  8553. "name": "symfony/contracts"
  8554. },
  8555. "branch-alias": {
  8556. "dev-main": "3.6-dev"
  8557. }
  8558. },
  8559. "autoload": {
  8560. "psr-4": {
  8561. "Symfony\\Contracts\\EventDispatcher\\": ""
  8562. }
  8563. },
  8564. "notification-url": "https://packagist.org/downloads/",
  8565. "license": [
  8566. "MIT"
  8567. ],
  8568. "authors": [
  8569. {
  8570. "name": "Nicolas Grekas",
  8571. "email": "p@tchwork.com"
  8572. },
  8573. {
  8574. "name": "Symfony Community",
  8575. "homepage": "https://symfony.com/contributors"
  8576. }
  8577. ],
  8578. "description": "Generic abstractions related to dispatching event",
  8579. "homepage": "https://symfony.com",
  8580. "keywords": [
  8581. "abstractions",
  8582. "contracts",
  8583. "decoupling",
  8584. "interfaces",
  8585. "interoperability",
  8586. "standards"
  8587. ],
  8588. "support": {
  8589. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  8590. },
  8591. "funding": [
  8592. {
  8593. "url": "https://symfony.com/sponsor",
  8594. "type": "custom"
  8595. },
  8596. {
  8597. "url": "https://github.com/fabpot",
  8598. "type": "github"
  8599. },
  8600. {
  8601. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8602. "type": "tidelift"
  8603. }
  8604. ],
  8605. "time": "2024-09-25T14:21:43+00:00"
  8606. },
  8607. {
  8608. "name": "symfony/finder",
  8609. "version": "v7.2.2",
  8610. "source": {
  8611. "type": "git",
  8612. "url": "https://github.com/symfony/finder.git",
  8613. "reference": "87a71856f2f56e4100373e92529eed3171695cfb"
  8614. },
  8615. "dist": {
  8616. "type": "zip",
  8617. "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb",
  8618. "reference": "87a71856f2f56e4100373e92529eed3171695cfb",
  8619. "shasum": ""
  8620. },
  8621. "require": {
  8622. "php": ">=8.2"
  8623. },
  8624. "require-dev": {
  8625. "symfony/filesystem": "^6.4|^7.0"
  8626. },
  8627. "type": "library",
  8628. "autoload": {
  8629. "psr-4": {
  8630. "Symfony\\Component\\Finder\\": ""
  8631. },
  8632. "exclude-from-classmap": [
  8633. "/Tests/"
  8634. ]
  8635. },
  8636. "notification-url": "https://packagist.org/downloads/",
  8637. "license": [
  8638. "MIT"
  8639. ],
  8640. "authors": [
  8641. {
  8642. "name": "Fabien Potencier",
  8643. "email": "fabien@symfony.com"
  8644. },
  8645. {
  8646. "name": "Symfony Community",
  8647. "homepage": "https://symfony.com/contributors"
  8648. }
  8649. ],
  8650. "description": "Finds files and directories via an intuitive fluent interface",
  8651. "homepage": "https://symfony.com",
  8652. "support": {
  8653. "source": "https://github.com/symfony/finder/tree/v7.2.2"
  8654. },
  8655. "funding": [
  8656. {
  8657. "url": "https://symfony.com/sponsor",
  8658. "type": "custom"
  8659. },
  8660. {
  8661. "url": "https://github.com/fabpot",
  8662. "type": "github"
  8663. },
  8664. {
  8665. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8666. "type": "tidelift"
  8667. }
  8668. ],
  8669. "time": "2024-12-30T19:00:17+00:00"
  8670. },
  8671. {
  8672. "name": "symfony/http-foundation",
  8673. "version": "v7.3.7",
  8674. "source": {
  8675. "type": "git",
  8676. "url": "https://github.com/symfony/http-foundation.git",
  8677. "reference": "db488a62f98f7a81d5746f05eea63a74e55bb7c4"
  8678. },
  8679. "dist": {
  8680. "type": "zip",
  8681. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/db488a62f98f7a81d5746f05eea63a74e55bb7c4",
  8682. "reference": "db488a62f98f7a81d5746f05eea63a74e55bb7c4",
  8683. "shasum": ""
  8684. },
  8685. "require": {
  8686. "php": ">=8.2",
  8687. "symfony/deprecation-contracts": "^2.5|^3.0",
  8688. "symfony/polyfill-mbstring": "~1.1",
  8689. "symfony/polyfill-php83": "^1.27"
  8690. },
  8691. "conflict": {
  8692. "doctrine/dbal": "<3.6",
  8693. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  8694. },
  8695. "require-dev": {
  8696. "doctrine/dbal": "^3.6|^4",
  8697. "predis/predis": "^1.1|^2.0",
  8698. "symfony/cache": "^6.4.12|^7.1.5",
  8699. "symfony/clock": "^6.4|^7.0",
  8700. "symfony/dependency-injection": "^6.4|^7.0",
  8701. "symfony/expression-language": "^6.4|^7.0",
  8702. "symfony/http-kernel": "^6.4|^7.0",
  8703. "symfony/mime": "^6.4|^7.0",
  8704. "symfony/rate-limiter": "^6.4|^7.0"
  8705. },
  8706. "type": "library",
  8707. "autoload": {
  8708. "psr-4": {
  8709. "Symfony\\Component\\HttpFoundation\\": ""
  8710. },
  8711. "exclude-from-classmap": [
  8712. "/Tests/"
  8713. ]
  8714. },
  8715. "notification-url": "https://packagist.org/downloads/",
  8716. "license": [
  8717. "MIT"
  8718. ],
  8719. "authors": [
  8720. {
  8721. "name": "Fabien Potencier",
  8722. "email": "fabien@symfony.com"
  8723. },
  8724. {
  8725. "name": "Symfony Community",
  8726. "homepage": "https://symfony.com/contributors"
  8727. }
  8728. ],
  8729. "description": "Defines an object-oriented layer for the HTTP specification",
  8730. "homepage": "https://symfony.com",
  8731. "support": {
  8732. "source": "https://github.com/symfony/http-foundation/tree/v7.3.7"
  8733. },
  8734. "funding": [
  8735. {
  8736. "url": "https://symfony.com/sponsor",
  8737. "type": "custom"
  8738. },
  8739. {
  8740. "url": "https://github.com/fabpot",
  8741. "type": "github"
  8742. },
  8743. {
  8744. "url": "https://github.com/nicolas-grekas",
  8745. "type": "github"
  8746. },
  8747. {
  8748. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8749. "type": "tidelift"
  8750. }
  8751. ],
  8752. "time": "2025-11-08T16:41:12+00:00"
  8753. },
  8754. {
  8755. "name": "symfony/http-kernel",
  8756. "version": "v7.2.4",
  8757. "source": {
  8758. "type": "git",
  8759. "url": "https://github.com/symfony/http-kernel.git",
  8760. "reference": "9f1103734c5789798fefb90e91de4586039003ed"
  8761. },
  8762. "dist": {
  8763. "type": "zip",
  8764. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9f1103734c5789798fefb90e91de4586039003ed",
  8765. "reference": "9f1103734c5789798fefb90e91de4586039003ed",
  8766. "shasum": ""
  8767. },
  8768. "require": {
  8769. "php": ">=8.2",
  8770. "psr/log": "^1|^2|^3",
  8771. "symfony/deprecation-contracts": "^2.5|^3",
  8772. "symfony/error-handler": "^6.4|^7.0",
  8773. "symfony/event-dispatcher": "^6.4|^7.0",
  8774. "symfony/http-foundation": "^6.4|^7.0",
  8775. "symfony/polyfill-ctype": "^1.8"
  8776. },
  8777. "conflict": {
  8778. "symfony/browser-kit": "<6.4",
  8779. "symfony/cache": "<6.4",
  8780. "symfony/config": "<6.4",
  8781. "symfony/console": "<6.4",
  8782. "symfony/dependency-injection": "<6.4",
  8783. "symfony/doctrine-bridge": "<6.4",
  8784. "symfony/form": "<6.4",
  8785. "symfony/http-client": "<6.4",
  8786. "symfony/http-client-contracts": "<2.5",
  8787. "symfony/mailer": "<6.4",
  8788. "symfony/messenger": "<6.4",
  8789. "symfony/translation": "<6.4",
  8790. "symfony/translation-contracts": "<2.5",
  8791. "symfony/twig-bridge": "<6.4",
  8792. "symfony/validator": "<6.4",
  8793. "symfony/var-dumper": "<6.4",
  8794. "twig/twig": "<3.12"
  8795. },
  8796. "provide": {
  8797. "psr/log-implementation": "1.0|2.0|3.0"
  8798. },
  8799. "require-dev": {
  8800. "psr/cache": "^1.0|^2.0|^3.0",
  8801. "symfony/browser-kit": "^6.4|^7.0",
  8802. "symfony/clock": "^6.4|^7.0",
  8803. "symfony/config": "^6.4|^7.0",
  8804. "symfony/console": "^6.4|^7.0",
  8805. "symfony/css-selector": "^6.4|^7.0",
  8806. "symfony/dependency-injection": "^6.4|^7.0",
  8807. "symfony/dom-crawler": "^6.4|^7.0",
  8808. "symfony/expression-language": "^6.4|^7.0",
  8809. "symfony/finder": "^6.4|^7.0",
  8810. "symfony/http-client-contracts": "^2.5|^3",
  8811. "symfony/process": "^6.4|^7.0",
  8812. "symfony/property-access": "^7.1",
  8813. "symfony/routing": "^6.4|^7.0",
  8814. "symfony/serializer": "^7.1",
  8815. "symfony/stopwatch": "^6.4|^7.0",
  8816. "symfony/translation": "^6.4|^7.0",
  8817. "symfony/translation-contracts": "^2.5|^3",
  8818. "symfony/uid": "^6.4|^7.0",
  8819. "symfony/validator": "^6.4|^7.0",
  8820. "symfony/var-dumper": "^6.4|^7.0",
  8821. "symfony/var-exporter": "^6.4|^7.0",
  8822. "twig/twig": "^3.12"
  8823. },
  8824. "type": "library",
  8825. "autoload": {
  8826. "psr-4": {
  8827. "Symfony\\Component\\HttpKernel\\": ""
  8828. },
  8829. "exclude-from-classmap": [
  8830. "/Tests/"
  8831. ]
  8832. },
  8833. "notification-url": "https://packagist.org/downloads/",
  8834. "license": [
  8835. "MIT"
  8836. ],
  8837. "authors": [
  8838. {
  8839. "name": "Fabien Potencier",
  8840. "email": "fabien@symfony.com"
  8841. },
  8842. {
  8843. "name": "Symfony Community",
  8844. "homepage": "https://symfony.com/contributors"
  8845. }
  8846. ],
  8847. "description": "Provides a structured process for converting a Request into a Response",
  8848. "homepage": "https://symfony.com",
  8849. "support": {
  8850. "source": "https://github.com/symfony/http-kernel/tree/v7.2.4"
  8851. },
  8852. "funding": [
  8853. {
  8854. "url": "https://symfony.com/sponsor",
  8855. "type": "custom"
  8856. },
  8857. {
  8858. "url": "https://github.com/fabpot",
  8859. "type": "github"
  8860. },
  8861. {
  8862. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8863. "type": "tidelift"
  8864. }
  8865. ],
  8866. "time": "2025-02-26T11:01:22+00:00"
  8867. },
  8868. {
  8869. "name": "symfony/mailer",
  8870. "version": "v7.2.3",
  8871. "source": {
  8872. "type": "git",
  8873. "url": "https://github.com/symfony/mailer.git",
  8874. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3"
  8875. },
  8876. "dist": {
  8877. "type": "zip",
  8878. "url": "https://api.github.com/repos/symfony/mailer/zipball/f3871b182c44997cf039f3b462af4a48fb85f9d3",
  8879. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3",
  8880. "shasum": ""
  8881. },
  8882. "require": {
  8883. "egulias/email-validator": "^2.1.10|^3|^4",
  8884. "php": ">=8.2",
  8885. "psr/event-dispatcher": "^1",
  8886. "psr/log": "^1|^2|^3",
  8887. "symfony/event-dispatcher": "^6.4|^7.0",
  8888. "symfony/mime": "^7.2",
  8889. "symfony/service-contracts": "^2.5|^3"
  8890. },
  8891. "conflict": {
  8892. "symfony/http-client-contracts": "<2.5",
  8893. "symfony/http-kernel": "<6.4",
  8894. "symfony/messenger": "<6.4",
  8895. "symfony/mime": "<6.4",
  8896. "symfony/twig-bridge": "<6.4"
  8897. },
  8898. "require-dev": {
  8899. "symfony/console": "^6.4|^7.0",
  8900. "symfony/http-client": "^6.4|^7.0",
  8901. "symfony/messenger": "^6.4|^7.0",
  8902. "symfony/twig-bridge": "^6.4|^7.0"
  8903. },
  8904. "type": "library",
  8905. "autoload": {
  8906. "psr-4": {
  8907. "Symfony\\Component\\Mailer\\": ""
  8908. },
  8909. "exclude-from-classmap": [
  8910. "/Tests/"
  8911. ]
  8912. },
  8913. "notification-url": "https://packagist.org/downloads/",
  8914. "license": [
  8915. "MIT"
  8916. ],
  8917. "authors": [
  8918. {
  8919. "name": "Fabien Potencier",
  8920. "email": "fabien@symfony.com"
  8921. },
  8922. {
  8923. "name": "Symfony Community",
  8924. "homepage": "https://symfony.com/contributors"
  8925. }
  8926. ],
  8927. "description": "Helps sending emails",
  8928. "homepage": "https://symfony.com",
  8929. "support": {
  8930. "source": "https://github.com/symfony/mailer/tree/v7.2.3"
  8931. },
  8932. "funding": [
  8933. {
  8934. "url": "https://symfony.com/sponsor",
  8935. "type": "custom"
  8936. },
  8937. {
  8938. "url": "https://github.com/fabpot",
  8939. "type": "github"
  8940. },
  8941. {
  8942. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8943. "type": "tidelift"
  8944. }
  8945. ],
  8946. "time": "2025-01-27T11:08:17+00:00"
  8947. },
  8948. {
  8949. "name": "symfony/mime",
  8950. "version": "v7.3.4",
  8951. "source": {
  8952. "type": "git",
  8953. "url": "https://github.com/symfony/mime.git",
  8954. "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35"
  8955. },
  8956. "dist": {
  8957. "type": "zip",
  8958. "url": "https://api.github.com/repos/symfony/mime/zipball/b1b828f69cbaf887fa835a091869e55df91d0e35",
  8959. "reference": "b1b828f69cbaf887fa835a091869e55df91d0e35",
  8960. "shasum": ""
  8961. },
  8962. "require": {
  8963. "php": ">=8.2",
  8964. "symfony/polyfill-intl-idn": "^1.10",
  8965. "symfony/polyfill-mbstring": "^1.0"
  8966. },
  8967. "conflict": {
  8968. "egulias/email-validator": "~3.0.0",
  8969. "phpdocumentor/reflection-docblock": "<3.2.2",
  8970. "phpdocumentor/type-resolver": "<1.4.0",
  8971. "symfony/mailer": "<6.4",
  8972. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  8973. },
  8974. "require-dev": {
  8975. "egulias/email-validator": "^2.1.10|^3.1|^4",
  8976. "league/html-to-markdown": "^5.0",
  8977. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8978. "symfony/dependency-injection": "^6.4|^7.0",
  8979. "symfony/process": "^6.4|^7.0",
  8980. "symfony/property-access": "^6.4|^7.0",
  8981. "symfony/property-info": "^6.4|^7.0",
  8982. "symfony/serializer": "^6.4.3|^7.0.3"
  8983. },
  8984. "type": "library",
  8985. "autoload": {
  8986. "psr-4": {
  8987. "Symfony\\Component\\Mime\\": ""
  8988. },
  8989. "exclude-from-classmap": [
  8990. "/Tests/"
  8991. ]
  8992. },
  8993. "notification-url": "https://packagist.org/downloads/",
  8994. "license": [
  8995. "MIT"
  8996. ],
  8997. "authors": [
  8998. {
  8999. "name": "Fabien Potencier",
  9000. "email": "fabien@symfony.com"
  9001. },
  9002. {
  9003. "name": "Symfony Community",
  9004. "homepage": "https://symfony.com/contributors"
  9005. }
  9006. ],
  9007. "description": "Allows manipulating MIME messages",
  9008. "homepage": "https://symfony.com",
  9009. "keywords": [
  9010. "mime",
  9011. "mime-type"
  9012. ],
  9013. "support": {
  9014. "source": "https://github.com/symfony/mime/tree/v7.3.4"
  9015. },
  9016. "funding": [
  9017. {
  9018. "url": "https://symfony.com/sponsor",
  9019. "type": "custom"
  9020. },
  9021. {
  9022. "url": "https://github.com/fabpot",
  9023. "type": "github"
  9024. },
  9025. {
  9026. "url": "https://github.com/nicolas-grekas",
  9027. "type": "github"
  9028. },
  9029. {
  9030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9031. "type": "tidelift"
  9032. }
  9033. ],
  9034. "time": "2025-09-16T08:38:17+00:00"
  9035. },
  9036. {
  9037. "name": "symfony/polyfill-ctype",
  9038. "version": "v1.33.0",
  9039. "source": {
  9040. "type": "git",
  9041. "url": "https://github.com/symfony/polyfill-ctype.git",
  9042. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  9043. },
  9044. "dist": {
  9045. "type": "zip",
  9046. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  9047. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  9048. "shasum": ""
  9049. },
  9050. "require": {
  9051. "php": ">=7.2"
  9052. },
  9053. "provide": {
  9054. "ext-ctype": "*"
  9055. },
  9056. "suggest": {
  9057. "ext-ctype": "For best performance"
  9058. },
  9059. "type": "library",
  9060. "extra": {
  9061. "thanks": {
  9062. "url": "https://github.com/symfony/polyfill",
  9063. "name": "symfony/polyfill"
  9064. }
  9065. },
  9066. "autoload": {
  9067. "files": [
  9068. "bootstrap.php"
  9069. ],
  9070. "psr-4": {
  9071. "Symfony\\Polyfill\\Ctype\\": ""
  9072. }
  9073. },
  9074. "notification-url": "https://packagist.org/downloads/",
  9075. "license": [
  9076. "MIT"
  9077. ],
  9078. "authors": [
  9079. {
  9080. "name": "Gert de Pagter",
  9081. "email": "BackEndTea@gmail.com"
  9082. },
  9083. {
  9084. "name": "Symfony Community",
  9085. "homepage": "https://symfony.com/contributors"
  9086. }
  9087. ],
  9088. "description": "Symfony polyfill for ctype functions",
  9089. "homepage": "https://symfony.com",
  9090. "keywords": [
  9091. "compatibility",
  9092. "ctype",
  9093. "polyfill",
  9094. "portable"
  9095. ],
  9096. "support": {
  9097. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  9098. },
  9099. "funding": [
  9100. {
  9101. "url": "https://symfony.com/sponsor",
  9102. "type": "custom"
  9103. },
  9104. {
  9105. "url": "https://github.com/fabpot",
  9106. "type": "github"
  9107. },
  9108. {
  9109. "url": "https://github.com/nicolas-grekas",
  9110. "type": "github"
  9111. },
  9112. {
  9113. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9114. "type": "tidelift"
  9115. }
  9116. ],
  9117. "time": "2024-09-09T11:45:10+00:00"
  9118. },
  9119. {
  9120. "name": "symfony/polyfill-intl-grapheme",
  9121. "version": "v1.33.0",
  9122. "source": {
  9123. "type": "git",
  9124. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  9125. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  9126. },
  9127. "dist": {
  9128. "type": "zip",
  9129. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  9130. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  9131. "shasum": ""
  9132. },
  9133. "require": {
  9134. "php": ">=7.2"
  9135. },
  9136. "suggest": {
  9137. "ext-intl": "For best performance"
  9138. },
  9139. "type": "library",
  9140. "extra": {
  9141. "thanks": {
  9142. "url": "https://github.com/symfony/polyfill",
  9143. "name": "symfony/polyfill"
  9144. }
  9145. },
  9146. "autoload": {
  9147. "files": [
  9148. "bootstrap.php"
  9149. ],
  9150. "psr-4": {
  9151. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  9152. }
  9153. },
  9154. "notification-url": "https://packagist.org/downloads/",
  9155. "license": [
  9156. "MIT"
  9157. ],
  9158. "authors": [
  9159. {
  9160. "name": "Nicolas Grekas",
  9161. "email": "p@tchwork.com"
  9162. },
  9163. {
  9164. "name": "Symfony Community",
  9165. "homepage": "https://symfony.com/contributors"
  9166. }
  9167. ],
  9168. "description": "Symfony polyfill for intl's grapheme_* functions",
  9169. "homepage": "https://symfony.com",
  9170. "keywords": [
  9171. "compatibility",
  9172. "grapheme",
  9173. "intl",
  9174. "polyfill",
  9175. "portable",
  9176. "shim"
  9177. ],
  9178. "support": {
  9179. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  9180. },
  9181. "funding": [
  9182. {
  9183. "url": "https://symfony.com/sponsor",
  9184. "type": "custom"
  9185. },
  9186. {
  9187. "url": "https://github.com/fabpot",
  9188. "type": "github"
  9189. },
  9190. {
  9191. "url": "https://github.com/nicolas-grekas",
  9192. "type": "github"
  9193. },
  9194. {
  9195. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9196. "type": "tidelift"
  9197. }
  9198. ],
  9199. "time": "2025-06-27T09:58:17+00:00"
  9200. },
  9201. {
  9202. "name": "symfony/polyfill-intl-idn",
  9203. "version": "v1.33.0",
  9204. "source": {
  9205. "type": "git",
  9206. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  9207. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  9208. },
  9209. "dist": {
  9210. "type": "zip",
  9211. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  9212. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  9213. "shasum": ""
  9214. },
  9215. "require": {
  9216. "php": ">=7.2",
  9217. "symfony/polyfill-intl-normalizer": "^1.10"
  9218. },
  9219. "suggest": {
  9220. "ext-intl": "For best performance"
  9221. },
  9222. "type": "library",
  9223. "extra": {
  9224. "thanks": {
  9225. "url": "https://github.com/symfony/polyfill",
  9226. "name": "symfony/polyfill"
  9227. }
  9228. },
  9229. "autoload": {
  9230. "files": [
  9231. "bootstrap.php"
  9232. ],
  9233. "psr-4": {
  9234. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  9235. }
  9236. },
  9237. "notification-url": "https://packagist.org/downloads/",
  9238. "license": [
  9239. "MIT"
  9240. ],
  9241. "authors": [
  9242. {
  9243. "name": "Laurent Bassin",
  9244. "email": "laurent@bassin.info"
  9245. },
  9246. {
  9247. "name": "Trevor Rowbotham",
  9248. "email": "trevor.rowbotham@pm.me"
  9249. },
  9250. {
  9251. "name": "Symfony Community",
  9252. "homepage": "https://symfony.com/contributors"
  9253. }
  9254. ],
  9255. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  9256. "homepage": "https://symfony.com",
  9257. "keywords": [
  9258. "compatibility",
  9259. "idn",
  9260. "intl",
  9261. "polyfill",
  9262. "portable",
  9263. "shim"
  9264. ],
  9265. "support": {
  9266. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  9267. },
  9268. "funding": [
  9269. {
  9270. "url": "https://symfony.com/sponsor",
  9271. "type": "custom"
  9272. },
  9273. {
  9274. "url": "https://github.com/fabpot",
  9275. "type": "github"
  9276. },
  9277. {
  9278. "url": "https://github.com/nicolas-grekas",
  9279. "type": "github"
  9280. },
  9281. {
  9282. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9283. "type": "tidelift"
  9284. }
  9285. ],
  9286. "time": "2024-09-10T14:38:51+00:00"
  9287. },
  9288. {
  9289. "name": "symfony/polyfill-intl-normalizer",
  9290. "version": "v1.33.0",
  9291. "source": {
  9292. "type": "git",
  9293. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  9294. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  9295. },
  9296. "dist": {
  9297. "type": "zip",
  9298. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  9299. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  9300. "shasum": ""
  9301. },
  9302. "require": {
  9303. "php": ">=7.2"
  9304. },
  9305. "suggest": {
  9306. "ext-intl": "For best performance"
  9307. },
  9308. "type": "library",
  9309. "extra": {
  9310. "thanks": {
  9311. "url": "https://github.com/symfony/polyfill",
  9312. "name": "symfony/polyfill"
  9313. }
  9314. },
  9315. "autoload": {
  9316. "files": [
  9317. "bootstrap.php"
  9318. ],
  9319. "psr-4": {
  9320. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  9321. },
  9322. "classmap": [
  9323. "Resources/stubs"
  9324. ]
  9325. },
  9326. "notification-url": "https://packagist.org/downloads/",
  9327. "license": [
  9328. "MIT"
  9329. ],
  9330. "authors": [
  9331. {
  9332. "name": "Nicolas Grekas",
  9333. "email": "p@tchwork.com"
  9334. },
  9335. {
  9336. "name": "Symfony Community",
  9337. "homepage": "https://symfony.com/contributors"
  9338. }
  9339. ],
  9340. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  9341. "homepage": "https://symfony.com",
  9342. "keywords": [
  9343. "compatibility",
  9344. "intl",
  9345. "normalizer",
  9346. "polyfill",
  9347. "portable",
  9348. "shim"
  9349. ],
  9350. "support": {
  9351. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  9352. },
  9353. "funding": [
  9354. {
  9355. "url": "https://symfony.com/sponsor",
  9356. "type": "custom"
  9357. },
  9358. {
  9359. "url": "https://github.com/fabpot",
  9360. "type": "github"
  9361. },
  9362. {
  9363. "url": "https://github.com/nicolas-grekas",
  9364. "type": "github"
  9365. },
  9366. {
  9367. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9368. "type": "tidelift"
  9369. }
  9370. ],
  9371. "time": "2024-09-09T11:45:10+00:00"
  9372. },
  9373. {
  9374. "name": "symfony/polyfill-mbstring",
  9375. "version": "v1.33.0",
  9376. "source": {
  9377. "type": "git",
  9378. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9379. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  9380. },
  9381. "dist": {
  9382. "type": "zip",
  9383. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  9384. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  9385. "shasum": ""
  9386. },
  9387. "require": {
  9388. "ext-iconv": "*",
  9389. "php": ">=7.2"
  9390. },
  9391. "provide": {
  9392. "ext-mbstring": "*"
  9393. },
  9394. "suggest": {
  9395. "ext-mbstring": "For best performance"
  9396. },
  9397. "type": "library",
  9398. "extra": {
  9399. "thanks": {
  9400. "url": "https://github.com/symfony/polyfill",
  9401. "name": "symfony/polyfill"
  9402. }
  9403. },
  9404. "autoload": {
  9405. "files": [
  9406. "bootstrap.php"
  9407. ],
  9408. "psr-4": {
  9409. "Symfony\\Polyfill\\Mbstring\\": ""
  9410. }
  9411. },
  9412. "notification-url": "https://packagist.org/downloads/",
  9413. "license": [
  9414. "MIT"
  9415. ],
  9416. "authors": [
  9417. {
  9418. "name": "Nicolas Grekas",
  9419. "email": "p@tchwork.com"
  9420. },
  9421. {
  9422. "name": "Symfony Community",
  9423. "homepage": "https://symfony.com/contributors"
  9424. }
  9425. ],
  9426. "description": "Symfony polyfill for the Mbstring extension",
  9427. "homepage": "https://symfony.com",
  9428. "keywords": [
  9429. "compatibility",
  9430. "mbstring",
  9431. "polyfill",
  9432. "portable",
  9433. "shim"
  9434. ],
  9435. "support": {
  9436. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  9437. },
  9438. "funding": [
  9439. {
  9440. "url": "https://symfony.com/sponsor",
  9441. "type": "custom"
  9442. },
  9443. {
  9444. "url": "https://github.com/fabpot",
  9445. "type": "github"
  9446. },
  9447. {
  9448. "url": "https://github.com/nicolas-grekas",
  9449. "type": "github"
  9450. },
  9451. {
  9452. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9453. "type": "tidelift"
  9454. }
  9455. ],
  9456. "time": "2024-12-23T08:48:59+00:00"
  9457. },
  9458. {
  9459. "name": "symfony/polyfill-php80",
  9460. "version": "v1.33.0",
  9461. "source": {
  9462. "type": "git",
  9463. "url": "https://github.com/symfony/polyfill-php80.git",
  9464. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  9465. },
  9466. "dist": {
  9467. "type": "zip",
  9468. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  9469. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  9470. "shasum": ""
  9471. },
  9472. "require": {
  9473. "php": ">=7.2"
  9474. },
  9475. "type": "library",
  9476. "extra": {
  9477. "thanks": {
  9478. "url": "https://github.com/symfony/polyfill",
  9479. "name": "symfony/polyfill"
  9480. }
  9481. },
  9482. "autoload": {
  9483. "files": [
  9484. "bootstrap.php"
  9485. ],
  9486. "psr-4": {
  9487. "Symfony\\Polyfill\\Php80\\": ""
  9488. },
  9489. "classmap": [
  9490. "Resources/stubs"
  9491. ]
  9492. },
  9493. "notification-url": "https://packagist.org/downloads/",
  9494. "license": [
  9495. "MIT"
  9496. ],
  9497. "authors": [
  9498. {
  9499. "name": "Ion Bazan",
  9500. "email": "ion.bazan@gmail.com"
  9501. },
  9502. {
  9503. "name": "Nicolas Grekas",
  9504. "email": "p@tchwork.com"
  9505. },
  9506. {
  9507. "name": "Symfony Community",
  9508. "homepage": "https://symfony.com/contributors"
  9509. }
  9510. ],
  9511. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9512. "homepage": "https://symfony.com",
  9513. "keywords": [
  9514. "compatibility",
  9515. "polyfill",
  9516. "portable",
  9517. "shim"
  9518. ],
  9519. "support": {
  9520. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  9521. },
  9522. "funding": [
  9523. {
  9524. "url": "https://symfony.com/sponsor",
  9525. "type": "custom"
  9526. },
  9527. {
  9528. "url": "https://github.com/fabpot",
  9529. "type": "github"
  9530. },
  9531. {
  9532. "url": "https://github.com/nicolas-grekas",
  9533. "type": "github"
  9534. },
  9535. {
  9536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9537. "type": "tidelift"
  9538. }
  9539. ],
  9540. "time": "2025-01-02T08:10:11+00:00"
  9541. },
  9542. {
  9543. "name": "symfony/polyfill-php82",
  9544. "version": "v1.31.0",
  9545. "source": {
  9546. "type": "git",
  9547. "url": "https://github.com/symfony/polyfill-php82.git",
  9548. "reference": "5d2ed36f7734637dacc025f179698031951b1692"
  9549. },
  9550. "dist": {
  9551. "type": "zip",
  9552. "url": "https://api.github.com/repos/symfony/polyfill-php82/zipball/5d2ed36f7734637dacc025f179698031951b1692",
  9553. "reference": "5d2ed36f7734637dacc025f179698031951b1692",
  9554. "shasum": ""
  9555. },
  9556. "require": {
  9557. "php": ">=7.2"
  9558. },
  9559. "type": "library",
  9560. "extra": {
  9561. "thanks": {
  9562. "url": "https://github.com/symfony/polyfill",
  9563. "name": "symfony/polyfill"
  9564. }
  9565. },
  9566. "autoload": {
  9567. "files": [
  9568. "bootstrap.php"
  9569. ],
  9570. "psr-4": {
  9571. "Symfony\\Polyfill\\Php82\\": ""
  9572. },
  9573. "classmap": [
  9574. "Resources/stubs"
  9575. ]
  9576. },
  9577. "notification-url": "https://packagist.org/downloads/",
  9578. "license": [
  9579. "MIT"
  9580. ],
  9581. "authors": [
  9582. {
  9583. "name": "Nicolas Grekas",
  9584. "email": "p@tchwork.com"
  9585. },
  9586. {
  9587. "name": "Symfony Community",
  9588. "homepage": "https://symfony.com/contributors"
  9589. }
  9590. ],
  9591. "description": "Symfony polyfill backporting some PHP 8.2+ features to lower PHP versions",
  9592. "homepage": "https://symfony.com",
  9593. "keywords": [
  9594. "compatibility",
  9595. "polyfill",
  9596. "portable",
  9597. "shim"
  9598. ],
  9599. "support": {
  9600. "source": "https://github.com/symfony/polyfill-php82/tree/v1.31.0"
  9601. },
  9602. "funding": [
  9603. {
  9604. "url": "https://symfony.com/sponsor",
  9605. "type": "custom"
  9606. },
  9607. {
  9608. "url": "https://github.com/fabpot",
  9609. "type": "github"
  9610. },
  9611. {
  9612. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9613. "type": "tidelift"
  9614. }
  9615. ],
  9616. "time": "2024-09-09T11:45:10+00:00"
  9617. },
  9618. {
  9619. "name": "symfony/polyfill-php83",
  9620. "version": "v1.33.0",
  9621. "source": {
  9622. "type": "git",
  9623. "url": "https://github.com/symfony/polyfill-php83.git",
  9624. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5"
  9625. },
  9626. "dist": {
  9627. "type": "zip",
  9628. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  9629. "reference": "17f6f9a6b1735c0f163024d959f700cfbc5155e5",
  9630. "shasum": ""
  9631. },
  9632. "require": {
  9633. "php": ">=7.2"
  9634. },
  9635. "type": "library",
  9636. "extra": {
  9637. "thanks": {
  9638. "url": "https://github.com/symfony/polyfill",
  9639. "name": "symfony/polyfill"
  9640. }
  9641. },
  9642. "autoload": {
  9643. "files": [
  9644. "bootstrap.php"
  9645. ],
  9646. "psr-4": {
  9647. "Symfony\\Polyfill\\Php83\\": ""
  9648. },
  9649. "classmap": [
  9650. "Resources/stubs"
  9651. ]
  9652. },
  9653. "notification-url": "https://packagist.org/downloads/",
  9654. "license": [
  9655. "MIT"
  9656. ],
  9657. "authors": [
  9658. {
  9659. "name": "Nicolas Grekas",
  9660. "email": "p@tchwork.com"
  9661. },
  9662. {
  9663. "name": "Symfony Community",
  9664. "homepage": "https://symfony.com/contributors"
  9665. }
  9666. ],
  9667. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  9668. "homepage": "https://symfony.com",
  9669. "keywords": [
  9670. "compatibility",
  9671. "polyfill",
  9672. "portable",
  9673. "shim"
  9674. ],
  9675. "support": {
  9676. "source": "https://github.com/symfony/polyfill-php83/tree/v1.33.0"
  9677. },
  9678. "funding": [
  9679. {
  9680. "url": "https://symfony.com/sponsor",
  9681. "type": "custom"
  9682. },
  9683. {
  9684. "url": "https://github.com/fabpot",
  9685. "type": "github"
  9686. },
  9687. {
  9688. "url": "https://github.com/nicolas-grekas",
  9689. "type": "github"
  9690. },
  9691. {
  9692. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9693. "type": "tidelift"
  9694. }
  9695. ],
  9696. "time": "2025-07-08T02:45:35+00:00"
  9697. },
  9698. {
  9699. "name": "symfony/polyfill-uuid",
  9700. "version": "v1.31.0",
  9701. "source": {
  9702. "type": "git",
  9703. "url": "https://github.com/symfony/polyfill-uuid.git",
  9704. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  9705. },
  9706. "dist": {
  9707. "type": "zip",
  9708. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  9709. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  9710. "shasum": ""
  9711. },
  9712. "require": {
  9713. "php": ">=7.2"
  9714. },
  9715. "provide": {
  9716. "ext-uuid": "*"
  9717. },
  9718. "suggest": {
  9719. "ext-uuid": "For best performance"
  9720. },
  9721. "type": "library",
  9722. "extra": {
  9723. "thanks": {
  9724. "url": "https://github.com/symfony/polyfill",
  9725. "name": "symfony/polyfill"
  9726. }
  9727. },
  9728. "autoload": {
  9729. "files": [
  9730. "bootstrap.php"
  9731. ],
  9732. "psr-4": {
  9733. "Symfony\\Polyfill\\Uuid\\": ""
  9734. }
  9735. },
  9736. "notification-url": "https://packagist.org/downloads/",
  9737. "license": [
  9738. "MIT"
  9739. ],
  9740. "authors": [
  9741. {
  9742. "name": "Grégoire Pineau",
  9743. "email": "lyrixx@lyrixx.info"
  9744. },
  9745. {
  9746. "name": "Symfony Community",
  9747. "homepage": "https://symfony.com/contributors"
  9748. }
  9749. ],
  9750. "description": "Symfony polyfill for uuid functions",
  9751. "homepage": "https://symfony.com",
  9752. "keywords": [
  9753. "compatibility",
  9754. "polyfill",
  9755. "portable",
  9756. "uuid"
  9757. ],
  9758. "support": {
  9759. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  9760. },
  9761. "funding": [
  9762. {
  9763. "url": "https://symfony.com/sponsor",
  9764. "type": "custom"
  9765. },
  9766. {
  9767. "url": "https://github.com/fabpot",
  9768. "type": "github"
  9769. },
  9770. {
  9771. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9772. "type": "tidelift"
  9773. }
  9774. ],
  9775. "time": "2024-09-09T11:45:10+00:00"
  9776. },
  9777. {
  9778. "name": "symfony/process",
  9779. "version": "v7.2.4",
  9780. "source": {
  9781. "type": "git",
  9782. "url": "https://github.com/symfony/process.git",
  9783. "reference": "d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf"
  9784. },
  9785. "dist": {
  9786. "type": "zip",
  9787. "url": "https://api.github.com/repos/symfony/process/zipball/d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf",
  9788. "reference": "d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf",
  9789. "shasum": ""
  9790. },
  9791. "require": {
  9792. "php": ">=8.2"
  9793. },
  9794. "type": "library",
  9795. "autoload": {
  9796. "psr-4": {
  9797. "Symfony\\Component\\Process\\": ""
  9798. },
  9799. "exclude-from-classmap": [
  9800. "/Tests/"
  9801. ]
  9802. },
  9803. "notification-url": "https://packagist.org/downloads/",
  9804. "license": [
  9805. "MIT"
  9806. ],
  9807. "authors": [
  9808. {
  9809. "name": "Fabien Potencier",
  9810. "email": "fabien@symfony.com"
  9811. },
  9812. {
  9813. "name": "Symfony Community",
  9814. "homepage": "https://symfony.com/contributors"
  9815. }
  9816. ],
  9817. "description": "Executes commands in sub-processes",
  9818. "homepage": "https://symfony.com",
  9819. "support": {
  9820. "source": "https://github.com/symfony/process/tree/v7.2.4"
  9821. },
  9822. "funding": [
  9823. {
  9824. "url": "https://symfony.com/sponsor",
  9825. "type": "custom"
  9826. },
  9827. {
  9828. "url": "https://github.com/fabpot",
  9829. "type": "github"
  9830. },
  9831. {
  9832. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9833. "type": "tidelift"
  9834. }
  9835. ],
  9836. "time": "2025-02-05T08:33:46+00:00"
  9837. },
  9838. {
  9839. "name": "symfony/psr-http-message-bridge",
  9840. "version": "v7.2.0",
  9841. "source": {
  9842. "type": "git",
  9843. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9844. "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f"
  9845. },
  9846. "dist": {
  9847. "type": "zip",
  9848. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/03f2f72319e7acaf2a9f6fcbe30ef17eec51594f",
  9849. "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f",
  9850. "shasum": ""
  9851. },
  9852. "require": {
  9853. "php": ">=8.2",
  9854. "psr/http-message": "^1.0|^2.0",
  9855. "symfony/http-foundation": "^6.4|^7.0"
  9856. },
  9857. "conflict": {
  9858. "php-http/discovery": "<1.15",
  9859. "symfony/http-kernel": "<6.4"
  9860. },
  9861. "require-dev": {
  9862. "nyholm/psr7": "^1.1",
  9863. "php-http/discovery": "^1.15",
  9864. "psr/log": "^1.1.4|^2|^3",
  9865. "symfony/browser-kit": "^6.4|^7.0",
  9866. "symfony/config": "^6.4|^7.0",
  9867. "symfony/event-dispatcher": "^6.4|^7.0",
  9868. "symfony/framework-bundle": "^6.4|^7.0",
  9869. "symfony/http-kernel": "^6.4|^7.0"
  9870. },
  9871. "type": "symfony-bridge",
  9872. "autoload": {
  9873. "psr-4": {
  9874. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9875. },
  9876. "exclude-from-classmap": [
  9877. "/Tests/"
  9878. ]
  9879. },
  9880. "notification-url": "https://packagist.org/downloads/",
  9881. "license": [
  9882. "MIT"
  9883. ],
  9884. "authors": [
  9885. {
  9886. "name": "Fabien Potencier",
  9887. "email": "fabien@symfony.com"
  9888. },
  9889. {
  9890. "name": "Symfony Community",
  9891. "homepage": "https://symfony.com/contributors"
  9892. }
  9893. ],
  9894. "description": "PSR HTTP message bridge",
  9895. "homepage": "https://symfony.com",
  9896. "keywords": [
  9897. "http",
  9898. "http-message",
  9899. "psr-17",
  9900. "psr-7"
  9901. ],
  9902. "support": {
  9903. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.2.0"
  9904. },
  9905. "funding": [
  9906. {
  9907. "url": "https://symfony.com/sponsor",
  9908. "type": "custom"
  9909. },
  9910. {
  9911. "url": "https://github.com/fabpot",
  9912. "type": "github"
  9913. },
  9914. {
  9915. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9916. "type": "tidelift"
  9917. }
  9918. ],
  9919. "time": "2024-09-26T08:57:56+00:00"
  9920. },
  9921. {
  9922. "name": "symfony/routing",
  9923. "version": "v7.2.3",
  9924. "source": {
  9925. "type": "git",
  9926. "url": "https://github.com/symfony/routing.git",
  9927. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996"
  9928. },
  9929. "dist": {
  9930. "type": "zip",
  9931. "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996",
  9932. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996",
  9933. "shasum": ""
  9934. },
  9935. "require": {
  9936. "php": ">=8.2",
  9937. "symfony/deprecation-contracts": "^2.5|^3"
  9938. },
  9939. "conflict": {
  9940. "symfony/config": "<6.4",
  9941. "symfony/dependency-injection": "<6.4",
  9942. "symfony/yaml": "<6.4"
  9943. },
  9944. "require-dev": {
  9945. "psr/log": "^1|^2|^3",
  9946. "symfony/config": "^6.4|^7.0",
  9947. "symfony/dependency-injection": "^6.4|^7.0",
  9948. "symfony/expression-language": "^6.4|^7.0",
  9949. "symfony/http-foundation": "^6.4|^7.0",
  9950. "symfony/yaml": "^6.4|^7.0"
  9951. },
  9952. "type": "library",
  9953. "autoload": {
  9954. "psr-4": {
  9955. "Symfony\\Component\\Routing\\": ""
  9956. },
  9957. "exclude-from-classmap": [
  9958. "/Tests/"
  9959. ]
  9960. },
  9961. "notification-url": "https://packagist.org/downloads/",
  9962. "license": [
  9963. "MIT"
  9964. ],
  9965. "authors": [
  9966. {
  9967. "name": "Fabien Potencier",
  9968. "email": "fabien@symfony.com"
  9969. },
  9970. {
  9971. "name": "Symfony Community",
  9972. "homepage": "https://symfony.com/contributors"
  9973. }
  9974. ],
  9975. "description": "Maps an HTTP request to a set of configuration variables",
  9976. "homepage": "https://symfony.com",
  9977. "keywords": [
  9978. "router",
  9979. "routing",
  9980. "uri",
  9981. "url"
  9982. ],
  9983. "support": {
  9984. "source": "https://github.com/symfony/routing/tree/v7.2.3"
  9985. },
  9986. "funding": [
  9987. {
  9988. "url": "https://symfony.com/sponsor",
  9989. "type": "custom"
  9990. },
  9991. {
  9992. "url": "https://github.com/fabpot",
  9993. "type": "github"
  9994. },
  9995. {
  9996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9997. "type": "tidelift"
  9998. }
  9999. ],
  10000. "time": "2025-01-17T10:56:55+00:00"
  10001. },
  10002. {
  10003. "name": "symfony/service-contracts",
  10004. "version": "v3.6.0",
  10005. "source": {
  10006. "type": "git",
  10007. "url": "https://github.com/symfony/service-contracts.git",
  10008. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  10009. },
  10010. "dist": {
  10011. "type": "zip",
  10012. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  10013. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  10014. "shasum": ""
  10015. },
  10016. "require": {
  10017. "php": ">=8.1",
  10018. "psr/container": "^1.1|^2.0",
  10019. "symfony/deprecation-contracts": "^2.5|^3"
  10020. },
  10021. "conflict": {
  10022. "ext-psr": "<1.1|>=2"
  10023. },
  10024. "type": "library",
  10025. "extra": {
  10026. "thanks": {
  10027. "url": "https://github.com/symfony/contracts",
  10028. "name": "symfony/contracts"
  10029. },
  10030. "branch-alias": {
  10031. "dev-main": "3.6-dev"
  10032. }
  10033. },
  10034. "autoload": {
  10035. "psr-4": {
  10036. "Symfony\\Contracts\\Service\\": ""
  10037. },
  10038. "exclude-from-classmap": [
  10039. "/Test/"
  10040. ]
  10041. },
  10042. "notification-url": "https://packagist.org/downloads/",
  10043. "license": [
  10044. "MIT"
  10045. ],
  10046. "authors": [
  10047. {
  10048. "name": "Nicolas Grekas",
  10049. "email": "p@tchwork.com"
  10050. },
  10051. {
  10052. "name": "Symfony Community",
  10053. "homepage": "https://symfony.com/contributors"
  10054. }
  10055. ],
  10056. "description": "Generic abstractions related to writing services",
  10057. "homepage": "https://symfony.com",
  10058. "keywords": [
  10059. "abstractions",
  10060. "contracts",
  10061. "decoupling",
  10062. "interfaces",
  10063. "interoperability",
  10064. "standards"
  10065. ],
  10066. "support": {
  10067. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  10068. },
  10069. "funding": [
  10070. {
  10071. "url": "https://symfony.com/sponsor",
  10072. "type": "custom"
  10073. },
  10074. {
  10075. "url": "https://github.com/fabpot",
  10076. "type": "github"
  10077. },
  10078. {
  10079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10080. "type": "tidelift"
  10081. }
  10082. ],
  10083. "time": "2025-04-25T09:37:31+00:00"
  10084. },
  10085. {
  10086. "name": "symfony/string",
  10087. "version": "v7.3.3",
  10088. "source": {
  10089. "type": "git",
  10090. "url": "https://github.com/symfony/string.git",
  10091. "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c"
  10092. },
  10093. "dist": {
  10094. "type": "zip",
  10095. "url": "https://api.github.com/repos/symfony/string/zipball/17a426cce5fd1f0901fefa9b2a490d0038fd3c9c",
  10096. "reference": "17a426cce5fd1f0901fefa9b2a490d0038fd3c9c",
  10097. "shasum": ""
  10098. },
  10099. "require": {
  10100. "php": ">=8.2",
  10101. "symfony/polyfill-ctype": "~1.8",
  10102. "symfony/polyfill-intl-grapheme": "~1.0",
  10103. "symfony/polyfill-intl-normalizer": "~1.0",
  10104. "symfony/polyfill-mbstring": "~1.0"
  10105. },
  10106. "conflict": {
  10107. "symfony/translation-contracts": "<2.5"
  10108. },
  10109. "require-dev": {
  10110. "symfony/emoji": "^7.1",
  10111. "symfony/error-handler": "^6.4|^7.0",
  10112. "symfony/http-client": "^6.4|^7.0",
  10113. "symfony/intl": "^6.4|^7.0",
  10114. "symfony/translation-contracts": "^2.5|^3.0",
  10115. "symfony/var-exporter": "^6.4|^7.0"
  10116. },
  10117. "type": "library",
  10118. "autoload": {
  10119. "files": [
  10120. "Resources/functions.php"
  10121. ],
  10122. "psr-4": {
  10123. "Symfony\\Component\\String\\": ""
  10124. },
  10125. "exclude-from-classmap": [
  10126. "/Tests/"
  10127. ]
  10128. },
  10129. "notification-url": "https://packagist.org/downloads/",
  10130. "license": [
  10131. "MIT"
  10132. ],
  10133. "authors": [
  10134. {
  10135. "name": "Nicolas Grekas",
  10136. "email": "p@tchwork.com"
  10137. },
  10138. {
  10139. "name": "Symfony Community",
  10140. "homepage": "https://symfony.com/contributors"
  10141. }
  10142. ],
  10143. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  10144. "homepage": "https://symfony.com",
  10145. "keywords": [
  10146. "grapheme",
  10147. "i18n",
  10148. "string",
  10149. "unicode",
  10150. "utf-8",
  10151. "utf8"
  10152. ],
  10153. "support": {
  10154. "source": "https://github.com/symfony/string/tree/v7.3.3"
  10155. },
  10156. "funding": [
  10157. {
  10158. "url": "https://symfony.com/sponsor",
  10159. "type": "custom"
  10160. },
  10161. {
  10162. "url": "https://github.com/fabpot",
  10163. "type": "github"
  10164. },
  10165. {
  10166. "url": "https://github.com/nicolas-grekas",
  10167. "type": "github"
  10168. },
  10169. {
  10170. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10171. "type": "tidelift"
  10172. }
  10173. ],
  10174. "time": "2025-08-25T06:35:40+00:00"
  10175. },
  10176. {
  10177. "name": "symfony/translation",
  10178. "version": "v6.4.19",
  10179. "source": {
  10180. "type": "git",
  10181. "url": "https://github.com/symfony/translation.git",
  10182. "reference": "3b9bf9f33997c064885a7bfc126c14b9daa0e00e"
  10183. },
  10184. "dist": {
  10185. "type": "zip",
  10186. "url": "https://api.github.com/repos/symfony/translation/zipball/3b9bf9f33997c064885a7bfc126c14b9daa0e00e",
  10187. "reference": "3b9bf9f33997c064885a7bfc126c14b9daa0e00e",
  10188. "shasum": ""
  10189. },
  10190. "require": {
  10191. "php": ">=8.1",
  10192. "symfony/deprecation-contracts": "^2.5|^3",
  10193. "symfony/polyfill-mbstring": "~1.0",
  10194. "symfony/translation-contracts": "^2.5|^3.0"
  10195. },
  10196. "conflict": {
  10197. "symfony/config": "<5.4",
  10198. "symfony/console": "<5.4",
  10199. "symfony/dependency-injection": "<5.4",
  10200. "symfony/http-client-contracts": "<2.5",
  10201. "symfony/http-kernel": "<5.4",
  10202. "symfony/service-contracts": "<2.5",
  10203. "symfony/twig-bundle": "<5.4",
  10204. "symfony/yaml": "<5.4"
  10205. },
  10206. "provide": {
  10207. "symfony/translation-implementation": "2.3|3.0"
  10208. },
  10209. "require-dev": {
  10210. "nikic/php-parser": "^4.18|^5.0",
  10211. "psr/log": "^1|^2|^3",
  10212. "symfony/config": "^5.4|^6.0|^7.0",
  10213. "symfony/console": "^5.4|^6.0|^7.0",
  10214. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  10215. "symfony/finder": "^5.4|^6.0|^7.0",
  10216. "symfony/http-client-contracts": "^2.5|^3.0",
  10217. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  10218. "symfony/intl": "^5.4|^6.0|^7.0",
  10219. "symfony/polyfill-intl-icu": "^1.21",
  10220. "symfony/routing": "^5.4|^6.0|^7.0",
  10221. "symfony/service-contracts": "^2.5|^3",
  10222. "symfony/yaml": "^5.4|^6.0|^7.0"
  10223. },
  10224. "type": "library",
  10225. "autoload": {
  10226. "files": [
  10227. "Resources/functions.php"
  10228. ],
  10229. "psr-4": {
  10230. "Symfony\\Component\\Translation\\": ""
  10231. },
  10232. "exclude-from-classmap": [
  10233. "/Tests/"
  10234. ]
  10235. },
  10236. "notification-url": "https://packagist.org/downloads/",
  10237. "license": [
  10238. "MIT"
  10239. ],
  10240. "authors": [
  10241. {
  10242. "name": "Fabien Potencier",
  10243. "email": "fabien@symfony.com"
  10244. },
  10245. {
  10246. "name": "Symfony Community",
  10247. "homepage": "https://symfony.com/contributors"
  10248. }
  10249. ],
  10250. "description": "Provides tools to internationalize your application",
  10251. "homepage": "https://symfony.com",
  10252. "support": {
  10253. "source": "https://github.com/symfony/translation/tree/v6.4.19"
  10254. },
  10255. "funding": [
  10256. {
  10257. "url": "https://symfony.com/sponsor",
  10258. "type": "custom"
  10259. },
  10260. {
  10261. "url": "https://github.com/fabpot",
  10262. "type": "github"
  10263. },
  10264. {
  10265. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10266. "type": "tidelift"
  10267. }
  10268. ],
  10269. "time": "2025-02-13T10:18:43+00:00"
  10270. },
  10271. {
  10272. "name": "symfony/translation-contracts",
  10273. "version": "v3.6.0",
  10274. "source": {
  10275. "type": "git",
  10276. "url": "https://github.com/symfony/translation-contracts.git",
  10277. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  10278. },
  10279. "dist": {
  10280. "type": "zip",
  10281. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  10282. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  10283. "shasum": ""
  10284. },
  10285. "require": {
  10286. "php": ">=8.1"
  10287. },
  10288. "type": "library",
  10289. "extra": {
  10290. "thanks": {
  10291. "url": "https://github.com/symfony/contracts",
  10292. "name": "symfony/contracts"
  10293. },
  10294. "branch-alias": {
  10295. "dev-main": "3.6-dev"
  10296. }
  10297. },
  10298. "autoload": {
  10299. "psr-4": {
  10300. "Symfony\\Contracts\\Translation\\": ""
  10301. },
  10302. "exclude-from-classmap": [
  10303. "/Test/"
  10304. ]
  10305. },
  10306. "notification-url": "https://packagist.org/downloads/",
  10307. "license": [
  10308. "MIT"
  10309. ],
  10310. "authors": [
  10311. {
  10312. "name": "Nicolas Grekas",
  10313. "email": "p@tchwork.com"
  10314. },
  10315. {
  10316. "name": "Symfony Community",
  10317. "homepage": "https://symfony.com/contributors"
  10318. }
  10319. ],
  10320. "description": "Generic abstractions related to translation",
  10321. "homepage": "https://symfony.com",
  10322. "keywords": [
  10323. "abstractions",
  10324. "contracts",
  10325. "decoupling",
  10326. "interfaces",
  10327. "interoperability",
  10328. "standards"
  10329. ],
  10330. "support": {
  10331. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  10332. },
  10333. "funding": [
  10334. {
  10335. "url": "https://symfony.com/sponsor",
  10336. "type": "custom"
  10337. },
  10338. {
  10339. "url": "https://github.com/fabpot",
  10340. "type": "github"
  10341. },
  10342. {
  10343. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10344. "type": "tidelift"
  10345. }
  10346. ],
  10347. "time": "2024-09-27T08:32:26+00:00"
  10348. },
  10349. {
  10350. "name": "symfony/uid",
  10351. "version": "v7.2.0",
  10352. "source": {
  10353. "type": "git",
  10354. "url": "https://github.com/symfony/uid.git",
  10355. "reference": "2d294d0c48df244c71c105a169d0190bfb080426"
  10356. },
  10357. "dist": {
  10358. "type": "zip",
  10359. "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426",
  10360. "reference": "2d294d0c48df244c71c105a169d0190bfb080426",
  10361. "shasum": ""
  10362. },
  10363. "require": {
  10364. "php": ">=8.2",
  10365. "symfony/polyfill-uuid": "^1.15"
  10366. },
  10367. "require-dev": {
  10368. "symfony/console": "^6.4|^7.0"
  10369. },
  10370. "type": "library",
  10371. "autoload": {
  10372. "psr-4": {
  10373. "Symfony\\Component\\Uid\\": ""
  10374. },
  10375. "exclude-from-classmap": [
  10376. "/Tests/"
  10377. ]
  10378. },
  10379. "notification-url": "https://packagist.org/downloads/",
  10380. "license": [
  10381. "MIT"
  10382. ],
  10383. "authors": [
  10384. {
  10385. "name": "Grégoire Pineau",
  10386. "email": "lyrixx@lyrixx.info"
  10387. },
  10388. {
  10389. "name": "Nicolas Grekas",
  10390. "email": "p@tchwork.com"
  10391. },
  10392. {
  10393. "name": "Symfony Community",
  10394. "homepage": "https://symfony.com/contributors"
  10395. }
  10396. ],
  10397. "description": "Provides an object-oriented API to generate and represent UIDs",
  10398. "homepage": "https://symfony.com",
  10399. "keywords": [
  10400. "UID",
  10401. "ulid",
  10402. "uuid"
  10403. ],
  10404. "support": {
  10405. "source": "https://github.com/symfony/uid/tree/v7.2.0"
  10406. },
  10407. "funding": [
  10408. {
  10409. "url": "https://symfony.com/sponsor",
  10410. "type": "custom"
  10411. },
  10412. {
  10413. "url": "https://github.com/fabpot",
  10414. "type": "github"
  10415. },
  10416. {
  10417. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10418. "type": "tidelift"
  10419. }
  10420. ],
  10421. "time": "2024-09-25T14:21:43+00:00"
  10422. },
  10423. {
  10424. "name": "symfony/var-dumper",
  10425. "version": "v7.2.3",
  10426. "source": {
  10427. "type": "git",
  10428. "url": "https://github.com/symfony/var-dumper.git",
  10429. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a"
  10430. },
  10431. "dist": {
  10432. "type": "zip",
  10433. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82b478c69745d8878eb60f9a049a4d584996f73a",
  10434. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a",
  10435. "shasum": ""
  10436. },
  10437. "require": {
  10438. "php": ">=8.2",
  10439. "symfony/polyfill-mbstring": "~1.0"
  10440. },
  10441. "conflict": {
  10442. "symfony/console": "<6.4"
  10443. },
  10444. "require-dev": {
  10445. "ext-iconv": "*",
  10446. "symfony/console": "^6.4|^7.0",
  10447. "symfony/http-kernel": "^6.4|^7.0",
  10448. "symfony/process": "^6.4|^7.0",
  10449. "symfony/uid": "^6.4|^7.0",
  10450. "twig/twig": "^3.12"
  10451. },
  10452. "bin": [
  10453. "Resources/bin/var-dump-server"
  10454. ],
  10455. "type": "library",
  10456. "autoload": {
  10457. "files": [
  10458. "Resources/functions/dump.php"
  10459. ],
  10460. "psr-4": {
  10461. "Symfony\\Component\\VarDumper\\": ""
  10462. },
  10463. "exclude-from-classmap": [
  10464. "/Tests/"
  10465. ]
  10466. },
  10467. "notification-url": "https://packagist.org/downloads/",
  10468. "license": [
  10469. "MIT"
  10470. ],
  10471. "authors": [
  10472. {
  10473. "name": "Nicolas Grekas",
  10474. "email": "p@tchwork.com"
  10475. },
  10476. {
  10477. "name": "Symfony Community",
  10478. "homepage": "https://symfony.com/contributors"
  10479. }
  10480. ],
  10481. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  10482. "homepage": "https://symfony.com",
  10483. "keywords": [
  10484. "debug",
  10485. "dump"
  10486. ],
  10487. "support": {
  10488. "source": "https://github.com/symfony/var-dumper/tree/v7.2.3"
  10489. },
  10490. "funding": [
  10491. {
  10492. "url": "https://symfony.com/sponsor",
  10493. "type": "custom"
  10494. },
  10495. {
  10496. "url": "https://github.com/fabpot",
  10497. "type": "github"
  10498. },
  10499. {
  10500. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10501. "type": "tidelift"
  10502. }
  10503. ],
  10504. "time": "2025-01-17T11:39:41+00:00"
  10505. },
  10506. {
  10507. "name": "tijsverkoyen/css-to-inline-styles",
  10508. "version": "v2.3.0",
  10509. "source": {
  10510. "type": "git",
  10511. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  10512. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  10513. },
  10514. "dist": {
  10515. "type": "zip",
  10516. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  10517. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  10518. "shasum": ""
  10519. },
  10520. "require": {
  10521. "ext-dom": "*",
  10522. "ext-libxml": "*",
  10523. "php": "^7.4 || ^8.0",
  10524. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  10525. },
  10526. "require-dev": {
  10527. "phpstan/phpstan": "^2.0",
  10528. "phpstan/phpstan-phpunit": "^2.0",
  10529. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  10530. },
  10531. "type": "library",
  10532. "extra": {
  10533. "branch-alias": {
  10534. "dev-master": "2.x-dev"
  10535. }
  10536. },
  10537. "autoload": {
  10538. "psr-4": {
  10539. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  10540. }
  10541. },
  10542. "notification-url": "https://packagist.org/downloads/",
  10543. "license": [
  10544. "BSD-3-Clause"
  10545. ],
  10546. "authors": [
  10547. {
  10548. "name": "Tijs Verkoyen",
  10549. "email": "css_to_inline_styles@verkoyen.eu",
  10550. "role": "Developer"
  10551. }
  10552. ],
  10553. "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.",
  10554. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  10555. "support": {
  10556. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  10557. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  10558. },
  10559. "time": "2024-12-21T16:25:41+00:00"
  10560. },
  10561. {
  10562. "name": "ua-parser/uap-php",
  10563. "version": "v3.9.14",
  10564. "source": {
  10565. "type": "git",
  10566. "url": "https://github.com/ua-parser/uap-php.git",
  10567. "reference": "b796c5ea5df588e65aeb4e2c6cce3811dec4fed6"
  10568. },
  10569. "dist": {
  10570. "type": "zip",
  10571. "url": "https://api.github.com/repos/ua-parser/uap-php/zipball/b796c5ea5df588e65aeb4e2c6cce3811dec4fed6",
  10572. "reference": "b796c5ea5df588e65aeb4e2c6cce3811dec4fed6",
  10573. "shasum": ""
  10574. },
  10575. "require": {
  10576. "composer/ca-bundle": "^1.1",
  10577. "php": "^7.2 || ^8.0"
  10578. },
  10579. "require-dev": {
  10580. "phpstan/phpstan": "^0.12.33",
  10581. "phpunit/phpunit": "^8 || ^9",
  10582. "symfony/console": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  10583. "symfony/filesystem": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  10584. "symfony/finder": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  10585. "symfony/yaml": "^3.4 || ^4.2 || ^4.3 || ^5.0",
  10586. "vimeo/psalm": "^3.12"
  10587. },
  10588. "suggest": {
  10589. "symfony/console": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  10590. "symfony/filesystem": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  10591. "symfony/finder": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0",
  10592. "symfony/yaml": "Required for CLI usage - ^3.4 || ^4.3 || ^5.0"
  10593. },
  10594. "bin": [
  10595. "bin/uaparser"
  10596. ],
  10597. "type": "library",
  10598. "autoload": {
  10599. "psr-4": {
  10600. "UAParser\\": "src"
  10601. }
  10602. },
  10603. "notification-url": "https://packagist.org/downloads/",
  10604. "license": [
  10605. "MIT"
  10606. ],
  10607. "authors": [
  10608. {
  10609. "name": "Dave Olsen",
  10610. "email": "dmolsen@gmail.com"
  10611. },
  10612. {
  10613. "name": "Lars Strojny",
  10614. "email": "lars@strojny.net"
  10615. }
  10616. ],
  10617. "description": "A multi-language port of Browserscope's user agent parser.",
  10618. "support": {
  10619. "issues": "https://github.com/ua-parser/uap-php/issues",
  10620. "source": "https://github.com/ua-parser/uap-php/tree/v3.9.14"
  10621. },
  10622. "time": "2020-10-02T23:36:20+00:00"
  10623. },
  10624. {
  10625. "name": "vlucas/phpdotenv",
  10626. "version": "v5.6.1",
  10627. "source": {
  10628. "type": "git",
  10629. "url": "https://github.com/vlucas/phpdotenv.git",
  10630. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  10631. },
  10632. "dist": {
  10633. "type": "zip",
  10634. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  10635. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  10636. "shasum": ""
  10637. },
  10638. "require": {
  10639. "ext-pcre": "*",
  10640. "graham-campbell/result-type": "^1.1.3",
  10641. "php": "^7.2.5 || ^8.0",
  10642. "phpoption/phpoption": "^1.9.3",
  10643. "symfony/polyfill-ctype": "^1.24",
  10644. "symfony/polyfill-mbstring": "^1.24",
  10645. "symfony/polyfill-php80": "^1.24"
  10646. },
  10647. "require-dev": {
  10648. "bamarni/composer-bin-plugin": "^1.8.2",
  10649. "ext-filter": "*",
  10650. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  10651. },
  10652. "suggest": {
  10653. "ext-filter": "Required to use the boolean validator."
  10654. },
  10655. "type": "library",
  10656. "extra": {
  10657. "bamarni-bin": {
  10658. "bin-links": true,
  10659. "forward-command": false
  10660. },
  10661. "branch-alias": {
  10662. "dev-master": "5.6-dev"
  10663. }
  10664. },
  10665. "autoload": {
  10666. "psr-4": {
  10667. "Dotenv\\": "src/"
  10668. }
  10669. },
  10670. "notification-url": "https://packagist.org/downloads/",
  10671. "license": [
  10672. "BSD-3-Clause"
  10673. ],
  10674. "authors": [
  10675. {
  10676. "name": "Graham Campbell",
  10677. "email": "hello@gjcampbell.co.uk",
  10678. "homepage": "https://github.com/GrahamCampbell"
  10679. },
  10680. {
  10681. "name": "Vance Lucas",
  10682. "email": "vance@vancelucas.com",
  10683. "homepage": "https://github.com/vlucas"
  10684. }
  10685. ],
  10686. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10687. "keywords": [
  10688. "dotenv",
  10689. "env",
  10690. "environment"
  10691. ],
  10692. "support": {
  10693. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10694. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  10695. },
  10696. "funding": [
  10697. {
  10698. "url": "https://github.com/GrahamCampbell",
  10699. "type": "github"
  10700. },
  10701. {
  10702. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10703. "type": "tidelift"
  10704. }
  10705. ],
  10706. "time": "2024-07-20T21:52:34+00:00"
  10707. },
  10708. {
  10709. "name": "voku/portable-ascii",
  10710. "version": "2.0.3",
  10711. "source": {
  10712. "type": "git",
  10713. "url": "https://github.com/voku/portable-ascii.git",
  10714. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  10715. },
  10716. "dist": {
  10717. "type": "zip",
  10718. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  10719. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  10720. "shasum": ""
  10721. },
  10722. "require": {
  10723. "php": ">=7.0.0"
  10724. },
  10725. "require-dev": {
  10726. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  10727. },
  10728. "suggest": {
  10729. "ext-intl": "Use Intl for transliterator_transliterate() support"
  10730. },
  10731. "type": "library",
  10732. "autoload": {
  10733. "psr-4": {
  10734. "voku\\": "src/voku/"
  10735. }
  10736. },
  10737. "notification-url": "https://packagist.org/downloads/",
  10738. "license": [
  10739. "MIT"
  10740. ],
  10741. "authors": [
  10742. {
  10743. "name": "Lars Moelleken",
  10744. "homepage": "https://www.moelleken.org/"
  10745. }
  10746. ],
  10747. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  10748. "homepage": "https://github.com/voku/portable-ascii",
  10749. "keywords": [
  10750. "ascii",
  10751. "clean",
  10752. "php"
  10753. ],
  10754. "support": {
  10755. "issues": "https://github.com/voku/portable-ascii/issues",
  10756. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  10757. },
  10758. "funding": [
  10759. {
  10760. "url": "https://www.paypal.me/moelleken",
  10761. "type": "custom"
  10762. },
  10763. {
  10764. "url": "https://github.com/voku",
  10765. "type": "github"
  10766. },
  10767. {
  10768. "url": "https://opencollective.com/portable-ascii",
  10769. "type": "open_collective"
  10770. },
  10771. {
  10772. "url": "https://www.patreon.com/voku",
  10773. "type": "patreon"
  10774. },
  10775. {
  10776. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  10777. "type": "tidelift"
  10778. }
  10779. ],
  10780. "time": "2024-11-21T01:49:47+00:00"
  10781. },
  10782. {
  10783. "name": "webmozart/assert",
  10784. "version": "1.11.0",
  10785. "source": {
  10786. "type": "git",
  10787. "url": "https://github.com/webmozarts/assert.git",
  10788. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10789. },
  10790. "dist": {
  10791. "type": "zip",
  10792. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10793. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10794. "shasum": ""
  10795. },
  10796. "require": {
  10797. "ext-ctype": "*",
  10798. "php": "^7.2 || ^8.0"
  10799. },
  10800. "conflict": {
  10801. "phpstan/phpstan": "<0.12.20",
  10802. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10803. },
  10804. "require-dev": {
  10805. "phpunit/phpunit": "^8.5.13"
  10806. },
  10807. "type": "library",
  10808. "extra": {
  10809. "branch-alias": {
  10810. "dev-master": "1.10-dev"
  10811. }
  10812. },
  10813. "autoload": {
  10814. "psr-4": {
  10815. "Webmozart\\Assert\\": "src/"
  10816. }
  10817. },
  10818. "notification-url": "https://packagist.org/downloads/",
  10819. "license": [
  10820. "MIT"
  10821. ],
  10822. "authors": [
  10823. {
  10824. "name": "Bernhard Schussek",
  10825. "email": "bschussek@gmail.com"
  10826. }
  10827. ],
  10828. "description": "Assertions to validate method input/output with nice error messages.",
  10829. "keywords": [
  10830. "assert",
  10831. "check",
  10832. "validate"
  10833. ],
  10834. "support": {
  10835. "issues": "https://github.com/webmozarts/assert/issues",
  10836. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10837. },
  10838. "time": "2022-06-03T18:03:27+00:00"
  10839. }
  10840. ],
  10841. "packages-dev": [
  10842. {
  10843. "name": "bagisto/laravel-datafaker",
  10844. "version": "v2.3.0",
  10845. "source": {
  10846. "type": "git",
  10847. "url": "https://github.com/bagisto/laravel-data-faker.git",
  10848. "reference": "b3c33334f6b6e0acd4e5f06360f2fd1f5661d289"
  10849. },
  10850. "dist": {
  10851. "type": "zip",
  10852. "url": "https://api.github.com/repos/bagisto/laravel-data-faker/zipball/b3c33334f6b6e0acd4e5f06360f2fd1f5661d289",
  10853. "reference": "b3c33334f6b6e0acd4e5f06360f2fd1f5661d289",
  10854. "shasum": ""
  10855. },
  10856. "type": "library",
  10857. "extra": {
  10858. "laravel": {
  10859. "aliases": [],
  10860. "providers": [
  10861. "Webkul\\Faker\\Providers\\FakerServiceProvider"
  10862. ]
  10863. }
  10864. },
  10865. "autoload": {
  10866. "psr-4": {
  10867. "Webkul\\Faker\\": "src"
  10868. }
  10869. },
  10870. "notification-url": "https://packagist.org/downloads/",
  10871. "license": [
  10872. "MIT"
  10873. ],
  10874. "authors": [
  10875. {
  10876. "name": "Bagisto Data Faker",
  10877. "email": "support@bagisto.com"
  10878. }
  10879. ],
  10880. "description": "Create fake customers, categories and products in Bagisto.",
  10881. "homepage": "https://github.com/bagisto/laravel-data-faker",
  10882. "keywords": [
  10883. "bagisto",
  10884. "fake categories",
  10885. "fake customers",
  10886. "fake products"
  10887. ],
  10888. "support": {
  10889. "issues": "https://github.com/bagisto/laravel-data-faker/issues",
  10890. "source": "https://github.com/bagisto/laravel-data-faker/tree/v2.3.0"
  10891. },
  10892. "time": "2025-08-05T12:30:38+00:00"
  10893. },
  10894. {
  10895. "name": "barryvdh/laravel-debugbar",
  10896. "version": "v3.15.2",
  10897. "source": {
  10898. "type": "git",
  10899. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  10900. "reference": "0bc1e1361e7fffc2be156f46ad1fba6927c01729"
  10901. },
  10902. "dist": {
  10903. "type": "zip",
  10904. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/0bc1e1361e7fffc2be156f46ad1fba6927c01729",
  10905. "reference": "0bc1e1361e7fffc2be156f46ad1fba6927c01729",
  10906. "shasum": ""
  10907. },
  10908. "require": {
  10909. "illuminate/routing": "^9|^10|^11|^12",
  10910. "illuminate/session": "^9|^10|^11|^12",
  10911. "illuminate/support": "^9|^10|^11|^12",
  10912. "php": "^8.1",
  10913. "php-debugbar/php-debugbar": "~2.1.1",
  10914. "symfony/finder": "^6|^7"
  10915. },
  10916. "conflict": {
  10917. "maximebf/debugbar": "*"
  10918. },
  10919. "require-dev": {
  10920. "mockery/mockery": "^1.3.3",
  10921. "orchestra/testbench-dusk": "^7|^8|^9|^10",
  10922. "phpunit/phpunit": "^9.5.10|^10|^11",
  10923. "squizlabs/php_codesniffer": "^3.5"
  10924. },
  10925. "type": "library",
  10926. "extra": {
  10927. "laravel": {
  10928. "aliases": {
  10929. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  10930. },
  10931. "providers": [
  10932. "Barryvdh\\Debugbar\\ServiceProvider"
  10933. ]
  10934. },
  10935. "branch-alias": {
  10936. "dev-master": "3.15-dev"
  10937. }
  10938. },
  10939. "autoload": {
  10940. "files": [
  10941. "src/helpers.php"
  10942. ],
  10943. "psr-4": {
  10944. "Barryvdh\\Debugbar\\": "src/"
  10945. }
  10946. },
  10947. "notification-url": "https://packagist.org/downloads/",
  10948. "license": [
  10949. "MIT"
  10950. ],
  10951. "authors": [
  10952. {
  10953. "name": "Barry vd. Heuvel",
  10954. "email": "barryvdh@gmail.com"
  10955. }
  10956. ],
  10957. "description": "PHP Debugbar integration for Laravel",
  10958. "keywords": [
  10959. "debug",
  10960. "debugbar",
  10961. "dev",
  10962. "laravel",
  10963. "profiler",
  10964. "webprofiler"
  10965. ],
  10966. "support": {
  10967. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  10968. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.15.2"
  10969. },
  10970. "funding": [
  10971. {
  10972. "url": "https://fruitcake.nl",
  10973. "type": "custom"
  10974. },
  10975. {
  10976. "url": "https://github.com/barryvdh",
  10977. "type": "github"
  10978. }
  10979. ],
  10980. "time": "2025-02-25T15:25:22+00:00"
  10981. },
  10982. {
  10983. "name": "brianium/paratest",
  10984. "version": "v7.7.0",
  10985. "source": {
  10986. "type": "git",
  10987. "url": "https://github.com/paratestphp/paratest.git",
  10988. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf"
  10989. },
  10990. "dist": {
  10991. "type": "zip",
  10992. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  10993. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  10994. "shasum": ""
  10995. },
  10996. "require": {
  10997. "ext-dom": "*",
  10998. "ext-pcre": "*",
  10999. "ext-reflection": "*",
  11000. "ext-simplexml": "*",
  11001. "fidry/cpu-core-counter": "^1.2.0",
  11002. "jean85/pretty-package-versions": "^2.1.0",
  11003. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  11004. "phpunit/php-code-coverage": "^11.0.8",
  11005. "phpunit/php-file-iterator": "^5.1.0",
  11006. "phpunit/php-timer": "^7.0.1",
  11007. "phpunit/phpunit": "^11.5.1",
  11008. "sebastian/environment": "^7.2.0",
  11009. "symfony/console": "^6.4.14 || ^7.2.1",
  11010. "symfony/process": "^6.4.14 || ^7.2.0"
  11011. },
  11012. "require-dev": {
  11013. "doctrine/coding-standard": "^12.0.0",
  11014. "ext-pcov": "*",
  11015. "ext-posix": "*",
  11016. "phpstan/phpstan": "^2.0.3",
  11017. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  11018. "phpstan/phpstan-phpunit": "^2.0.1",
  11019. "phpstan/phpstan-strict-rules": "^2",
  11020. "squizlabs/php_codesniffer": "^3.11.1",
  11021. "symfony/filesystem": "^6.4.13 || ^7.2.0"
  11022. },
  11023. "bin": [
  11024. "bin/paratest",
  11025. "bin/paratest_for_phpstorm"
  11026. ],
  11027. "type": "library",
  11028. "autoload": {
  11029. "psr-4": {
  11030. "ParaTest\\": [
  11031. "src/"
  11032. ]
  11033. }
  11034. },
  11035. "notification-url": "https://packagist.org/downloads/",
  11036. "license": [
  11037. "MIT"
  11038. ],
  11039. "authors": [
  11040. {
  11041. "name": "Brian Scaturro",
  11042. "email": "scaturrob@gmail.com",
  11043. "role": "Developer"
  11044. },
  11045. {
  11046. "name": "Filippo Tessarotto",
  11047. "email": "zoeslam@gmail.com",
  11048. "role": "Developer"
  11049. }
  11050. ],
  11051. "description": "Parallel testing for PHP",
  11052. "homepage": "https://github.com/paratestphp/paratest",
  11053. "keywords": [
  11054. "concurrent",
  11055. "parallel",
  11056. "phpunit",
  11057. "testing"
  11058. ],
  11059. "support": {
  11060. "issues": "https://github.com/paratestphp/paratest/issues",
  11061. "source": "https://github.com/paratestphp/paratest/tree/v7.7.0"
  11062. },
  11063. "funding": [
  11064. {
  11065. "url": "https://github.com/sponsors/Slamdunk",
  11066. "type": "github"
  11067. },
  11068. {
  11069. "url": "https://paypal.me/filippotessarotto",
  11070. "type": "paypal"
  11071. }
  11072. ],
  11073. "time": "2024-12-11T14:50:44+00:00"
  11074. },
  11075. {
  11076. "name": "doctrine/deprecations",
  11077. "version": "1.1.5",
  11078. "source": {
  11079. "type": "git",
  11080. "url": "https://github.com/doctrine/deprecations.git",
  11081. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  11082. },
  11083. "dist": {
  11084. "type": "zip",
  11085. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  11086. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  11087. "shasum": ""
  11088. },
  11089. "require": {
  11090. "php": "^7.1 || ^8.0"
  11091. },
  11092. "conflict": {
  11093. "phpunit/phpunit": "<=7.5 || >=13"
  11094. },
  11095. "require-dev": {
  11096. "doctrine/coding-standard": "^9 || ^12 || ^13",
  11097. "phpstan/phpstan": "1.4.10 || 2.1.11",
  11098. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  11099. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  11100. "psr/log": "^1 || ^2 || ^3"
  11101. },
  11102. "suggest": {
  11103. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  11104. },
  11105. "type": "library",
  11106. "autoload": {
  11107. "psr-4": {
  11108. "Doctrine\\Deprecations\\": "src"
  11109. }
  11110. },
  11111. "notification-url": "https://packagist.org/downloads/",
  11112. "license": [
  11113. "MIT"
  11114. ],
  11115. "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.",
  11116. "homepage": "https://www.doctrine-project.org/",
  11117. "support": {
  11118. "issues": "https://github.com/doctrine/deprecations/issues",
  11119. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  11120. },
  11121. "time": "2025-04-07T20:06:18+00:00"
  11122. },
  11123. {
  11124. "name": "fakerphp/faker",
  11125. "version": "v1.24.1",
  11126. "source": {
  11127. "type": "git",
  11128. "url": "https://github.com/FakerPHP/Faker.git",
  11129. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  11130. },
  11131. "dist": {
  11132. "type": "zip",
  11133. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  11134. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  11135. "shasum": ""
  11136. },
  11137. "require": {
  11138. "php": "^7.4 || ^8.0",
  11139. "psr/container": "^1.0 || ^2.0",
  11140. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  11141. },
  11142. "conflict": {
  11143. "fzaninotto/faker": "*"
  11144. },
  11145. "require-dev": {
  11146. "bamarni/composer-bin-plugin": "^1.4.1",
  11147. "doctrine/persistence": "^1.3 || ^2.0",
  11148. "ext-intl": "*",
  11149. "phpunit/phpunit": "^9.5.26",
  11150. "symfony/phpunit-bridge": "^5.4.16"
  11151. },
  11152. "suggest": {
  11153. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  11154. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  11155. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  11156. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  11157. "ext-mbstring": "Required for multibyte Unicode string functionality."
  11158. },
  11159. "type": "library",
  11160. "autoload": {
  11161. "psr-4": {
  11162. "Faker\\": "src/Faker/"
  11163. }
  11164. },
  11165. "notification-url": "https://packagist.org/downloads/",
  11166. "license": [
  11167. "MIT"
  11168. ],
  11169. "authors": [
  11170. {
  11171. "name": "François Zaninotto"
  11172. }
  11173. ],
  11174. "description": "Faker is a PHP library that generates fake data for you.",
  11175. "keywords": [
  11176. "data",
  11177. "faker",
  11178. "fixtures"
  11179. ],
  11180. "support": {
  11181. "issues": "https://github.com/FakerPHP/Faker/issues",
  11182. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  11183. },
  11184. "time": "2024-11-21T13:46:39+00:00"
  11185. },
  11186. {
  11187. "name": "fidry/cpu-core-counter",
  11188. "version": "1.2.0",
  11189. "source": {
  11190. "type": "git",
  11191. "url": "https://github.com/theofidry/cpu-core-counter.git",
  11192. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  11193. },
  11194. "dist": {
  11195. "type": "zip",
  11196. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  11197. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  11198. "shasum": ""
  11199. },
  11200. "require": {
  11201. "php": "^7.2 || ^8.0"
  11202. },
  11203. "require-dev": {
  11204. "fidry/makefile": "^0.2.0",
  11205. "fidry/php-cs-fixer-config": "^1.1.2",
  11206. "phpstan/extension-installer": "^1.2.0",
  11207. "phpstan/phpstan": "^1.9.2",
  11208. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  11209. "phpstan/phpstan-phpunit": "^1.2.2",
  11210. "phpstan/phpstan-strict-rules": "^1.4.4",
  11211. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  11212. "webmozarts/strict-phpunit": "^7.5"
  11213. },
  11214. "type": "library",
  11215. "autoload": {
  11216. "psr-4": {
  11217. "Fidry\\CpuCoreCounter\\": "src/"
  11218. }
  11219. },
  11220. "notification-url": "https://packagist.org/downloads/",
  11221. "license": [
  11222. "MIT"
  11223. ],
  11224. "authors": [
  11225. {
  11226. "name": "Théo FIDRY",
  11227. "email": "theo.fidry@gmail.com"
  11228. }
  11229. ],
  11230. "description": "Tiny utility to get the number of CPU cores.",
  11231. "keywords": [
  11232. "CPU",
  11233. "core"
  11234. ],
  11235. "support": {
  11236. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  11237. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  11238. },
  11239. "funding": [
  11240. {
  11241. "url": "https://github.com/theofidry",
  11242. "type": "github"
  11243. }
  11244. ],
  11245. "time": "2024-08-06T10:04:20+00:00"
  11246. },
  11247. {
  11248. "name": "filp/whoops",
  11249. "version": "2.18.0",
  11250. "source": {
  11251. "type": "git",
  11252. "url": "https://github.com/filp/whoops.git",
  11253. "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e"
  11254. },
  11255. "dist": {
  11256. "type": "zip",
  11257. "url": "https://api.github.com/repos/filp/whoops/zipball/a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
  11258. "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
  11259. "shasum": ""
  11260. },
  11261. "require": {
  11262. "php": "^7.1 || ^8.0",
  11263. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  11264. },
  11265. "require-dev": {
  11266. "mockery/mockery": "^1.0",
  11267. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  11268. "symfony/var-dumper": "^4.0 || ^5.0"
  11269. },
  11270. "suggest": {
  11271. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  11272. "whoops/soap": "Formats errors as SOAP responses"
  11273. },
  11274. "type": "library",
  11275. "extra": {
  11276. "branch-alias": {
  11277. "dev-master": "2.7-dev"
  11278. }
  11279. },
  11280. "autoload": {
  11281. "psr-4": {
  11282. "Whoops\\": "src/Whoops/"
  11283. }
  11284. },
  11285. "notification-url": "https://packagist.org/downloads/",
  11286. "license": [
  11287. "MIT"
  11288. ],
  11289. "authors": [
  11290. {
  11291. "name": "Filipe Dobreira",
  11292. "homepage": "https://github.com/filp",
  11293. "role": "Developer"
  11294. }
  11295. ],
  11296. "description": "php error handling for cool kids",
  11297. "homepage": "https://filp.github.io/whoops/",
  11298. "keywords": [
  11299. "error",
  11300. "exception",
  11301. "handling",
  11302. "library",
  11303. "throwable",
  11304. "whoops"
  11305. ],
  11306. "support": {
  11307. "issues": "https://github.com/filp/whoops/issues",
  11308. "source": "https://github.com/filp/whoops/tree/2.18.0"
  11309. },
  11310. "funding": [
  11311. {
  11312. "url": "https://github.com/denis-sokolov",
  11313. "type": "github"
  11314. }
  11315. ],
  11316. "time": "2025-03-15T12:00:00+00:00"
  11317. },
  11318. {
  11319. "name": "hamcrest/hamcrest-php",
  11320. "version": "v2.0.1",
  11321. "source": {
  11322. "type": "git",
  11323. "url": "https://github.com/hamcrest/hamcrest-php.git",
  11324. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  11325. },
  11326. "dist": {
  11327. "type": "zip",
  11328. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  11329. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  11330. "shasum": ""
  11331. },
  11332. "require": {
  11333. "php": "^5.3|^7.0|^8.0"
  11334. },
  11335. "replace": {
  11336. "cordoval/hamcrest-php": "*",
  11337. "davedevelopment/hamcrest-php": "*",
  11338. "kodova/hamcrest-php": "*"
  11339. },
  11340. "require-dev": {
  11341. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  11342. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  11343. },
  11344. "type": "library",
  11345. "extra": {
  11346. "branch-alias": {
  11347. "dev-master": "2.1-dev"
  11348. }
  11349. },
  11350. "autoload": {
  11351. "classmap": [
  11352. "hamcrest"
  11353. ]
  11354. },
  11355. "notification-url": "https://packagist.org/downloads/",
  11356. "license": [
  11357. "BSD-3-Clause"
  11358. ],
  11359. "description": "This is the PHP port of Hamcrest Matchers",
  11360. "keywords": [
  11361. "test"
  11362. ],
  11363. "support": {
  11364. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  11365. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  11366. },
  11367. "time": "2020-07-09T08:09:16+00:00"
  11368. },
  11369. {
  11370. "name": "jean85/pretty-package-versions",
  11371. "version": "2.1.1",
  11372. "source": {
  11373. "type": "git",
  11374. "url": "https://github.com/Jean85/pretty-package-versions.git",
  11375. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a"
  11376. },
  11377. "dist": {
  11378. "type": "zip",
  11379. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a",
  11380. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a",
  11381. "shasum": ""
  11382. },
  11383. "require": {
  11384. "composer-runtime-api": "^2.1.0",
  11385. "php": "^7.4|^8.0"
  11386. },
  11387. "require-dev": {
  11388. "friendsofphp/php-cs-fixer": "^3.2",
  11389. "jean85/composer-provided-replaced-stub-package": "^1.0",
  11390. "phpstan/phpstan": "^2.0",
  11391. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  11392. "rector/rector": "^2.0",
  11393. "vimeo/psalm": "^4.3 || ^5.0"
  11394. },
  11395. "type": "library",
  11396. "extra": {
  11397. "branch-alias": {
  11398. "dev-master": "1.x-dev"
  11399. }
  11400. },
  11401. "autoload": {
  11402. "psr-4": {
  11403. "Jean85\\": "src/"
  11404. }
  11405. },
  11406. "notification-url": "https://packagist.org/downloads/",
  11407. "license": [
  11408. "MIT"
  11409. ],
  11410. "authors": [
  11411. {
  11412. "name": "Alessandro Lai",
  11413. "email": "alessandro.lai85@gmail.com"
  11414. }
  11415. ],
  11416. "description": "A library to get pretty versions strings of installed dependencies",
  11417. "keywords": [
  11418. "composer",
  11419. "package",
  11420. "release",
  11421. "versions"
  11422. ],
  11423. "support": {
  11424. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  11425. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1"
  11426. },
  11427. "time": "2025-03-19T14:43:43+00:00"
  11428. },
  11429. {
  11430. "name": "laravel/pint",
  11431. "version": "v1.21.2",
  11432. "source": {
  11433. "type": "git",
  11434. "url": "https://github.com/laravel/pint.git",
  11435. "reference": "370772e7d9e9da087678a0edf2b11b6960e40558"
  11436. },
  11437. "dist": {
  11438. "type": "zip",
  11439. "url": "https://api.github.com/repos/laravel/pint/zipball/370772e7d9e9da087678a0edf2b11b6960e40558",
  11440. "reference": "370772e7d9e9da087678a0edf2b11b6960e40558",
  11441. "shasum": ""
  11442. },
  11443. "require": {
  11444. "ext-json": "*",
  11445. "ext-mbstring": "*",
  11446. "ext-tokenizer": "*",
  11447. "ext-xml": "*",
  11448. "php": "^8.2.0"
  11449. },
  11450. "require-dev": {
  11451. "friendsofphp/php-cs-fixer": "^3.72.0",
  11452. "illuminate/view": "^11.44.2",
  11453. "larastan/larastan": "^3.2.0",
  11454. "laravel-zero/framework": "^11.36.1",
  11455. "mockery/mockery": "^1.6.12",
  11456. "nunomaduro/termwind": "^2.3",
  11457. "pestphp/pest": "^2.36.0"
  11458. },
  11459. "bin": [
  11460. "builds/pint"
  11461. ],
  11462. "type": "project",
  11463. "autoload": {
  11464. "psr-4": {
  11465. "App\\": "app/",
  11466. "Database\\Seeders\\": "database/seeders/",
  11467. "Database\\Factories\\": "database/factories/"
  11468. }
  11469. },
  11470. "notification-url": "https://packagist.org/downloads/",
  11471. "license": [
  11472. "MIT"
  11473. ],
  11474. "authors": [
  11475. {
  11476. "name": "Nuno Maduro",
  11477. "email": "enunomaduro@gmail.com"
  11478. }
  11479. ],
  11480. "description": "An opinionated code formatter for PHP.",
  11481. "homepage": "https://laravel.com",
  11482. "keywords": [
  11483. "format",
  11484. "formatter",
  11485. "lint",
  11486. "linter",
  11487. "php"
  11488. ],
  11489. "support": {
  11490. "issues": "https://github.com/laravel/pint/issues",
  11491. "source": "https://github.com/laravel/pint"
  11492. },
  11493. "time": "2025-03-14T22:31:42+00:00"
  11494. },
  11495. {
  11496. "name": "mockery/mockery",
  11497. "version": "1.6.12",
  11498. "source": {
  11499. "type": "git",
  11500. "url": "https://github.com/mockery/mockery.git",
  11501. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  11502. },
  11503. "dist": {
  11504. "type": "zip",
  11505. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  11506. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  11507. "shasum": ""
  11508. },
  11509. "require": {
  11510. "hamcrest/hamcrest-php": "^2.0.1",
  11511. "lib-pcre": ">=7.0",
  11512. "php": ">=7.3"
  11513. },
  11514. "conflict": {
  11515. "phpunit/phpunit": "<8.0"
  11516. },
  11517. "require-dev": {
  11518. "phpunit/phpunit": "^8.5 || ^9.6.17",
  11519. "symplify/easy-coding-standard": "^12.1.14"
  11520. },
  11521. "type": "library",
  11522. "autoload": {
  11523. "files": [
  11524. "library/helpers.php",
  11525. "library/Mockery.php"
  11526. ],
  11527. "psr-4": {
  11528. "Mockery\\": "library/Mockery"
  11529. }
  11530. },
  11531. "notification-url": "https://packagist.org/downloads/",
  11532. "license": [
  11533. "BSD-3-Clause"
  11534. ],
  11535. "authors": [
  11536. {
  11537. "name": "Pádraic Brady",
  11538. "email": "padraic.brady@gmail.com",
  11539. "homepage": "https://github.com/padraic",
  11540. "role": "Author"
  11541. },
  11542. {
  11543. "name": "Dave Marshall",
  11544. "email": "dave.marshall@atstsolutions.co.uk",
  11545. "homepage": "https://davedevelopment.co.uk",
  11546. "role": "Developer"
  11547. },
  11548. {
  11549. "name": "Nathanael Esayeas",
  11550. "email": "nathanael.esayeas@protonmail.com",
  11551. "homepage": "https://github.com/ghostwriter",
  11552. "role": "Lead Developer"
  11553. }
  11554. ],
  11555. "description": "Mockery is a simple yet flexible PHP mock object framework",
  11556. "homepage": "https://github.com/mockery/mockery",
  11557. "keywords": [
  11558. "BDD",
  11559. "TDD",
  11560. "library",
  11561. "mock",
  11562. "mock objects",
  11563. "mockery",
  11564. "stub",
  11565. "test",
  11566. "test double",
  11567. "testing"
  11568. ],
  11569. "support": {
  11570. "docs": "https://docs.mockery.io/",
  11571. "issues": "https://github.com/mockery/mockery/issues",
  11572. "rss": "https://github.com/mockery/mockery/releases.atom",
  11573. "security": "https://github.com/mockery/mockery/security/advisories",
  11574. "source": "https://github.com/mockery/mockery"
  11575. },
  11576. "time": "2024-05-16T03:13:13+00:00"
  11577. },
  11578. {
  11579. "name": "nunomaduro/collision",
  11580. "version": "v8.7.0",
  11581. "source": {
  11582. "type": "git",
  11583. "url": "https://github.com/nunomaduro/collision.git",
  11584. "reference": "586cb8181a257a2152b6a855ca8d9598878a1a26"
  11585. },
  11586. "dist": {
  11587. "type": "zip",
  11588. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/586cb8181a257a2152b6a855ca8d9598878a1a26",
  11589. "reference": "586cb8181a257a2152b6a855ca8d9598878a1a26",
  11590. "shasum": ""
  11591. },
  11592. "require": {
  11593. "filp/whoops": "^2.17.0",
  11594. "nunomaduro/termwind": "^2.3.0",
  11595. "php": "^8.2.0",
  11596. "symfony/console": "^7.2.1"
  11597. },
  11598. "conflict": {
  11599. "laravel/framework": "<11.39.1 || >=13.0.0",
  11600. "phpunit/phpunit": "<11.5.3 || >=12.0.0"
  11601. },
  11602. "require-dev": {
  11603. "larastan/larastan": "^2.10.0",
  11604. "laravel/framework": "^11.44.2",
  11605. "laravel/pint": "^1.21.2",
  11606. "laravel/sail": "^1.41.0",
  11607. "laravel/sanctum": "^4.0.8",
  11608. "laravel/tinker": "^2.10.1",
  11609. "orchestra/testbench-core": "^9.12.0",
  11610. "pestphp/pest": "^3.7.4",
  11611. "sebastian/environment": "^6.1.0 || ^7.2.0"
  11612. },
  11613. "type": "library",
  11614. "extra": {
  11615. "laravel": {
  11616. "providers": [
  11617. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  11618. ]
  11619. },
  11620. "branch-alias": {
  11621. "dev-8.x": "8.x-dev"
  11622. }
  11623. },
  11624. "autoload": {
  11625. "files": [
  11626. "./src/Adapters/Phpunit/Autoload.php"
  11627. ],
  11628. "psr-4": {
  11629. "NunoMaduro\\Collision\\": "src/"
  11630. }
  11631. },
  11632. "notification-url": "https://packagist.org/downloads/",
  11633. "license": [
  11634. "MIT"
  11635. ],
  11636. "authors": [
  11637. {
  11638. "name": "Nuno Maduro",
  11639. "email": "enunomaduro@gmail.com"
  11640. }
  11641. ],
  11642. "description": "Cli error handling for console/command-line PHP applications.",
  11643. "keywords": [
  11644. "artisan",
  11645. "cli",
  11646. "command-line",
  11647. "console",
  11648. "dev",
  11649. "error",
  11650. "handling",
  11651. "laravel",
  11652. "laravel-zero",
  11653. "php",
  11654. "symfony"
  11655. ],
  11656. "support": {
  11657. "issues": "https://github.com/nunomaduro/collision/issues",
  11658. "source": "https://github.com/nunomaduro/collision"
  11659. },
  11660. "funding": [
  11661. {
  11662. "url": "https://www.paypal.com/paypalme/enunomaduro",
  11663. "type": "custom"
  11664. },
  11665. {
  11666. "url": "https://github.com/nunomaduro",
  11667. "type": "github"
  11668. },
  11669. {
  11670. "url": "https://www.patreon.com/nunomaduro",
  11671. "type": "patreon"
  11672. }
  11673. ],
  11674. "time": "2025-03-14T22:37:40+00:00"
  11675. },
  11676. {
  11677. "name": "pestphp/pest",
  11678. "version": "v3.7.4",
  11679. "source": {
  11680. "type": "git",
  11681. "url": "https://github.com/pestphp/pest.git",
  11682. "reference": "4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b"
  11683. },
  11684. "dist": {
  11685. "type": "zip",
  11686. "url": "https://api.github.com/repos/pestphp/pest/zipball/4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b",
  11687. "reference": "4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b",
  11688. "shasum": ""
  11689. },
  11690. "require": {
  11691. "brianium/paratest": "^7.7.0",
  11692. "nunomaduro/collision": "^8.6.1",
  11693. "nunomaduro/termwind": "^2.3.0",
  11694. "pestphp/pest-plugin": "^3.0.0",
  11695. "pestphp/pest-plugin-arch": "^3.0.0",
  11696. "pestphp/pest-plugin-mutate": "^3.0.5",
  11697. "php": "^8.2.0",
  11698. "phpunit/phpunit": "^11.5.3"
  11699. },
  11700. "conflict": {
  11701. "filp/whoops": "<2.16.0",
  11702. "phpunit/phpunit": ">11.5.3",
  11703. "sebastian/exporter": "<6.0.0",
  11704. "webmozart/assert": "<1.11.0"
  11705. },
  11706. "require-dev": {
  11707. "pestphp/pest-dev-tools": "^3.3.0",
  11708. "pestphp/pest-plugin-type-coverage": "^3.2.3",
  11709. "symfony/process": "^7.2.0"
  11710. },
  11711. "bin": [
  11712. "bin/pest"
  11713. ],
  11714. "type": "library",
  11715. "extra": {
  11716. "pest": {
  11717. "plugins": [
  11718. "Pest\\Mutate\\Plugins\\Mutate",
  11719. "Pest\\Plugins\\Configuration",
  11720. "Pest\\Plugins\\Bail",
  11721. "Pest\\Plugins\\Cache",
  11722. "Pest\\Plugins\\Coverage",
  11723. "Pest\\Plugins\\Init",
  11724. "Pest\\Plugins\\Environment",
  11725. "Pest\\Plugins\\Help",
  11726. "Pest\\Plugins\\Memory",
  11727. "Pest\\Plugins\\Only",
  11728. "Pest\\Plugins\\Printer",
  11729. "Pest\\Plugins\\ProcessIsolation",
  11730. "Pest\\Plugins\\Profile",
  11731. "Pest\\Plugins\\Retry",
  11732. "Pest\\Plugins\\Snapshot",
  11733. "Pest\\Plugins\\Verbose",
  11734. "Pest\\Plugins\\Version",
  11735. "Pest\\Plugins\\Parallel"
  11736. ]
  11737. },
  11738. "phpstan": {
  11739. "includes": [
  11740. "extension.neon"
  11741. ]
  11742. }
  11743. },
  11744. "autoload": {
  11745. "files": [
  11746. "src/Functions.php",
  11747. "src/Pest.php"
  11748. ],
  11749. "psr-4": {
  11750. "Pest\\": "src/"
  11751. }
  11752. },
  11753. "notification-url": "https://packagist.org/downloads/",
  11754. "license": [
  11755. "MIT"
  11756. ],
  11757. "authors": [
  11758. {
  11759. "name": "Nuno Maduro",
  11760. "email": "enunomaduro@gmail.com"
  11761. }
  11762. ],
  11763. "description": "The elegant PHP Testing Framework.",
  11764. "keywords": [
  11765. "framework",
  11766. "pest",
  11767. "php",
  11768. "test",
  11769. "testing",
  11770. "unit"
  11771. ],
  11772. "support": {
  11773. "issues": "https://github.com/pestphp/pest/issues",
  11774. "source": "https://github.com/pestphp/pest/tree/v3.7.4"
  11775. },
  11776. "funding": [
  11777. {
  11778. "url": "https://www.paypal.com/paypalme/enunomaduro",
  11779. "type": "custom"
  11780. },
  11781. {
  11782. "url": "https://github.com/nunomaduro",
  11783. "type": "github"
  11784. }
  11785. ],
  11786. "time": "2025-01-23T14:03:29+00:00"
  11787. },
  11788. {
  11789. "name": "pestphp/pest-plugin",
  11790. "version": "v3.0.0",
  11791. "source": {
  11792. "type": "git",
  11793. "url": "https://github.com/pestphp/pest-plugin.git",
  11794. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  11795. },
  11796. "dist": {
  11797. "type": "zip",
  11798. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  11799. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  11800. "shasum": ""
  11801. },
  11802. "require": {
  11803. "composer-plugin-api": "^2.0.0",
  11804. "composer-runtime-api": "^2.2.2",
  11805. "php": "^8.2"
  11806. },
  11807. "conflict": {
  11808. "pestphp/pest": "<3.0.0"
  11809. },
  11810. "require-dev": {
  11811. "composer/composer": "^2.7.9",
  11812. "pestphp/pest": "^3.0.0",
  11813. "pestphp/pest-dev-tools": "^3.0.0"
  11814. },
  11815. "type": "composer-plugin",
  11816. "extra": {
  11817. "class": "Pest\\Plugin\\Manager"
  11818. },
  11819. "autoload": {
  11820. "psr-4": {
  11821. "Pest\\Plugin\\": "src/"
  11822. }
  11823. },
  11824. "notification-url": "https://packagist.org/downloads/",
  11825. "license": [
  11826. "MIT"
  11827. ],
  11828. "description": "The Pest plugin manager",
  11829. "keywords": [
  11830. "framework",
  11831. "manager",
  11832. "pest",
  11833. "php",
  11834. "plugin",
  11835. "test",
  11836. "testing",
  11837. "unit"
  11838. ],
  11839. "support": {
  11840. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  11841. },
  11842. "funding": [
  11843. {
  11844. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  11845. "type": "custom"
  11846. },
  11847. {
  11848. "url": "https://github.com/nunomaduro",
  11849. "type": "github"
  11850. },
  11851. {
  11852. "url": "https://www.patreon.com/nunomaduro",
  11853. "type": "patreon"
  11854. }
  11855. ],
  11856. "time": "2024-09-08T23:21:41+00:00"
  11857. },
  11858. {
  11859. "name": "pestphp/pest-plugin-arch",
  11860. "version": "v3.0.0",
  11861. "source": {
  11862. "type": "git",
  11863. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  11864. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0"
  11865. },
  11866. "dist": {
  11867. "type": "zip",
  11868. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  11869. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  11870. "shasum": ""
  11871. },
  11872. "require": {
  11873. "pestphp/pest-plugin": "^3.0.0",
  11874. "php": "^8.2",
  11875. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  11876. },
  11877. "require-dev": {
  11878. "pestphp/pest": "^3.0.0",
  11879. "pestphp/pest-dev-tools": "^3.0.0"
  11880. },
  11881. "type": "library",
  11882. "extra": {
  11883. "pest": {
  11884. "plugins": [
  11885. "Pest\\Arch\\Plugin"
  11886. ]
  11887. }
  11888. },
  11889. "autoload": {
  11890. "files": [
  11891. "src/Autoload.php"
  11892. ],
  11893. "psr-4": {
  11894. "Pest\\Arch\\": "src/"
  11895. }
  11896. },
  11897. "notification-url": "https://packagist.org/downloads/",
  11898. "license": [
  11899. "MIT"
  11900. ],
  11901. "description": "The Arch plugin for Pest PHP.",
  11902. "keywords": [
  11903. "arch",
  11904. "architecture",
  11905. "framework",
  11906. "pest",
  11907. "php",
  11908. "plugin",
  11909. "test",
  11910. "testing",
  11911. "unit"
  11912. ],
  11913. "support": {
  11914. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.0.0"
  11915. },
  11916. "funding": [
  11917. {
  11918. "url": "https://www.paypal.com/paypalme/enunomaduro",
  11919. "type": "custom"
  11920. },
  11921. {
  11922. "url": "https://github.com/nunomaduro",
  11923. "type": "github"
  11924. }
  11925. ],
  11926. "time": "2024-09-08T23:23:55+00:00"
  11927. },
  11928. {
  11929. "name": "pestphp/pest-plugin-laravel",
  11930. "version": "v3.1.0",
  11931. "source": {
  11932. "type": "git",
  11933. "url": "https://github.com/pestphp/pest-plugin-laravel.git",
  11934. "reference": "1c4e994476375c72aa7aebaaa97aa98f5d5378cd"
  11935. },
  11936. "dist": {
  11937. "type": "zip",
  11938. "url": "https://api.github.com/repos/pestphp/pest-plugin-laravel/zipball/1c4e994476375c72aa7aebaaa97aa98f5d5378cd",
  11939. "reference": "1c4e994476375c72aa7aebaaa97aa98f5d5378cd",
  11940. "shasum": ""
  11941. },
  11942. "require": {
  11943. "laravel/framework": "^11.39.1|^12.0.0",
  11944. "pestphp/pest": "^3.7.4",
  11945. "php": "^8.2.0"
  11946. },
  11947. "require-dev": {
  11948. "laravel/dusk": "^8.2.13|dev-develop",
  11949. "orchestra/testbench": "^9.9.0|^10.0.0",
  11950. "pestphp/pest-dev-tools": "^3.3.0"
  11951. },
  11952. "type": "library",
  11953. "extra": {
  11954. "pest": {
  11955. "plugins": [
  11956. "Pest\\Laravel\\Plugin"
  11957. ]
  11958. },
  11959. "laravel": {
  11960. "providers": [
  11961. "Pest\\Laravel\\PestServiceProvider"
  11962. ]
  11963. }
  11964. },
  11965. "autoload": {
  11966. "files": [
  11967. "src/Autoload.php"
  11968. ],
  11969. "psr-4": {
  11970. "Pest\\Laravel\\": "src/"
  11971. }
  11972. },
  11973. "notification-url": "https://packagist.org/downloads/",
  11974. "license": [
  11975. "MIT"
  11976. ],
  11977. "description": "The Pest Laravel Plugin",
  11978. "keywords": [
  11979. "framework",
  11980. "laravel",
  11981. "pest",
  11982. "php",
  11983. "test",
  11984. "testing",
  11985. "unit"
  11986. ],
  11987. "support": {
  11988. "source": "https://github.com/pestphp/pest-plugin-laravel/tree/v3.1.0"
  11989. },
  11990. "funding": [
  11991. {
  11992. "url": "https://www.paypal.com/paypalme/enunomaduro",
  11993. "type": "custom"
  11994. },
  11995. {
  11996. "url": "https://github.com/nunomaduro",
  11997. "type": "github"
  11998. }
  11999. ],
  12000. "time": "2025-01-24T13:22:39+00:00"
  12001. },
  12002. {
  12003. "name": "pestphp/pest-plugin-mutate",
  12004. "version": "v3.0.5",
  12005. "source": {
  12006. "type": "git",
  12007. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  12008. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  12009. },
  12010. "dist": {
  12011. "type": "zip",
  12012. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  12013. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  12014. "shasum": ""
  12015. },
  12016. "require": {
  12017. "nikic/php-parser": "^5.2.0",
  12018. "pestphp/pest-plugin": "^3.0.0",
  12019. "php": "^8.2",
  12020. "psr/simple-cache": "^3.0.0"
  12021. },
  12022. "require-dev": {
  12023. "pestphp/pest": "^3.0.8",
  12024. "pestphp/pest-dev-tools": "^3.0.0",
  12025. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  12026. },
  12027. "type": "library",
  12028. "autoload": {
  12029. "psr-4": {
  12030. "Pest\\Mutate\\": "src/"
  12031. }
  12032. },
  12033. "notification-url": "https://packagist.org/downloads/",
  12034. "license": [
  12035. "MIT"
  12036. ],
  12037. "authors": [
  12038. {
  12039. "name": "Sandro Gehri",
  12040. "email": "sandrogehri@gmail.com"
  12041. }
  12042. ],
  12043. "description": "Mutates your code to find untested cases",
  12044. "keywords": [
  12045. "framework",
  12046. "mutate",
  12047. "mutation",
  12048. "pest",
  12049. "php",
  12050. "plugin",
  12051. "test",
  12052. "testing",
  12053. "unit"
  12054. ],
  12055. "support": {
  12056. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  12057. },
  12058. "funding": [
  12059. {
  12060. "url": "https://www.paypal.com/paypalme/enunomaduro",
  12061. "type": "custom"
  12062. },
  12063. {
  12064. "url": "https://github.com/gehrisandro",
  12065. "type": "github"
  12066. },
  12067. {
  12068. "url": "https://github.com/nunomaduro",
  12069. "type": "github"
  12070. }
  12071. ],
  12072. "time": "2024-09-22T07:54:40+00:00"
  12073. },
  12074. {
  12075. "name": "phar-io/manifest",
  12076. "version": "2.0.4",
  12077. "source": {
  12078. "type": "git",
  12079. "url": "https://github.com/phar-io/manifest.git",
  12080. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  12081. },
  12082. "dist": {
  12083. "type": "zip",
  12084. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  12085. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  12086. "shasum": ""
  12087. },
  12088. "require": {
  12089. "ext-dom": "*",
  12090. "ext-libxml": "*",
  12091. "ext-phar": "*",
  12092. "ext-xmlwriter": "*",
  12093. "phar-io/version": "^3.0.1",
  12094. "php": "^7.2 || ^8.0"
  12095. },
  12096. "type": "library",
  12097. "extra": {
  12098. "branch-alias": {
  12099. "dev-master": "2.0.x-dev"
  12100. }
  12101. },
  12102. "autoload": {
  12103. "classmap": [
  12104. "src/"
  12105. ]
  12106. },
  12107. "notification-url": "https://packagist.org/downloads/",
  12108. "license": [
  12109. "BSD-3-Clause"
  12110. ],
  12111. "authors": [
  12112. {
  12113. "name": "Arne Blankerts",
  12114. "email": "arne@blankerts.de",
  12115. "role": "Developer"
  12116. },
  12117. {
  12118. "name": "Sebastian Heuer",
  12119. "email": "sebastian@phpeople.de",
  12120. "role": "Developer"
  12121. },
  12122. {
  12123. "name": "Sebastian Bergmann",
  12124. "email": "sebastian@phpunit.de",
  12125. "role": "Developer"
  12126. }
  12127. ],
  12128. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  12129. "support": {
  12130. "issues": "https://github.com/phar-io/manifest/issues",
  12131. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  12132. },
  12133. "funding": [
  12134. {
  12135. "url": "https://github.com/theseer",
  12136. "type": "github"
  12137. }
  12138. ],
  12139. "time": "2024-03-03T12:33:53+00:00"
  12140. },
  12141. {
  12142. "name": "phar-io/version",
  12143. "version": "3.2.1",
  12144. "source": {
  12145. "type": "git",
  12146. "url": "https://github.com/phar-io/version.git",
  12147. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  12148. },
  12149. "dist": {
  12150. "type": "zip",
  12151. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  12152. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  12153. "shasum": ""
  12154. },
  12155. "require": {
  12156. "php": "^7.2 || ^8.0"
  12157. },
  12158. "type": "library",
  12159. "autoload": {
  12160. "classmap": [
  12161. "src/"
  12162. ]
  12163. },
  12164. "notification-url": "https://packagist.org/downloads/",
  12165. "license": [
  12166. "BSD-3-Clause"
  12167. ],
  12168. "authors": [
  12169. {
  12170. "name": "Arne Blankerts",
  12171. "email": "arne@blankerts.de",
  12172. "role": "Developer"
  12173. },
  12174. {
  12175. "name": "Sebastian Heuer",
  12176. "email": "sebastian@phpeople.de",
  12177. "role": "Developer"
  12178. },
  12179. {
  12180. "name": "Sebastian Bergmann",
  12181. "email": "sebastian@phpunit.de",
  12182. "role": "Developer"
  12183. }
  12184. ],
  12185. "description": "Library for handling version information and constraints",
  12186. "support": {
  12187. "issues": "https://github.com/phar-io/version/issues",
  12188. "source": "https://github.com/phar-io/version/tree/3.2.1"
  12189. },
  12190. "time": "2022-02-21T01:04:05+00:00"
  12191. },
  12192. {
  12193. "name": "php-debugbar/php-debugbar",
  12194. "version": "v2.1.6",
  12195. "source": {
  12196. "type": "git",
  12197. "url": "https://github.com/php-debugbar/php-debugbar.git",
  12198. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0"
  12199. },
  12200. "dist": {
  12201. "type": "zip",
  12202. "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/16fa68da5617220594aa5e33fa9de415f94784a0",
  12203. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0",
  12204. "shasum": ""
  12205. },
  12206. "require": {
  12207. "php": "^8",
  12208. "psr/log": "^1|^2|^3",
  12209. "symfony/var-dumper": "^4|^5|^6|^7"
  12210. },
  12211. "require-dev": {
  12212. "dbrekelmans/bdi": "^1",
  12213. "phpunit/phpunit": "^8|^9",
  12214. "symfony/panther": "^1|^2.1",
  12215. "twig/twig": "^1.38|^2.7|^3.0"
  12216. },
  12217. "suggest": {
  12218. "kriswallsmith/assetic": "The best way to manage assets",
  12219. "monolog/monolog": "Log using Monolog",
  12220. "predis/predis": "Redis storage"
  12221. },
  12222. "type": "library",
  12223. "extra": {
  12224. "branch-alias": {
  12225. "dev-master": "2.0-dev"
  12226. }
  12227. },
  12228. "autoload": {
  12229. "psr-4": {
  12230. "DebugBar\\": "src/DebugBar/"
  12231. }
  12232. },
  12233. "notification-url": "https://packagist.org/downloads/",
  12234. "license": [
  12235. "MIT"
  12236. ],
  12237. "authors": [
  12238. {
  12239. "name": "Maxime Bouroumeau-Fuseau",
  12240. "email": "maxime.bouroumeau@gmail.com",
  12241. "homepage": "http://maximebf.com"
  12242. },
  12243. {
  12244. "name": "Barry vd. Heuvel",
  12245. "email": "barryvdh@gmail.com"
  12246. }
  12247. ],
  12248. "description": "Debug bar in the browser for php application",
  12249. "homepage": "https://github.com/php-debugbar/php-debugbar",
  12250. "keywords": [
  12251. "debug",
  12252. "debug bar",
  12253. "debugbar",
  12254. "dev"
  12255. ],
  12256. "support": {
  12257. "issues": "https://github.com/php-debugbar/php-debugbar/issues",
  12258. "source": "https://github.com/php-debugbar/php-debugbar/tree/v2.1.6"
  12259. },
  12260. "time": "2025-02-21T17:47:03+00:00"
  12261. },
  12262. {
  12263. "name": "phpdocumentor/reflection-common",
  12264. "version": "2.2.0",
  12265. "source": {
  12266. "type": "git",
  12267. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  12268. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  12269. },
  12270. "dist": {
  12271. "type": "zip",
  12272. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  12273. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  12274. "shasum": ""
  12275. },
  12276. "require": {
  12277. "php": "^7.2 || ^8.0"
  12278. },
  12279. "type": "library",
  12280. "extra": {
  12281. "branch-alias": {
  12282. "dev-2.x": "2.x-dev"
  12283. }
  12284. },
  12285. "autoload": {
  12286. "psr-4": {
  12287. "phpDocumentor\\Reflection\\": "src/"
  12288. }
  12289. },
  12290. "notification-url": "https://packagist.org/downloads/",
  12291. "license": [
  12292. "MIT"
  12293. ],
  12294. "authors": [
  12295. {
  12296. "name": "Jaap van Otterdijk",
  12297. "email": "opensource@ijaap.nl"
  12298. }
  12299. ],
  12300. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  12301. "homepage": "http://www.phpdoc.org",
  12302. "keywords": [
  12303. "FQSEN",
  12304. "phpDocumentor",
  12305. "phpdoc",
  12306. "reflection",
  12307. "static analysis"
  12308. ],
  12309. "support": {
  12310. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  12311. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  12312. },
  12313. "time": "2020-06-27T09:03:43+00:00"
  12314. },
  12315. {
  12316. "name": "phpdocumentor/reflection-docblock",
  12317. "version": "5.6.3",
  12318. "source": {
  12319. "type": "git",
  12320. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  12321. "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9"
  12322. },
  12323. "dist": {
  12324. "type": "zip",
  12325. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/94f8051919d1b0369a6bcc7931d679a511c03fe9",
  12326. "reference": "94f8051919d1b0369a6bcc7931d679a511c03fe9",
  12327. "shasum": ""
  12328. },
  12329. "require": {
  12330. "doctrine/deprecations": "^1.1",
  12331. "ext-filter": "*",
  12332. "php": "^7.4 || ^8.0",
  12333. "phpdocumentor/reflection-common": "^2.2",
  12334. "phpdocumentor/type-resolver": "^1.7",
  12335. "phpstan/phpdoc-parser": "^1.7|^2.0",
  12336. "webmozart/assert": "^1.9.1"
  12337. },
  12338. "require-dev": {
  12339. "mockery/mockery": "~1.3.5 || ~1.6.0",
  12340. "phpstan/extension-installer": "^1.1",
  12341. "phpstan/phpstan": "^1.8",
  12342. "phpstan/phpstan-mockery": "^1.1",
  12343. "phpstan/phpstan-webmozart-assert": "^1.2",
  12344. "phpunit/phpunit": "^9.5",
  12345. "psalm/phar": "^5.26"
  12346. },
  12347. "type": "library",
  12348. "extra": {
  12349. "branch-alias": {
  12350. "dev-master": "5.x-dev"
  12351. }
  12352. },
  12353. "autoload": {
  12354. "psr-4": {
  12355. "phpDocumentor\\Reflection\\": "src"
  12356. }
  12357. },
  12358. "notification-url": "https://packagist.org/downloads/",
  12359. "license": [
  12360. "MIT"
  12361. ],
  12362. "authors": [
  12363. {
  12364. "name": "Mike van Riel",
  12365. "email": "me@mikevanriel.com"
  12366. },
  12367. {
  12368. "name": "Jaap van Otterdijk",
  12369. "email": "opensource@ijaap.nl"
  12370. }
  12371. ],
  12372. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  12373. "support": {
  12374. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  12375. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.3"
  12376. },
  12377. "time": "2025-08-01T19:43:32+00:00"
  12378. },
  12379. {
  12380. "name": "phpdocumentor/type-resolver",
  12381. "version": "1.10.0",
  12382. "source": {
  12383. "type": "git",
  12384. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  12385. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  12386. },
  12387. "dist": {
  12388. "type": "zip",
  12389. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  12390. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  12391. "shasum": ""
  12392. },
  12393. "require": {
  12394. "doctrine/deprecations": "^1.0",
  12395. "php": "^7.3 || ^8.0",
  12396. "phpdocumentor/reflection-common": "^2.0",
  12397. "phpstan/phpdoc-parser": "^1.18|^2.0"
  12398. },
  12399. "require-dev": {
  12400. "ext-tokenizer": "*",
  12401. "phpbench/phpbench": "^1.2",
  12402. "phpstan/extension-installer": "^1.1",
  12403. "phpstan/phpstan": "^1.8",
  12404. "phpstan/phpstan-phpunit": "^1.1",
  12405. "phpunit/phpunit": "^9.5",
  12406. "rector/rector": "^0.13.9",
  12407. "vimeo/psalm": "^4.25"
  12408. },
  12409. "type": "library",
  12410. "extra": {
  12411. "branch-alias": {
  12412. "dev-1.x": "1.x-dev"
  12413. }
  12414. },
  12415. "autoload": {
  12416. "psr-4": {
  12417. "phpDocumentor\\Reflection\\": "src"
  12418. }
  12419. },
  12420. "notification-url": "https://packagist.org/downloads/",
  12421. "license": [
  12422. "MIT"
  12423. ],
  12424. "authors": [
  12425. {
  12426. "name": "Mike van Riel",
  12427. "email": "me@mikevanriel.com"
  12428. }
  12429. ],
  12430. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  12431. "support": {
  12432. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  12433. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  12434. },
  12435. "time": "2024-11-09T15:12:26+00:00"
  12436. },
  12437. {
  12438. "name": "phpstan/phpdoc-parser",
  12439. "version": "2.3.0",
  12440. "source": {
  12441. "type": "git",
  12442. "url": "https://github.com/phpstan/phpdoc-parser.git",
  12443. "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495"
  12444. },
  12445. "dist": {
  12446. "type": "zip",
  12447. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/1e0cd5370df5dd2e556a36b9c62f62e555870495",
  12448. "reference": "1e0cd5370df5dd2e556a36b9c62f62e555870495",
  12449. "shasum": ""
  12450. },
  12451. "require": {
  12452. "php": "^7.4 || ^8.0"
  12453. },
  12454. "require-dev": {
  12455. "doctrine/annotations": "^2.0",
  12456. "nikic/php-parser": "^5.3.0",
  12457. "php-parallel-lint/php-parallel-lint": "^1.2",
  12458. "phpstan/extension-installer": "^1.0",
  12459. "phpstan/phpstan": "^2.0",
  12460. "phpstan/phpstan-phpunit": "^2.0",
  12461. "phpstan/phpstan-strict-rules": "^2.0",
  12462. "phpunit/phpunit": "^9.6",
  12463. "symfony/process": "^5.2"
  12464. },
  12465. "type": "library",
  12466. "autoload": {
  12467. "psr-4": {
  12468. "PHPStan\\PhpDocParser\\": [
  12469. "src/"
  12470. ]
  12471. }
  12472. },
  12473. "notification-url": "https://packagist.org/downloads/",
  12474. "license": [
  12475. "MIT"
  12476. ],
  12477. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  12478. "support": {
  12479. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  12480. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.3.0"
  12481. },
  12482. "time": "2025-08-30T15:50:23+00:00"
  12483. },
  12484. {
  12485. "name": "phpunit/php-code-coverage",
  12486. "version": "11.0.9",
  12487. "source": {
  12488. "type": "git",
  12489. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  12490. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7"
  12491. },
  12492. "dist": {
  12493. "type": "zip",
  12494. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  12495. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  12496. "shasum": ""
  12497. },
  12498. "require": {
  12499. "ext-dom": "*",
  12500. "ext-libxml": "*",
  12501. "ext-xmlwriter": "*",
  12502. "nikic/php-parser": "^5.4.0",
  12503. "php": ">=8.2",
  12504. "phpunit/php-file-iterator": "^5.1.0",
  12505. "phpunit/php-text-template": "^4.0.1",
  12506. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  12507. "sebastian/complexity": "^4.0.1",
  12508. "sebastian/environment": "^7.2.0",
  12509. "sebastian/lines-of-code": "^3.0.1",
  12510. "sebastian/version": "^5.0.2",
  12511. "theseer/tokenizer": "^1.2.3"
  12512. },
  12513. "require-dev": {
  12514. "phpunit/phpunit": "^11.5.2"
  12515. },
  12516. "suggest": {
  12517. "ext-pcov": "PHP extension that provides line coverage",
  12518. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  12519. },
  12520. "type": "library",
  12521. "extra": {
  12522. "branch-alias": {
  12523. "dev-main": "11.0.x-dev"
  12524. }
  12525. },
  12526. "autoload": {
  12527. "classmap": [
  12528. "src/"
  12529. ]
  12530. },
  12531. "notification-url": "https://packagist.org/downloads/",
  12532. "license": [
  12533. "BSD-3-Clause"
  12534. ],
  12535. "authors": [
  12536. {
  12537. "name": "Sebastian Bergmann",
  12538. "email": "sebastian@phpunit.de",
  12539. "role": "lead"
  12540. }
  12541. ],
  12542. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  12543. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  12544. "keywords": [
  12545. "coverage",
  12546. "testing",
  12547. "xunit"
  12548. ],
  12549. "support": {
  12550. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  12551. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  12552. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.9"
  12553. },
  12554. "funding": [
  12555. {
  12556. "url": "https://github.com/sebastianbergmann",
  12557. "type": "github"
  12558. }
  12559. ],
  12560. "time": "2025-02-25T13:26:39+00:00"
  12561. },
  12562. {
  12563. "name": "phpunit/php-file-iterator",
  12564. "version": "5.1.0",
  12565. "source": {
  12566. "type": "git",
  12567. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  12568. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  12569. },
  12570. "dist": {
  12571. "type": "zip",
  12572. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  12573. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  12574. "shasum": ""
  12575. },
  12576. "require": {
  12577. "php": ">=8.2"
  12578. },
  12579. "require-dev": {
  12580. "phpunit/phpunit": "^11.0"
  12581. },
  12582. "type": "library",
  12583. "extra": {
  12584. "branch-alias": {
  12585. "dev-main": "5.0-dev"
  12586. }
  12587. },
  12588. "autoload": {
  12589. "classmap": [
  12590. "src/"
  12591. ]
  12592. },
  12593. "notification-url": "https://packagist.org/downloads/",
  12594. "license": [
  12595. "BSD-3-Clause"
  12596. ],
  12597. "authors": [
  12598. {
  12599. "name": "Sebastian Bergmann",
  12600. "email": "sebastian@phpunit.de",
  12601. "role": "lead"
  12602. }
  12603. ],
  12604. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  12605. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  12606. "keywords": [
  12607. "filesystem",
  12608. "iterator"
  12609. ],
  12610. "support": {
  12611. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  12612. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  12613. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  12614. },
  12615. "funding": [
  12616. {
  12617. "url": "https://github.com/sebastianbergmann",
  12618. "type": "github"
  12619. }
  12620. ],
  12621. "time": "2024-08-27T05:02:59+00:00"
  12622. },
  12623. {
  12624. "name": "phpunit/php-invoker",
  12625. "version": "5.0.1",
  12626. "source": {
  12627. "type": "git",
  12628. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  12629. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  12630. },
  12631. "dist": {
  12632. "type": "zip",
  12633. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  12634. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  12635. "shasum": ""
  12636. },
  12637. "require": {
  12638. "php": ">=8.2"
  12639. },
  12640. "require-dev": {
  12641. "ext-pcntl": "*",
  12642. "phpunit/phpunit": "^11.0"
  12643. },
  12644. "suggest": {
  12645. "ext-pcntl": "*"
  12646. },
  12647. "type": "library",
  12648. "extra": {
  12649. "branch-alias": {
  12650. "dev-main": "5.0-dev"
  12651. }
  12652. },
  12653. "autoload": {
  12654. "classmap": [
  12655. "src/"
  12656. ]
  12657. },
  12658. "notification-url": "https://packagist.org/downloads/",
  12659. "license": [
  12660. "BSD-3-Clause"
  12661. ],
  12662. "authors": [
  12663. {
  12664. "name": "Sebastian Bergmann",
  12665. "email": "sebastian@phpunit.de",
  12666. "role": "lead"
  12667. }
  12668. ],
  12669. "description": "Invoke callables with a timeout",
  12670. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  12671. "keywords": [
  12672. "process"
  12673. ],
  12674. "support": {
  12675. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  12676. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  12677. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  12678. },
  12679. "funding": [
  12680. {
  12681. "url": "https://github.com/sebastianbergmann",
  12682. "type": "github"
  12683. }
  12684. ],
  12685. "time": "2024-07-03T05:07:44+00:00"
  12686. },
  12687. {
  12688. "name": "phpunit/php-text-template",
  12689. "version": "4.0.1",
  12690. "source": {
  12691. "type": "git",
  12692. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  12693. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  12694. },
  12695. "dist": {
  12696. "type": "zip",
  12697. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  12698. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  12699. "shasum": ""
  12700. },
  12701. "require": {
  12702. "php": ">=8.2"
  12703. },
  12704. "require-dev": {
  12705. "phpunit/phpunit": "^11.0"
  12706. },
  12707. "type": "library",
  12708. "extra": {
  12709. "branch-alias": {
  12710. "dev-main": "4.0-dev"
  12711. }
  12712. },
  12713. "autoload": {
  12714. "classmap": [
  12715. "src/"
  12716. ]
  12717. },
  12718. "notification-url": "https://packagist.org/downloads/",
  12719. "license": [
  12720. "BSD-3-Clause"
  12721. ],
  12722. "authors": [
  12723. {
  12724. "name": "Sebastian Bergmann",
  12725. "email": "sebastian@phpunit.de",
  12726. "role": "lead"
  12727. }
  12728. ],
  12729. "description": "Simple template engine.",
  12730. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  12731. "keywords": [
  12732. "template"
  12733. ],
  12734. "support": {
  12735. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  12736. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  12737. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  12738. },
  12739. "funding": [
  12740. {
  12741. "url": "https://github.com/sebastianbergmann",
  12742. "type": "github"
  12743. }
  12744. ],
  12745. "time": "2024-07-03T05:08:43+00:00"
  12746. },
  12747. {
  12748. "name": "phpunit/php-timer",
  12749. "version": "7.0.1",
  12750. "source": {
  12751. "type": "git",
  12752. "url": "https://github.com/sebastianbergmann/php-timer.git",
  12753. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  12754. },
  12755. "dist": {
  12756. "type": "zip",
  12757. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  12758. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  12759. "shasum": ""
  12760. },
  12761. "require": {
  12762. "php": ">=8.2"
  12763. },
  12764. "require-dev": {
  12765. "phpunit/phpunit": "^11.0"
  12766. },
  12767. "type": "library",
  12768. "extra": {
  12769. "branch-alias": {
  12770. "dev-main": "7.0-dev"
  12771. }
  12772. },
  12773. "autoload": {
  12774. "classmap": [
  12775. "src/"
  12776. ]
  12777. },
  12778. "notification-url": "https://packagist.org/downloads/",
  12779. "license": [
  12780. "BSD-3-Clause"
  12781. ],
  12782. "authors": [
  12783. {
  12784. "name": "Sebastian Bergmann",
  12785. "email": "sebastian@phpunit.de",
  12786. "role": "lead"
  12787. }
  12788. ],
  12789. "description": "Utility class for timing",
  12790. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  12791. "keywords": [
  12792. "timer"
  12793. ],
  12794. "support": {
  12795. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  12796. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  12797. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  12798. },
  12799. "funding": [
  12800. {
  12801. "url": "https://github.com/sebastianbergmann",
  12802. "type": "github"
  12803. }
  12804. ],
  12805. "time": "2024-07-03T05:09:35+00:00"
  12806. },
  12807. {
  12808. "name": "phpunit/phpunit",
  12809. "version": "11.5.3",
  12810. "source": {
  12811. "type": "git",
  12812. "url": "https://github.com/sebastianbergmann/phpunit.git",
  12813. "reference": "30e319e578a7b5da3543073e30002bf82042f701"
  12814. },
  12815. "dist": {
  12816. "type": "zip",
  12817. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/30e319e578a7b5da3543073e30002bf82042f701",
  12818. "reference": "30e319e578a7b5da3543073e30002bf82042f701",
  12819. "shasum": ""
  12820. },
  12821. "require": {
  12822. "ext-dom": "*",
  12823. "ext-json": "*",
  12824. "ext-libxml": "*",
  12825. "ext-mbstring": "*",
  12826. "ext-xml": "*",
  12827. "ext-xmlwriter": "*",
  12828. "myclabs/deep-copy": "^1.12.1",
  12829. "phar-io/manifest": "^2.0.4",
  12830. "phar-io/version": "^3.2.1",
  12831. "php": ">=8.2",
  12832. "phpunit/php-code-coverage": "^11.0.8",
  12833. "phpunit/php-file-iterator": "^5.1.0",
  12834. "phpunit/php-invoker": "^5.0.1",
  12835. "phpunit/php-text-template": "^4.0.1",
  12836. "phpunit/php-timer": "^7.0.1",
  12837. "sebastian/cli-parser": "^3.0.2",
  12838. "sebastian/code-unit": "^3.0.2",
  12839. "sebastian/comparator": "^6.3.0",
  12840. "sebastian/diff": "^6.0.2",
  12841. "sebastian/environment": "^7.2.0",
  12842. "sebastian/exporter": "^6.3.0",
  12843. "sebastian/global-state": "^7.0.2",
  12844. "sebastian/object-enumerator": "^6.0.1",
  12845. "sebastian/type": "^5.1.0",
  12846. "sebastian/version": "^5.0.2",
  12847. "staabm/side-effects-detector": "^1.0.5"
  12848. },
  12849. "suggest": {
  12850. "ext-soap": "To be able to generate mocks based on WSDL files"
  12851. },
  12852. "bin": [
  12853. "phpunit"
  12854. ],
  12855. "type": "library",
  12856. "extra": {
  12857. "branch-alias": {
  12858. "dev-main": "11.5-dev"
  12859. }
  12860. },
  12861. "autoload": {
  12862. "files": [
  12863. "src/Framework/Assert/Functions.php"
  12864. ],
  12865. "classmap": [
  12866. "src/"
  12867. ]
  12868. },
  12869. "notification-url": "https://packagist.org/downloads/",
  12870. "license": [
  12871. "BSD-3-Clause"
  12872. ],
  12873. "authors": [
  12874. {
  12875. "name": "Sebastian Bergmann",
  12876. "email": "sebastian@phpunit.de",
  12877. "role": "lead"
  12878. }
  12879. ],
  12880. "description": "The PHP Unit Testing framework.",
  12881. "homepage": "https://phpunit.de/",
  12882. "keywords": [
  12883. "phpunit",
  12884. "testing",
  12885. "xunit"
  12886. ],
  12887. "support": {
  12888. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  12889. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  12890. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.3"
  12891. },
  12892. "funding": [
  12893. {
  12894. "url": "https://phpunit.de/sponsors.html",
  12895. "type": "custom"
  12896. },
  12897. {
  12898. "url": "https://github.com/sebastianbergmann",
  12899. "type": "github"
  12900. },
  12901. {
  12902. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  12903. "type": "tidelift"
  12904. }
  12905. ],
  12906. "time": "2025-01-13T09:36:00+00:00"
  12907. },
  12908. {
  12909. "name": "sebastian/cli-parser",
  12910. "version": "3.0.2",
  12911. "source": {
  12912. "type": "git",
  12913. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  12914. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  12915. },
  12916. "dist": {
  12917. "type": "zip",
  12918. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  12919. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  12920. "shasum": ""
  12921. },
  12922. "require": {
  12923. "php": ">=8.2"
  12924. },
  12925. "require-dev": {
  12926. "phpunit/phpunit": "^11.0"
  12927. },
  12928. "type": "library",
  12929. "extra": {
  12930. "branch-alias": {
  12931. "dev-main": "3.0-dev"
  12932. }
  12933. },
  12934. "autoload": {
  12935. "classmap": [
  12936. "src/"
  12937. ]
  12938. },
  12939. "notification-url": "https://packagist.org/downloads/",
  12940. "license": [
  12941. "BSD-3-Clause"
  12942. ],
  12943. "authors": [
  12944. {
  12945. "name": "Sebastian Bergmann",
  12946. "email": "sebastian@phpunit.de",
  12947. "role": "lead"
  12948. }
  12949. ],
  12950. "description": "Library for parsing CLI options",
  12951. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  12952. "support": {
  12953. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  12954. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  12955. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  12956. },
  12957. "funding": [
  12958. {
  12959. "url": "https://github.com/sebastianbergmann",
  12960. "type": "github"
  12961. }
  12962. ],
  12963. "time": "2024-07-03T04:41:36+00:00"
  12964. },
  12965. {
  12966. "name": "sebastian/code-unit",
  12967. "version": "3.0.3",
  12968. "source": {
  12969. "type": "git",
  12970. "url": "https://github.com/sebastianbergmann/code-unit.git",
  12971. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  12972. },
  12973. "dist": {
  12974. "type": "zip",
  12975. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  12976. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  12977. "shasum": ""
  12978. },
  12979. "require": {
  12980. "php": ">=8.2"
  12981. },
  12982. "require-dev": {
  12983. "phpunit/phpunit": "^11.5"
  12984. },
  12985. "type": "library",
  12986. "extra": {
  12987. "branch-alias": {
  12988. "dev-main": "3.0-dev"
  12989. }
  12990. },
  12991. "autoload": {
  12992. "classmap": [
  12993. "src/"
  12994. ]
  12995. },
  12996. "notification-url": "https://packagist.org/downloads/",
  12997. "license": [
  12998. "BSD-3-Clause"
  12999. ],
  13000. "authors": [
  13001. {
  13002. "name": "Sebastian Bergmann",
  13003. "email": "sebastian@phpunit.de",
  13004. "role": "lead"
  13005. }
  13006. ],
  13007. "description": "Collection of value objects that represent the PHP code units",
  13008. "homepage": "https://github.com/sebastianbergmann/code-unit",
  13009. "support": {
  13010. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  13011. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  13012. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  13013. },
  13014. "funding": [
  13015. {
  13016. "url": "https://github.com/sebastianbergmann",
  13017. "type": "github"
  13018. }
  13019. ],
  13020. "time": "2025-03-19T07:56:08+00:00"
  13021. },
  13022. {
  13023. "name": "sebastian/code-unit-reverse-lookup",
  13024. "version": "4.0.1",
  13025. "source": {
  13026. "type": "git",
  13027. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  13028. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  13029. },
  13030. "dist": {
  13031. "type": "zip",
  13032. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  13033. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  13034. "shasum": ""
  13035. },
  13036. "require": {
  13037. "php": ">=8.2"
  13038. },
  13039. "require-dev": {
  13040. "phpunit/phpunit": "^11.0"
  13041. },
  13042. "type": "library",
  13043. "extra": {
  13044. "branch-alias": {
  13045. "dev-main": "4.0-dev"
  13046. }
  13047. },
  13048. "autoload": {
  13049. "classmap": [
  13050. "src/"
  13051. ]
  13052. },
  13053. "notification-url": "https://packagist.org/downloads/",
  13054. "license": [
  13055. "BSD-3-Clause"
  13056. ],
  13057. "authors": [
  13058. {
  13059. "name": "Sebastian Bergmann",
  13060. "email": "sebastian@phpunit.de"
  13061. }
  13062. ],
  13063. "description": "Looks up which function or method a line of code belongs to",
  13064. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  13065. "support": {
  13066. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  13067. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  13068. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  13069. },
  13070. "funding": [
  13071. {
  13072. "url": "https://github.com/sebastianbergmann",
  13073. "type": "github"
  13074. }
  13075. ],
  13076. "time": "2024-07-03T04:45:54+00:00"
  13077. },
  13078. {
  13079. "name": "sebastian/comparator",
  13080. "version": "6.3.1",
  13081. "source": {
  13082. "type": "git",
  13083. "url": "https://github.com/sebastianbergmann/comparator.git",
  13084. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
  13085. },
  13086. "dist": {
  13087. "type": "zip",
  13088. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  13089. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  13090. "shasum": ""
  13091. },
  13092. "require": {
  13093. "ext-dom": "*",
  13094. "ext-mbstring": "*",
  13095. "php": ">=8.2",
  13096. "sebastian/diff": "^6.0",
  13097. "sebastian/exporter": "^6.0"
  13098. },
  13099. "require-dev": {
  13100. "phpunit/phpunit": "^11.4"
  13101. },
  13102. "suggest": {
  13103. "ext-bcmath": "For comparing BcMath\\Number objects"
  13104. },
  13105. "type": "library",
  13106. "extra": {
  13107. "branch-alias": {
  13108. "dev-main": "6.3-dev"
  13109. }
  13110. },
  13111. "autoload": {
  13112. "classmap": [
  13113. "src/"
  13114. ]
  13115. },
  13116. "notification-url": "https://packagist.org/downloads/",
  13117. "license": [
  13118. "BSD-3-Clause"
  13119. ],
  13120. "authors": [
  13121. {
  13122. "name": "Sebastian Bergmann",
  13123. "email": "sebastian@phpunit.de"
  13124. },
  13125. {
  13126. "name": "Jeff Welch",
  13127. "email": "whatthejeff@gmail.com"
  13128. },
  13129. {
  13130. "name": "Volker Dusch",
  13131. "email": "github@wallbash.com"
  13132. },
  13133. {
  13134. "name": "Bernhard Schussek",
  13135. "email": "bschussek@2bepublished.at"
  13136. }
  13137. ],
  13138. "description": "Provides the functionality to compare PHP values for equality",
  13139. "homepage": "https://github.com/sebastianbergmann/comparator",
  13140. "keywords": [
  13141. "comparator",
  13142. "compare",
  13143. "equality"
  13144. ],
  13145. "support": {
  13146. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  13147. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  13148. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
  13149. },
  13150. "funding": [
  13151. {
  13152. "url": "https://github.com/sebastianbergmann",
  13153. "type": "github"
  13154. }
  13155. ],
  13156. "time": "2025-03-07T06:57:01+00:00"
  13157. },
  13158. {
  13159. "name": "sebastian/complexity",
  13160. "version": "4.0.1",
  13161. "source": {
  13162. "type": "git",
  13163. "url": "https://github.com/sebastianbergmann/complexity.git",
  13164. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  13165. },
  13166. "dist": {
  13167. "type": "zip",
  13168. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  13169. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  13170. "shasum": ""
  13171. },
  13172. "require": {
  13173. "nikic/php-parser": "^5.0",
  13174. "php": ">=8.2"
  13175. },
  13176. "require-dev": {
  13177. "phpunit/phpunit": "^11.0"
  13178. },
  13179. "type": "library",
  13180. "extra": {
  13181. "branch-alias": {
  13182. "dev-main": "4.0-dev"
  13183. }
  13184. },
  13185. "autoload": {
  13186. "classmap": [
  13187. "src/"
  13188. ]
  13189. },
  13190. "notification-url": "https://packagist.org/downloads/",
  13191. "license": [
  13192. "BSD-3-Clause"
  13193. ],
  13194. "authors": [
  13195. {
  13196. "name": "Sebastian Bergmann",
  13197. "email": "sebastian@phpunit.de",
  13198. "role": "lead"
  13199. }
  13200. ],
  13201. "description": "Library for calculating the complexity of PHP code units",
  13202. "homepage": "https://github.com/sebastianbergmann/complexity",
  13203. "support": {
  13204. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  13205. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  13206. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  13207. },
  13208. "funding": [
  13209. {
  13210. "url": "https://github.com/sebastianbergmann",
  13211. "type": "github"
  13212. }
  13213. ],
  13214. "time": "2024-07-03T04:49:50+00:00"
  13215. },
  13216. {
  13217. "name": "sebastian/diff",
  13218. "version": "6.0.2",
  13219. "source": {
  13220. "type": "git",
  13221. "url": "https://github.com/sebastianbergmann/diff.git",
  13222. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  13223. },
  13224. "dist": {
  13225. "type": "zip",
  13226. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  13227. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  13228. "shasum": ""
  13229. },
  13230. "require": {
  13231. "php": ">=8.2"
  13232. },
  13233. "require-dev": {
  13234. "phpunit/phpunit": "^11.0",
  13235. "symfony/process": "^4.2 || ^5"
  13236. },
  13237. "type": "library",
  13238. "extra": {
  13239. "branch-alias": {
  13240. "dev-main": "6.0-dev"
  13241. }
  13242. },
  13243. "autoload": {
  13244. "classmap": [
  13245. "src/"
  13246. ]
  13247. },
  13248. "notification-url": "https://packagist.org/downloads/",
  13249. "license": [
  13250. "BSD-3-Clause"
  13251. ],
  13252. "authors": [
  13253. {
  13254. "name": "Sebastian Bergmann",
  13255. "email": "sebastian@phpunit.de"
  13256. },
  13257. {
  13258. "name": "Kore Nordmann",
  13259. "email": "mail@kore-nordmann.de"
  13260. }
  13261. ],
  13262. "description": "Diff implementation",
  13263. "homepage": "https://github.com/sebastianbergmann/diff",
  13264. "keywords": [
  13265. "diff",
  13266. "udiff",
  13267. "unidiff",
  13268. "unified diff"
  13269. ],
  13270. "support": {
  13271. "issues": "https://github.com/sebastianbergmann/diff/issues",
  13272. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  13273. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  13274. },
  13275. "funding": [
  13276. {
  13277. "url": "https://github.com/sebastianbergmann",
  13278. "type": "github"
  13279. }
  13280. ],
  13281. "time": "2024-07-03T04:53:05+00:00"
  13282. },
  13283. {
  13284. "name": "sebastian/environment",
  13285. "version": "7.2.0",
  13286. "source": {
  13287. "type": "git",
  13288. "url": "https://github.com/sebastianbergmann/environment.git",
  13289. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  13290. },
  13291. "dist": {
  13292. "type": "zip",
  13293. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  13294. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  13295. "shasum": ""
  13296. },
  13297. "require": {
  13298. "php": ">=8.2"
  13299. },
  13300. "require-dev": {
  13301. "phpunit/phpunit": "^11.0"
  13302. },
  13303. "suggest": {
  13304. "ext-posix": "*"
  13305. },
  13306. "type": "library",
  13307. "extra": {
  13308. "branch-alias": {
  13309. "dev-main": "7.2-dev"
  13310. }
  13311. },
  13312. "autoload": {
  13313. "classmap": [
  13314. "src/"
  13315. ]
  13316. },
  13317. "notification-url": "https://packagist.org/downloads/",
  13318. "license": [
  13319. "BSD-3-Clause"
  13320. ],
  13321. "authors": [
  13322. {
  13323. "name": "Sebastian Bergmann",
  13324. "email": "sebastian@phpunit.de"
  13325. }
  13326. ],
  13327. "description": "Provides functionality to handle HHVM/PHP environments",
  13328. "homepage": "https://github.com/sebastianbergmann/environment",
  13329. "keywords": [
  13330. "Xdebug",
  13331. "environment",
  13332. "hhvm"
  13333. ],
  13334. "support": {
  13335. "issues": "https://github.com/sebastianbergmann/environment/issues",
  13336. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  13337. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  13338. },
  13339. "funding": [
  13340. {
  13341. "url": "https://github.com/sebastianbergmann",
  13342. "type": "github"
  13343. }
  13344. ],
  13345. "time": "2024-07-03T04:54:44+00:00"
  13346. },
  13347. {
  13348. "name": "sebastian/exporter",
  13349. "version": "6.3.0",
  13350. "source": {
  13351. "type": "git",
  13352. "url": "https://github.com/sebastianbergmann/exporter.git",
  13353. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  13354. },
  13355. "dist": {
  13356. "type": "zip",
  13357. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  13358. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  13359. "shasum": ""
  13360. },
  13361. "require": {
  13362. "ext-mbstring": "*",
  13363. "php": ">=8.2",
  13364. "sebastian/recursion-context": "^6.0"
  13365. },
  13366. "require-dev": {
  13367. "phpunit/phpunit": "^11.3"
  13368. },
  13369. "type": "library",
  13370. "extra": {
  13371. "branch-alias": {
  13372. "dev-main": "6.1-dev"
  13373. }
  13374. },
  13375. "autoload": {
  13376. "classmap": [
  13377. "src/"
  13378. ]
  13379. },
  13380. "notification-url": "https://packagist.org/downloads/",
  13381. "license": [
  13382. "BSD-3-Clause"
  13383. ],
  13384. "authors": [
  13385. {
  13386. "name": "Sebastian Bergmann",
  13387. "email": "sebastian@phpunit.de"
  13388. },
  13389. {
  13390. "name": "Jeff Welch",
  13391. "email": "whatthejeff@gmail.com"
  13392. },
  13393. {
  13394. "name": "Volker Dusch",
  13395. "email": "github@wallbash.com"
  13396. },
  13397. {
  13398. "name": "Adam Harvey",
  13399. "email": "aharvey@php.net"
  13400. },
  13401. {
  13402. "name": "Bernhard Schussek",
  13403. "email": "bschussek@gmail.com"
  13404. }
  13405. ],
  13406. "description": "Provides the functionality to export PHP variables for visualization",
  13407. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  13408. "keywords": [
  13409. "export",
  13410. "exporter"
  13411. ],
  13412. "support": {
  13413. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  13414. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  13415. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  13416. },
  13417. "funding": [
  13418. {
  13419. "url": "https://github.com/sebastianbergmann",
  13420. "type": "github"
  13421. }
  13422. ],
  13423. "time": "2024-12-05T09:17:50+00:00"
  13424. },
  13425. {
  13426. "name": "sebastian/global-state",
  13427. "version": "7.0.2",
  13428. "source": {
  13429. "type": "git",
  13430. "url": "https://github.com/sebastianbergmann/global-state.git",
  13431. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  13432. },
  13433. "dist": {
  13434. "type": "zip",
  13435. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  13436. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  13437. "shasum": ""
  13438. },
  13439. "require": {
  13440. "php": ">=8.2",
  13441. "sebastian/object-reflector": "^4.0",
  13442. "sebastian/recursion-context": "^6.0"
  13443. },
  13444. "require-dev": {
  13445. "ext-dom": "*",
  13446. "phpunit/phpunit": "^11.0"
  13447. },
  13448. "type": "library",
  13449. "extra": {
  13450. "branch-alias": {
  13451. "dev-main": "7.0-dev"
  13452. }
  13453. },
  13454. "autoload": {
  13455. "classmap": [
  13456. "src/"
  13457. ]
  13458. },
  13459. "notification-url": "https://packagist.org/downloads/",
  13460. "license": [
  13461. "BSD-3-Clause"
  13462. ],
  13463. "authors": [
  13464. {
  13465. "name": "Sebastian Bergmann",
  13466. "email": "sebastian@phpunit.de"
  13467. }
  13468. ],
  13469. "description": "Snapshotting of global state",
  13470. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  13471. "keywords": [
  13472. "global state"
  13473. ],
  13474. "support": {
  13475. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  13476. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  13477. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  13478. },
  13479. "funding": [
  13480. {
  13481. "url": "https://github.com/sebastianbergmann",
  13482. "type": "github"
  13483. }
  13484. ],
  13485. "time": "2024-07-03T04:57:36+00:00"
  13486. },
  13487. {
  13488. "name": "sebastian/lines-of-code",
  13489. "version": "3.0.1",
  13490. "source": {
  13491. "type": "git",
  13492. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  13493. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  13494. },
  13495. "dist": {
  13496. "type": "zip",
  13497. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  13498. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  13499. "shasum": ""
  13500. },
  13501. "require": {
  13502. "nikic/php-parser": "^5.0",
  13503. "php": ">=8.2"
  13504. },
  13505. "require-dev": {
  13506. "phpunit/phpunit": "^11.0"
  13507. },
  13508. "type": "library",
  13509. "extra": {
  13510. "branch-alias": {
  13511. "dev-main": "3.0-dev"
  13512. }
  13513. },
  13514. "autoload": {
  13515. "classmap": [
  13516. "src/"
  13517. ]
  13518. },
  13519. "notification-url": "https://packagist.org/downloads/",
  13520. "license": [
  13521. "BSD-3-Clause"
  13522. ],
  13523. "authors": [
  13524. {
  13525. "name": "Sebastian Bergmann",
  13526. "email": "sebastian@phpunit.de",
  13527. "role": "lead"
  13528. }
  13529. ],
  13530. "description": "Library for counting the lines of code in PHP source code",
  13531. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  13532. "support": {
  13533. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  13534. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  13535. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  13536. },
  13537. "funding": [
  13538. {
  13539. "url": "https://github.com/sebastianbergmann",
  13540. "type": "github"
  13541. }
  13542. ],
  13543. "time": "2024-07-03T04:58:38+00:00"
  13544. },
  13545. {
  13546. "name": "sebastian/object-enumerator",
  13547. "version": "6.0.1",
  13548. "source": {
  13549. "type": "git",
  13550. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  13551. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  13552. },
  13553. "dist": {
  13554. "type": "zip",
  13555. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  13556. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  13557. "shasum": ""
  13558. },
  13559. "require": {
  13560. "php": ">=8.2",
  13561. "sebastian/object-reflector": "^4.0",
  13562. "sebastian/recursion-context": "^6.0"
  13563. },
  13564. "require-dev": {
  13565. "phpunit/phpunit": "^11.0"
  13566. },
  13567. "type": "library",
  13568. "extra": {
  13569. "branch-alias": {
  13570. "dev-main": "6.0-dev"
  13571. }
  13572. },
  13573. "autoload": {
  13574. "classmap": [
  13575. "src/"
  13576. ]
  13577. },
  13578. "notification-url": "https://packagist.org/downloads/",
  13579. "license": [
  13580. "BSD-3-Clause"
  13581. ],
  13582. "authors": [
  13583. {
  13584. "name": "Sebastian Bergmann",
  13585. "email": "sebastian@phpunit.de"
  13586. }
  13587. ],
  13588. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  13589. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  13590. "support": {
  13591. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  13592. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  13593. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  13594. },
  13595. "funding": [
  13596. {
  13597. "url": "https://github.com/sebastianbergmann",
  13598. "type": "github"
  13599. }
  13600. ],
  13601. "time": "2024-07-03T05:00:13+00:00"
  13602. },
  13603. {
  13604. "name": "sebastian/object-reflector",
  13605. "version": "4.0.1",
  13606. "source": {
  13607. "type": "git",
  13608. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  13609. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  13610. },
  13611. "dist": {
  13612. "type": "zip",
  13613. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  13614. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  13615. "shasum": ""
  13616. },
  13617. "require": {
  13618. "php": ">=8.2"
  13619. },
  13620. "require-dev": {
  13621. "phpunit/phpunit": "^11.0"
  13622. },
  13623. "type": "library",
  13624. "extra": {
  13625. "branch-alias": {
  13626. "dev-main": "4.0-dev"
  13627. }
  13628. },
  13629. "autoload": {
  13630. "classmap": [
  13631. "src/"
  13632. ]
  13633. },
  13634. "notification-url": "https://packagist.org/downloads/",
  13635. "license": [
  13636. "BSD-3-Clause"
  13637. ],
  13638. "authors": [
  13639. {
  13640. "name": "Sebastian Bergmann",
  13641. "email": "sebastian@phpunit.de"
  13642. }
  13643. ],
  13644. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  13645. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  13646. "support": {
  13647. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  13648. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  13649. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  13650. },
  13651. "funding": [
  13652. {
  13653. "url": "https://github.com/sebastianbergmann",
  13654. "type": "github"
  13655. }
  13656. ],
  13657. "time": "2024-07-03T05:01:32+00:00"
  13658. },
  13659. {
  13660. "name": "sebastian/recursion-context",
  13661. "version": "6.0.2",
  13662. "source": {
  13663. "type": "git",
  13664. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  13665. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  13666. },
  13667. "dist": {
  13668. "type": "zip",
  13669. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  13670. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  13671. "shasum": ""
  13672. },
  13673. "require": {
  13674. "php": ">=8.2"
  13675. },
  13676. "require-dev": {
  13677. "phpunit/phpunit": "^11.0"
  13678. },
  13679. "type": "library",
  13680. "extra": {
  13681. "branch-alias": {
  13682. "dev-main": "6.0-dev"
  13683. }
  13684. },
  13685. "autoload": {
  13686. "classmap": [
  13687. "src/"
  13688. ]
  13689. },
  13690. "notification-url": "https://packagist.org/downloads/",
  13691. "license": [
  13692. "BSD-3-Clause"
  13693. ],
  13694. "authors": [
  13695. {
  13696. "name": "Sebastian Bergmann",
  13697. "email": "sebastian@phpunit.de"
  13698. },
  13699. {
  13700. "name": "Jeff Welch",
  13701. "email": "whatthejeff@gmail.com"
  13702. },
  13703. {
  13704. "name": "Adam Harvey",
  13705. "email": "aharvey@php.net"
  13706. }
  13707. ],
  13708. "description": "Provides functionality to recursively process PHP variables",
  13709. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  13710. "support": {
  13711. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  13712. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  13713. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  13714. },
  13715. "funding": [
  13716. {
  13717. "url": "https://github.com/sebastianbergmann",
  13718. "type": "github"
  13719. }
  13720. ],
  13721. "time": "2024-07-03T05:10:34+00:00"
  13722. },
  13723. {
  13724. "name": "sebastian/type",
  13725. "version": "5.1.2",
  13726. "source": {
  13727. "type": "git",
  13728. "url": "https://github.com/sebastianbergmann/type.git",
  13729. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e"
  13730. },
  13731. "dist": {
  13732. "type": "zip",
  13733. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  13734. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  13735. "shasum": ""
  13736. },
  13737. "require": {
  13738. "php": ">=8.2"
  13739. },
  13740. "require-dev": {
  13741. "phpunit/phpunit": "^11.3"
  13742. },
  13743. "type": "library",
  13744. "extra": {
  13745. "branch-alias": {
  13746. "dev-main": "5.1-dev"
  13747. }
  13748. },
  13749. "autoload": {
  13750. "classmap": [
  13751. "src/"
  13752. ]
  13753. },
  13754. "notification-url": "https://packagist.org/downloads/",
  13755. "license": [
  13756. "BSD-3-Clause"
  13757. ],
  13758. "authors": [
  13759. {
  13760. "name": "Sebastian Bergmann",
  13761. "email": "sebastian@phpunit.de",
  13762. "role": "lead"
  13763. }
  13764. ],
  13765. "description": "Collection of value objects that represent the types of the PHP type system",
  13766. "homepage": "https://github.com/sebastianbergmann/type",
  13767. "support": {
  13768. "issues": "https://github.com/sebastianbergmann/type/issues",
  13769. "security": "https://github.com/sebastianbergmann/type/security/policy",
  13770. "source": "https://github.com/sebastianbergmann/type/tree/5.1.2"
  13771. },
  13772. "funding": [
  13773. {
  13774. "url": "https://github.com/sebastianbergmann",
  13775. "type": "github"
  13776. }
  13777. ],
  13778. "time": "2025-03-18T13:35:50+00:00"
  13779. },
  13780. {
  13781. "name": "sebastian/version",
  13782. "version": "5.0.2",
  13783. "source": {
  13784. "type": "git",
  13785. "url": "https://github.com/sebastianbergmann/version.git",
  13786. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  13787. },
  13788. "dist": {
  13789. "type": "zip",
  13790. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  13791. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  13792. "shasum": ""
  13793. },
  13794. "require": {
  13795. "php": ">=8.2"
  13796. },
  13797. "type": "library",
  13798. "extra": {
  13799. "branch-alias": {
  13800. "dev-main": "5.0-dev"
  13801. }
  13802. },
  13803. "autoload": {
  13804. "classmap": [
  13805. "src/"
  13806. ]
  13807. },
  13808. "notification-url": "https://packagist.org/downloads/",
  13809. "license": [
  13810. "BSD-3-Clause"
  13811. ],
  13812. "authors": [
  13813. {
  13814. "name": "Sebastian Bergmann",
  13815. "email": "sebastian@phpunit.de",
  13816. "role": "lead"
  13817. }
  13818. ],
  13819. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  13820. "homepage": "https://github.com/sebastianbergmann/version",
  13821. "support": {
  13822. "issues": "https://github.com/sebastianbergmann/version/issues",
  13823. "security": "https://github.com/sebastianbergmann/version/security/policy",
  13824. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  13825. },
  13826. "funding": [
  13827. {
  13828. "url": "https://github.com/sebastianbergmann",
  13829. "type": "github"
  13830. }
  13831. ],
  13832. "time": "2024-10-09T05:16:32+00:00"
  13833. },
  13834. {
  13835. "name": "staabm/side-effects-detector",
  13836. "version": "1.0.5",
  13837. "source": {
  13838. "type": "git",
  13839. "url": "https://github.com/staabm/side-effects-detector.git",
  13840. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  13841. },
  13842. "dist": {
  13843. "type": "zip",
  13844. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  13845. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  13846. "shasum": ""
  13847. },
  13848. "require": {
  13849. "ext-tokenizer": "*",
  13850. "php": "^7.4 || ^8.0"
  13851. },
  13852. "require-dev": {
  13853. "phpstan/extension-installer": "^1.4.3",
  13854. "phpstan/phpstan": "^1.12.6",
  13855. "phpunit/phpunit": "^9.6.21",
  13856. "symfony/var-dumper": "^5.4.43",
  13857. "tomasvotruba/type-coverage": "1.0.0",
  13858. "tomasvotruba/unused-public": "1.0.0"
  13859. },
  13860. "type": "library",
  13861. "autoload": {
  13862. "classmap": [
  13863. "lib/"
  13864. ]
  13865. },
  13866. "notification-url": "https://packagist.org/downloads/",
  13867. "license": [
  13868. "MIT"
  13869. ],
  13870. "description": "A static analysis tool to detect side effects in PHP code",
  13871. "keywords": [
  13872. "static analysis"
  13873. ],
  13874. "support": {
  13875. "issues": "https://github.com/staabm/side-effects-detector/issues",
  13876. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  13877. },
  13878. "funding": [
  13879. {
  13880. "url": "https://github.com/staabm",
  13881. "type": "github"
  13882. }
  13883. ],
  13884. "time": "2024-10-20T05:08:20+00:00"
  13885. },
  13886. {
  13887. "name": "ta-tikoma/phpunit-architecture-test",
  13888. "version": "0.8.4",
  13889. "source": {
  13890. "type": "git",
  13891. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  13892. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636"
  13893. },
  13894. "dist": {
  13895. "type": "zip",
  13896. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13897. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13898. "shasum": ""
  13899. },
  13900. "require": {
  13901. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  13902. "php": "^8.1.0",
  13903. "phpdocumentor/reflection-docblock": "^5.3.0",
  13904. "phpunit/phpunit": "^10.5.5 || ^11.0.0",
  13905. "symfony/finder": "^6.4.0 || ^7.0.0"
  13906. },
  13907. "require-dev": {
  13908. "laravel/pint": "^1.13.7",
  13909. "phpstan/phpstan": "^1.10.52"
  13910. },
  13911. "type": "library",
  13912. "autoload": {
  13913. "psr-4": {
  13914. "PHPUnit\\Architecture\\": "src/"
  13915. }
  13916. },
  13917. "notification-url": "https://packagist.org/downloads/",
  13918. "license": [
  13919. "MIT"
  13920. ],
  13921. "authors": [
  13922. {
  13923. "name": "Ni Shi",
  13924. "email": "futik0ma011@gmail.com"
  13925. },
  13926. {
  13927. "name": "Nuno Maduro",
  13928. "email": "enunomaduro@gmail.com"
  13929. }
  13930. ],
  13931. "description": "Methods for testing application architecture",
  13932. "keywords": [
  13933. "architecture",
  13934. "phpunit",
  13935. "stucture",
  13936. "test",
  13937. "testing"
  13938. ],
  13939. "support": {
  13940. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  13941. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.4"
  13942. },
  13943. "time": "2024-01-05T14:10:56+00:00"
  13944. },
  13945. {
  13946. "name": "theseer/tokenizer",
  13947. "version": "1.2.3",
  13948. "source": {
  13949. "type": "git",
  13950. "url": "https://github.com/theseer/tokenizer.git",
  13951. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13952. },
  13953. "dist": {
  13954. "type": "zip",
  13955. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13956. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13957. "shasum": ""
  13958. },
  13959. "require": {
  13960. "ext-dom": "*",
  13961. "ext-tokenizer": "*",
  13962. "ext-xmlwriter": "*",
  13963. "php": "^7.2 || ^8.0"
  13964. },
  13965. "type": "library",
  13966. "autoload": {
  13967. "classmap": [
  13968. "src/"
  13969. ]
  13970. },
  13971. "notification-url": "https://packagist.org/downloads/",
  13972. "license": [
  13973. "BSD-3-Clause"
  13974. ],
  13975. "authors": [
  13976. {
  13977. "name": "Arne Blankerts",
  13978. "email": "arne@blankerts.de",
  13979. "role": "Developer"
  13980. }
  13981. ],
  13982. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13983. "support": {
  13984. "issues": "https://github.com/theseer/tokenizer/issues",
  13985. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13986. },
  13987. "funding": [
  13988. {
  13989. "url": "https://github.com/theseer",
  13990. "type": "github"
  13991. }
  13992. ],
  13993. "time": "2024-03-03T12:36:25+00:00"
  13994. }
  13995. ],
  13996. "aliases": [],
  13997. "minimum-stability": "stable",
  13998. "stability-flags": {
  13999. "bagisto/image-cache": 20
  14000. },
  14001. "prefer-stable": true,
  14002. "prefer-lowest": false,
  14003. "platform": {
  14004. "php": "^8.2",
  14005. "ext-calendar": "*",
  14006. "ext-curl": "*",
  14007. "ext-intl": "*",
  14008. "ext-mbstring": "*",
  14009. "ext-openssl": "*",
  14010. "ext-pdo": "*",
  14011. "ext-pdo_mysql": "*",
  14012. "ext-tokenizer": "*"
  14013. },
  14014. "platform-dev": {},
  14015. "plugin-api-version": "2.6.0"
  14016. }