You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

composer.lock 462KB

123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166167168169170171172173174175176177178179180181182183184185186187188189190191192193194195196197198199200201202203204205206207208209210211212213214215216217218219220221222223224225226227228229230231232233234235236237238239240241242243244245246247248249250251252253254255256257258259260261262263264265266267268269270271272273274275276277278279280281282283284285286287288289290291292293294295296297298299300301302303304305306307308309310311312313314315316317318319320321322323324325326327328329330331332333334335336337338339340341342343344345346347348349350351352353354355356357358359360361362363364365366367368369370371372373374375376377378379380381382383384385386387388389390391392393394395396397398399400401402403404405406407408409410411412413414415416417418419420421422423424425426427428429430431432433434435436437438439440441442443444445446447448449450451452453454455456457458459460461462463464465466467468469470471472473474475476477478479480481482483484485486487488489490491492493494495496497498499500501502503504505506507508509510511512513514515516517518519520521522523524525526527528529530531532533534535536537538539540541542543544545546547548549550551552553554555556557558559560561562563564565566567568569570571572573574575576577578579580581582583584585586587588589590591592593594595596597598599600601602603604605606607608609610611612613614615616617618619620621622623624625626627628629630631632633634635636637638639640641642643644645646647648649650651652653654655656657658659660661662663664665666667668669670671672673674675676677678679680681682683684685686687688689690691692693694695696697698699700701702703704705706707708709710711712713714715716717718719720721722723724725726727728729730731732733734735736737738739740741742743744745746747748749750751752753754755756757758759760761762763764765766767768769770771772773774775776777778779780781782783784785786787788789790791792793794795796797798799800801802803804805806807808809810811812813814815816817818819820821822823824825826827828829830831832833834835836837838839840841842843844845846847848849850851852853854855856857858859860861862863864865866867868869870871872873874875876877878879880881882883884885886887888889890891892893894895896897898899900901902903904905906907908909910911912913914915916917918919920921922923924925926927928929930931932933934935936937938939940941942943944945946947948949950951952953954955956957958959960961962963964965966967968969970971972973974975976977978979980981982983984985986987988989990991992993994995996997998999100010011002100310041005100610071008100910101011101210131014101510161017101810191020102110221023102410251026102710281029103010311032103310341035103610371038103910401041104210431044104510461047104810491050105110521053105410551056105710581059106010611062106310641065106610671068106910701071107210731074107510761077107810791080108110821083108410851086108710881089109010911092109310941095109610971098109911001101110211031104110511061107110811091110111111121113111411151116111711181119112011211122112311241125112611271128112911301131113211331134113511361137113811391140114111421143114411451146114711481149115011511152115311541155115611571158115911601161116211631164116511661167116811691170117111721173117411751176117711781179118011811182118311841185118611871188118911901191119211931194119511961197119811991200120112021203120412051206120712081209121012111212121312141215121612171218121912201221122212231224122512261227122812291230123112321233123412351236123712381239124012411242124312441245124612471248124912501251125212531254125512561257125812591260126112621263126412651266126712681269127012711272127312741275127612771278127912801281128212831284128512861287128812891290129112921293129412951296129712981299130013011302130313041305130613071308130913101311131213131314131513161317131813191320132113221323132413251326132713281329133013311332133313341335133613371338133913401341134213431344134513461347134813491350135113521353135413551356135713581359136013611362136313641365136613671368136913701371137213731374137513761377137813791380138113821383138413851386138713881389139013911392139313941395139613971398139914001401140214031404140514061407140814091410141114121413141414151416141714181419142014211422142314241425142614271428142914301431143214331434143514361437143814391440144114421443144414451446144714481449145014511452145314541455145614571458145914601461146214631464146514661467146814691470147114721473147414751476147714781479148014811482148314841485148614871488148914901491149214931494149514961497149814991500150115021503150415051506150715081509151015111512151315141515151615171518151915201521152215231524152515261527152815291530153115321533153415351536153715381539154015411542154315441545154615471548154915501551155215531554155515561557155815591560156115621563156415651566156715681569157015711572157315741575157615771578157915801581158215831584158515861587158815891590159115921593159415951596159715981599160016011602160316041605160616071608160916101611161216131614161516161617161816191620162116221623162416251626162716281629163016311632163316341635163616371638163916401641164216431644164516461647164816491650165116521653165416551656165716581659166016611662166316641665166616671668166916701671167216731674167516761677167816791680168116821683168416851686168716881689169016911692169316941695169616971698169917001701170217031704170517061707170817091710171117121713171417151716171717181719172017211722172317241725172617271728172917301731173217331734173517361737173817391740174117421743174417451746174717481749175017511752175317541755175617571758175917601761176217631764176517661767176817691770177117721773177417751776177717781779178017811782178317841785178617871788178917901791179217931794179517961797179817991800180118021803180418051806180718081809181018111812181318141815181618171818181918201821182218231824182518261827182818291830183118321833183418351836183718381839184018411842184318441845184618471848184918501851185218531854185518561857185818591860186118621863186418651866186718681869187018711872187318741875187618771878187918801881188218831884188518861887188818891890189118921893189418951896189718981899190019011902190319041905190619071908190919101911191219131914191519161917191819191920192119221923192419251926192719281929193019311932193319341935193619371938193919401941194219431944194519461947194819491950195119521953195419551956195719581959196019611962196319641965196619671968196919701971197219731974197519761977197819791980198119821983198419851986198719881989199019911992199319941995199619971998199920002001200220032004200520062007200820092010201120122013201420152016201720182019202020212022202320242025202620272028202920302031203220332034203520362037203820392040204120422043204420452046204720482049205020512052205320542055205620572058205920602061206220632064206520662067206820692070207120722073207420752076207720782079208020812082208320842085208620872088208920902091209220932094209520962097209820992100210121022103210421052106210721082109211021112112211321142115211621172118211921202121212221232124212521262127212821292130213121322133213421352136213721382139214021412142214321442145214621472148214921502151215221532154215521562157215821592160216121622163216421652166216721682169217021712172217321742175217621772178217921802181218221832184218521862187218821892190219121922193219421952196219721982199220022012202220322042205220622072208220922102211221222132214221522162217221822192220222122222223222422252226222722282229223022312232223322342235223622372238223922402241224222432244224522462247224822492250225122522253225422552256225722582259226022612262226322642265226622672268226922702271227222732274227522762277227822792280228122822283228422852286228722882289229022912292229322942295229622972298229923002301230223032304230523062307230823092310231123122313231423152316231723182319232023212322232323242325232623272328232923302331233223332334233523362337233823392340234123422343234423452346234723482349235023512352235323542355235623572358235923602361236223632364236523662367236823692370237123722373237423752376237723782379238023812382238323842385238623872388238923902391239223932394239523962397239823992400240124022403240424052406240724082409241024112412241324142415241624172418241924202421242224232424242524262427242824292430243124322433243424352436243724382439244024412442244324442445244624472448244924502451245224532454245524562457245824592460246124622463246424652466246724682469247024712472247324742475247624772478247924802481248224832484248524862487248824892490249124922493249424952496249724982499250025012502250325042505250625072508250925102511251225132514251525162517251825192520252125222523252425252526252725282529253025312532253325342535253625372538253925402541254225432544254525462547254825492550255125522553255425552556255725582559256025612562256325642565256625672568256925702571257225732574257525762577257825792580258125822583258425852586258725882589259025912592259325942595259625972598259926002601260226032604260526062607260826092610261126122613261426152616261726182619262026212622262326242625262626272628262926302631263226332634263526362637263826392640264126422643264426452646264726482649265026512652265326542655265626572658265926602661266226632664266526662667266826692670267126722673267426752676267726782679268026812682268326842685268626872688268926902691269226932694269526962697269826992700270127022703270427052706270727082709271027112712271327142715271627172718271927202721272227232724272527262727272827292730273127322733273427352736273727382739274027412742274327442745274627472748274927502751275227532754275527562757275827592760276127622763276427652766276727682769277027712772277327742775277627772778277927802781278227832784278527862787278827892790279127922793279427952796279727982799280028012802280328042805280628072808280928102811281228132814281528162817281828192820282128222823282428252826282728282829283028312832283328342835283628372838283928402841284228432844284528462847284828492850285128522853285428552856285728582859286028612862286328642865286628672868286928702871287228732874287528762877287828792880288128822883288428852886288728882889289028912892289328942895289628972898289929002901290229032904290529062907290829092910291129122913291429152916291729182919292029212922292329242925292629272928292929302931293229332934293529362937293829392940294129422943294429452946294729482949295029512952295329542955295629572958295929602961296229632964296529662967296829692970297129722973297429752976297729782979298029812982298329842985298629872988298929902991299229932994299529962997299829993000300130023003300430053006300730083009301030113012301330143015301630173018301930203021302230233024302530263027302830293030303130323033303430353036303730383039304030413042304330443045304630473048304930503051305230533054305530563057305830593060306130623063306430653066306730683069307030713072307330743075307630773078307930803081308230833084308530863087308830893090309130923093309430953096309730983099310031013102310331043105310631073108310931103111311231133114311531163117311831193120312131223123312431253126312731283129313031313132313331343135313631373138313931403141314231433144314531463147314831493150315131523153315431553156315731583159316031613162316331643165316631673168316931703171317231733174317531763177317831793180318131823183318431853186318731883189319031913192319331943195319631973198319932003201320232033204320532063207320832093210321132123213321432153216321732183219322032213222322332243225322632273228322932303231323232333234323532363237323832393240324132423243324432453246324732483249325032513252325332543255325632573258325932603261326232633264326532663267326832693270327132723273327432753276327732783279328032813282328332843285328632873288328932903291329232933294329532963297329832993300330133023303330433053306330733083309331033113312331333143315331633173318331933203321332233233324332533263327332833293330333133323333333433353336333733383339334033413342334333443345334633473348334933503351335233533354335533563357335833593360336133623363336433653366336733683369337033713372337333743375337633773378337933803381338233833384338533863387338833893390339133923393339433953396339733983399340034013402340334043405340634073408340934103411341234133414341534163417341834193420342134223423342434253426342734283429343034313432343334343435343634373438343934403441344234433444344534463447344834493450345134523453345434553456345734583459346034613462346334643465346634673468346934703471347234733474347534763477347834793480348134823483348434853486348734883489349034913492349334943495349634973498349935003501350235033504350535063507350835093510351135123513351435153516351735183519352035213522352335243525352635273528352935303531353235333534353535363537353835393540354135423543354435453546354735483549355035513552355335543555355635573558355935603561356235633564356535663567356835693570357135723573357435753576357735783579358035813582358335843585358635873588358935903591359235933594359535963597359835993600360136023603360436053606360736083609361036113612361336143615361636173618361936203621362236233624362536263627362836293630363136323633363436353636363736383639364036413642364336443645364636473648364936503651365236533654365536563657365836593660366136623663366436653666366736683669367036713672367336743675367636773678367936803681368236833684368536863687368836893690369136923693369436953696369736983699370037013702370337043705370637073708370937103711371237133714371537163717371837193720372137223723372437253726372737283729373037313732373337343735373637373738373937403741374237433744374537463747374837493750375137523753375437553756375737583759376037613762376337643765376637673768376937703771377237733774377537763777377837793780378137823783378437853786378737883789379037913792379337943795379637973798379938003801380238033804380538063807380838093810381138123813381438153816381738183819382038213822382338243825382638273828382938303831383238333834383538363837383838393840384138423843384438453846384738483849385038513852385338543855385638573858385938603861386238633864386538663867386838693870387138723873387438753876387738783879388038813882388338843885388638873888388938903891389238933894389538963897389838993900390139023903390439053906390739083909391039113912391339143915391639173918391939203921392239233924392539263927392839293930393139323933393439353936393739383939394039413942394339443945394639473948394939503951395239533954395539563957395839593960396139623963396439653966396739683969397039713972397339743975397639773978397939803981398239833984398539863987398839893990399139923993399439953996399739983999400040014002400340044005400640074008400940104011401240134014401540164017401840194020402140224023402440254026402740284029403040314032403340344035403640374038403940404041404240434044404540464047404840494050405140524053405440554056405740584059406040614062406340644065406640674068406940704071407240734074407540764077407840794080408140824083408440854086408740884089409040914092409340944095409640974098409941004101410241034104410541064107410841094110411141124113411441154116411741184119412041214122412341244125412641274128412941304131413241334134413541364137413841394140414141424143414441454146414741484149415041514152415341544155415641574158415941604161416241634164416541664167416841694170417141724173417441754176417741784179418041814182418341844185418641874188418941904191419241934194419541964197419841994200420142024203420442054206420742084209421042114212421342144215421642174218421942204221422242234224422542264227422842294230423142324233423442354236423742384239424042414242424342444245424642474248424942504251425242534254425542564257425842594260426142624263426442654266426742684269427042714272427342744275427642774278427942804281428242834284428542864287428842894290429142924293429442954296429742984299430043014302430343044305430643074308430943104311431243134314431543164317431843194320432143224323432443254326432743284329433043314332433343344335433643374338433943404341434243434344434543464347434843494350435143524353435443554356435743584359436043614362436343644365436643674368436943704371437243734374437543764377437843794380438143824383438443854386438743884389439043914392439343944395439643974398439944004401440244034404440544064407440844094410441144124413441444154416441744184419442044214422442344244425442644274428442944304431443244334434443544364437443844394440444144424443444444454446444744484449445044514452445344544455445644574458445944604461446244634464446544664467446844694470447144724473447444754476447744784479448044814482448344844485448644874488448944904491449244934494449544964497449844994500450145024503450445054506450745084509451045114512451345144515451645174518451945204521452245234524452545264527452845294530453145324533453445354536453745384539454045414542454345444545454645474548454945504551455245534554455545564557455845594560456145624563456445654566456745684569457045714572457345744575457645774578457945804581458245834584458545864587458845894590459145924593459445954596459745984599460046014602460346044605460646074608460946104611461246134614461546164617461846194620462146224623462446254626462746284629463046314632463346344635463646374638463946404641464246434644464546464647464846494650465146524653465446554656465746584659466046614662466346644665466646674668466946704671467246734674467546764677467846794680468146824683468446854686468746884689469046914692469346944695469646974698469947004701470247034704470547064707470847094710471147124713471447154716471747184719472047214722472347244725472647274728472947304731473247334734473547364737473847394740474147424743474447454746474747484749475047514752475347544755475647574758475947604761476247634764476547664767476847694770477147724773477447754776477747784779478047814782478347844785478647874788478947904791479247934794479547964797479847994800480148024803480448054806480748084809481048114812481348144815481648174818481948204821482248234824482548264827482848294830483148324833483448354836483748384839484048414842484348444845484648474848484948504851485248534854485548564857485848594860486148624863486448654866486748684869487048714872487348744875487648774878487948804881488248834884488548864887488848894890489148924893489448954896489748984899490049014902490349044905490649074908490949104911491249134914491549164917491849194920492149224923492449254926492749284929493049314932493349344935493649374938493949404941494249434944494549464947494849494950495149524953495449554956495749584959496049614962496349644965496649674968496949704971497249734974497549764977497849794980498149824983498449854986498749884989499049914992499349944995499649974998499950005001500250035004500550065007500850095010501150125013501450155016501750185019502050215022502350245025502650275028502950305031503250335034503550365037503850395040504150425043504450455046504750485049505050515052505350545055505650575058505950605061506250635064506550665067506850695070507150725073507450755076507750785079508050815082508350845085508650875088508950905091509250935094509550965097509850995100510151025103510451055106510751085109511051115112511351145115511651175118511951205121512251235124512551265127512851295130513151325133513451355136513751385139514051415142514351445145514651475148514951505151515251535154515551565157515851595160516151625163516451655166516751685169517051715172517351745175517651775178517951805181518251835184518551865187518851895190519151925193519451955196519751985199520052015202520352045205520652075208520952105211521252135214521552165217521852195220522152225223522452255226522752285229523052315232523352345235523652375238523952405241524252435244524552465247524852495250525152525253525452555256525752585259526052615262526352645265526652675268526952705271527252735274527552765277527852795280528152825283528452855286528752885289529052915292529352945295529652975298529953005301530253035304530553065307530853095310531153125313531453155316531753185319532053215322532353245325532653275328532953305331533253335334533553365337533853395340534153425343534453455346534753485349535053515352535353545355535653575358535953605361536253635364536553665367536853695370537153725373537453755376537753785379538053815382538353845385538653875388538953905391539253935394539553965397539853995400540154025403540454055406540754085409541054115412541354145415541654175418541954205421542254235424542554265427542854295430543154325433543454355436543754385439544054415442544354445445544654475448544954505451545254535454545554565457545854595460546154625463546454655466546754685469547054715472547354745475547654775478547954805481548254835484548554865487548854895490549154925493549454955496549754985499550055015502550355045505550655075508550955105511551255135514551555165517551855195520552155225523552455255526552755285529553055315532553355345535553655375538553955405541554255435544554555465547554855495550555155525553555455555556555755585559556055615562556355645565556655675568556955705571557255735574557555765577557855795580558155825583558455855586558755885589559055915592559355945595559655975598559956005601560256035604560556065607560856095610561156125613561456155616561756185619562056215622562356245625562656275628562956305631563256335634563556365637563856395640564156425643564456455646564756485649565056515652565356545655565656575658565956605661566256635664566556665667566856695670567156725673567456755676567756785679568056815682568356845685568656875688568956905691569256935694569556965697569856995700570157025703570457055706570757085709571057115712571357145715571657175718571957205721572257235724572557265727572857295730573157325733573457355736573757385739574057415742574357445745574657475748574957505751575257535754575557565757575857595760576157625763576457655766576757685769577057715772577357745775577657775778577957805781578257835784578557865787578857895790579157925793579457955796579757985799580058015802580358045805580658075808580958105811581258135814581558165817581858195820582158225823582458255826582758285829583058315832583358345835583658375838583958405841584258435844584558465847584858495850585158525853585458555856585758585859586058615862586358645865586658675868586958705871587258735874587558765877587858795880588158825883588458855886588758885889589058915892589358945895589658975898589959005901590259035904590559065907590859095910591159125913591459155916591759185919592059215922592359245925592659275928592959305931593259335934593559365937593859395940594159425943594459455946594759485949595059515952595359545955595659575958595959605961596259635964596559665967596859695970597159725973597459755976597759785979598059815982598359845985598659875988598959905991599259935994599559965997599859996000600160026003600460056006600760086009601060116012601360146015601660176018601960206021602260236024602560266027602860296030603160326033603460356036603760386039604060416042604360446045604660476048604960506051605260536054605560566057605860596060606160626063606460656066606760686069607060716072607360746075607660776078607960806081608260836084608560866087608860896090609160926093609460956096609760986099610061016102610361046105610661076108610961106111611261136114611561166117611861196120612161226123612461256126612761286129613061316132613361346135613661376138613961406141614261436144614561466147614861496150615161526153615461556156615761586159616061616162616361646165616661676168616961706171617261736174617561766177617861796180618161826183618461856186618761886189619061916192619361946195619661976198619962006201620262036204620562066207620862096210621162126213621462156216621762186219622062216222622362246225622662276228622962306231623262336234623562366237623862396240624162426243624462456246624762486249625062516252625362546255625662576258625962606261626262636264626562666267626862696270627162726273627462756276627762786279628062816282628362846285628662876288628962906291629262936294629562966297629862996300630163026303630463056306630763086309631063116312631363146315631663176318631963206321632263236324632563266327632863296330633163326333633463356336633763386339634063416342634363446345634663476348634963506351635263536354635563566357635863596360636163626363636463656366636763686369637063716372637363746375637663776378637963806381638263836384638563866387638863896390639163926393639463956396639763986399640064016402640364046405640664076408640964106411641264136414641564166417641864196420642164226423642464256426642764286429643064316432643364346435643664376438643964406441644264436444644564466447644864496450645164526453645464556456645764586459646064616462646364646465646664676468646964706471647264736474647564766477647864796480648164826483648464856486648764886489649064916492649364946495649664976498649965006501650265036504650565066507650865096510651165126513651465156516651765186519652065216522652365246525652665276528652965306531653265336534653565366537653865396540654165426543654465456546654765486549655065516552655365546555655665576558655965606561656265636564656565666567656865696570657165726573657465756576657765786579658065816582658365846585658665876588658965906591659265936594659565966597659865996600660166026603660466056606660766086609661066116612661366146615661666176618661966206621662266236624662566266627662866296630663166326633663466356636663766386639664066416642664366446645664666476648664966506651665266536654665566566657665866596660666166626663666466656666666766686669667066716672667366746675667666776678667966806681668266836684668566866687668866896690669166926693669466956696669766986699670067016702670367046705670667076708670967106711671267136714671567166717671867196720672167226723672467256726672767286729673067316732673367346735673667376738673967406741674267436744674567466747674867496750675167526753675467556756675767586759676067616762676367646765676667676768676967706771677267736774677567766777677867796780678167826783678467856786678767886789679067916792679367946795679667976798679968006801680268036804680568066807680868096810681168126813681468156816681768186819682068216822682368246825682668276828682968306831683268336834683568366837683868396840684168426843684468456846684768486849685068516852685368546855685668576858685968606861686268636864686568666867686868696870687168726873687468756876687768786879688068816882688368846885688668876888688968906891689268936894689568966897689868996900690169026903690469056906690769086909691069116912691369146915691669176918691969206921692269236924692569266927692869296930693169326933693469356936693769386939694069416942694369446945694669476948694969506951695269536954695569566957695869596960696169626963696469656966696769686969697069716972697369746975697669776978697969806981698269836984698569866987698869896990699169926993699469956996699769986999700070017002700370047005700670077008700970107011701270137014701570167017701870197020702170227023702470257026702770287029703070317032703370347035703670377038703970407041704270437044704570467047704870497050705170527053705470557056705770587059706070617062706370647065706670677068706970707071707270737074707570767077707870797080708170827083708470857086708770887089709070917092709370947095709670977098709971007101710271037104710571067107710871097110711171127113711471157116711771187119712071217122712371247125712671277128712971307131713271337134713571367137713871397140714171427143714471457146714771487149715071517152715371547155715671577158715971607161716271637164716571667167716871697170717171727173717471757176717771787179718071817182718371847185718671877188718971907191719271937194719571967197719871997200720172027203720472057206720772087209721072117212721372147215721672177218721972207221722272237224722572267227722872297230723172327233723472357236723772387239724072417242724372447245724672477248724972507251725272537254725572567257725872597260726172627263726472657266726772687269727072717272727372747275727672777278727972807281728272837284728572867287728872897290729172927293729472957296729772987299730073017302730373047305730673077308730973107311731273137314731573167317731873197320732173227323732473257326732773287329733073317332733373347335733673377338733973407341734273437344734573467347734873497350735173527353735473557356735773587359736073617362736373647365736673677368736973707371737273737374737573767377737873797380738173827383738473857386738773887389739073917392739373947395739673977398739974007401740274037404740574067407740874097410741174127413741474157416741774187419742074217422742374247425742674277428742974307431743274337434743574367437743874397440744174427443744474457446744774487449745074517452745374547455745674577458745974607461746274637464746574667467746874697470747174727473747474757476747774787479748074817482748374847485748674877488748974907491749274937494749574967497749874997500750175027503750475057506750775087509751075117512751375147515751675177518751975207521752275237524752575267527752875297530753175327533753475357536753775387539754075417542754375447545754675477548754975507551755275537554755575567557755875597560756175627563756475657566756775687569757075717572757375747575757675777578757975807581758275837584758575867587758875897590759175927593759475957596759775987599760076017602760376047605760676077608760976107611761276137614761576167617761876197620762176227623762476257626762776287629763076317632763376347635763676377638763976407641764276437644764576467647764876497650765176527653765476557656765776587659766076617662766376647665766676677668766976707671767276737674767576767677767876797680768176827683768476857686768776887689769076917692769376947695769676977698769977007701770277037704770577067707770877097710771177127713771477157716771777187719772077217722772377247725772677277728772977307731773277337734773577367737773877397740774177427743774477457746774777487749775077517752775377547755775677577758775977607761776277637764776577667767776877697770777177727773777477757776777777787779778077817782778377847785778677877788778977907791779277937794779577967797779877997800780178027803780478057806780778087809781078117812781378147815781678177818781978207821782278237824782578267827782878297830783178327833783478357836783778387839784078417842784378447845784678477848784978507851785278537854785578567857785878597860786178627863786478657866786778687869787078717872787378747875787678777878787978807881788278837884788578867887788878897890789178927893789478957896789778987899790079017902790379047905790679077908790979107911791279137914791579167917791879197920792179227923792479257926792779287929793079317932793379347935793679377938793979407941794279437944794579467947794879497950795179527953795479557956795779587959796079617962796379647965796679677968796979707971797279737974797579767977797879797980798179827983798479857986798779887989799079917992799379947995799679977998799980008001800280038004800580068007800880098010801180128013801480158016801780188019802080218022802380248025802680278028802980308031803280338034803580368037803880398040804180428043804480458046804780488049805080518052805380548055805680578058805980608061806280638064806580668067806880698070807180728073807480758076807780788079808080818082808380848085808680878088808980908091809280938094809580968097809880998100810181028103810481058106810781088109811081118112811381148115811681178118811981208121812281238124812581268127812881298130813181328133813481358136813781388139814081418142814381448145814681478148814981508151815281538154815581568157815881598160816181628163816481658166816781688169817081718172817381748175817681778178817981808181818281838184818581868187818881898190819181928193819481958196819781988199820082018202820382048205820682078208820982108211821282138214821582168217821882198220822182228223822482258226822782288229823082318232823382348235823682378238823982408241824282438244824582468247824882498250825182528253825482558256825782588259826082618262826382648265826682678268826982708271827282738274827582768277827882798280828182828283828482858286828782888289829082918292829382948295829682978298829983008301830283038304830583068307830883098310831183128313831483158316831783188319832083218322832383248325832683278328832983308331833283338334833583368337833883398340834183428343834483458346834783488349835083518352835383548355835683578358835983608361836283638364836583668367836883698370837183728373837483758376837783788379838083818382838383848385838683878388838983908391839283938394839583968397839883998400840184028403840484058406840784088409841084118412841384148415841684178418841984208421842284238424842584268427842884298430843184328433843484358436843784388439844084418442844384448445844684478448844984508451845284538454845584568457845884598460846184628463846484658466846784688469847084718472847384748475847684778478847984808481848284838484848584868487848884898490849184928493849484958496849784988499850085018502850385048505850685078508850985108511851285138514851585168517851885198520852185228523852485258526852785288529853085318532853385348535853685378538853985408541854285438544854585468547854885498550855185528553855485558556855785588559856085618562856385648565856685678568856985708571857285738574857585768577857885798580858185828583858485858586858785888589859085918592859385948595859685978598859986008601860286038604860586068607860886098610861186128613861486158616861786188619862086218622862386248625862686278628862986308631863286338634863586368637863886398640864186428643864486458646864786488649865086518652865386548655865686578658865986608661866286638664866586668667866886698670867186728673867486758676867786788679868086818682868386848685868686878688868986908691869286938694869586968697869886998700870187028703870487058706870787088709871087118712871387148715871687178718871987208721872287238724872587268727872887298730873187328733873487358736873787388739874087418742874387448745874687478748874987508751875287538754875587568757875887598760876187628763876487658766876787688769877087718772877387748775877687778778877987808781878287838784878587868787878887898790879187928793879487958796879787988799880088018802880388048805880688078808880988108811881288138814881588168817881888198820882188228823882488258826882788288829883088318832883388348835883688378838883988408841884288438844884588468847884888498850885188528853885488558856885788588859886088618862886388648865886688678868886988708871887288738874887588768877887888798880888188828883888488858886888788888889889088918892889388948895889688978898889989008901890289038904890589068907890889098910891189128913891489158916891789188919892089218922892389248925892689278928892989308931893289338934893589368937893889398940894189428943894489458946894789488949895089518952895389548955895689578958895989608961896289638964896589668967896889698970897189728973897489758976897789788979898089818982898389848985898689878988898989908991899289938994899589968997899889999000900190029003900490059006900790089009901090119012901390149015901690179018901990209021902290239024902590269027902890299030903190329033903490359036903790389039904090419042904390449045904690479048904990509051905290539054905590569057905890599060906190629063906490659066906790689069907090719072907390749075907690779078907990809081908290839084908590869087908890899090909190929093909490959096909790989099910091019102910391049105910691079108910991109111911291139114911591169117911891199120912191229123912491259126912791289129913091319132913391349135913691379138913991409141914291439144914591469147914891499150915191529153915491559156915791589159916091619162916391649165916691679168916991709171917291739174917591769177917891799180918191829183918491859186918791889189919091919192919391949195919691979198919992009201920292039204920592069207920892099210921192129213921492159216921792189219922092219222922392249225922692279228922992309231923292339234923592369237923892399240924192429243924492459246924792489249925092519252925392549255925692579258925992609261926292639264926592669267926892699270927192729273927492759276927792789279928092819282928392849285928692879288928992909291929292939294929592969297929892999300930193029303930493059306930793089309931093119312931393149315931693179318931993209321932293239324932593269327932893299330933193329333933493359336933793389339934093419342934393449345934693479348934993509351935293539354935593569357935893599360936193629363936493659366936793689369937093719372937393749375937693779378937993809381938293839384938593869387938893899390939193929393939493959396939793989399940094019402940394049405940694079408940994109411941294139414941594169417941894199420942194229423942494259426942794289429943094319432943394349435943694379438943994409441944294439444944594469447944894499450945194529453945494559456945794589459946094619462946394649465946694679468946994709471947294739474947594769477947894799480948194829483948494859486948794889489949094919492949394949495949694979498949995009501950295039504950595069507950895099510951195129513951495159516951795189519952095219522952395249525952695279528952995309531953295339534953595369537953895399540954195429543954495459546954795489549955095519552955395549555955695579558955995609561956295639564956595669567956895699570957195729573957495759576957795789579958095819582958395849585958695879588958995909591959295939594959595969597959895999600960196029603960496059606960796089609961096119612961396149615961696179618961996209621962296239624962596269627962896299630963196329633963496359636963796389639964096419642964396449645964696479648964996509651965296539654965596569657965896599660966196629663966496659666966796689669967096719672967396749675967696779678967996809681968296839684968596869687968896899690969196929693969496959696969796989699970097019702970397049705970697079708970997109711971297139714971597169717971897199720972197229723972497259726972797289729973097319732973397349735973697379738973997409741974297439744974597469747974897499750975197529753975497559756975797589759976097619762976397649765976697679768976997709771977297739774977597769777977897799780978197829783978497859786978797889789979097919792979397949795979697979798979998009801980298039804980598069807980898099810981198129813981498159816981798189819982098219822982398249825982698279828982998309831983298339834983598369837983898399840984198429843984498459846984798489849985098519852985398549855985698579858985998609861986298639864986598669867986898699870987198729873987498759876987798789879988098819882988398849885988698879888988998909891989298939894989598969897989898999900990199029903990499059906990799089909991099119912991399149915991699179918991999209921992299239924992599269927992899299930993199329933993499359936993799389939994099419942994399449945994699479948994999509951995299539954995599569957995899599960996199629963996499659966996799689969997099719972997399749975997699779978997999809981998299839984998599869987998899899990999199929993999499959996999799989999100001000110002100031000410005100061000710008100091001010011100121001310014100151001610017100181001910020100211002210023100241002510026100271002810029100301003110032100331003410035100361003710038100391004010041100421004310044100451004610047100481004910050100511005210053100541005510056100571005810059100601006110062100631006410065100661006710068100691007010071100721007310074100751007610077100781007910080100811008210083100841008510086100871008810089100901009110092100931009410095100961009710098100991010010101101021010310104101051010610107101081010910110101111011210113101141011510116101171011810119101201012110122101231012410125101261012710128101291013010131101321013310134101351013610137101381013910140101411014210143101441014510146101471014810149101501015110152101531015410155101561015710158101591016010161101621016310164101651016610167101681016910170101711017210173101741017510176101771017810179101801018110182101831018410185101861018710188101891019010191101921019310194101951019610197101981019910200102011020210203102041020510206102071020810209102101021110212102131021410215102161021710218102191022010221102221022310224102251022610227102281022910230102311023210233102341023510236102371023810239102401024110242102431024410245102461024710248102491025010251102521025310254102551025610257102581025910260102611026210263102641026510266102671026810269102701027110272102731027410275102761027710278102791028010281102821028310284102851028610287102881028910290102911029210293102941029510296102971029810299103001030110302103031030410305103061030710308103091031010311103121031310314103151031610317103181031910320103211032210323103241032510326103271032810329103301033110332103331033410335103361033710338103391034010341103421034310344103451034610347103481034910350103511035210353103541035510356103571035810359103601036110362103631036410365103661036710368103691037010371103721037310374103751037610377103781037910380103811038210383103841038510386103871038810389103901039110392103931039410395103961039710398103991040010401104021040310404104051040610407104081040910410104111041210413104141041510416104171041810419104201042110422104231042410425104261042710428104291043010431104321043310434104351043610437104381043910440104411044210443104441044510446104471044810449104501045110452104531045410455104561045710458104591046010461104621046310464104651046610467104681046910470104711047210473104741047510476104771047810479104801048110482104831048410485104861048710488104891049010491104921049310494104951049610497104981049910500105011050210503105041050510506105071050810509105101051110512105131051410515105161051710518105191052010521105221052310524105251052610527105281052910530105311053210533105341053510536105371053810539105401054110542105431054410545105461054710548105491055010551105521055310554105551055610557105581055910560105611056210563105641056510566105671056810569105701057110572105731057410575105761057710578105791058010581105821058310584105851058610587105881058910590105911059210593105941059510596105971059810599106001060110602106031060410605106061060710608106091061010611106121061310614106151061610617106181061910620106211062210623106241062510626106271062810629106301063110632106331063410635106361063710638106391064010641106421064310644106451064610647106481064910650106511065210653106541065510656106571065810659106601066110662106631066410665106661066710668106691067010671106721067310674106751067610677106781067910680106811068210683106841068510686106871068810689106901069110692106931069410695106961069710698106991070010701107021070310704107051070610707107081070910710107111071210713107141071510716107171071810719107201072110722107231072410725107261072710728107291073010731107321073310734107351073610737107381073910740107411074210743107441074510746107471074810749107501075110752107531075410755107561075710758107591076010761107621076310764107651076610767107681076910770107711077210773107741077510776107771077810779107801078110782107831078410785107861078710788107891079010791107921079310794107951079610797107981079910800108011080210803108041080510806108071080810809108101081110812108131081410815108161081710818108191082010821108221082310824108251082610827108281082910830108311083210833108341083510836108371083810839108401084110842108431084410845108461084710848108491085010851108521085310854108551085610857108581085910860108611086210863108641086510866108671086810869108701087110872108731087410875108761087710878108791088010881108821088310884108851088610887108881088910890108911089210893108941089510896108971089810899109001090110902109031090410905109061090710908109091091010911109121091310914109151091610917109181091910920109211092210923109241092510926109271092810929109301093110932109331093410935109361093710938109391094010941109421094310944109451094610947109481094910950109511095210953109541095510956109571095810959109601096110962109631096410965109661096710968109691097010971109721097310974109751097610977109781097910980109811098210983109841098510986109871098810989109901099110992109931099410995109961099710998109991100011001110021100311004110051100611007110081100911010110111101211013110141101511016110171101811019110201102111022110231102411025110261102711028110291103011031110321103311034110351103611037110381103911040110411104211043110441104511046110471104811049110501105111052110531105411055110561105711058110591106011061110621106311064110651106611067110681106911070110711107211073110741107511076110771107811079110801108111082110831108411085110861108711088110891109011091110921109311094110951109611097110981109911100111011110211103111041110511106111071110811109111101111111112111131111411115111161111711118111191112011121111221112311124111251112611127111281112911130111311113211133111341113511136111371113811139111401114111142111431114411145111461114711148111491115011151111521115311154111551115611157111581115911160111611116211163111641116511166111671116811169111701117111172111731117411175111761117711178111791118011181111821118311184111851118611187111881118911190111911119211193111941119511196111971119811199112001120111202112031120411205112061120711208112091121011211112121121311214112151121611217112181121911220112211122211223112241122511226112271122811229112301123111232112331123411235112361123711238112391124011241112421124311244112451124611247112481124911250112511125211253112541125511256112571125811259112601126111262112631126411265112661126711268112691127011271112721127311274112751127611277112781127911280112811128211283112841128511286112871128811289112901129111292112931129411295112961129711298112991130011301113021130311304113051130611307113081130911310113111131211313113141131511316113171131811319113201132111322113231132411325113261132711328113291133011331113321133311334113351133611337113381133911340113411134211343113441134511346113471134811349113501135111352113531135411355113561135711358113591136011361113621136311364113651136611367113681136911370113711137211373113741137511376113771137811379113801138111382113831138411385113861138711388113891139011391113921139311394113951139611397113981139911400114011140211403114041140511406114071140811409114101141111412114131141411415114161141711418114191142011421114221142311424114251142611427114281142911430114311143211433114341143511436114371143811439114401144111442114431144411445114461144711448114491145011451114521145311454114551145611457114581145911460114611146211463114641146511466114671146811469114701147111472114731147411475114761147711478114791148011481114821148311484114851148611487114881148911490114911149211493114941149511496114971149811499115001150111502115031150411505115061150711508115091151011511115121151311514115151151611517115181151911520115211152211523115241152511526115271152811529115301153111532115331153411535115361153711538115391154011541115421154311544115451154611547115481154911550115511155211553115541155511556115571155811559115601156111562115631156411565115661156711568115691157011571115721157311574115751157611577115781157911580115811158211583115841158511586115871158811589115901159111592115931159411595115961159711598115991160011601116021160311604116051160611607116081160911610116111161211613116141161511616116171161811619116201162111622116231162411625116261162711628116291163011631116321163311634116351163611637116381163911640116411164211643116441164511646116471164811649116501165111652116531165411655116561165711658116591166011661116621166311664116651166611667116681166911670116711167211673116741167511676116771167811679116801168111682116831168411685116861168711688116891169011691116921169311694116951169611697116981169911700117011170211703117041170511706117071170811709117101171111712117131171411715117161171711718117191172011721117221172311724117251172611727117281172911730117311173211733117341173511736117371173811739117401174111742117431174411745117461174711748117491175011751117521175311754117551175611757117581175911760117611176211763117641176511766117671176811769117701177111772117731177411775117761177711778117791178011781117821178311784117851178611787117881178911790117911179211793117941179511796117971179811799118001180111802118031180411805118061180711808118091181011811118121181311814118151181611817118181181911820118211182211823118241182511826118271182811829118301183111832118331183411835118361183711838118391184011841118421184311844118451184611847118481184911850118511185211853118541185511856118571185811859118601186111862118631186411865118661186711868118691187011871118721187311874118751187611877118781187911880118811188211883118841188511886118871188811889118901189111892118931189411895118961189711898118991190011901119021190311904119051190611907119081190911910119111191211913119141191511916119171191811919119201192111922119231192411925119261192711928119291193011931119321193311934119351193611937119381193911940119411194211943119441194511946119471194811949119501195111952119531195411955119561195711958119591196011961119621196311964119651196611967119681196911970119711197211973119741197511976119771197811979119801198111982119831198411985119861198711988119891199011991119921199311994119951199611997119981199912000120011200212003120041200512006120071200812009120101201112012120131201412015120161201712018120191202012021120221202312024120251202612027120281202912030120311203212033120341203512036120371203812039120401204112042120431204412045120461204712048120491205012051120521205312054120551205612057120581205912060120611206212063120641206512066120671206812069120701207112072120731207412075120761207712078120791208012081120821208312084120851208612087120881208912090120911209212093120941209512096120971209812099121001210112102121031210412105121061210712108121091211012111121121211312114121151211612117121181211912120121211212212123121241212512126121271212812129121301213112132121331213412135121361213712138121391214012141121421214312144121451214612147121481214912150121511215212153121541215512156121571215812159121601216112162121631216412165121661216712168121691217012171121721217312174121751217612177121781217912180121811218212183121841218512186121871218812189121901219112192121931219412195121961219712198121991220012201122021220312204122051220612207122081220912210122111221212213122141221512216122171221812219122201222112222122231222412225122261222712228122291223012231122321223312234122351223612237122381223912240122411224212243122441224512246122471224812249122501225112252122531225412255122561225712258122591226012261122621226312264122651226612267122681226912270122711227212273122741227512276122771227812279122801228112282122831228412285122861228712288122891229012291122921229312294122951229612297122981229912300123011230212303123041230512306123071230812309123101231112312123131231412315123161231712318123191232012321123221232312324123251232612327123281232912330123311233212333123341233512336123371233812339123401234112342123431234412345123461234712348123491235012351123521235312354123551235612357123581235912360123611236212363123641236512366123671236812369123701237112372123731237412375123761237712378123791238012381123821238312384123851238612387123881238912390123911239212393123941239512396123971239812399124001240112402124031240412405124061240712408124091241012411124121241312414124151241612417124181241912420124211242212423124241242512426124271242812429124301243112432124331243412435124361243712438124391244012441124421244312444124451244612447124481244912450124511245212453124541245512456124571245812459124601246112462124631246412465124661246712468124691247012471124721247312474124751247612477124781247912480124811248212483124841248512486124871248812489124901249112492124931249412495124961249712498124991250012501125021250312504125051250612507125081250912510125111251212513125141251512516125171251812519125201252112522125231252412525125261252712528125291253012531125321253312534125351253612537125381253912540125411254212543125441254512546125471254812549125501255112552125531255412555125561255712558125591256012561125621256312564125651256612567125681256912570125711257212573125741257512576125771257812579125801258112582125831258412585125861258712588125891259012591125921259312594125951259612597125981259912600126011260212603126041260512606126071260812609126101261112612126131261412615126161261712618126191262012621126221262312624126251262612627126281262912630126311263212633126341263512636126371263812639126401264112642126431264412645126461264712648126491265012651126521265312654126551265612657126581265912660126611266212663126641266512666126671266812669126701267112672126731267412675126761267712678126791268012681126821268312684126851268612687126881268912690126911269212693126941269512696126971269812699127001270112702127031270412705127061270712708127091271012711127121271312714127151271612717127181271912720127211272212723127241272512726127271272812729127301273112732127331273412735127361273712738127391274012741127421274312744127451274612747127481274912750127511275212753127541275512756127571275812759127601276112762127631276412765127661276712768127691277012771127721277312774127751277612777127781277912780127811278212783127841278512786127871278812789127901279112792127931279412795127961279712798127991280012801128021280312804128051280612807128081280912810128111281212813128141281512816128171281812819128201282112822128231282412825128261282712828128291283012831128321283312834
  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": "e020649d2f98dbf69606fac31a762af8",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "5.2.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "6cc8abb912286c671de5993ffbcd3225588aeace"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/6cc8abb912286c671de5993ffbcd3225588aeace",
  20. "reference": "6cc8abb912286c671de5993ffbcd3225588aeace",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "illuminate/contracts": "^9.0|^10.0|^11.0",
  25. "illuminate/support": "^9.0|^10.0|^11.0",
  26. "illuminate/validation": "^9.0|^10.0|^11.0",
  27. "illuminate/view": "^9.0|^10.0|^11.0",
  28. "php": "^8.0",
  29. "vlucas/phpdotenv": "^5.4.1"
  30. },
  31. "require-dev": {
  32. "orchestra/testbench": "^7.4|^8.0|^9.0",
  33. "phpunit/phpunit": "^9.5|^10.0|^11.0",
  34. "vimeo/psalm": "^4.23|^5.1"
  35. },
  36. "type": "library",
  37. "extra": {
  38. "laravel": {
  39. "providers": [
  40. "Akaunting\\Money\\Provider"
  41. ]
  42. }
  43. },
  44. "autoload": {
  45. "files": [
  46. "src/helpers.php"
  47. ],
  48. "psr-4": {
  49. "Akaunting\\Money\\": "src"
  50. }
  51. },
  52. "notification-url": "https://packagist.org/downloads/",
  53. "license": [
  54. "MIT"
  55. ],
  56. "authors": [
  57. {
  58. "name": "Denis Duliçi",
  59. "email": "info@akaunting.com",
  60. "homepage": "https://akaunting.com",
  61. "role": "Developer"
  62. }
  63. ],
  64. "description": "Currency formatting and conversion package for Laravel",
  65. "keywords": [
  66. "convert",
  67. "currency",
  68. "format",
  69. "laravel",
  70. "money"
  71. ],
  72. "support": {
  73. "issues": "https://github.com/akaunting/laravel-money/issues",
  74. "source": "https://github.com/akaunting/laravel-money/tree/5.2.1"
  75. },
  76. "time": "2024-07-23T15:01:26+00:00"
  77. },
  78. {
  79. "name": "andrewdwallo/filament-companies",
  80. "version": "v4.0.5",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "0776c78780cd11d7165a316a692b82947e0cf96f"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/0776c78780cd11d7165a316a692b82947e0cf96f",
  89. "reference": "0776c78780cd11d7165a316a692b82947e0cf96f",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^3.2.29",
  95. "illuminate/console": "^11.0",
  96. "illuminate/contracts": "^11.0",
  97. "illuminate/support": "^11.0",
  98. "laravel/socialite": "^5.12",
  99. "matomo/device-detector": "^6.1",
  100. "php": "^8.2"
  101. },
  102. "require-dev": {
  103. "laravel/pint": "^1.14",
  104. "laravel/sanctum": "^4.0",
  105. "livewire/livewire": "^3.4.9",
  106. "mockery/mockery": "^1.6",
  107. "orchestra/testbench": "^9.0",
  108. "phpunit/phpunit": "^10.5"
  109. },
  110. "type": "library",
  111. "extra": {
  112. "laravel": {
  113. "providers": [
  114. "Wallo\\FilamentCompanies\\FilamentCompaniesServiceProvider"
  115. ]
  116. }
  117. },
  118. "autoload": {
  119. "psr-4": {
  120. "Wallo\\FilamentCompanies\\": "src/"
  121. }
  122. },
  123. "notification-url": "https://packagist.org/downloads/",
  124. "license": [
  125. "MIT"
  126. ],
  127. "authors": [
  128. {
  129. "name": "Andrew Wallo",
  130. "email": "andrewdwallo@gmail.com",
  131. "role": "Developer"
  132. }
  133. ],
  134. "description": "A comprehensive Laravel authentication and authorization system designed for Filament, focusing on multi-tenant company management.",
  135. "homepage": "https://github.com/andrewdwallo/filament-companies",
  136. "keywords": [
  137. "Authentication",
  138. "ERP",
  139. "andrewdwallo",
  140. "business management",
  141. "company management",
  142. "crm",
  143. "filament",
  144. "filament companies",
  145. "filament-companies",
  146. "laravel",
  147. "multi-tenant",
  148. "saas",
  149. "socialite"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/andrewdwallo/filament-companies/issues",
  153. "source": "https://github.com/andrewdwallo/filament-companies/tree/v4.0.5"
  154. },
  155. "time": "2024-07-28T04:42:23+00:00"
  156. },
  157. {
  158. "name": "andrewdwallo/filament-selectify",
  159. "version": "v2.0.8",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/andrewdwallo/filament-selectify.git",
  163. "reference": "53395a2db9c1c3afd819e0aa526a300b476db0db"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/andrewdwallo/filament-selectify/zipball/53395a2db9c1c3afd819e0aa526a300b476db0db",
  168. "reference": "53395a2db9c1c3afd819e0aa526a300b476db0db",
  169. "shasum": ""
  170. },
  171. "require": {
  172. "filament/forms": "^3.0",
  173. "php": "^8.1",
  174. "spatie/laravel-package-tools": "^1.15.0"
  175. },
  176. "require-dev": {
  177. "laravel/pint": "^1.0",
  178. "nunomaduro/collision": "^7.9",
  179. "orchestra/testbench": "^8.0",
  180. "pestphp/pest": "^2.0",
  181. "pestphp/pest-plugin-arch": "^2.0",
  182. "pestphp/pest-plugin-laravel": "^2.0"
  183. },
  184. "type": "library",
  185. "extra": {
  186. "laravel": {
  187. "providers": [
  188. "Wallo\\FilamentSelectify\\FilamentSelectifyServiceProvider"
  189. ]
  190. }
  191. },
  192. "autoload": {
  193. "psr-4": {
  194. "Wallo\\FilamentSelectify\\": "src/"
  195. }
  196. },
  197. "notification-url": "https://packagist.org/downloads/",
  198. "license": [
  199. "MIT"
  200. ],
  201. "authors": [
  202. {
  203. "name": "Andrew Wallo",
  204. "email": "andrewdwallo@gmail.com",
  205. "role": "Developer"
  206. }
  207. ],
  208. "description": "This is my package filament-selectify",
  209. "homepage": "https://github.com/andrewdwallo/filament-selectify",
  210. "keywords": [
  211. "andrewdwallo",
  212. "filament-selectify",
  213. "laravel"
  214. ],
  215. "support": {
  216. "issues": "https://github.com/andrewdwallo/filament-selectify/issues",
  217. "source": "https://github.com/andrewdwallo/filament-selectify/tree/v2.0.8"
  218. },
  219. "time": "2024-06-27T20:42:06+00:00"
  220. },
  221. {
  222. "name": "andrewdwallo/transmatic",
  223. "version": "v1.1.0",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/andrewdwallo/transmatic.git",
  227. "reference": "fabd11ba0b9ed2813cd60556f7e8d3f0d236c329"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/andrewdwallo/transmatic/zipball/fabd11ba0b9ed2813cd60556f7e8d3f0d236c329",
  232. "reference": "fabd11ba0b9ed2813cd60556f7e8d3f0d236c329",
  233. "shasum": ""
  234. },
  235. "require": {
  236. "aws/aws-sdk-php-laravel": "^3.8",
  237. "ext-intl": "*",
  238. "ext-json": "*",
  239. "illuminate/contracts": "^10.0|^11.0",
  240. "php": "^8.1",
  241. "spatie/laravel-package-tools": "^1.14.0"
  242. },
  243. "require-dev": {
  244. "larastan/larastan": "^2.9",
  245. "laravel/pint": "^1.0",
  246. "nunomaduro/collision": "^7.8|^8.0",
  247. "orchestra/testbench": "^8.8|^9.0",
  248. "pestphp/pest": "^2.20",
  249. "pestphp/pest-plugin-arch": "^2.0",
  250. "pestphp/pest-plugin-laravel": "^2.0",
  251. "phpstan/extension-installer": "^1.1",
  252. "phpstan/phpstan-deprecation-rules": "^1.0",
  253. "phpstan/phpstan-phpunit": "^1.0",
  254. "spatie/laravel-ray": "^1.26"
  255. },
  256. "type": "library",
  257. "extra": {
  258. "laravel": {
  259. "providers": [
  260. "Wallo\\Transmatic\\TransmaticServiceProvider"
  261. ],
  262. "aliases": {
  263. "Transmatic": "Wallo\\Transmatic\\Facades\\Transmatic"
  264. }
  265. }
  266. },
  267. "autoload": {
  268. "files": [
  269. "src/helpers.php"
  270. ],
  271. "psr-4": {
  272. "Wallo\\Transmatic\\": "src/"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "MIT"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Andrew Wallo",
  282. "email": "andrewdwallo@gmail.com",
  283. "role": "Developer"
  284. }
  285. ],
  286. "description": "Automate and streamline real-time text translations in your Laravel applications",
  287. "homepage": "https://github.com/andrewdwallo/transmatic",
  288. "keywords": [
  289. "andrewdwallo",
  290. "aws",
  291. "laravel",
  292. "localization",
  293. "translation",
  294. "translations",
  295. "transmatic"
  296. ],
  297. "support": {
  298. "issues": "https://github.com/andrewdwallo/transmatic/issues",
  299. "source": "https://github.com/andrewdwallo/transmatic/tree/v1.1.0"
  300. },
  301. "time": "2024-03-22T21:31:50+00:00"
  302. },
  303. {
  304. "name": "anourvalar/eloquent-serialize",
  305. "version": "1.2.23",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  309. "reference": "fd7bc1dc2c98fe705647ab4b81d13ea3d599ea1f"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/fd7bc1dc2c98fe705647ab4b81d13ea3d599ea1f",
  314. "reference": "fd7bc1dc2c98fe705647ab4b81d13ea3d599ea1f",
  315. "shasum": ""
  316. },
  317. "require": {
  318. "laravel/framework": "^8.0|^9.0|^10.0|^11.0",
  319. "php": "^7.4|^8.0"
  320. },
  321. "require-dev": {
  322. "friendsofphp/php-cs-fixer": "^3.26",
  323. "laravel/legacy-factories": "^1.1",
  324. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  325. "phpstan/phpstan": "^1.10",
  326. "phpunit/phpunit": "^9.5|^10.5",
  327. "psalm/plugin-laravel": "^2.8",
  328. "squizlabs/php_codesniffer": "^3.7"
  329. },
  330. "type": "library",
  331. "extra": {
  332. "laravel": {
  333. "aliases": {
  334. "EloquentSerialize": "AnourValar\\EloquentSerialize\\Facades\\EloquentSerializeFacade"
  335. }
  336. }
  337. },
  338. "autoload": {
  339. "psr-4": {
  340. "AnourValar\\EloquentSerialize\\": "src/"
  341. }
  342. },
  343. "notification-url": "https://packagist.org/downloads/",
  344. "license": [
  345. "MIT"
  346. ],
  347. "description": "Laravel Query Builder (Eloquent) serialization",
  348. "homepage": "https://github.com/AnourValar/eloquent-serialize",
  349. "keywords": [
  350. "anourvalar",
  351. "builder",
  352. "copy",
  353. "eloquent",
  354. "job",
  355. "laravel",
  356. "query",
  357. "querybuilder",
  358. "queue",
  359. "serializable",
  360. "serialization",
  361. "serialize"
  362. ],
  363. "support": {
  364. "issues": "https://github.com/AnourValar/eloquent-serialize/issues",
  365. "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.2.23"
  366. },
  367. "time": "2024-07-12T10:52:26+00:00"
  368. },
  369. {
  370. "name": "awcodes/filament-table-repeater",
  371. "version": "v3.0.5",
  372. "source": {
  373. "type": "git",
  374. "url": "https://github.com/awcodes/filament-table-repeater.git",
  375. "reference": "5140e21290a99dea460cec85f1ef015aedbbcf57"
  376. },
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://api.github.com/repos/awcodes/filament-table-repeater/zipball/5140e21290a99dea460cec85f1ef015aedbbcf57",
  380. "reference": "5140e21290a99dea460cec85f1ef015aedbbcf57",
  381. "shasum": ""
  382. },
  383. "require": {
  384. "filament/forms": "^3.1",
  385. "php": "^8.1",
  386. "spatie/laravel-package-tools": "^1.13.5"
  387. },
  388. "require-dev": {
  389. "laravel/pint": "^1.0",
  390. "nunomaduro/collision": "^7.0",
  391. "orchestra/testbench": "^8.0",
  392. "pestphp/pest": "^2.0",
  393. "pestphp/pest-plugin-faker": "^2.0",
  394. "pestphp/pest-plugin-laravel": "^2.0",
  395. "pestphp/pest-plugin-livewire": "^2.0",
  396. "phpunit/phpunit": "^10.0",
  397. "spatie/laravel-ray": "^1.26"
  398. },
  399. "type": "library",
  400. "extra": {
  401. "laravel": {
  402. "providers": [
  403. "Awcodes\\TableRepeater\\TableRepeaterServiceProvider"
  404. ]
  405. }
  406. },
  407. "autoload": {
  408. "psr-4": {
  409. "Awcodes\\TableRepeater\\": "src"
  410. }
  411. },
  412. "notification-url": "https://packagist.org/downloads/",
  413. "license": [
  414. "MIT"
  415. ],
  416. "authors": [
  417. {
  418. "name": "Adam Weston",
  419. "email": "awcodes1@gmail.com",
  420. "role": "Developer"
  421. }
  422. ],
  423. "description": "A modified version of the Filament Forms Repeater to display it as a table.",
  424. "homepage": "https://github.com/awcodes/filament-table-repeater",
  425. "keywords": [
  426. "awcodes",
  427. "filament",
  428. "laravel",
  429. "plugin",
  430. "table repeater"
  431. ],
  432. "support": {
  433. "issues": "https://github.com/awcodes/filament-table-repeater/issues",
  434. "source": "https://github.com/awcodes/filament-table-repeater/tree/v3.0.5"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://github.com/awcodes",
  439. "type": "github"
  440. }
  441. ],
  442. "time": "2024-07-18T16:02:26+00:00"
  443. },
  444. {
  445. "name": "aws/aws-crt-php",
  446. "version": "v1.2.6",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/awslabs/aws-crt-php.git",
  450. "reference": "a63485b65b6b3367039306496d49737cf1995408"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/a63485b65b6b3367039306496d49737cf1995408",
  455. "reference": "a63485b65b6b3367039306496d49737cf1995408",
  456. "shasum": ""
  457. },
  458. "require": {
  459. "php": ">=5.5"
  460. },
  461. "require-dev": {
  462. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  463. "yoast/phpunit-polyfills": "^1.0"
  464. },
  465. "suggest": {
  466. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  467. },
  468. "type": "library",
  469. "autoload": {
  470. "classmap": [
  471. "src/"
  472. ]
  473. },
  474. "notification-url": "https://packagist.org/downloads/",
  475. "license": [
  476. "Apache-2.0"
  477. ],
  478. "authors": [
  479. {
  480. "name": "AWS SDK Common Runtime Team",
  481. "email": "aws-sdk-common-runtime@amazon.com"
  482. }
  483. ],
  484. "description": "AWS Common Runtime for PHP",
  485. "homepage": "https://github.com/awslabs/aws-crt-php",
  486. "keywords": [
  487. "amazon",
  488. "aws",
  489. "crt",
  490. "sdk"
  491. ],
  492. "support": {
  493. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  494. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.6"
  495. },
  496. "time": "2024-06-13T17:21:28+00:00"
  497. },
  498. {
  499. "name": "aws/aws-sdk-php",
  500. "version": "3.319.1",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "78d9f8823a5796e9188a4ddcd9ef2374e47d8b7f"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/78d9f8823a5796e9188a4ddcd9ef2374e47d8b7f",
  509. "reference": "78d9f8823a5796e9188a4ddcd9ef2374e47d8b7f",
  510. "shasum": ""
  511. },
  512. "require": {
  513. "aws/aws-crt-php": "^1.2.3",
  514. "ext-json": "*",
  515. "ext-pcre": "*",
  516. "ext-simplexml": "*",
  517. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  518. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  519. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  520. "mtdowling/jmespath.php": "^2.6",
  521. "php": ">=7.2.5",
  522. "psr/http-message": "^1.0 || ^2.0"
  523. },
  524. "require-dev": {
  525. "andrewsville/php-token-reflection": "^1.4",
  526. "aws/aws-php-sns-message-validator": "~1.0",
  527. "behat/behat": "~3.0",
  528. "composer/composer": "^1.10.22",
  529. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  530. "doctrine/cache": "~1.4",
  531. "ext-dom": "*",
  532. "ext-openssl": "*",
  533. "ext-pcntl": "*",
  534. "ext-sockets": "*",
  535. "nette/neon": "^2.3",
  536. "paragonie/random_compat": ">= 2",
  537. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  538. "psr/cache": "^1.0",
  539. "psr/simple-cache": "^1.0",
  540. "sebastian/comparator": "^1.2.3 || ^4.0",
  541. "yoast/phpunit-polyfills": "^1.0"
  542. },
  543. "suggest": {
  544. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  545. "doctrine/cache": "To use the DoctrineCacheAdapter",
  546. "ext-curl": "To send requests using cURL",
  547. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  548. "ext-sockets": "To use client-side monitoring"
  549. },
  550. "type": "library",
  551. "extra": {
  552. "branch-alias": {
  553. "dev-master": "3.0-dev"
  554. }
  555. },
  556. "autoload": {
  557. "files": [
  558. "src/functions.php"
  559. ],
  560. "psr-4": {
  561. "Aws\\": "src/"
  562. },
  563. "exclude-from-classmap": [
  564. "src/data/"
  565. ]
  566. },
  567. "notification-url": "https://packagist.org/downloads/",
  568. "license": [
  569. "Apache-2.0"
  570. ],
  571. "authors": [
  572. {
  573. "name": "Amazon Web Services",
  574. "homepage": "http://aws.amazon.com"
  575. }
  576. ],
  577. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  578. "homepage": "http://aws.amazon.com/sdkforphp",
  579. "keywords": [
  580. "amazon",
  581. "aws",
  582. "cloud",
  583. "dynamodb",
  584. "ec2",
  585. "glacier",
  586. "s3",
  587. "sdk"
  588. ],
  589. "support": {
  590. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  591. "issues": "https://github.com/aws/aws-sdk-php/issues",
  592. "source": "https://github.com/aws/aws-sdk-php/tree/3.319.1"
  593. },
  594. "time": "2024-08-08T18:05:03+00:00"
  595. },
  596. {
  597. "name": "aws/aws-sdk-php-laravel",
  598. "version": "3.9.0",
  599. "source": {
  600. "type": "git",
  601. "url": "https://github.com/aws/aws-sdk-php-laravel.git",
  602. "reference": "11cb363873bd77a91b262936936abfa6a2122d53"
  603. },
  604. "dist": {
  605. "type": "zip",
  606. "url": "https://api.github.com/repos/aws/aws-sdk-php-laravel/zipball/11cb363873bd77a91b262936936abfa6a2122d53",
  607. "reference": "11cb363873bd77a91b262936936abfa6a2122d53",
  608. "shasum": ""
  609. },
  610. "require": {
  611. "aws/aws-sdk-php": "^3.279.0",
  612. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
  613. "php": ">=7.2.5"
  614. },
  615. "require-dev": {
  616. "phpunit/phpunit": "^8.0 || ^9.0",
  617. "vlucas/phpdotenv": "^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0",
  618. "yoast/phpunit-polyfills": "^1.0"
  619. },
  620. "suggest": {
  621. "laravel/framework": "To test the Laravel bindings",
  622. "laravel/lumen-framework": "To test the Lumen bindings"
  623. },
  624. "type": "library",
  625. "extra": {
  626. "laravel": {
  627. "providers": [
  628. "Aws\\Laravel\\AwsServiceProvider"
  629. ],
  630. "aliases": {
  631. "AWS": "Aws\\Laravel\\AwsFacade"
  632. }
  633. }
  634. },
  635. "autoload": {
  636. "psr-4": {
  637. "Aws\\Laravel\\": "src/"
  638. }
  639. },
  640. "notification-url": "https://packagist.org/downloads/",
  641. "license": [
  642. "Apache-2.0"
  643. ],
  644. "authors": [
  645. {
  646. "name": "Amazon Web Services",
  647. "homepage": "http://aws.amazon.com"
  648. }
  649. ],
  650. "description": "A simple Laravel 6/7/8/9/10/11 service provider for including the AWS SDK for PHP.",
  651. "homepage": "https://aws.amazon.com/sdk-for-php/",
  652. "keywords": [
  653. "amazon",
  654. "aws",
  655. "dynamodb",
  656. "ec2",
  657. "laravel",
  658. "laravel 10",
  659. "laravel 11",
  660. "laravel 6",
  661. "laravel 7",
  662. "laravel 8",
  663. "laravel 9",
  664. "s3",
  665. "sdk"
  666. ],
  667. "support": {
  668. "issues": "https://github.com/aws/aws-sdk-php-laravel/issues",
  669. "source": "https://github.com/aws/aws-sdk-php-laravel/tree/3.9.0"
  670. },
  671. "time": "2024-03-18T17:43:45+00:00"
  672. },
  673. {
  674. "name": "barryvdh/laravel-snappy",
  675. "version": "v1.0.3",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/barryvdh/laravel-snappy.git",
  679. "reference": "716dcb6db24de4ce8e6ae5941cfab152af337ea0"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/716dcb6db24de4ce8e6ae5941cfab152af337ea0",
  684. "reference": "716dcb6db24de4ce8e6ae5941cfab152af337ea0",
  685. "shasum": ""
  686. },
  687. "require": {
  688. "illuminate/filesystem": "^9|^10|^11.0",
  689. "illuminate/support": "^9|^10|^11.0",
  690. "knplabs/knp-snappy": "^1.4.4",
  691. "php": ">=7.2"
  692. },
  693. "require-dev": {
  694. "orchestra/testbench": "^7|^8|^9.0"
  695. },
  696. "type": "library",
  697. "extra": {
  698. "branch-alias": {
  699. "dev-master": "1.0-dev"
  700. },
  701. "laravel": {
  702. "providers": [
  703. "Barryvdh\\Snappy\\ServiceProvider"
  704. ],
  705. "aliases": {
  706. "PDF": "Barryvdh\\Snappy\\Facades\\SnappyPdf",
  707. "SnappyImage": "Barryvdh\\Snappy\\Facades\\SnappyImage"
  708. }
  709. }
  710. },
  711. "autoload": {
  712. "psr-4": {
  713. "Barryvdh\\Snappy\\": "src/"
  714. }
  715. },
  716. "notification-url": "https://packagist.org/downloads/",
  717. "license": [
  718. "MIT"
  719. ],
  720. "authors": [
  721. {
  722. "name": "Barry vd. Heuvel",
  723. "email": "barryvdh@gmail.com"
  724. }
  725. ],
  726. "description": "Snappy PDF/Image for Laravel",
  727. "keywords": [
  728. "image",
  729. "laravel",
  730. "pdf",
  731. "snappy",
  732. "wkhtmltoimage",
  733. "wkhtmltopdf"
  734. ],
  735. "support": {
  736. "issues": "https://github.com/barryvdh/laravel-snappy/issues",
  737. "source": "https://github.com/barryvdh/laravel-snappy/tree/v1.0.3"
  738. },
  739. "funding": [
  740. {
  741. "url": "https://fruitcake.nl",
  742. "type": "custom"
  743. },
  744. {
  745. "url": "https://github.com/barryvdh",
  746. "type": "github"
  747. }
  748. ],
  749. "time": "2024-03-09T19:20:39+00:00"
  750. },
  751. {
  752. "name": "bezhansalleh/filament-panel-switch",
  753. "version": "1.0.6",
  754. "source": {
  755. "type": "git",
  756. "url": "https://github.com/bezhanSalleh/filament-panel-switch.git",
  757. "reference": "91f9b2a7149bcc2564d68e3decb5771287105620"
  758. },
  759. "dist": {
  760. "type": "zip",
  761. "url": "https://api.github.com/repos/bezhanSalleh/filament-panel-switch/zipball/91f9b2a7149bcc2564d68e3decb5771287105620",
  762. "reference": "91f9b2a7149bcc2564d68e3decb5771287105620",
  763. "shasum": ""
  764. },
  765. "require": {
  766. "filament/filament": "^3.0",
  767. "php": "^8.1",
  768. "spatie/laravel-package-tools": "^1.15.0"
  769. },
  770. "require-dev": {
  771. "laravel/pint": "^1.0",
  772. "nunomaduro/collision": "^7.9",
  773. "orchestra/testbench": "^8.0",
  774. "pestphp/pest": "^2.0",
  775. "pestphp/pest-plugin-arch": "^2.0",
  776. "pestphp/pest-plugin-laravel": "^2.0",
  777. "spatie/laravel-ray": "^1.26"
  778. },
  779. "type": "library",
  780. "extra": {
  781. "laravel": {
  782. "providers": [
  783. "BezhanSalleh\\PanelSwitch\\PanelSwitchServiceProvider"
  784. ],
  785. "aliases": {
  786. "PanelSwitch": "BezhanSalleh\\PanelSwitch\\Facades\\PanelSwitch"
  787. }
  788. }
  789. },
  790. "autoload": {
  791. "psr-4": {
  792. "BezhanSalleh\\PanelSwitch\\": "src/",
  793. "BezhanSalleh\\PanelSwitch\\Database\\Factories\\": "database/factories/"
  794. }
  795. },
  796. "notification-url": "https://packagist.org/downloads/",
  797. "license": [
  798. "MIT"
  799. ],
  800. "authors": [
  801. {
  802. "name": "Bezhan Salleh",
  803. "email": "bezhan_salleh@yahoo.com",
  804. "role": "Developer"
  805. }
  806. ],
  807. "description": "Easily Switch between your Filament Panels",
  808. "homepage": "https://github.com/bezhansalleh/filament-panel-switch",
  809. "keywords": [
  810. "bezhanSalleh",
  811. "filament",
  812. "filament-panel-switch",
  813. "panel-changer",
  814. "panel-navigation",
  815. "panel-switch"
  816. ],
  817. "support": {
  818. "issues": "https://github.com/bezhansalleh/filament-panel-switch/issues",
  819. "source": "https://github.com/bezhansalleh/filament-panel-switch"
  820. },
  821. "funding": [
  822. {
  823. "url": "https://github.com/bezhanSalleh",
  824. "type": "github"
  825. }
  826. ],
  827. "time": "2024-08-07T23:51:12+00:00"
  828. },
  829. {
  830. "name": "blade-ui-kit/blade-heroicons",
  831. "version": "2.4.0",
  832. "source": {
  833. "type": "git",
  834. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  835. "reference": "a7c377a4ef88cd54712e3e15cbed30446820da0b"
  836. },
  837. "dist": {
  838. "type": "zip",
  839. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/a7c377a4ef88cd54712e3e15cbed30446820da0b",
  840. "reference": "a7c377a4ef88cd54712e3e15cbed30446820da0b",
  841. "shasum": ""
  842. },
  843. "require": {
  844. "blade-ui-kit/blade-icons": "^1.6",
  845. "illuminate/support": "^9.0|^10.0|^11.0",
  846. "php": "^8.0"
  847. },
  848. "require-dev": {
  849. "orchestra/testbench": "^7.0|^8.0|^9.0",
  850. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  851. },
  852. "type": "library",
  853. "extra": {
  854. "laravel": {
  855. "providers": [
  856. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  857. ]
  858. }
  859. },
  860. "autoload": {
  861. "psr-4": {
  862. "BladeUI\\Heroicons\\": "src"
  863. }
  864. },
  865. "notification-url": "https://packagist.org/downloads/",
  866. "license": [
  867. "MIT"
  868. ],
  869. "authors": [
  870. {
  871. "name": "Dries Vints",
  872. "homepage": "https://driesvints.com"
  873. }
  874. ],
  875. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  876. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  877. "keywords": [
  878. "Heroicons",
  879. "blade",
  880. "laravel"
  881. ],
  882. "support": {
  883. "issues": "https://github.com/blade-ui-kit/blade-heroicons/issues",
  884. "source": "https://github.com/blade-ui-kit/blade-heroicons/tree/2.4.0"
  885. },
  886. "funding": [
  887. {
  888. "url": "https://github.com/sponsors/driesvints",
  889. "type": "github"
  890. },
  891. {
  892. "url": "https://www.paypal.com/paypalme/driesvints",
  893. "type": "paypal"
  894. }
  895. ],
  896. "time": "2024-07-16T07:00:01+00:00"
  897. },
  898. {
  899. "name": "blade-ui-kit/blade-icons",
  900. "version": "1.7.0",
  901. "source": {
  902. "type": "git",
  903. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  904. "reference": "74275f44c71e815b85bf7cea66e3bf98c57fb7e4"
  905. },
  906. "dist": {
  907. "type": "zip",
  908. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/74275f44c71e815b85bf7cea66e3bf98c57fb7e4",
  909. "reference": "74275f44c71e815b85bf7cea66e3bf98c57fb7e4",
  910. "shasum": ""
  911. },
  912. "require": {
  913. "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
  914. "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
  915. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  916. "illuminate/view": "^8.0|^9.0|^10.0|^11.0",
  917. "php": "^7.4|^8.0",
  918. "symfony/console": "^5.3|^6.0|^7.0",
  919. "symfony/finder": "^5.3|^6.0|^7.0"
  920. },
  921. "require-dev": {
  922. "mockery/mockery": "^1.5.1",
  923. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  924. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  925. },
  926. "bin": [
  927. "bin/blade-icons-generate"
  928. ],
  929. "type": "library",
  930. "extra": {
  931. "laravel": {
  932. "providers": [
  933. "BladeUI\\Icons\\BladeIconsServiceProvider"
  934. ]
  935. }
  936. },
  937. "autoload": {
  938. "files": [
  939. "src/helpers.php"
  940. ],
  941. "psr-4": {
  942. "BladeUI\\Icons\\": "src"
  943. }
  944. },
  945. "notification-url": "https://packagist.org/downloads/",
  946. "license": [
  947. "MIT"
  948. ],
  949. "authors": [
  950. {
  951. "name": "Dries Vints",
  952. "homepage": "https://driesvints.com"
  953. }
  954. ],
  955. "description": "A package to easily make use of icons in your Laravel Blade views.",
  956. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  957. "keywords": [
  958. "blade",
  959. "icons",
  960. "laravel",
  961. "svg"
  962. ],
  963. "support": {
  964. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  965. "source": "https://github.com/blade-ui-kit/blade-icons"
  966. },
  967. "funding": [
  968. {
  969. "url": "https://github.com/sponsors/driesvints",
  970. "type": "github"
  971. },
  972. {
  973. "url": "https://www.paypal.com/paypalme/driesvints",
  974. "type": "paypal"
  975. }
  976. ],
  977. "time": "2024-07-29T21:49:30+00:00"
  978. },
  979. {
  980. "name": "brick/math",
  981. "version": "0.12.1",
  982. "source": {
  983. "type": "git",
  984. "url": "https://github.com/brick/math.git",
  985. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  986. },
  987. "dist": {
  988. "type": "zip",
  989. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  990. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  991. "shasum": ""
  992. },
  993. "require": {
  994. "php": "^8.1"
  995. },
  996. "require-dev": {
  997. "php-coveralls/php-coveralls": "^2.2",
  998. "phpunit/phpunit": "^10.1",
  999. "vimeo/psalm": "5.16.0"
  1000. },
  1001. "type": "library",
  1002. "autoload": {
  1003. "psr-4": {
  1004. "Brick\\Math\\": "src/"
  1005. }
  1006. },
  1007. "notification-url": "https://packagist.org/downloads/",
  1008. "license": [
  1009. "MIT"
  1010. ],
  1011. "description": "Arbitrary-precision arithmetic library",
  1012. "keywords": [
  1013. "Arbitrary-precision",
  1014. "BigInteger",
  1015. "BigRational",
  1016. "arithmetic",
  1017. "bigdecimal",
  1018. "bignum",
  1019. "bignumber",
  1020. "brick",
  1021. "decimal",
  1022. "integer",
  1023. "math",
  1024. "mathematics",
  1025. "rational"
  1026. ],
  1027. "support": {
  1028. "issues": "https://github.com/brick/math/issues",
  1029. "source": "https://github.com/brick/math/tree/0.12.1"
  1030. },
  1031. "funding": [
  1032. {
  1033. "url": "https://github.com/BenMorel",
  1034. "type": "github"
  1035. }
  1036. ],
  1037. "time": "2023-11-29T23:19:16+00:00"
  1038. },
  1039. {
  1040. "name": "carbonphp/carbon-doctrine-types",
  1041. "version": "2.1.0",
  1042. "source": {
  1043. "type": "git",
  1044. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  1045. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  1046. },
  1047. "dist": {
  1048. "type": "zip",
  1049. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1050. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  1051. "shasum": ""
  1052. },
  1053. "require": {
  1054. "php": "^7.4 || ^8.0"
  1055. },
  1056. "conflict": {
  1057. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  1058. },
  1059. "require-dev": {
  1060. "doctrine/dbal": "^3.7.0",
  1061. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  1062. "phpunit/phpunit": "^10.3"
  1063. },
  1064. "type": "library",
  1065. "autoload": {
  1066. "psr-4": {
  1067. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  1068. }
  1069. },
  1070. "notification-url": "https://packagist.org/downloads/",
  1071. "license": [
  1072. "MIT"
  1073. ],
  1074. "authors": [
  1075. {
  1076. "name": "KyleKatarn",
  1077. "email": "kylekatarnls@gmail.com"
  1078. }
  1079. ],
  1080. "description": "Types to use Carbon in Doctrine",
  1081. "keywords": [
  1082. "carbon",
  1083. "date",
  1084. "datetime",
  1085. "doctrine",
  1086. "time"
  1087. ],
  1088. "support": {
  1089. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1090. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  1091. },
  1092. "funding": [
  1093. {
  1094. "url": "https://github.com/kylekatarnls",
  1095. "type": "github"
  1096. },
  1097. {
  1098. "url": "https://opencollective.com/Carbon",
  1099. "type": "open_collective"
  1100. },
  1101. {
  1102. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1103. "type": "tidelift"
  1104. }
  1105. ],
  1106. "time": "2023-12-11T17:09:12+00:00"
  1107. },
  1108. {
  1109. "name": "danharrin/date-format-converter",
  1110. "version": "v0.3.1",
  1111. "source": {
  1112. "type": "git",
  1113. "url": "https://github.com/danharrin/date-format-converter.git",
  1114. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e"
  1115. },
  1116. "dist": {
  1117. "type": "zip",
  1118. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1119. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1120. "shasum": ""
  1121. },
  1122. "require": {
  1123. "php": "^7.2|^8.0"
  1124. },
  1125. "type": "library",
  1126. "autoload": {
  1127. "files": [
  1128. "src/helpers.php",
  1129. "src/standards.php"
  1130. ],
  1131. "psr-4": {
  1132. "DanHarrin\\DateFormatConverter\\": "src/"
  1133. }
  1134. },
  1135. "notification-url": "https://packagist.org/downloads/",
  1136. "license": [
  1137. "MIT"
  1138. ],
  1139. "authors": [
  1140. {
  1141. "name": "Dan Harrin",
  1142. "email": "dan@danharrin.com"
  1143. }
  1144. ],
  1145. "description": "Convert token-based date formats between standards.",
  1146. "homepage": "https://github.com/danharrin/date-format-converter",
  1147. "support": {
  1148. "issues": "https://github.com/danharrin/date-format-converter/issues",
  1149. "source": "https://github.com/danharrin/date-format-converter"
  1150. },
  1151. "funding": [
  1152. {
  1153. "url": "https://github.com/danharrin",
  1154. "type": "github"
  1155. }
  1156. ],
  1157. "time": "2024-06-13T09:38:44+00:00"
  1158. },
  1159. {
  1160. "name": "danharrin/livewire-rate-limiting",
  1161. "version": "v1.3.1",
  1162. "source": {
  1163. "type": "git",
  1164. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  1165. "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb"
  1166. },
  1167. "dist": {
  1168. "type": "zip",
  1169. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb",
  1170. "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb",
  1171. "shasum": ""
  1172. },
  1173. "require": {
  1174. "illuminate/support": "^9.0|^10.0|^11.0",
  1175. "php": "^8.0"
  1176. },
  1177. "require-dev": {
  1178. "livewire/livewire": "^3.0",
  1179. "livewire/volt": "^1.3",
  1180. "orchestra/testbench": "^7.0|^8.0|^9.0",
  1181. "phpunit/phpunit": "^9.0|^10.0"
  1182. },
  1183. "type": "library",
  1184. "autoload": {
  1185. "psr-4": {
  1186. "DanHarrin\\LivewireRateLimiting\\": "src"
  1187. }
  1188. },
  1189. "notification-url": "https://packagist.org/downloads/",
  1190. "license": [
  1191. "MIT"
  1192. ],
  1193. "authors": [
  1194. {
  1195. "name": "Dan Harrin",
  1196. "email": "dan@danharrin.com"
  1197. }
  1198. ],
  1199. "description": "Apply rate limiters to Laravel Livewire actions.",
  1200. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  1201. "support": {
  1202. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  1203. "source": "https://github.com/danharrin/livewire-rate-limiting"
  1204. },
  1205. "funding": [
  1206. {
  1207. "url": "https://github.com/danharrin",
  1208. "type": "github"
  1209. }
  1210. ],
  1211. "time": "2024-05-06T09:10:03+00:00"
  1212. },
  1213. {
  1214. "name": "dflydev/dot-access-data",
  1215. "version": "v3.0.3",
  1216. "source": {
  1217. "type": "git",
  1218. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1219. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1220. },
  1221. "dist": {
  1222. "type": "zip",
  1223. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1224. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1225. "shasum": ""
  1226. },
  1227. "require": {
  1228. "php": "^7.1 || ^8.0"
  1229. },
  1230. "require-dev": {
  1231. "phpstan/phpstan": "^0.12.42",
  1232. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1233. "scrutinizer/ocular": "1.6.0",
  1234. "squizlabs/php_codesniffer": "^3.5",
  1235. "vimeo/psalm": "^4.0.0"
  1236. },
  1237. "type": "library",
  1238. "extra": {
  1239. "branch-alias": {
  1240. "dev-main": "3.x-dev"
  1241. }
  1242. },
  1243. "autoload": {
  1244. "psr-4": {
  1245. "Dflydev\\DotAccessData\\": "src/"
  1246. }
  1247. },
  1248. "notification-url": "https://packagist.org/downloads/",
  1249. "license": [
  1250. "MIT"
  1251. ],
  1252. "authors": [
  1253. {
  1254. "name": "Dragonfly Development Inc.",
  1255. "email": "info@dflydev.com",
  1256. "homepage": "http://dflydev.com"
  1257. },
  1258. {
  1259. "name": "Beau Simensen",
  1260. "email": "beau@dflydev.com",
  1261. "homepage": "http://beausimensen.com"
  1262. },
  1263. {
  1264. "name": "Carlos Frutos",
  1265. "email": "carlos@kiwing.it",
  1266. "homepage": "https://github.com/cfrutos"
  1267. },
  1268. {
  1269. "name": "Colin O'Dell",
  1270. "email": "colinodell@gmail.com",
  1271. "homepage": "https://www.colinodell.com"
  1272. }
  1273. ],
  1274. "description": "Given a deep data structure, access data by dot notation.",
  1275. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1276. "keywords": [
  1277. "access",
  1278. "data",
  1279. "dot",
  1280. "notation"
  1281. ],
  1282. "support": {
  1283. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1284. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1285. },
  1286. "time": "2024-07-08T12:26:09+00:00"
  1287. },
  1288. {
  1289. "name": "doctrine/cache",
  1290. "version": "2.2.0",
  1291. "source": {
  1292. "type": "git",
  1293. "url": "https://github.com/doctrine/cache.git",
  1294. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  1295. },
  1296. "dist": {
  1297. "type": "zip",
  1298. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  1299. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  1300. "shasum": ""
  1301. },
  1302. "require": {
  1303. "php": "~7.1 || ^8.0"
  1304. },
  1305. "conflict": {
  1306. "doctrine/common": ">2.2,<2.4"
  1307. },
  1308. "require-dev": {
  1309. "cache/integration-tests": "dev-master",
  1310. "doctrine/coding-standard": "^9",
  1311. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1312. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  1313. "symfony/cache": "^4.4 || ^5.4 || ^6",
  1314. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  1315. },
  1316. "type": "library",
  1317. "autoload": {
  1318. "psr-4": {
  1319. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  1320. }
  1321. },
  1322. "notification-url": "https://packagist.org/downloads/",
  1323. "license": [
  1324. "MIT"
  1325. ],
  1326. "authors": [
  1327. {
  1328. "name": "Guilherme Blanco",
  1329. "email": "guilhermeblanco@gmail.com"
  1330. },
  1331. {
  1332. "name": "Roman Borschel",
  1333. "email": "roman@code-factory.org"
  1334. },
  1335. {
  1336. "name": "Benjamin Eberlei",
  1337. "email": "kontakt@beberlei.de"
  1338. },
  1339. {
  1340. "name": "Jonathan Wage",
  1341. "email": "jonwage@gmail.com"
  1342. },
  1343. {
  1344. "name": "Johannes Schmitt",
  1345. "email": "schmittjoh@gmail.com"
  1346. }
  1347. ],
  1348. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  1349. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  1350. "keywords": [
  1351. "abstraction",
  1352. "apcu",
  1353. "cache",
  1354. "caching",
  1355. "couchdb",
  1356. "memcached",
  1357. "php",
  1358. "redis",
  1359. "xcache"
  1360. ],
  1361. "support": {
  1362. "issues": "https://github.com/doctrine/cache/issues",
  1363. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  1364. },
  1365. "funding": [
  1366. {
  1367. "url": "https://www.doctrine-project.org/sponsorship.html",
  1368. "type": "custom"
  1369. },
  1370. {
  1371. "url": "https://www.patreon.com/phpdoctrine",
  1372. "type": "patreon"
  1373. },
  1374. {
  1375. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  1376. "type": "tidelift"
  1377. }
  1378. ],
  1379. "time": "2022-05-20T20:07:39+00:00"
  1380. },
  1381. {
  1382. "name": "doctrine/dbal",
  1383. "version": "3.8.7",
  1384. "source": {
  1385. "type": "git",
  1386. "url": "https://github.com/doctrine/dbal.git",
  1387. "reference": "2093d670ca17f634f3c095ec10a20687eccebd99"
  1388. },
  1389. "dist": {
  1390. "type": "zip",
  1391. "url": "https://api.github.com/repos/doctrine/dbal/zipball/2093d670ca17f634f3c095ec10a20687eccebd99",
  1392. "reference": "2093d670ca17f634f3c095ec10a20687eccebd99",
  1393. "shasum": ""
  1394. },
  1395. "require": {
  1396. "composer-runtime-api": "^2",
  1397. "doctrine/cache": "^1.11|^2.0",
  1398. "doctrine/deprecations": "^0.5.3|^1",
  1399. "doctrine/event-manager": "^1|^2",
  1400. "php": "^7.4 || ^8.0",
  1401. "psr/cache": "^1|^2|^3",
  1402. "psr/log": "^1|^2|^3"
  1403. },
  1404. "require-dev": {
  1405. "doctrine/coding-standard": "12.0.0",
  1406. "fig/log-test": "^1",
  1407. "jetbrains/phpstorm-stubs": "2023.1",
  1408. "phpstan/phpstan": "1.11.7",
  1409. "phpstan/phpstan-strict-rules": "^1.6",
  1410. "phpunit/phpunit": "9.6.20",
  1411. "psalm/plugin-phpunit": "0.18.4",
  1412. "slevomat/coding-standard": "8.13.1",
  1413. "squizlabs/php_codesniffer": "3.10.2",
  1414. "symfony/cache": "^5.4|^6.0|^7.0",
  1415. "symfony/console": "^4.4|^5.4|^6.0|^7.0",
  1416. "vimeo/psalm": "4.30.0"
  1417. },
  1418. "suggest": {
  1419. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1420. },
  1421. "bin": [
  1422. "bin/doctrine-dbal"
  1423. ],
  1424. "type": "library",
  1425. "autoload": {
  1426. "psr-4": {
  1427. "Doctrine\\DBAL\\": "src"
  1428. }
  1429. },
  1430. "notification-url": "https://packagist.org/downloads/",
  1431. "license": [
  1432. "MIT"
  1433. ],
  1434. "authors": [
  1435. {
  1436. "name": "Guilherme Blanco",
  1437. "email": "guilhermeblanco@gmail.com"
  1438. },
  1439. {
  1440. "name": "Roman Borschel",
  1441. "email": "roman@code-factory.org"
  1442. },
  1443. {
  1444. "name": "Benjamin Eberlei",
  1445. "email": "kontakt@beberlei.de"
  1446. },
  1447. {
  1448. "name": "Jonathan Wage",
  1449. "email": "jonwage@gmail.com"
  1450. }
  1451. ],
  1452. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1453. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1454. "keywords": [
  1455. "abstraction",
  1456. "database",
  1457. "db2",
  1458. "dbal",
  1459. "mariadb",
  1460. "mssql",
  1461. "mysql",
  1462. "oci8",
  1463. "oracle",
  1464. "pdo",
  1465. "pgsql",
  1466. "postgresql",
  1467. "queryobject",
  1468. "sasql",
  1469. "sql",
  1470. "sqlite",
  1471. "sqlserver",
  1472. "sqlsrv"
  1473. ],
  1474. "support": {
  1475. "issues": "https://github.com/doctrine/dbal/issues",
  1476. "source": "https://github.com/doctrine/dbal/tree/3.8.7"
  1477. },
  1478. "funding": [
  1479. {
  1480. "url": "https://www.doctrine-project.org/sponsorship.html",
  1481. "type": "custom"
  1482. },
  1483. {
  1484. "url": "https://www.patreon.com/phpdoctrine",
  1485. "type": "patreon"
  1486. },
  1487. {
  1488. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1489. "type": "tidelift"
  1490. }
  1491. ],
  1492. "time": "2024-08-07T11:57:25+00:00"
  1493. },
  1494. {
  1495. "name": "doctrine/deprecations",
  1496. "version": "1.1.3",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/doctrine/deprecations.git",
  1500. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1505. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1506. "shasum": ""
  1507. },
  1508. "require": {
  1509. "php": "^7.1 || ^8.0"
  1510. },
  1511. "require-dev": {
  1512. "doctrine/coding-standard": "^9",
  1513. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1514. "phpstan/phpstan-phpunit": "^1.0",
  1515. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1516. "psalm/plugin-phpunit": "0.18.4",
  1517. "psr/log": "^1 || ^2 || ^3",
  1518. "vimeo/psalm": "4.30.0 || 5.12.0"
  1519. },
  1520. "suggest": {
  1521. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1522. },
  1523. "type": "library",
  1524. "autoload": {
  1525. "psr-4": {
  1526. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1527. }
  1528. },
  1529. "notification-url": "https://packagist.org/downloads/",
  1530. "license": [
  1531. "MIT"
  1532. ],
  1533. "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.",
  1534. "homepage": "https://www.doctrine-project.org/",
  1535. "support": {
  1536. "issues": "https://github.com/doctrine/deprecations/issues",
  1537. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1538. },
  1539. "time": "2024-01-30T19:34:25+00:00"
  1540. },
  1541. {
  1542. "name": "doctrine/event-manager",
  1543. "version": "2.0.1",
  1544. "source": {
  1545. "type": "git",
  1546. "url": "https://github.com/doctrine/event-manager.git",
  1547. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  1548. },
  1549. "dist": {
  1550. "type": "zip",
  1551. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1552. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  1553. "shasum": ""
  1554. },
  1555. "require": {
  1556. "php": "^8.1"
  1557. },
  1558. "conflict": {
  1559. "doctrine/common": "<2.9"
  1560. },
  1561. "require-dev": {
  1562. "doctrine/coding-standard": "^12",
  1563. "phpstan/phpstan": "^1.8.8",
  1564. "phpunit/phpunit": "^10.5",
  1565. "vimeo/psalm": "^5.24"
  1566. },
  1567. "type": "library",
  1568. "autoload": {
  1569. "psr-4": {
  1570. "Doctrine\\Common\\": "src"
  1571. }
  1572. },
  1573. "notification-url": "https://packagist.org/downloads/",
  1574. "license": [
  1575. "MIT"
  1576. ],
  1577. "authors": [
  1578. {
  1579. "name": "Guilherme Blanco",
  1580. "email": "guilhermeblanco@gmail.com"
  1581. },
  1582. {
  1583. "name": "Roman Borschel",
  1584. "email": "roman@code-factory.org"
  1585. },
  1586. {
  1587. "name": "Benjamin Eberlei",
  1588. "email": "kontakt@beberlei.de"
  1589. },
  1590. {
  1591. "name": "Jonathan Wage",
  1592. "email": "jonwage@gmail.com"
  1593. },
  1594. {
  1595. "name": "Johannes Schmitt",
  1596. "email": "schmittjoh@gmail.com"
  1597. },
  1598. {
  1599. "name": "Marco Pivetta",
  1600. "email": "ocramius@gmail.com"
  1601. }
  1602. ],
  1603. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1604. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1605. "keywords": [
  1606. "event",
  1607. "event dispatcher",
  1608. "event manager",
  1609. "event system",
  1610. "events"
  1611. ],
  1612. "support": {
  1613. "issues": "https://github.com/doctrine/event-manager/issues",
  1614. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  1615. },
  1616. "funding": [
  1617. {
  1618. "url": "https://www.doctrine-project.org/sponsorship.html",
  1619. "type": "custom"
  1620. },
  1621. {
  1622. "url": "https://www.patreon.com/phpdoctrine",
  1623. "type": "patreon"
  1624. },
  1625. {
  1626. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  1627. "type": "tidelift"
  1628. }
  1629. ],
  1630. "time": "2024-05-22T20:47:39+00:00"
  1631. },
  1632. {
  1633. "name": "doctrine/inflector",
  1634. "version": "2.0.10",
  1635. "source": {
  1636. "type": "git",
  1637. "url": "https://github.com/doctrine/inflector.git",
  1638. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1639. },
  1640. "dist": {
  1641. "type": "zip",
  1642. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1643. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1644. "shasum": ""
  1645. },
  1646. "require": {
  1647. "php": "^7.2 || ^8.0"
  1648. },
  1649. "require-dev": {
  1650. "doctrine/coding-standard": "^11.0",
  1651. "phpstan/phpstan": "^1.8",
  1652. "phpstan/phpstan-phpunit": "^1.1",
  1653. "phpstan/phpstan-strict-rules": "^1.3",
  1654. "phpunit/phpunit": "^8.5 || ^9.5",
  1655. "vimeo/psalm": "^4.25 || ^5.4"
  1656. },
  1657. "type": "library",
  1658. "autoload": {
  1659. "psr-4": {
  1660. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1661. }
  1662. },
  1663. "notification-url": "https://packagist.org/downloads/",
  1664. "license": [
  1665. "MIT"
  1666. ],
  1667. "authors": [
  1668. {
  1669. "name": "Guilherme Blanco",
  1670. "email": "guilhermeblanco@gmail.com"
  1671. },
  1672. {
  1673. "name": "Roman Borschel",
  1674. "email": "roman@code-factory.org"
  1675. },
  1676. {
  1677. "name": "Benjamin Eberlei",
  1678. "email": "kontakt@beberlei.de"
  1679. },
  1680. {
  1681. "name": "Jonathan Wage",
  1682. "email": "jonwage@gmail.com"
  1683. },
  1684. {
  1685. "name": "Johannes Schmitt",
  1686. "email": "schmittjoh@gmail.com"
  1687. }
  1688. ],
  1689. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1690. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1691. "keywords": [
  1692. "inflection",
  1693. "inflector",
  1694. "lowercase",
  1695. "manipulation",
  1696. "php",
  1697. "plural",
  1698. "singular",
  1699. "strings",
  1700. "uppercase",
  1701. "words"
  1702. ],
  1703. "support": {
  1704. "issues": "https://github.com/doctrine/inflector/issues",
  1705. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1706. },
  1707. "funding": [
  1708. {
  1709. "url": "https://www.doctrine-project.org/sponsorship.html",
  1710. "type": "custom"
  1711. },
  1712. {
  1713. "url": "https://www.patreon.com/phpdoctrine",
  1714. "type": "patreon"
  1715. },
  1716. {
  1717. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1718. "type": "tidelift"
  1719. }
  1720. ],
  1721. "time": "2024-02-18T20:23:39+00:00"
  1722. },
  1723. {
  1724. "name": "doctrine/lexer",
  1725. "version": "3.0.1",
  1726. "source": {
  1727. "type": "git",
  1728. "url": "https://github.com/doctrine/lexer.git",
  1729. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1730. },
  1731. "dist": {
  1732. "type": "zip",
  1733. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1734. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1735. "shasum": ""
  1736. },
  1737. "require": {
  1738. "php": "^8.1"
  1739. },
  1740. "require-dev": {
  1741. "doctrine/coding-standard": "^12",
  1742. "phpstan/phpstan": "^1.10",
  1743. "phpunit/phpunit": "^10.5",
  1744. "psalm/plugin-phpunit": "^0.18.3",
  1745. "vimeo/psalm": "^5.21"
  1746. },
  1747. "type": "library",
  1748. "autoload": {
  1749. "psr-4": {
  1750. "Doctrine\\Common\\Lexer\\": "src"
  1751. }
  1752. },
  1753. "notification-url": "https://packagist.org/downloads/",
  1754. "license": [
  1755. "MIT"
  1756. ],
  1757. "authors": [
  1758. {
  1759. "name": "Guilherme Blanco",
  1760. "email": "guilhermeblanco@gmail.com"
  1761. },
  1762. {
  1763. "name": "Roman Borschel",
  1764. "email": "roman@code-factory.org"
  1765. },
  1766. {
  1767. "name": "Johannes Schmitt",
  1768. "email": "schmittjoh@gmail.com"
  1769. }
  1770. ],
  1771. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1772. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1773. "keywords": [
  1774. "annotations",
  1775. "docblock",
  1776. "lexer",
  1777. "parser",
  1778. "php"
  1779. ],
  1780. "support": {
  1781. "issues": "https://github.com/doctrine/lexer/issues",
  1782. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1783. },
  1784. "funding": [
  1785. {
  1786. "url": "https://www.doctrine-project.org/sponsorship.html",
  1787. "type": "custom"
  1788. },
  1789. {
  1790. "url": "https://www.patreon.com/phpdoctrine",
  1791. "type": "patreon"
  1792. },
  1793. {
  1794. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1795. "type": "tidelift"
  1796. }
  1797. ],
  1798. "time": "2024-02-05T11:56:58+00:00"
  1799. },
  1800. {
  1801. "name": "dragonmantank/cron-expression",
  1802. "version": "v3.3.3",
  1803. "source": {
  1804. "type": "git",
  1805. "url": "https://github.com/dragonmantank/cron-expression.git",
  1806. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a"
  1807. },
  1808. "dist": {
  1809. "type": "zip",
  1810. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1811. "reference": "adfb1f505deb6384dc8b39804c5065dd3c8c8c0a",
  1812. "shasum": ""
  1813. },
  1814. "require": {
  1815. "php": "^7.2|^8.0",
  1816. "webmozart/assert": "^1.0"
  1817. },
  1818. "replace": {
  1819. "mtdowling/cron-expression": "^1.0"
  1820. },
  1821. "require-dev": {
  1822. "phpstan/extension-installer": "^1.0",
  1823. "phpstan/phpstan": "^1.0",
  1824. "phpstan/phpstan-webmozart-assert": "^1.0",
  1825. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1826. },
  1827. "type": "library",
  1828. "autoload": {
  1829. "psr-4": {
  1830. "Cron\\": "src/Cron/"
  1831. }
  1832. },
  1833. "notification-url": "https://packagist.org/downloads/",
  1834. "license": [
  1835. "MIT"
  1836. ],
  1837. "authors": [
  1838. {
  1839. "name": "Chris Tankersley",
  1840. "email": "chris@ctankersley.com",
  1841. "homepage": "https://github.com/dragonmantank"
  1842. }
  1843. ],
  1844. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1845. "keywords": [
  1846. "cron",
  1847. "schedule"
  1848. ],
  1849. "support": {
  1850. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1851. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.3.3"
  1852. },
  1853. "funding": [
  1854. {
  1855. "url": "https://github.com/dragonmantank",
  1856. "type": "github"
  1857. }
  1858. ],
  1859. "time": "2023-08-10T19:36:49+00:00"
  1860. },
  1861. {
  1862. "name": "egulias/email-validator",
  1863. "version": "4.0.2",
  1864. "source": {
  1865. "type": "git",
  1866. "url": "https://github.com/egulias/EmailValidator.git",
  1867. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1868. },
  1869. "dist": {
  1870. "type": "zip",
  1871. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1872. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1873. "shasum": ""
  1874. },
  1875. "require": {
  1876. "doctrine/lexer": "^2.0 || ^3.0",
  1877. "php": ">=8.1",
  1878. "symfony/polyfill-intl-idn": "^1.26"
  1879. },
  1880. "require-dev": {
  1881. "phpunit/phpunit": "^10.2",
  1882. "vimeo/psalm": "^5.12"
  1883. },
  1884. "suggest": {
  1885. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1886. },
  1887. "type": "library",
  1888. "extra": {
  1889. "branch-alias": {
  1890. "dev-master": "4.0.x-dev"
  1891. }
  1892. },
  1893. "autoload": {
  1894. "psr-4": {
  1895. "Egulias\\EmailValidator\\": "src"
  1896. }
  1897. },
  1898. "notification-url": "https://packagist.org/downloads/",
  1899. "license": [
  1900. "MIT"
  1901. ],
  1902. "authors": [
  1903. {
  1904. "name": "Eduardo Gulias Davis"
  1905. }
  1906. ],
  1907. "description": "A library for validating emails against several RFCs",
  1908. "homepage": "https://github.com/egulias/EmailValidator",
  1909. "keywords": [
  1910. "email",
  1911. "emailvalidation",
  1912. "emailvalidator",
  1913. "validation",
  1914. "validator"
  1915. ],
  1916. "support": {
  1917. "issues": "https://github.com/egulias/EmailValidator/issues",
  1918. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1919. },
  1920. "funding": [
  1921. {
  1922. "url": "https://github.com/egulias",
  1923. "type": "github"
  1924. }
  1925. ],
  1926. "time": "2023-10-06T06:47:41+00:00"
  1927. },
  1928. {
  1929. "name": "filament/actions",
  1930. "version": "v3.2.97",
  1931. "source": {
  1932. "type": "git",
  1933. "url": "https://github.com/filamentphp/actions.git",
  1934. "reference": "aff18fda397dbf3e9f449f9a9360f3359b154c0e"
  1935. },
  1936. "dist": {
  1937. "type": "zip",
  1938. "url": "https://api.github.com/repos/filamentphp/actions/zipball/aff18fda397dbf3e9f449f9a9360f3359b154c0e",
  1939. "reference": "aff18fda397dbf3e9f449f9a9360f3359b154c0e",
  1940. "shasum": ""
  1941. },
  1942. "require": {
  1943. "anourvalar/eloquent-serialize": "^1.2",
  1944. "filament/forms": "self.version",
  1945. "filament/infolists": "self.version",
  1946. "filament/notifications": "self.version",
  1947. "filament/support": "self.version",
  1948. "illuminate/contracts": "^10.45|^11.0",
  1949. "illuminate/database": "^10.45|^11.0",
  1950. "illuminate/support": "^10.45|^11.0",
  1951. "league/csv": "^9.14",
  1952. "openspout/openspout": "^4.23",
  1953. "php": "^8.1",
  1954. "spatie/laravel-package-tools": "^1.9"
  1955. },
  1956. "type": "library",
  1957. "extra": {
  1958. "laravel": {
  1959. "providers": [
  1960. "Filament\\Actions\\ActionsServiceProvider"
  1961. ]
  1962. }
  1963. },
  1964. "autoload": {
  1965. "psr-4": {
  1966. "Filament\\Actions\\": "src"
  1967. }
  1968. },
  1969. "notification-url": "https://packagist.org/downloads/",
  1970. "license": [
  1971. "MIT"
  1972. ],
  1973. "description": "Easily add beautiful action modals to any Livewire component.",
  1974. "homepage": "https://github.com/filamentphp/filament",
  1975. "support": {
  1976. "issues": "https://github.com/filamentphp/filament/issues",
  1977. "source": "https://github.com/filamentphp/filament"
  1978. },
  1979. "time": "2024-07-31T11:53:04+00:00"
  1980. },
  1981. {
  1982. "name": "filament/filament",
  1983. "version": "v3.2.97",
  1984. "source": {
  1985. "type": "git",
  1986. "url": "https://github.com/filamentphp/panels.git",
  1987. "reference": "9e0b750546a51fdbc67b1232f2399385587dcc9a"
  1988. },
  1989. "dist": {
  1990. "type": "zip",
  1991. "url": "https://api.github.com/repos/filamentphp/panels/zipball/9e0b750546a51fdbc67b1232f2399385587dcc9a",
  1992. "reference": "9e0b750546a51fdbc67b1232f2399385587dcc9a",
  1993. "shasum": ""
  1994. },
  1995. "require": {
  1996. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  1997. "filament/actions": "self.version",
  1998. "filament/forms": "self.version",
  1999. "filament/infolists": "self.version",
  2000. "filament/notifications": "self.version",
  2001. "filament/support": "self.version",
  2002. "filament/tables": "self.version",
  2003. "filament/widgets": "self.version",
  2004. "illuminate/auth": "^10.45|^11.0",
  2005. "illuminate/console": "^10.45|^11.0",
  2006. "illuminate/contracts": "^10.45|^11.0",
  2007. "illuminate/cookie": "^10.45|^11.0",
  2008. "illuminate/database": "^10.45|^11.0",
  2009. "illuminate/http": "^10.45|^11.0",
  2010. "illuminate/routing": "^10.45|^11.0",
  2011. "illuminate/session": "^10.45|^11.0",
  2012. "illuminate/support": "^10.45|^11.0",
  2013. "illuminate/view": "^10.45|^11.0",
  2014. "php": "^8.1",
  2015. "spatie/laravel-package-tools": "^1.9"
  2016. },
  2017. "type": "library",
  2018. "extra": {
  2019. "laravel": {
  2020. "providers": [
  2021. "Filament\\FilamentServiceProvider"
  2022. ]
  2023. }
  2024. },
  2025. "autoload": {
  2026. "files": [
  2027. "src/global_helpers.php",
  2028. "src/helpers.php"
  2029. ],
  2030. "psr-4": {
  2031. "Filament\\": "src"
  2032. }
  2033. },
  2034. "notification-url": "https://packagist.org/downloads/",
  2035. "license": [
  2036. "MIT"
  2037. ],
  2038. "description": "A collection of full-stack components for accelerated Laravel app development.",
  2039. "homepage": "https://github.com/filamentphp/filament",
  2040. "support": {
  2041. "issues": "https://github.com/filamentphp/filament/issues",
  2042. "source": "https://github.com/filamentphp/filament"
  2043. },
  2044. "time": "2024-07-31T11:53:12+00:00"
  2045. },
  2046. {
  2047. "name": "filament/forms",
  2048. "version": "v3.2.97",
  2049. "source": {
  2050. "type": "git",
  2051. "url": "https://github.com/filamentphp/forms.git",
  2052. "reference": "d679d30ae1c345740920e45b0334b5eacc76f7aa"
  2053. },
  2054. "dist": {
  2055. "type": "zip",
  2056. "url": "https://api.github.com/repos/filamentphp/forms/zipball/d679d30ae1c345740920e45b0334b5eacc76f7aa",
  2057. "reference": "d679d30ae1c345740920e45b0334b5eacc76f7aa",
  2058. "shasum": ""
  2059. },
  2060. "require": {
  2061. "danharrin/date-format-converter": "^0.3",
  2062. "filament/actions": "self.version",
  2063. "filament/support": "self.version",
  2064. "illuminate/console": "^10.45|^11.0",
  2065. "illuminate/contracts": "^10.45|^11.0",
  2066. "illuminate/database": "^10.45|^11.0",
  2067. "illuminate/filesystem": "^10.45|^11.0",
  2068. "illuminate/support": "^10.45|^11.0",
  2069. "illuminate/validation": "^10.45|^11.0",
  2070. "illuminate/view": "^10.45|^11.0",
  2071. "php": "^8.1",
  2072. "spatie/laravel-package-tools": "^1.9"
  2073. },
  2074. "type": "library",
  2075. "extra": {
  2076. "laravel": {
  2077. "providers": [
  2078. "Filament\\Forms\\FormsServiceProvider"
  2079. ]
  2080. }
  2081. },
  2082. "autoload": {
  2083. "files": [
  2084. "src/helpers.php"
  2085. ],
  2086. "psr-4": {
  2087. "Filament\\Forms\\": "src"
  2088. }
  2089. },
  2090. "notification-url": "https://packagist.org/downloads/",
  2091. "license": [
  2092. "MIT"
  2093. ],
  2094. "description": "Easily add beautiful forms to any Livewire component.",
  2095. "homepage": "https://github.com/filamentphp/filament",
  2096. "support": {
  2097. "issues": "https://github.com/filamentphp/filament/issues",
  2098. "source": "https://github.com/filamentphp/filament"
  2099. },
  2100. "time": "2024-07-31T11:53:08+00:00"
  2101. },
  2102. {
  2103. "name": "filament/infolists",
  2104. "version": "v3.2.97",
  2105. "source": {
  2106. "type": "git",
  2107. "url": "https://github.com/filamentphp/infolists.git",
  2108. "reference": "af2266e0cf9d26e88ea6153d608f11aa9cebb59e"
  2109. },
  2110. "dist": {
  2111. "type": "zip",
  2112. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/af2266e0cf9d26e88ea6153d608f11aa9cebb59e",
  2113. "reference": "af2266e0cf9d26e88ea6153d608f11aa9cebb59e",
  2114. "shasum": ""
  2115. },
  2116. "require": {
  2117. "filament/actions": "self.version",
  2118. "filament/support": "self.version",
  2119. "illuminate/console": "^10.45|^11.0",
  2120. "illuminate/contracts": "^10.45|^11.0",
  2121. "illuminate/database": "^10.45|^11.0",
  2122. "illuminate/filesystem": "^10.45|^11.0",
  2123. "illuminate/support": "^10.45|^11.0",
  2124. "illuminate/view": "^10.45|^11.0",
  2125. "php": "^8.1",
  2126. "spatie/laravel-package-tools": "^1.9"
  2127. },
  2128. "type": "library",
  2129. "extra": {
  2130. "laravel": {
  2131. "providers": [
  2132. "Filament\\Infolists\\InfolistsServiceProvider"
  2133. ]
  2134. }
  2135. },
  2136. "autoload": {
  2137. "psr-4": {
  2138. "Filament\\Infolists\\": "src"
  2139. }
  2140. },
  2141. "notification-url": "https://packagist.org/downloads/",
  2142. "license": [
  2143. "MIT"
  2144. ],
  2145. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  2146. "homepage": "https://github.com/filamentphp/filament",
  2147. "support": {
  2148. "issues": "https://github.com/filamentphp/filament/issues",
  2149. "source": "https://github.com/filamentphp/filament"
  2150. },
  2151. "time": "2024-07-31T11:53:07+00:00"
  2152. },
  2153. {
  2154. "name": "filament/notifications",
  2155. "version": "v3.2.97",
  2156. "source": {
  2157. "type": "git",
  2158. "url": "https://github.com/filamentphp/notifications.git",
  2159. "reference": "03ea56e0729c98c65831ab0215285a7cb1c4117f"
  2160. },
  2161. "dist": {
  2162. "type": "zip",
  2163. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/03ea56e0729c98c65831ab0215285a7cb1c4117f",
  2164. "reference": "03ea56e0729c98c65831ab0215285a7cb1c4117f",
  2165. "shasum": ""
  2166. },
  2167. "require": {
  2168. "filament/actions": "self.version",
  2169. "filament/support": "self.version",
  2170. "illuminate/contracts": "^10.45|^11.0",
  2171. "illuminate/filesystem": "^10.45|^11.0",
  2172. "illuminate/notifications": "^10.45|^11.0",
  2173. "illuminate/support": "^10.45|^11.0",
  2174. "php": "^8.1",
  2175. "spatie/laravel-package-tools": "^1.9"
  2176. },
  2177. "type": "library",
  2178. "extra": {
  2179. "laravel": {
  2180. "providers": [
  2181. "Filament\\Notifications\\NotificationsServiceProvider"
  2182. ]
  2183. }
  2184. },
  2185. "autoload": {
  2186. "files": [
  2187. "src/Testing/Autoload.php"
  2188. ],
  2189. "psr-4": {
  2190. "Filament\\Notifications\\": "src"
  2191. }
  2192. },
  2193. "notification-url": "https://packagist.org/downloads/",
  2194. "license": [
  2195. "MIT"
  2196. ],
  2197. "description": "Easily add beautiful notifications to any Livewire app.",
  2198. "homepage": "https://github.com/filamentphp/filament",
  2199. "support": {
  2200. "issues": "https://github.com/filamentphp/filament/issues",
  2201. "source": "https://github.com/filamentphp/filament"
  2202. },
  2203. "time": "2024-07-31T11:53:11+00:00"
  2204. },
  2205. {
  2206. "name": "filament/support",
  2207. "version": "v3.2.97",
  2208. "source": {
  2209. "type": "git",
  2210. "url": "https://github.com/filamentphp/support.git",
  2211. "reference": "94c5349b8fed252499314bd2149fadf96ddaf6d6"
  2212. },
  2213. "dist": {
  2214. "type": "zip",
  2215. "url": "https://api.github.com/repos/filamentphp/support/zipball/94c5349b8fed252499314bd2149fadf96ddaf6d6",
  2216. "reference": "94c5349b8fed252499314bd2149fadf96ddaf6d6",
  2217. "shasum": ""
  2218. },
  2219. "require": {
  2220. "blade-ui-kit/blade-heroicons": "^2.2.1",
  2221. "doctrine/dbal": "^3.2",
  2222. "ext-intl": "*",
  2223. "illuminate/contracts": "^10.45|^11.0",
  2224. "illuminate/support": "^10.45|^11.0",
  2225. "illuminate/view": "^10.45|^11.0",
  2226. "livewire/livewire": "^3.4.10",
  2227. "php": "^8.1",
  2228. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  2229. "spatie/color": "^1.5",
  2230. "spatie/invade": "^1.0|^2.0",
  2231. "spatie/laravel-package-tools": "^1.9",
  2232. "symfony/console": "^6.0|^7.0",
  2233. "symfony/html-sanitizer": "^6.1|^7.0"
  2234. },
  2235. "type": "library",
  2236. "extra": {
  2237. "laravel": {
  2238. "providers": [
  2239. "Filament\\Support\\SupportServiceProvider"
  2240. ]
  2241. }
  2242. },
  2243. "autoload": {
  2244. "files": [
  2245. "src/helpers.php"
  2246. ],
  2247. "psr-4": {
  2248. "Filament\\Support\\": "src"
  2249. }
  2250. },
  2251. "notification-url": "https://packagist.org/downloads/",
  2252. "license": [
  2253. "MIT"
  2254. ],
  2255. "description": "Core helper methods and foundation code for all Filament packages.",
  2256. "homepage": "https://github.com/filamentphp/filament",
  2257. "support": {
  2258. "issues": "https://github.com/filamentphp/filament/issues",
  2259. "source": "https://github.com/filamentphp/filament"
  2260. },
  2261. "time": "2024-07-31T11:53:25+00:00"
  2262. },
  2263. {
  2264. "name": "filament/tables",
  2265. "version": "v3.2.97",
  2266. "source": {
  2267. "type": "git",
  2268. "url": "https://github.com/filamentphp/tables.git",
  2269. "reference": "0e6e96bde5337b26944ce3a657ae6755bef82d1e"
  2270. },
  2271. "dist": {
  2272. "type": "zip",
  2273. "url": "https://api.github.com/repos/filamentphp/tables/zipball/0e6e96bde5337b26944ce3a657ae6755bef82d1e",
  2274. "reference": "0e6e96bde5337b26944ce3a657ae6755bef82d1e",
  2275. "shasum": ""
  2276. },
  2277. "require": {
  2278. "filament/actions": "self.version",
  2279. "filament/forms": "self.version",
  2280. "filament/support": "self.version",
  2281. "illuminate/console": "^10.45|^11.0",
  2282. "illuminate/contracts": "^10.45|^11.0",
  2283. "illuminate/database": "^10.45|^11.0",
  2284. "illuminate/filesystem": "^10.45|^11.0",
  2285. "illuminate/support": "^10.45|^11.0",
  2286. "illuminate/view": "^10.45|^11.0",
  2287. "kirschbaum-development/eloquent-power-joins": "^3.0",
  2288. "php": "^8.1",
  2289. "spatie/laravel-package-tools": "^1.9"
  2290. },
  2291. "type": "library",
  2292. "extra": {
  2293. "laravel": {
  2294. "providers": [
  2295. "Filament\\Tables\\TablesServiceProvider"
  2296. ]
  2297. }
  2298. },
  2299. "autoload": {
  2300. "psr-4": {
  2301. "Filament\\Tables\\": "src"
  2302. }
  2303. },
  2304. "notification-url": "https://packagist.org/downloads/",
  2305. "license": [
  2306. "MIT"
  2307. ],
  2308. "description": "Easily add beautiful tables to any Livewire component.",
  2309. "homepage": "https://github.com/filamentphp/filament",
  2310. "support": {
  2311. "issues": "https://github.com/filamentphp/filament/issues",
  2312. "source": "https://github.com/filamentphp/filament"
  2313. },
  2314. "time": "2024-07-31T11:53:24+00:00"
  2315. },
  2316. {
  2317. "name": "filament/widgets",
  2318. "version": "v3.2.97",
  2319. "source": {
  2320. "type": "git",
  2321. "url": "https://github.com/filamentphp/widgets.git",
  2322. "reference": "909fc82bae2cf41d70b3cd7dda8982245b2ea723"
  2323. },
  2324. "dist": {
  2325. "type": "zip",
  2326. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/909fc82bae2cf41d70b3cd7dda8982245b2ea723",
  2327. "reference": "909fc82bae2cf41d70b3cd7dda8982245b2ea723",
  2328. "shasum": ""
  2329. },
  2330. "require": {
  2331. "filament/support": "self.version",
  2332. "php": "^8.1",
  2333. "spatie/laravel-package-tools": "^1.9"
  2334. },
  2335. "type": "library",
  2336. "extra": {
  2337. "laravel": {
  2338. "providers": [
  2339. "Filament\\Widgets\\WidgetsServiceProvider"
  2340. ]
  2341. }
  2342. },
  2343. "autoload": {
  2344. "psr-4": {
  2345. "Filament\\Widgets\\": "src"
  2346. }
  2347. },
  2348. "notification-url": "https://packagist.org/downloads/",
  2349. "license": [
  2350. "MIT"
  2351. ],
  2352. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2353. "homepage": "https://github.com/filamentphp/filament",
  2354. "support": {
  2355. "issues": "https://github.com/filamentphp/filament/issues",
  2356. "source": "https://github.com/filamentphp/filament"
  2357. },
  2358. "time": "2024-07-31T11:53:30+00:00"
  2359. },
  2360. {
  2361. "name": "firebase/php-jwt",
  2362. "version": "v6.10.1",
  2363. "source": {
  2364. "type": "git",
  2365. "url": "https://github.com/firebase/php-jwt.git",
  2366. "reference": "500501c2ce893c824c801da135d02661199f60c5"
  2367. },
  2368. "dist": {
  2369. "type": "zip",
  2370. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/500501c2ce893c824c801da135d02661199f60c5",
  2371. "reference": "500501c2ce893c824c801da135d02661199f60c5",
  2372. "shasum": ""
  2373. },
  2374. "require": {
  2375. "php": "^8.0"
  2376. },
  2377. "require-dev": {
  2378. "guzzlehttp/guzzle": "^7.4",
  2379. "phpspec/prophecy-phpunit": "^2.0",
  2380. "phpunit/phpunit": "^9.5",
  2381. "psr/cache": "^2.0||^3.0",
  2382. "psr/http-client": "^1.0",
  2383. "psr/http-factory": "^1.0"
  2384. },
  2385. "suggest": {
  2386. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2387. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2388. },
  2389. "type": "library",
  2390. "autoload": {
  2391. "psr-4": {
  2392. "Firebase\\JWT\\": "src"
  2393. }
  2394. },
  2395. "notification-url": "https://packagist.org/downloads/",
  2396. "license": [
  2397. "BSD-3-Clause"
  2398. ],
  2399. "authors": [
  2400. {
  2401. "name": "Neuman Vong",
  2402. "email": "neuman+pear@twilio.com",
  2403. "role": "Developer"
  2404. },
  2405. {
  2406. "name": "Anant Narayanan",
  2407. "email": "anant@php.net",
  2408. "role": "Developer"
  2409. }
  2410. ],
  2411. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2412. "homepage": "https://github.com/firebase/php-jwt",
  2413. "keywords": [
  2414. "jwt",
  2415. "php"
  2416. ],
  2417. "support": {
  2418. "issues": "https://github.com/firebase/php-jwt/issues",
  2419. "source": "https://github.com/firebase/php-jwt/tree/v6.10.1"
  2420. },
  2421. "time": "2024-05-18T18:05:11+00:00"
  2422. },
  2423. {
  2424. "name": "fruitcake/php-cors",
  2425. "version": "v1.3.0",
  2426. "source": {
  2427. "type": "git",
  2428. "url": "https://github.com/fruitcake/php-cors.git",
  2429. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2430. },
  2431. "dist": {
  2432. "type": "zip",
  2433. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2434. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2435. "shasum": ""
  2436. },
  2437. "require": {
  2438. "php": "^7.4|^8.0",
  2439. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2440. },
  2441. "require-dev": {
  2442. "phpstan/phpstan": "^1.4",
  2443. "phpunit/phpunit": "^9",
  2444. "squizlabs/php_codesniffer": "^3.5"
  2445. },
  2446. "type": "library",
  2447. "extra": {
  2448. "branch-alias": {
  2449. "dev-master": "1.2-dev"
  2450. }
  2451. },
  2452. "autoload": {
  2453. "psr-4": {
  2454. "Fruitcake\\Cors\\": "src/"
  2455. }
  2456. },
  2457. "notification-url": "https://packagist.org/downloads/",
  2458. "license": [
  2459. "MIT"
  2460. ],
  2461. "authors": [
  2462. {
  2463. "name": "Fruitcake",
  2464. "homepage": "https://fruitcake.nl"
  2465. },
  2466. {
  2467. "name": "Barryvdh",
  2468. "email": "barryvdh@gmail.com"
  2469. }
  2470. ],
  2471. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2472. "homepage": "https://github.com/fruitcake/php-cors",
  2473. "keywords": [
  2474. "cors",
  2475. "laravel",
  2476. "symfony"
  2477. ],
  2478. "support": {
  2479. "issues": "https://github.com/fruitcake/php-cors/issues",
  2480. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2481. },
  2482. "funding": [
  2483. {
  2484. "url": "https://fruitcake.nl",
  2485. "type": "custom"
  2486. },
  2487. {
  2488. "url": "https://github.com/barryvdh",
  2489. "type": "github"
  2490. }
  2491. ],
  2492. "time": "2023-10-12T05:21:21+00:00"
  2493. },
  2494. {
  2495. "name": "graham-campbell/result-type",
  2496. "version": "v1.1.3",
  2497. "source": {
  2498. "type": "git",
  2499. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2500. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2501. },
  2502. "dist": {
  2503. "type": "zip",
  2504. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2505. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2506. "shasum": ""
  2507. },
  2508. "require": {
  2509. "php": "^7.2.5 || ^8.0",
  2510. "phpoption/phpoption": "^1.9.3"
  2511. },
  2512. "require-dev": {
  2513. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2514. },
  2515. "type": "library",
  2516. "autoload": {
  2517. "psr-4": {
  2518. "GrahamCampbell\\ResultType\\": "src/"
  2519. }
  2520. },
  2521. "notification-url": "https://packagist.org/downloads/",
  2522. "license": [
  2523. "MIT"
  2524. ],
  2525. "authors": [
  2526. {
  2527. "name": "Graham Campbell",
  2528. "email": "hello@gjcampbell.co.uk",
  2529. "homepage": "https://github.com/GrahamCampbell"
  2530. }
  2531. ],
  2532. "description": "An Implementation Of The Result Type",
  2533. "keywords": [
  2534. "Graham Campbell",
  2535. "GrahamCampbell",
  2536. "Result Type",
  2537. "Result-Type",
  2538. "result"
  2539. ],
  2540. "support": {
  2541. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2542. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2543. },
  2544. "funding": [
  2545. {
  2546. "url": "https://github.com/GrahamCampbell",
  2547. "type": "github"
  2548. },
  2549. {
  2550. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2551. "type": "tidelift"
  2552. }
  2553. ],
  2554. "time": "2024-07-20T21:45:45+00:00"
  2555. },
  2556. {
  2557. "name": "guava/filament-clusters",
  2558. "version": "1.4.0",
  2559. "source": {
  2560. "type": "git",
  2561. "url": "https://github.com/GuavaCZ/filament-clusters.git",
  2562. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694"
  2563. },
  2564. "dist": {
  2565. "type": "zip",
  2566. "url": "https://api.github.com/repos/GuavaCZ/filament-clusters/zipball/c4a2ad6342f630f494f5e923b65426d935d12694",
  2567. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694",
  2568. "shasum": ""
  2569. },
  2570. "require": {
  2571. "filament/filament": "^3.0",
  2572. "illuminate/contracts": "^10.0 | ^11.0",
  2573. "php": "^8.1",
  2574. "spatie/laravel-package-tools": "^1.14.0"
  2575. },
  2576. "require-dev": {
  2577. "laravel/pint": "^1.0",
  2578. "nunomaduro/collision": "^7.8",
  2579. "nunomaduro/larastan": "^2.0.1",
  2580. "orchestra/testbench": "^8.8",
  2581. "pestphp/pest": "^2.0",
  2582. "pestphp/pest-plugin-arch": "^2.0",
  2583. "pestphp/pest-plugin-laravel": "^2.0",
  2584. "phpstan/extension-installer": "^1.1",
  2585. "phpstan/phpstan-deprecation-rules": "^1.0",
  2586. "phpstan/phpstan-phpunit": "^1.0"
  2587. },
  2588. "type": "library",
  2589. "extra": {
  2590. "laravel": {
  2591. "providers": [
  2592. "Guava\\FilamentClusters\\FilamentClustersServiceProvider"
  2593. ]
  2594. }
  2595. },
  2596. "autoload": {
  2597. "psr-4": {
  2598. "Guava\\FilamentClusters\\": "src/"
  2599. }
  2600. },
  2601. "notification-url": "https://packagist.org/downloads/",
  2602. "license": [
  2603. "MIT"
  2604. ],
  2605. "authors": [
  2606. {
  2607. "name": "Lukas Frey",
  2608. "email": "lukas.frey@guava.cz",
  2609. "role": "Developer"
  2610. }
  2611. ],
  2612. "description": "Filament clusters allow you to cluster multiple fields into one visually.",
  2613. "homepage": "https://github.com/GuavaCZ/filament-clusters",
  2614. "keywords": [
  2615. "Guava",
  2616. "filament-clusters",
  2617. "laravel"
  2618. ],
  2619. "support": {
  2620. "issues": "https://github.com/GuavaCZ/filament-clusters/issues",
  2621. "source": "https://github.com/GuavaCZ/filament-clusters/tree/1.4.0"
  2622. },
  2623. "funding": [
  2624. {
  2625. "url": "https://github.com/GuavaCZ",
  2626. "type": "github"
  2627. }
  2628. ],
  2629. "time": "2024-05-31T09:31:08+00:00"
  2630. },
  2631. {
  2632. "name": "guzzlehttp/guzzle",
  2633. "version": "7.9.2",
  2634. "source": {
  2635. "type": "git",
  2636. "url": "https://github.com/guzzle/guzzle.git",
  2637. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  2638. },
  2639. "dist": {
  2640. "type": "zip",
  2641. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  2642. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  2643. "shasum": ""
  2644. },
  2645. "require": {
  2646. "ext-json": "*",
  2647. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2648. "guzzlehttp/psr7": "^2.7.0",
  2649. "php": "^7.2.5 || ^8.0",
  2650. "psr/http-client": "^1.0",
  2651. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2652. },
  2653. "provide": {
  2654. "psr/http-client-implementation": "1.0"
  2655. },
  2656. "require-dev": {
  2657. "bamarni/composer-bin-plugin": "^1.8.2",
  2658. "ext-curl": "*",
  2659. "guzzle/client-integration-tests": "3.0.2",
  2660. "php-http/message-factory": "^1.1",
  2661. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2662. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2663. },
  2664. "suggest": {
  2665. "ext-curl": "Required for CURL handler support",
  2666. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2667. "psr/log": "Required for using the Log middleware"
  2668. },
  2669. "type": "library",
  2670. "extra": {
  2671. "bamarni-bin": {
  2672. "bin-links": true,
  2673. "forward-command": false
  2674. }
  2675. },
  2676. "autoload": {
  2677. "files": [
  2678. "src/functions_include.php"
  2679. ],
  2680. "psr-4": {
  2681. "GuzzleHttp\\": "src/"
  2682. }
  2683. },
  2684. "notification-url": "https://packagist.org/downloads/",
  2685. "license": [
  2686. "MIT"
  2687. ],
  2688. "authors": [
  2689. {
  2690. "name": "Graham Campbell",
  2691. "email": "hello@gjcampbell.co.uk",
  2692. "homepage": "https://github.com/GrahamCampbell"
  2693. },
  2694. {
  2695. "name": "Michael Dowling",
  2696. "email": "mtdowling@gmail.com",
  2697. "homepage": "https://github.com/mtdowling"
  2698. },
  2699. {
  2700. "name": "Jeremy Lindblom",
  2701. "email": "jeremeamia@gmail.com",
  2702. "homepage": "https://github.com/jeremeamia"
  2703. },
  2704. {
  2705. "name": "George Mponos",
  2706. "email": "gmponos@gmail.com",
  2707. "homepage": "https://github.com/gmponos"
  2708. },
  2709. {
  2710. "name": "Tobias Nyholm",
  2711. "email": "tobias.nyholm@gmail.com",
  2712. "homepage": "https://github.com/Nyholm"
  2713. },
  2714. {
  2715. "name": "Márk Sági-Kazár",
  2716. "email": "mark.sagikazar@gmail.com",
  2717. "homepage": "https://github.com/sagikazarmark"
  2718. },
  2719. {
  2720. "name": "Tobias Schultze",
  2721. "email": "webmaster@tubo-world.de",
  2722. "homepage": "https://github.com/Tobion"
  2723. }
  2724. ],
  2725. "description": "Guzzle is a PHP HTTP client library",
  2726. "keywords": [
  2727. "client",
  2728. "curl",
  2729. "framework",
  2730. "http",
  2731. "http client",
  2732. "psr-18",
  2733. "psr-7",
  2734. "rest",
  2735. "web service"
  2736. ],
  2737. "support": {
  2738. "issues": "https://github.com/guzzle/guzzle/issues",
  2739. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  2740. },
  2741. "funding": [
  2742. {
  2743. "url": "https://github.com/GrahamCampbell",
  2744. "type": "github"
  2745. },
  2746. {
  2747. "url": "https://github.com/Nyholm",
  2748. "type": "github"
  2749. },
  2750. {
  2751. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2752. "type": "tidelift"
  2753. }
  2754. ],
  2755. "time": "2024-07-24T11:22:20+00:00"
  2756. },
  2757. {
  2758. "name": "guzzlehttp/promises",
  2759. "version": "2.0.3",
  2760. "source": {
  2761. "type": "git",
  2762. "url": "https://github.com/guzzle/promises.git",
  2763. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8"
  2764. },
  2765. "dist": {
  2766. "type": "zip",
  2767. "url": "https://api.github.com/repos/guzzle/promises/zipball/6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  2768. "reference": "6ea8dd08867a2a42619d65c3deb2c0fcbf81c8f8",
  2769. "shasum": ""
  2770. },
  2771. "require": {
  2772. "php": "^7.2.5 || ^8.0"
  2773. },
  2774. "require-dev": {
  2775. "bamarni/composer-bin-plugin": "^1.8.2",
  2776. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2777. },
  2778. "type": "library",
  2779. "extra": {
  2780. "bamarni-bin": {
  2781. "bin-links": true,
  2782. "forward-command": false
  2783. }
  2784. },
  2785. "autoload": {
  2786. "psr-4": {
  2787. "GuzzleHttp\\Promise\\": "src/"
  2788. }
  2789. },
  2790. "notification-url": "https://packagist.org/downloads/",
  2791. "license": [
  2792. "MIT"
  2793. ],
  2794. "authors": [
  2795. {
  2796. "name": "Graham Campbell",
  2797. "email": "hello@gjcampbell.co.uk",
  2798. "homepage": "https://github.com/GrahamCampbell"
  2799. },
  2800. {
  2801. "name": "Michael Dowling",
  2802. "email": "mtdowling@gmail.com",
  2803. "homepage": "https://github.com/mtdowling"
  2804. },
  2805. {
  2806. "name": "Tobias Nyholm",
  2807. "email": "tobias.nyholm@gmail.com",
  2808. "homepage": "https://github.com/Nyholm"
  2809. },
  2810. {
  2811. "name": "Tobias Schultze",
  2812. "email": "webmaster@tubo-world.de",
  2813. "homepage": "https://github.com/Tobion"
  2814. }
  2815. ],
  2816. "description": "Guzzle promises library",
  2817. "keywords": [
  2818. "promise"
  2819. ],
  2820. "support": {
  2821. "issues": "https://github.com/guzzle/promises/issues",
  2822. "source": "https://github.com/guzzle/promises/tree/2.0.3"
  2823. },
  2824. "funding": [
  2825. {
  2826. "url": "https://github.com/GrahamCampbell",
  2827. "type": "github"
  2828. },
  2829. {
  2830. "url": "https://github.com/Nyholm",
  2831. "type": "github"
  2832. },
  2833. {
  2834. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2835. "type": "tidelift"
  2836. }
  2837. ],
  2838. "time": "2024-07-18T10:29:17+00:00"
  2839. },
  2840. {
  2841. "name": "guzzlehttp/psr7",
  2842. "version": "2.7.0",
  2843. "source": {
  2844. "type": "git",
  2845. "url": "https://github.com/guzzle/psr7.git",
  2846. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  2847. },
  2848. "dist": {
  2849. "type": "zip",
  2850. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2851. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2852. "shasum": ""
  2853. },
  2854. "require": {
  2855. "php": "^7.2.5 || ^8.0",
  2856. "psr/http-factory": "^1.0",
  2857. "psr/http-message": "^1.1 || ^2.0",
  2858. "ralouphie/getallheaders": "^3.0"
  2859. },
  2860. "provide": {
  2861. "psr/http-factory-implementation": "1.0",
  2862. "psr/http-message-implementation": "1.0"
  2863. },
  2864. "require-dev": {
  2865. "bamarni/composer-bin-plugin": "^1.8.2",
  2866. "http-interop/http-factory-tests": "0.9.0",
  2867. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2868. },
  2869. "suggest": {
  2870. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2871. },
  2872. "type": "library",
  2873. "extra": {
  2874. "bamarni-bin": {
  2875. "bin-links": true,
  2876. "forward-command": false
  2877. }
  2878. },
  2879. "autoload": {
  2880. "psr-4": {
  2881. "GuzzleHttp\\Psr7\\": "src/"
  2882. }
  2883. },
  2884. "notification-url": "https://packagist.org/downloads/",
  2885. "license": [
  2886. "MIT"
  2887. ],
  2888. "authors": [
  2889. {
  2890. "name": "Graham Campbell",
  2891. "email": "hello@gjcampbell.co.uk",
  2892. "homepage": "https://github.com/GrahamCampbell"
  2893. },
  2894. {
  2895. "name": "Michael Dowling",
  2896. "email": "mtdowling@gmail.com",
  2897. "homepage": "https://github.com/mtdowling"
  2898. },
  2899. {
  2900. "name": "George Mponos",
  2901. "email": "gmponos@gmail.com",
  2902. "homepage": "https://github.com/gmponos"
  2903. },
  2904. {
  2905. "name": "Tobias Nyholm",
  2906. "email": "tobias.nyholm@gmail.com",
  2907. "homepage": "https://github.com/Nyholm"
  2908. },
  2909. {
  2910. "name": "Márk Sági-Kazár",
  2911. "email": "mark.sagikazar@gmail.com",
  2912. "homepage": "https://github.com/sagikazarmark"
  2913. },
  2914. {
  2915. "name": "Tobias Schultze",
  2916. "email": "webmaster@tubo-world.de",
  2917. "homepage": "https://github.com/Tobion"
  2918. },
  2919. {
  2920. "name": "Márk Sági-Kazár",
  2921. "email": "mark.sagikazar@gmail.com",
  2922. "homepage": "https://sagikazarmark.hu"
  2923. }
  2924. ],
  2925. "description": "PSR-7 message implementation that also provides common utility methods",
  2926. "keywords": [
  2927. "http",
  2928. "message",
  2929. "psr-7",
  2930. "request",
  2931. "response",
  2932. "stream",
  2933. "uri",
  2934. "url"
  2935. ],
  2936. "support": {
  2937. "issues": "https://github.com/guzzle/psr7/issues",
  2938. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  2939. },
  2940. "funding": [
  2941. {
  2942. "url": "https://github.com/GrahamCampbell",
  2943. "type": "github"
  2944. },
  2945. {
  2946. "url": "https://github.com/Nyholm",
  2947. "type": "github"
  2948. },
  2949. {
  2950. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2951. "type": "tidelift"
  2952. }
  2953. ],
  2954. "time": "2024-07-18T11:15:46+00:00"
  2955. },
  2956. {
  2957. "name": "guzzlehttp/uri-template",
  2958. "version": "v1.0.3",
  2959. "source": {
  2960. "type": "git",
  2961. "url": "https://github.com/guzzle/uri-template.git",
  2962. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  2963. },
  2964. "dist": {
  2965. "type": "zip",
  2966. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2967. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2968. "shasum": ""
  2969. },
  2970. "require": {
  2971. "php": "^7.2.5 || ^8.0",
  2972. "symfony/polyfill-php80": "^1.24"
  2973. },
  2974. "require-dev": {
  2975. "bamarni/composer-bin-plugin": "^1.8.2",
  2976. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2977. "uri-template/tests": "1.0.0"
  2978. },
  2979. "type": "library",
  2980. "extra": {
  2981. "bamarni-bin": {
  2982. "bin-links": true,
  2983. "forward-command": false
  2984. }
  2985. },
  2986. "autoload": {
  2987. "psr-4": {
  2988. "GuzzleHttp\\UriTemplate\\": "src"
  2989. }
  2990. },
  2991. "notification-url": "https://packagist.org/downloads/",
  2992. "license": [
  2993. "MIT"
  2994. ],
  2995. "authors": [
  2996. {
  2997. "name": "Graham Campbell",
  2998. "email": "hello@gjcampbell.co.uk",
  2999. "homepage": "https://github.com/GrahamCampbell"
  3000. },
  3001. {
  3002. "name": "Michael Dowling",
  3003. "email": "mtdowling@gmail.com",
  3004. "homepage": "https://github.com/mtdowling"
  3005. },
  3006. {
  3007. "name": "George Mponos",
  3008. "email": "gmponos@gmail.com",
  3009. "homepage": "https://github.com/gmponos"
  3010. },
  3011. {
  3012. "name": "Tobias Nyholm",
  3013. "email": "tobias.nyholm@gmail.com",
  3014. "homepage": "https://github.com/Nyholm"
  3015. }
  3016. ],
  3017. "description": "A polyfill class for uri_template of PHP",
  3018. "keywords": [
  3019. "guzzlehttp",
  3020. "uri-template"
  3021. ],
  3022. "support": {
  3023. "issues": "https://github.com/guzzle/uri-template/issues",
  3024. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  3025. },
  3026. "funding": [
  3027. {
  3028. "url": "https://github.com/GrahamCampbell",
  3029. "type": "github"
  3030. },
  3031. {
  3032. "url": "https://github.com/Nyholm",
  3033. "type": "github"
  3034. },
  3035. {
  3036. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  3037. "type": "tidelift"
  3038. }
  3039. ],
  3040. "time": "2023-12-03T19:50:20+00:00"
  3041. },
  3042. {
  3043. "name": "kirschbaum-development/eloquent-power-joins",
  3044. "version": "3.5.7",
  3045. "source": {
  3046. "type": "git",
  3047. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  3048. "reference": "3f57b398117d97bae4dfd5c37ea0f8f48f296c97"
  3049. },
  3050. "dist": {
  3051. "type": "zip",
  3052. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/3f57b398117d97bae4dfd5c37ea0f8f48f296c97",
  3053. "reference": "3f57b398117d97bae4dfd5c37ea0f8f48f296c97",
  3054. "shasum": ""
  3055. },
  3056. "require": {
  3057. "illuminate/database": "^8.0|^9.0|^10.0|^11.0",
  3058. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  3059. "php": "^8.0"
  3060. },
  3061. "require-dev": {
  3062. "laravel/legacy-factories": "^1.0@dev",
  3063. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3064. "phpunit/phpunit": "^8.0|^9.0|^10.0"
  3065. },
  3066. "type": "library",
  3067. "extra": {
  3068. "laravel": {
  3069. "providers": [
  3070. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  3071. ]
  3072. }
  3073. },
  3074. "autoload": {
  3075. "psr-4": {
  3076. "Kirschbaum\\PowerJoins\\": "src"
  3077. }
  3078. },
  3079. "notification-url": "https://packagist.org/downloads/",
  3080. "license": [
  3081. "MIT"
  3082. ],
  3083. "authors": [
  3084. {
  3085. "name": "Luis Dalmolin",
  3086. "email": "luis.nh@gmail.com",
  3087. "role": "Developer"
  3088. }
  3089. ],
  3090. "description": "The Laravel magic applied to joins.",
  3091. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  3092. "keywords": [
  3093. "eloquent",
  3094. "join",
  3095. "laravel",
  3096. "mysql"
  3097. ],
  3098. "support": {
  3099. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  3100. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/3.5.7"
  3101. },
  3102. "time": "2024-06-26T13:09:29+00:00"
  3103. },
  3104. {
  3105. "name": "knplabs/knp-snappy",
  3106. "version": "v1.5.0",
  3107. "source": {
  3108. "type": "git",
  3109. "url": "https://github.com/KnpLabs/snappy.git",
  3110. "reference": "98468898b50c09f26d56d905b79b0f52a2215da6"
  3111. },
  3112. "dist": {
  3113. "type": "zip",
  3114. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/98468898b50c09f26d56d905b79b0f52a2215da6",
  3115. "reference": "98468898b50c09f26d56d905b79b0f52a2215da6",
  3116. "shasum": ""
  3117. },
  3118. "require": {
  3119. "php": ">=8.1",
  3120. "psr/log": "^2.0||^3.0",
  3121. "symfony/process": "^5.0||^6.0||^7.0"
  3122. },
  3123. "require-dev": {
  3124. "friendsofphp/php-cs-fixer": "^3.0",
  3125. "pedrotroller/php-cs-custom-fixer": "^2.19",
  3126. "phpstan/phpstan": "^1.0.0",
  3127. "phpstan/phpstan-phpunit": "^1.0.0",
  3128. "phpunit/phpunit": "^8.5"
  3129. },
  3130. "type": "library",
  3131. "extra": {
  3132. "branch-alias": {
  3133. "dev-master": "1.x-dev"
  3134. }
  3135. },
  3136. "autoload": {
  3137. "psr-4": {
  3138. "Knp\\Snappy\\": "src/Knp/Snappy"
  3139. }
  3140. },
  3141. "notification-url": "https://packagist.org/downloads/",
  3142. "license": [
  3143. "MIT"
  3144. ],
  3145. "authors": [
  3146. {
  3147. "name": "KNP Labs Team",
  3148. "homepage": "http://knplabs.com"
  3149. },
  3150. {
  3151. "name": "Symfony Community",
  3152. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  3153. }
  3154. ],
  3155. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  3156. "homepage": "http://github.com/KnpLabs/snappy",
  3157. "keywords": [
  3158. "knp",
  3159. "knplabs",
  3160. "pdf",
  3161. "snapshot",
  3162. "thumbnail",
  3163. "wkhtmltopdf"
  3164. ],
  3165. "support": {
  3166. "issues": "https://github.com/KnpLabs/snappy/issues",
  3167. "source": "https://github.com/KnpLabs/snappy/tree/v1.5.0"
  3168. },
  3169. "time": "2023-12-18T09:12:11+00:00"
  3170. },
  3171. {
  3172. "name": "laravel/framework",
  3173. "version": "v11.20.0",
  3174. "source": {
  3175. "type": "git",
  3176. "url": "https://github.com/laravel/framework.git",
  3177. "reference": "3cd7593dd9b67002fc416b46616f4d4d1da3e571"
  3178. },
  3179. "dist": {
  3180. "type": "zip",
  3181. "url": "https://api.github.com/repos/laravel/framework/zipball/3cd7593dd9b67002fc416b46616f4d4d1da3e571",
  3182. "reference": "3cd7593dd9b67002fc416b46616f4d4d1da3e571",
  3183. "shasum": ""
  3184. },
  3185. "require": {
  3186. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  3187. "composer-runtime-api": "^2.2",
  3188. "doctrine/inflector": "^2.0.5",
  3189. "dragonmantank/cron-expression": "^3.3.2",
  3190. "egulias/email-validator": "^3.2.1|^4.0",
  3191. "ext-ctype": "*",
  3192. "ext-filter": "*",
  3193. "ext-hash": "*",
  3194. "ext-mbstring": "*",
  3195. "ext-openssl": "*",
  3196. "ext-session": "*",
  3197. "ext-tokenizer": "*",
  3198. "fruitcake/php-cors": "^1.3",
  3199. "guzzlehttp/guzzle": "^7.8",
  3200. "guzzlehttp/uri-template": "^1.0",
  3201. "laravel/prompts": "^0.1.18",
  3202. "laravel/serializable-closure": "^1.3",
  3203. "league/commonmark": "^2.2.1",
  3204. "league/flysystem": "^3.8.0",
  3205. "monolog/monolog": "^3.0",
  3206. "nesbot/carbon": "^2.72.2|^3.0",
  3207. "nunomaduro/termwind": "^2.0",
  3208. "php": "^8.2",
  3209. "psr/container": "^1.1.1|^2.0.1",
  3210. "psr/log": "^1.0|^2.0|^3.0",
  3211. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3212. "ramsey/uuid": "^4.7",
  3213. "symfony/console": "^7.0",
  3214. "symfony/error-handler": "^7.0",
  3215. "symfony/finder": "^7.0",
  3216. "symfony/http-foundation": "^7.0",
  3217. "symfony/http-kernel": "^7.0",
  3218. "symfony/mailer": "^7.0",
  3219. "symfony/mime": "^7.0",
  3220. "symfony/polyfill-php83": "^1.28",
  3221. "symfony/process": "^7.0",
  3222. "symfony/routing": "^7.0",
  3223. "symfony/uid": "^7.0",
  3224. "symfony/var-dumper": "^7.0",
  3225. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3226. "vlucas/phpdotenv": "^5.4.1",
  3227. "voku/portable-ascii": "^2.0"
  3228. },
  3229. "conflict": {
  3230. "mockery/mockery": "1.6.8",
  3231. "tightenco/collect": "<5.5.33"
  3232. },
  3233. "provide": {
  3234. "psr/container-implementation": "1.1|2.0",
  3235. "psr/log-implementation": "1.0|2.0|3.0",
  3236. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3237. },
  3238. "replace": {
  3239. "illuminate/auth": "self.version",
  3240. "illuminate/broadcasting": "self.version",
  3241. "illuminate/bus": "self.version",
  3242. "illuminate/cache": "self.version",
  3243. "illuminate/collections": "self.version",
  3244. "illuminate/conditionable": "self.version",
  3245. "illuminate/config": "self.version",
  3246. "illuminate/console": "self.version",
  3247. "illuminate/container": "self.version",
  3248. "illuminate/contracts": "self.version",
  3249. "illuminate/cookie": "self.version",
  3250. "illuminate/database": "self.version",
  3251. "illuminate/encryption": "self.version",
  3252. "illuminate/events": "self.version",
  3253. "illuminate/filesystem": "self.version",
  3254. "illuminate/hashing": "self.version",
  3255. "illuminate/http": "self.version",
  3256. "illuminate/log": "self.version",
  3257. "illuminate/macroable": "self.version",
  3258. "illuminate/mail": "self.version",
  3259. "illuminate/notifications": "self.version",
  3260. "illuminate/pagination": "self.version",
  3261. "illuminate/pipeline": "self.version",
  3262. "illuminate/process": "self.version",
  3263. "illuminate/queue": "self.version",
  3264. "illuminate/redis": "self.version",
  3265. "illuminate/routing": "self.version",
  3266. "illuminate/session": "self.version",
  3267. "illuminate/support": "self.version",
  3268. "illuminate/testing": "self.version",
  3269. "illuminate/translation": "self.version",
  3270. "illuminate/validation": "self.version",
  3271. "illuminate/view": "self.version",
  3272. "spatie/once": "*"
  3273. },
  3274. "require-dev": {
  3275. "ably/ably-php": "^1.0",
  3276. "aws/aws-sdk-php": "^3.235.5",
  3277. "ext-gmp": "*",
  3278. "fakerphp/faker": "^1.23",
  3279. "league/flysystem-aws-s3-v3": "^3.0",
  3280. "league/flysystem-ftp": "^3.0",
  3281. "league/flysystem-path-prefixing": "^3.3",
  3282. "league/flysystem-read-only": "^3.3",
  3283. "league/flysystem-sftp-v3": "^3.0",
  3284. "mockery/mockery": "^1.6",
  3285. "nyholm/psr7": "^1.2",
  3286. "orchestra/testbench-core": "^9.1.5",
  3287. "pda/pheanstalk": "^5.0",
  3288. "phpstan/phpstan": "^1.11.5",
  3289. "phpunit/phpunit": "^10.5|^11.0",
  3290. "predis/predis": "^2.0.2",
  3291. "resend/resend-php": "^0.10.0",
  3292. "symfony/cache": "^7.0",
  3293. "symfony/http-client": "^7.0",
  3294. "symfony/psr-http-message-bridge": "^7.0"
  3295. },
  3296. "suggest": {
  3297. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3298. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  3299. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3300. "ext-apcu": "Required to use the APC cache driver.",
  3301. "ext-fileinfo": "Required to use the Filesystem class.",
  3302. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3303. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3304. "ext-memcached": "Required to use the memcache cache driver.",
  3305. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3306. "ext-pdo": "Required to use all database features.",
  3307. "ext-posix": "Required to use all features of the queue worker.",
  3308. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3309. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3310. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3311. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3312. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  3313. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  3314. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  3315. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  3316. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  3317. "mockery/mockery": "Required to use mocking (^1.6).",
  3318. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3319. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3320. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  3321. "predis/predis": "Required to use the predis connector (^2.0.2).",
  3322. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3323. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3324. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3325. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3326. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3327. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3328. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3329. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3330. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3331. },
  3332. "type": "library",
  3333. "extra": {
  3334. "branch-alias": {
  3335. "dev-master": "11.x-dev"
  3336. }
  3337. },
  3338. "autoload": {
  3339. "files": [
  3340. "src/Illuminate/Collections/helpers.php",
  3341. "src/Illuminate/Events/functions.php",
  3342. "src/Illuminate/Filesystem/functions.php",
  3343. "src/Illuminate/Foundation/helpers.php",
  3344. "src/Illuminate/Support/helpers.php"
  3345. ],
  3346. "psr-4": {
  3347. "Illuminate\\": "src/Illuminate/",
  3348. "Illuminate\\Support\\": [
  3349. "src/Illuminate/Macroable/",
  3350. "src/Illuminate/Collections/",
  3351. "src/Illuminate/Conditionable/"
  3352. ]
  3353. }
  3354. },
  3355. "notification-url": "https://packagist.org/downloads/",
  3356. "license": [
  3357. "MIT"
  3358. ],
  3359. "authors": [
  3360. {
  3361. "name": "Taylor Otwell",
  3362. "email": "taylor@laravel.com"
  3363. }
  3364. ],
  3365. "description": "The Laravel Framework.",
  3366. "homepage": "https://laravel.com",
  3367. "keywords": [
  3368. "framework",
  3369. "laravel"
  3370. ],
  3371. "support": {
  3372. "issues": "https://github.com/laravel/framework/issues",
  3373. "source": "https://github.com/laravel/framework"
  3374. },
  3375. "time": "2024-08-06T14:39:21+00:00"
  3376. },
  3377. {
  3378. "name": "laravel/prompts",
  3379. "version": "v0.1.24",
  3380. "source": {
  3381. "type": "git",
  3382. "url": "https://github.com/laravel/prompts.git",
  3383. "reference": "409b0b4305273472f3754826e68f4edbd0150149"
  3384. },
  3385. "dist": {
  3386. "type": "zip",
  3387. "url": "https://api.github.com/repos/laravel/prompts/zipball/409b0b4305273472f3754826e68f4edbd0150149",
  3388. "reference": "409b0b4305273472f3754826e68f4edbd0150149",
  3389. "shasum": ""
  3390. },
  3391. "require": {
  3392. "ext-mbstring": "*",
  3393. "illuminate/collections": "^10.0|^11.0",
  3394. "php": "^8.1",
  3395. "symfony/console": "^6.2|^7.0"
  3396. },
  3397. "conflict": {
  3398. "illuminate/console": ">=10.17.0 <10.25.0",
  3399. "laravel/framework": ">=10.17.0 <10.25.0"
  3400. },
  3401. "require-dev": {
  3402. "mockery/mockery": "^1.5",
  3403. "pestphp/pest": "^2.3",
  3404. "phpstan/phpstan": "^1.11",
  3405. "phpstan/phpstan-mockery": "^1.1"
  3406. },
  3407. "suggest": {
  3408. "ext-pcntl": "Required for the spinner to be animated."
  3409. },
  3410. "type": "library",
  3411. "extra": {
  3412. "branch-alias": {
  3413. "dev-main": "0.1.x-dev"
  3414. }
  3415. },
  3416. "autoload": {
  3417. "files": [
  3418. "src/helpers.php"
  3419. ],
  3420. "psr-4": {
  3421. "Laravel\\Prompts\\": "src/"
  3422. }
  3423. },
  3424. "notification-url": "https://packagist.org/downloads/",
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3429. "support": {
  3430. "issues": "https://github.com/laravel/prompts/issues",
  3431. "source": "https://github.com/laravel/prompts/tree/v0.1.24"
  3432. },
  3433. "time": "2024-06-17T13:58:22+00:00"
  3434. },
  3435. {
  3436. "name": "laravel/sanctum",
  3437. "version": "v4.0.2",
  3438. "source": {
  3439. "type": "git",
  3440. "url": "https://github.com/laravel/sanctum.git",
  3441. "reference": "9cfc0ce80cabad5334efff73ec856339e8ec1ac1"
  3442. },
  3443. "dist": {
  3444. "type": "zip",
  3445. "url": "https://api.github.com/repos/laravel/sanctum/zipball/9cfc0ce80cabad5334efff73ec856339e8ec1ac1",
  3446. "reference": "9cfc0ce80cabad5334efff73ec856339e8ec1ac1",
  3447. "shasum": ""
  3448. },
  3449. "require": {
  3450. "ext-json": "*",
  3451. "illuminate/console": "^11.0",
  3452. "illuminate/contracts": "^11.0",
  3453. "illuminate/database": "^11.0",
  3454. "illuminate/support": "^11.0",
  3455. "php": "^8.2",
  3456. "symfony/console": "^7.0"
  3457. },
  3458. "require-dev": {
  3459. "mockery/mockery": "^1.6",
  3460. "orchestra/testbench": "^9.0",
  3461. "phpstan/phpstan": "^1.10",
  3462. "phpunit/phpunit": "^10.5"
  3463. },
  3464. "type": "library",
  3465. "extra": {
  3466. "laravel": {
  3467. "providers": [
  3468. "Laravel\\Sanctum\\SanctumServiceProvider"
  3469. ]
  3470. }
  3471. },
  3472. "autoload": {
  3473. "psr-4": {
  3474. "Laravel\\Sanctum\\": "src/"
  3475. }
  3476. },
  3477. "notification-url": "https://packagist.org/downloads/",
  3478. "license": [
  3479. "MIT"
  3480. ],
  3481. "authors": [
  3482. {
  3483. "name": "Taylor Otwell",
  3484. "email": "taylor@laravel.com"
  3485. }
  3486. ],
  3487. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3488. "keywords": [
  3489. "auth",
  3490. "laravel",
  3491. "sanctum"
  3492. ],
  3493. "support": {
  3494. "issues": "https://github.com/laravel/sanctum/issues",
  3495. "source": "https://github.com/laravel/sanctum"
  3496. },
  3497. "time": "2024-04-10T19:39:58+00:00"
  3498. },
  3499. {
  3500. "name": "laravel/serializable-closure",
  3501. "version": "v1.3.4",
  3502. "source": {
  3503. "type": "git",
  3504. "url": "https://github.com/laravel/serializable-closure.git",
  3505. "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81"
  3506. },
  3507. "dist": {
  3508. "type": "zip",
  3509. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/61b87392d986dc49ad5ef64e75b1ff5fee24ef81",
  3510. "reference": "61b87392d986dc49ad5ef64e75b1ff5fee24ef81",
  3511. "shasum": ""
  3512. },
  3513. "require": {
  3514. "php": "^7.3|^8.0"
  3515. },
  3516. "require-dev": {
  3517. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  3518. "nesbot/carbon": "^2.61|^3.0",
  3519. "pestphp/pest": "^1.21.3",
  3520. "phpstan/phpstan": "^1.8.2",
  3521. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  3522. },
  3523. "type": "library",
  3524. "extra": {
  3525. "branch-alias": {
  3526. "dev-master": "1.x-dev"
  3527. }
  3528. },
  3529. "autoload": {
  3530. "psr-4": {
  3531. "Laravel\\SerializableClosure\\": "src/"
  3532. }
  3533. },
  3534. "notification-url": "https://packagist.org/downloads/",
  3535. "license": [
  3536. "MIT"
  3537. ],
  3538. "authors": [
  3539. {
  3540. "name": "Taylor Otwell",
  3541. "email": "taylor@laravel.com"
  3542. },
  3543. {
  3544. "name": "Nuno Maduro",
  3545. "email": "nuno@laravel.com"
  3546. }
  3547. ],
  3548. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3549. "keywords": [
  3550. "closure",
  3551. "laravel",
  3552. "serializable"
  3553. ],
  3554. "support": {
  3555. "issues": "https://github.com/laravel/serializable-closure/issues",
  3556. "source": "https://github.com/laravel/serializable-closure"
  3557. },
  3558. "time": "2024-08-02T07:48:17+00:00"
  3559. },
  3560. {
  3561. "name": "laravel/socialite",
  3562. "version": "v5.15.1",
  3563. "source": {
  3564. "type": "git",
  3565. "url": "https://github.com/laravel/socialite.git",
  3566. "reference": "cc02625f0bd1f95dc3688eb041cce0f1e709d029"
  3567. },
  3568. "dist": {
  3569. "type": "zip",
  3570. "url": "https://api.github.com/repos/laravel/socialite/zipball/cc02625f0bd1f95dc3688eb041cce0f1e709d029",
  3571. "reference": "cc02625f0bd1f95dc3688eb041cce0f1e709d029",
  3572. "shasum": ""
  3573. },
  3574. "require": {
  3575. "ext-json": "*",
  3576. "firebase/php-jwt": "^6.4",
  3577. "guzzlehttp/guzzle": "^6.0|^7.0",
  3578. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3579. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3580. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3581. "league/oauth1-client": "^1.10.1",
  3582. "php": "^7.2|^8.0",
  3583. "phpseclib/phpseclib": "^3.0"
  3584. },
  3585. "require-dev": {
  3586. "mockery/mockery": "^1.0",
  3587. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3588. "phpstan/phpstan": "^1.10",
  3589. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  3590. },
  3591. "type": "library",
  3592. "extra": {
  3593. "branch-alias": {
  3594. "dev-master": "5.x-dev"
  3595. },
  3596. "laravel": {
  3597. "providers": [
  3598. "Laravel\\Socialite\\SocialiteServiceProvider"
  3599. ],
  3600. "aliases": {
  3601. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3602. }
  3603. }
  3604. },
  3605. "autoload": {
  3606. "psr-4": {
  3607. "Laravel\\Socialite\\": "src/"
  3608. }
  3609. },
  3610. "notification-url": "https://packagist.org/downloads/",
  3611. "license": [
  3612. "MIT"
  3613. ],
  3614. "authors": [
  3615. {
  3616. "name": "Taylor Otwell",
  3617. "email": "taylor@laravel.com"
  3618. }
  3619. ],
  3620. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3621. "homepage": "https://laravel.com",
  3622. "keywords": [
  3623. "laravel",
  3624. "oauth"
  3625. ],
  3626. "support": {
  3627. "issues": "https://github.com/laravel/socialite/issues",
  3628. "source": "https://github.com/laravel/socialite"
  3629. },
  3630. "time": "2024-06-28T20:09:34+00:00"
  3631. },
  3632. {
  3633. "name": "laravel/tinker",
  3634. "version": "v2.9.0",
  3635. "source": {
  3636. "type": "git",
  3637. "url": "https://github.com/laravel/tinker.git",
  3638. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe"
  3639. },
  3640. "dist": {
  3641. "type": "zip",
  3642. "url": "https://api.github.com/repos/laravel/tinker/zipball/502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  3643. "reference": "502e0fe3f0415d06d5db1f83a472f0f3b754bafe",
  3644. "shasum": ""
  3645. },
  3646. "require": {
  3647. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3648. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3649. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3650. "php": "^7.2.5|^8.0",
  3651. "psy/psysh": "^0.11.1|^0.12.0",
  3652. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3653. },
  3654. "require-dev": {
  3655. "mockery/mockery": "~1.3.3|^1.4.2",
  3656. "phpstan/phpstan": "^1.10",
  3657. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3658. },
  3659. "suggest": {
  3660. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  3661. },
  3662. "type": "library",
  3663. "extra": {
  3664. "laravel": {
  3665. "providers": [
  3666. "Laravel\\Tinker\\TinkerServiceProvider"
  3667. ]
  3668. }
  3669. },
  3670. "autoload": {
  3671. "psr-4": {
  3672. "Laravel\\Tinker\\": "src/"
  3673. }
  3674. },
  3675. "notification-url": "https://packagist.org/downloads/",
  3676. "license": [
  3677. "MIT"
  3678. ],
  3679. "authors": [
  3680. {
  3681. "name": "Taylor Otwell",
  3682. "email": "taylor@laravel.com"
  3683. }
  3684. ],
  3685. "description": "Powerful REPL for the Laravel framework.",
  3686. "keywords": [
  3687. "REPL",
  3688. "Tinker",
  3689. "laravel",
  3690. "psysh"
  3691. ],
  3692. "support": {
  3693. "issues": "https://github.com/laravel/tinker/issues",
  3694. "source": "https://github.com/laravel/tinker/tree/v2.9.0"
  3695. },
  3696. "time": "2024-01-04T16:10:04+00:00"
  3697. },
  3698. {
  3699. "name": "league/commonmark",
  3700. "version": "2.5.1",
  3701. "source": {
  3702. "type": "git",
  3703. "url": "https://github.com/thephpleague/commonmark.git",
  3704. "reference": "ac815920de0eff6de947eac0a6a94e5ed0fb147c"
  3705. },
  3706. "dist": {
  3707. "type": "zip",
  3708. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/ac815920de0eff6de947eac0a6a94e5ed0fb147c",
  3709. "reference": "ac815920de0eff6de947eac0a6a94e5ed0fb147c",
  3710. "shasum": ""
  3711. },
  3712. "require": {
  3713. "ext-mbstring": "*",
  3714. "league/config": "^1.1.1",
  3715. "php": "^7.4 || ^8.0",
  3716. "psr/event-dispatcher": "^1.0",
  3717. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3718. "symfony/polyfill-php80": "^1.16"
  3719. },
  3720. "require-dev": {
  3721. "cebe/markdown": "^1.0",
  3722. "commonmark/cmark": "0.31.0",
  3723. "commonmark/commonmark.js": "0.31.0",
  3724. "composer/package-versions-deprecated": "^1.8",
  3725. "embed/embed": "^4.4",
  3726. "erusev/parsedown": "^1.0",
  3727. "ext-json": "*",
  3728. "github/gfm": "0.29.0",
  3729. "michelf/php-markdown": "^1.4 || ^2.0",
  3730. "nyholm/psr7": "^1.5",
  3731. "phpstan/phpstan": "^1.8.2",
  3732. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3733. "scrutinizer/ocular": "^1.8.1",
  3734. "symfony/finder": "^5.3 | ^6.0 || ^7.0",
  3735. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 || ^7.0",
  3736. "unleashedtech/php-coding-standard": "^3.1.1",
  3737. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3738. },
  3739. "suggest": {
  3740. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3741. },
  3742. "type": "library",
  3743. "extra": {
  3744. "branch-alias": {
  3745. "dev-main": "2.6-dev"
  3746. }
  3747. },
  3748. "autoload": {
  3749. "psr-4": {
  3750. "League\\CommonMark\\": "src"
  3751. }
  3752. },
  3753. "notification-url": "https://packagist.org/downloads/",
  3754. "license": [
  3755. "BSD-3-Clause"
  3756. ],
  3757. "authors": [
  3758. {
  3759. "name": "Colin O'Dell",
  3760. "email": "colinodell@gmail.com",
  3761. "homepage": "https://www.colinodell.com",
  3762. "role": "Lead Developer"
  3763. }
  3764. ],
  3765. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3766. "homepage": "https://commonmark.thephpleague.com",
  3767. "keywords": [
  3768. "commonmark",
  3769. "flavored",
  3770. "gfm",
  3771. "github",
  3772. "github-flavored",
  3773. "markdown",
  3774. "md",
  3775. "parser"
  3776. ],
  3777. "support": {
  3778. "docs": "https://commonmark.thephpleague.com/",
  3779. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3780. "issues": "https://github.com/thephpleague/commonmark/issues",
  3781. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3782. "source": "https://github.com/thephpleague/commonmark"
  3783. },
  3784. "funding": [
  3785. {
  3786. "url": "https://www.colinodell.com/sponsor",
  3787. "type": "custom"
  3788. },
  3789. {
  3790. "url": "https://www.paypal.me/colinpodell/10.00",
  3791. "type": "custom"
  3792. },
  3793. {
  3794. "url": "https://github.com/colinodell",
  3795. "type": "github"
  3796. },
  3797. {
  3798. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3799. "type": "tidelift"
  3800. }
  3801. ],
  3802. "time": "2024-07-24T12:52:09+00:00"
  3803. },
  3804. {
  3805. "name": "league/config",
  3806. "version": "v1.2.0",
  3807. "source": {
  3808. "type": "git",
  3809. "url": "https://github.com/thephpleague/config.git",
  3810. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3811. },
  3812. "dist": {
  3813. "type": "zip",
  3814. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3815. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3816. "shasum": ""
  3817. },
  3818. "require": {
  3819. "dflydev/dot-access-data": "^3.0.1",
  3820. "nette/schema": "^1.2",
  3821. "php": "^7.4 || ^8.0"
  3822. },
  3823. "require-dev": {
  3824. "phpstan/phpstan": "^1.8.2",
  3825. "phpunit/phpunit": "^9.5.5",
  3826. "scrutinizer/ocular": "^1.8.1",
  3827. "unleashedtech/php-coding-standard": "^3.1",
  3828. "vimeo/psalm": "^4.7.3"
  3829. },
  3830. "type": "library",
  3831. "extra": {
  3832. "branch-alias": {
  3833. "dev-main": "1.2-dev"
  3834. }
  3835. },
  3836. "autoload": {
  3837. "psr-4": {
  3838. "League\\Config\\": "src"
  3839. }
  3840. },
  3841. "notification-url": "https://packagist.org/downloads/",
  3842. "license": [
  3843. "BSD-3-Clause"
  3844. ],
  3845. "authors": [
  3846. {
  3847. "name": "Colin O'Dell",
  3848. "email": "colinodell@gmail.com",
  3849. "homepage": "https://www.colinodell.com",
  3850. "role": "Lead Developer"
  3851. }
  3852. ],
  3853. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3854. "homepage": "https://config.thephpleague.com",
  3855. "keywords": [
  3856. "array",
  3857. "config",
  3858. "configuration",
  3859. "dot",
  3860. "dot-access",
  3861. "nested",
  3862. "schema"
  3863. ],
  3864. "support": {
  3865. "docs": "https://config.thephpleague.com/",
  3866. "issues": "https://github.com/thephpleague/config/issues",
  3867. "rss": "https://github.com/thephpleague/config/releases.atom",
  3868. "source": "https://github.com/thephpleague/config"
  3869. },
  3870. "funding": [
  3871. {
  3872. "url": "https://www.colinodell.com/sponsor",
  3873. "type": "custom"
  3874. },
  3875. {
  3876. "url": "https://www.paypal.me/colinpodell/10.00",
  3877. "type": "custom"
  3878. },
  3879. {
  3880. "url": "https://github.com/colinodell",
  3881. "type": "github"
  3882. }
  3883. ],
  3884. "time": "2022-12-11T20:36:23+00:00"
  3885. },
  3886. {
  3887. "name": "league/csv",
  3888. "version": "9.16.0",
  3889. "source": {
  3890. "type": "git",
  3891. "url": "https://github.com/thephpleague/csv.git",
  3892. "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440"
  3893. },
  3894. "dist": {
  3895. "type": "zip",
  3896. "url": "https://api.github.com/repos/thephpleague/csv/zipball/998280c6c34bd67d8125fdc8b45bae28d761b440",
  3897. "reference": "998280c6c34bd67d8125fdc8b45bae28d761b440",
  3898. "shasum": ""
  3899. },
  3900. "require": {
  3901. "ext-filter": "*",
  3902. "php": "^8.1.2"
  3903. },
  3904. "require-dev": {
  3905. "doctrine/collections": "^2.2.2",
  3906. "ext-dom": "*",
  3907. "ext-xdebug": "*",
  3908. "friendsofphp/php-cs-fixer": "^3.57.1",
  3909. "phpbench/phpbench": "^1.2.15",
  3910. "phpstan/phpstan": "^1.11.1",
  3911. "phpstan/phpstan-deprecation-rules": "^1.2.0",
  3912. "phpstan/phpstan-phpunit": "^1.4.0",
  3913. "phpstan/phpstan-strict-rules": "^1.6.0",
  3914. "phpunit/phpunit": "^10.5.16 || ^11.1.3",
  3915. "symfony/var-dumper": "^6.4.6 || ^7.0.7"
  3916. },
  3917. "suggest": {
  3918. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  3919. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
  3920. "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters"
  3921. },
  3922. "type": "library",
  3923. "extra": {
  3924. "branch-alias": {
  3925. "dev-master": "9.x-dev"
  3926. }
  3927. },
  3928. "autoload": {
  3929. "files": [
  3930. "src/functions_include.php"
  3931. ],
  3932. "psr-4": {
  3933. "League\\Csv\\": "src"
  3934. }
  3935. },
  3936. "notification-url": "https://packagist.org/downloads/",
  3937. "license": [
  3938. "MIT"
  3939. ],
  3940. "authors": [
  3941. {
  3942. "name": "Ignace Nyamagana Butera",
  3943. "email": "nyamsprod@gmail.com",
  3944. "homepage": "https://github.com/nyamsprod/",
  3945. "role": "Developer"
  3946. }
  3947. ],
  3948. "description": "CSV data manipulation made easy in PHP",
  3949. "homepage": "https://csv.thephpleague.com",
  3950. "keywords": [
  3951. "convert",
  3952. "csv",
  3953. "export",
  3954. "filter",
  3955. "import",
  3956. "read",
  3957. "transform",
  3958. "write"
  3959. ],
  3960. "support": {
  3961. "docs": "https://csv.thephpleague.com",
  3962. "issues": "https://github.com/thephpleague/csv/issues",
  3963. "rss": "https://github.com/thephpleague/csv/releases.atom",
  3964. "source": "https://github.com/thephpleague/csv"
  3965. },
  3966. "funding": [
  3967. {
  3968. "url": "https://github.com/sponsors/nyamsprod",
  3969. "type": "github"
  3970. }
  3971. ],
  3972. "time": "2024-05-24T11:04:54+00:00"
  3973. },
  3974. {
  3975. "name": "league/flysystem",
  3976. "version": "3.28.0",
  3977. "source": {
  3978. "type": "git",
  3979. "url": "https://github.com/thephpleague/flysystem.git",
  3980. "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c"
  3981. },
  3982. "dist": {
  3983. "type": "zip",
  3984. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
  3985. "reference": "e611adab2b1ae2e3072fa72d62c62f52c2bf1f0c",
  3986. "shasum": ""
  3987. },
  3988. "require": {
  3989. "league/flysystem-local": "^3.0.0",
  3990. "league/mime-type-detection": "^1.0.0",
  3991. "php": "^8.0.2"
  3992. },
  3993. "conflict": {
  3994. "async-aws/core": "<1.19.0",
  3995. "async-aws/s3": "<1.14.0",
  3996. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3997. "guzzlehttp/guzzle": "<7.0",
  3998. "guzzlehttp/ringphp": "<1.1.1",
  3999. "phpseclib/phpseclib": "3.0.15",
  4000. "symfony/http-client": "<5.2"
  4001. },
  4002. "require-dev": {
  4003. "async-aws/s3": "^1.5 || ^2.0",
  4004. "async-aws/simple-s3": "^1.1 || ^2.0",
  4005. "aws/aws-sdk-php": "^3.295.10",
  4006. "composer/semver": "^3.0",
  4007. "ext-fileinfo": "*",
  4008. "ext-ftp": "*",
  4009. "ext-mongodb": "^1.3",
  4010. "ext-zip": "*",
  4011. "friendsofphp/php-cs-fixer": "^3.5",
  4012. "google/cloud-storage": "^1.23",
  4013. "guzzlehttp/psr7": "^2.6",
  4014. "microsoft/azure-storage-blob": "^1.1",
  4015. "mongodb/mongodb": "^1.2",
  4016. "phpseclib/phpseclib": "^3.0.36",
  4017. "phpstan/phpstan": "^1.10",
  4018. "phpunit/phpunit": "^9.5.11|^10.0",
  4019. "sabre/dav": "^4.6.0"
  4020. },
  4021. "type": "library",
  4022. "autoload": {
  4023. "psr-4": {
  4024. "League\\Flysystem\\": "src"
  4025. }
  4026. },
  4027. "notification-url": "https://packagist.org/downloads/",
  4028. "license": [
  4029. "MIT"
  4030. ],
  4031. "authors": [
  4032. {
  4033. "name": "Frank de Jonge",
  4034. "email": "info@frankdejonge.nl"
  4035. }
  4036. ],
  4037. "description": "File storage abstraction for PHP",
  4038. "keywords": [
  4039. "WebDAV",
  4040. "aws",
  4041. "cloud",
  4042. "file",
  4043. "files",
  4044. "filesystem",
  4045. "filesystems",
  4046. "ftp",
  4047. "s3",
  4048. "sftp",
  4049. "storage"
  4050. ],
  4051. "support": {
  4052. "issues": "https://github.com/thephpleague/flysystem/issues",
  4053. "source": "https://github.com/thephpleague/flysystem/tree/3.28.0"
  4054. },
  4055. "time": "2024-05-22T10:09:12+00:00"
  4056. },
  4057. {
  4058. "name": "league/flysystem-local",
  4059. "version": "3.28.0",
  4060. "source": {
  4061. "type": "git",
  4062. "url": "https://github.com/thephpleague/flysystem-local.git",
  4063. "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40"
  4064. },
  4065. "dist": {
  4066. "type": "zip",
  4067. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
  4068. "reference": "13f22ea8be526ea58c2ddff9e158ef7c296e4f40",
  4069. "shasum": ""
  4070. },
  4071. "require": {
  4072. "ext-fileinfo": "*",
  4073. "league/flysystem": "^3.0.0",
  4074. "league/mime-type-detection": "^1.0.0",
  4075. "php": "^8.0.2"
  4076. },
  4077. "type": "library",
  4078. "autoload": {
  4079. "psr-4": {
  4080. "League\\Flysystem\\Local\\": ""
  4081. }
  4082. },
  4083. "notification-url": "https://packagist.org/downloads/",
  4084. "license": [
  4085. "MIT"
  4086. ],
  4087. "authors": [
  4088. {
  4089. "name": "Frank de Jonge",
  4090. "email": "info@frankdejonge.nl"
  4091. }
  4092. ],
  4093. "description": "Local filesystem adapter for Flysystem.",
  4094. "keywords": [
  4095. "Flysystem",
  4096. "file",
  4097. "files",
  4098. "filesystem",
  4099. "local"
  4100. ],
  4101. "support": {
  4102. "source": "https://github.com/thephpleague/flysystem-local/tree/3.28.0"
  4103. },
  4104. "time": "2024-05-06T20:05:52+00:00"
  4105. },
  4106. {
  4107. "name": "league/mime-type-detection",
  4108. "version": "1.15.0",
  4109. "source": {
  4110. "type": "git",
  4111. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4112. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301"
  4113. },
  4114. "dist": {
  4115. "type": "zip",
  4116. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  4117. "reference": "ce0f4d1e8a6f4eb0ddff33f57c69c50fd09f4301",
  4118. "shasum": ""
  4119. },
  4120. "require": {
  4121. "ext-fileinfo": "*",
  4122. "php": "^7.4 || ^8.0"
  4123. },
  4124. "require-dev": {
  4125. "friendsofphp/php-cs-fixer": "^3.2",
  4126. "phpstan/phpstan": "^0.12.68",
  4127. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  4128. },
  4129. "type": "library",
  4130. "autoload": {
  4131. "psr-4": {
  4132. "League\\MimeTypeDetection\\": "src"
  4133. }
  4134. },
  4135. "notification-url": "https://packagist.org/downloads/",
  4136. "license": [
  4137. "MIT"
  4138. ],
  4139. "authors": [
  4140. {
  4141. "name": "Frank de Jonge",
  4142. "email": "info@frankdejonge.nl"
  4143. }
  4144. ],
  4145. "description": "Mime-type detection for Flysystem",
  4146. "support": {
  4147. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4148. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.15.0"
  4149. },
  4150. "funding": [
  4151. {
  4152. "url": "https://github.com/frankdejonge",
  4153. "type": "github"
  4154. },
  4155. {
  4156. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4157. "type": "tidelift"
  4158. }
  4159. ],
  4160. "time": "2024-01-28T23:22:08+00:00"
  4161. },
  4162. {
  4163. "name": "league/oauth1-client",
  4164. "version": "v1.10.1",
  4165. "source": {
  4166. "type": "git",
  4167. "url": "https://github.com/thephpleague/oauth1-client.git",
  4168. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  4169. },
  4170. "dist": {
  4171. "type": "zip",
  4172. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  4173. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  4174. "shasum": ""
  4175. },
  4176. "require": {
  4177. "ext-json": "*",
  4178. "ext-openssl": "*",
  4179. "guzzlehttp/guzzle": "^6.0|^7.0",
  4180. "guzzlehttp/psr7": "^1.7|^2.0",
  4181. "php": ">=7.1||>=8.0"
  4182. },
  4183. "require-dev": {
  4184. "ext-simplexml": "*",
  4185. "friendsofphp/php-cs-fixer": "^2.17",
  4186. "mockery/mockery": "^1.3.3",
  4187. "phpstan/phpstan": "^0.12.42",
  4188. "phpunit/phpunit": "^7.5||9.5"
  4189. },
  4190. "suggest": {
  4191. "ext-simplexml": "For decoding XML-based responses."
  4192. },
  4193. "type": "library",
  4194. "extra": {
  4195. "branch-alias": {
  4196. "dev-master": "1.0-dev",
  4197. "dev-develop": "2.0-dev"
  4198. }
  4199. },
  4200. "autoload": {
  4201. "psr-4": {
  4202. "League\\OAuth1\\Client\\": "src/"
  4203. }
  4204. },
  4205. "notification-url": "https://packagist.org/downloads/",
  4206. "license": [
  4207. "MIT"
  4208. ],
  4209. "authors": [
  4210. {
  4211. "name": "Ben Corlett",
  4212. "email": "bencorlett@me.com",
  4213. "homepage": "http://www.webcomm.com.au",
  4214. "role": "Developer"
  4215. }
  4216. ],
  4217. "description": "OAuth 1.0 Client Library",
  4218. "keywords": [
  4219. "Authentication",
  4220. "SSO",
  4221. "authorization",
  4222. "bitbucket",
  4223. "identity",
  4224. "idp",
  4225. "oauth",
  4226. "oauth1",
  4227. "single sign on",
  4228. "trello",
  4229. "tumblr",
  4230. "twitter"
  4231. ],
  4232. "support": {
  4233. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4234. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.10.1"
  4235. },
  4236. "time": "2022-04-15T14:02:14+00:00"
  4237. },
  4238. {
  4239. "name": "league/uri",
  4240. "version": "7.4.1",
  4241. "source": {
  4242. "type": "git",
  4243. "url": "https://github.com/thephpleague/uri.git",
  4244. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4"
  4245. },
  4246. "dist": {
  4247. "type": "zip",
  4248. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  4249. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  4250. "shasum": ""
  4251. },
  4252. "require": {
  4253. "league/uri-interfaces": "^7.3",
  4254. "php": "^8.1"
  4255. },
  4256. "conflict": {
  4257. "league/uri-schemes": "^1.0"
  4258. },
  4259. "suggest": {
  4260. "ext-bcmath": "to improve IPV4 host parsing",
  4261. "ext-fileinfo": "to create Data URI from file contennts",
  4262. "ext-gmp": "to improve IPV4 host parsing",
  4263. "ext-intl": "to handle IDN host with the best performance",
  4264. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4265. "league/uri-components": "Needed to easily manipulate URI objects components",
  4266. "php-64bit": "to improve IPV4 host parsing",
  4267. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4268. },
  4269. "type": "library",
  4270. "extra": {
  4271. "branch-alias": {
  4272. "dev-master": "7.x-dev"
  4273. }
  4274. },
  4275. "autoload": {
  4276. "psr-4": {
  4277. "League\\Uri\\": ""
  4278. }
  4279. },
  4280. "notification-url": "https://packagist.org/downloads/",
  4281. "license": [
  4282. "MIT"
  4283. ],
  4284. "authors": [
  4285. {
  4286. "name": "Ignace Nyamagana Butera",
  4287. "email": "nyamsprod@gmail.com",
  4288. "homepage": "https://nyamsprod.com"
  4289. }
  4290. ],
  4291. "description": "URI manipulation library",
  4292. "homepage": "https://uri.thephpleague.com",
  4293. "keywords": [
  4294. "data-uri",
  4295. "file-uri",
  4296. "ftp",
  4297. "hostname",
  4298. "http",
  4299. "https",
  4300. "middleware",
  4301. "parse_str",
  4302. "parse_url",
  4303. "psr-7",
  4304. "query-string",
  4305. "querystring",
  4306. "rfc3986",
  4307. "rfc3987",
  4308. "rfc6570",
  4309. "uri",
  4310. "uri-template",
  4311. "url",
  4312. "ws"
  4313. ],
  4314. "support": {
  4315. "docs": "https://uri.thephpleague.com",
  4316. "forum": "https://thephpleague.slack.com",
  4317. "issues": "https://github.com/thephpleague/uri-src/issues",
  4318. "source": "https://github.com/thephpleague/uri/tree/7.4.1"
  4319. },
  4320. "funding": [
  4321. {
  4322. "url": "https://github.com/sponsors/nyamsprod",
  4323. "type": "github"
  4324. }
  4325. ],
  4326. "time": "2024-03-23T07:42:40+00:00"
  4327. },
  4328. {
  4329. "name": "league/uri-interfaces",
  4330. "version": "7.4.1",
  4331. "source": {
  4332. "type": "git",
  4333. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4334. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718"
  4335. },
  4336. "dist": {
  4337. "type": "zip",
  4338. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718",
  4339. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718",
  4340. "shasum": ""
  4341. },
  4342. "require": {
  4343. "ext-filter": "*",
  4344. "php": "^8.1",
  4345. "psr/http-factory": "^1",
  4346. "psr/http-message": "^1.1 || ^2.0"
  4347. },
  4348. "suggest": {
  4349. "ext-bcmath": "to improve IPV4 host parsing",
  4350. "ext-gmp": "to improve IPV4 host parsing",
  4351. "ext-intl": "to handle IDN host with the best performance",
  4352. "php-64bit": "to improve IPV4 host parsing",
  4353. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4354. },
  4355. "type": "library",
  4356. "extra": {
  4357. "branch-alias": {
  4358. "dev-master": "7.x-dev"
  4359. }
  4360. },
  4361. "autoload": {
  4362. "psr-4": {
  4363. "League\\Uri\\": ""
  4364. }
  4365. },
  4366. "notification-url": "https://packagist.org/downloads/",
  4367. "license": [
  4368. "MIT"
  4369. ],
  4370. "authors": [
  4371. {
  4372. "name": "Ignace Nyamagana Butera",
  4373. "email": "nyamsprod@gmail.com",
  4374. "homepage": "https://nyamsprod.com"
  4375. }
  4376. ],
  4377. "description": "Common interfaces and classes for URI representation and interaction",
  4378. "homepage": "https://uri.thephpleague.com",
  4379. "keywords": [
  4380. "data-uri",
  4381. "file-uri",
  4382. "ftp",
  4383. "hostname",
  4384. "http",
  4385. "https",
  4386. "parse_str",
  4387. "parse_url",
  4388. "psr-7",
  4389. "query-string",
  4390. "querystring",
  4391. "rfc3986",
  4392. "rfc3987",
  4393. "rfc6570",
  4394. "uri",
  4395. "url",
  4396. "ws"
  4397. ],
  4398. "support": {
  4399. "docs": "https://uri.thephpleague.com",
  4400. "forum": "https://thephpleague.slack.com",
  4401. "issues": "https://github.com/thephpleague/uri-src/issues",
  4402. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.4.1"
  4403. },
  4404. "funding": [
  4405. {
  4406. "url": "https://github.com/sponsors/nyamsprod",
  4407. "type": "github"
  4408. }
  4409. ],
  4410. "time": "2024-03-23T07:42:40+00:00"
  4411. },
  4412. {
  4413. "name": "livewire/livewire",
  4414. "version": "v3.5.4",
  4415. "source": {
  4416. "type": "git",
  4417. "url": "https://github.com/livewire/livewire.git",
  4418. "reference": "b158c6386a892efc6c5e4682e682829baac1f933"
  4419. },
  4420. "dist": {
  4421. "type": "zip",
  4422. "url": "https://api.github.com/repos/livewire/livewire/zipball/b158c6386a892efc6c5e4682e682829baac1f933",
  4423. "reference": "b158c6386a892efc6c5e4682e682829baac1f933",
  4424. "shasum": ""
  4425. },
  4426. "require": {
  4427. "illuminate/database": "^10.0|^11.0",
  4428. "illuminate/routing": "^10.0|^11.0",
  4429. "illuminate/support": "^10.0|^11.0",
  4430. "illuminate/validation": "^10.0|^11.0",
  4431. "league/mime-type-detection": "^1.9",
  4432. "php": "^8.1",
  4433. "symfony/console": "^6.0|^7.0",
  4434. "symfony/http-kernel": "^6.2|^7.0"
  4435. },
  4436. "require-dev": {
  4437. "calebporzio/sushi": "^2.1",
  4438. "laravel/framework": "^10.15.0|^11.0",
  4439. "laravel/prompts": "^0.1.6",
  4440. "mockery/mockery": "^1.3.1",
  4441. "orchestra/testbench": "^8.21.0|^9.0",
  4442. "orchestra/testbench-dusk": "^8.24|^9.1",
  4443. "phpunit/phpunit": "^10.4",
  4444. "psy/psysh": "^0.11.22|^0.12"
  4445. },
  4446. "type": "library",
  4447. "extra": {
  4448. "laravel": {
  4449. "providers": [
  4450. "Livewire\\LivewireServiceProvider"
  4451. ],
  4452. "aliases": {
  4453. "Livewire": "Livewire\\Livewire"
  4454. }
  4455. }
  4456. },
  4457. "autoload": {
  4458. "files": [
  4459. "src/helpers.php"
  4460. ],
  4461. "psr-4": {
  4462. "Livewire\\": "src/"
  4463. }
  4464. },
  4465. "notification-url": "https://packagist.org/downloads/",
  4466. "license": [
  4467. "MIT"
  4468. ],
  4469. "authors": [
  4470. {
  4471. "name": "Caleb Porzio",
  4472. "email": "calebporzio@gmail.com"
  4473. }
  4474. ],
  4475. "description": "A front-end framework for Laravel.",
  4476. "support": {
  4477. "issues": "https://github.com/livewire/livewire/issues",
  4478. "source": "https://github.com/livewire/livewire/tree/v3.5.4"
  4479. },
  4480. "funding": [
  4481. {
  4482. "url": "https://github.com/livewire",
  4483. "type": "github"
  4484. }
  4485. ],
  4486. "time": "2024-07-15T18:27:32+00:00"
  4487. },
  4488. {
  4489. "name": "masterminds/html5",
  4490. "version": "2.9.0",
  4491. "source": {
  4492. "type": "git",
  4493. "url": "https://github.com/Masterminds/html5-php.git",
  4494. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  4495. },
  4496. "dist": {
  4497. "type": "zip",
  4498. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4499. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4500. "shasum": ""
  4501. },
  4502. "require": {
  4503. "ext-dom": "*",
  4504. "php": ">=5.3.0"
  4505. },
  4506. "require-dev": {
  4507. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4508. },
  4509. "type": "library",
  4510. "extra": {
  4511. "branch-alias": {
  4512. "dev-master": "2.7-dev"
  4513. }
  4514. },
  4515. "autoload": {
  4516. "psr-4": {
  4517. "Masterminds\\": "src"
  4518. }
  4519. },
  4520. "notification-url": "https://packagist.org/downloads/",
  4521. "license": [
  4522. "MIT"
  4523. ],
  4524. "authors": [
  4525. {
  4526. "name": "Matt Butcher",
  4527. "email": "technosophos@gmail.com"
  4528. },
  4529. {
  4530. "name": "Matt Farina",
  4531. "email": "matt@mattfarina.com"
  4532. },
  4533. {
  4534. "name": "Asmir Mustafic",
  4535. "email": "goetas@gmail.com"
  4536. }
  4537. ],
  4538. "description": "An HTML5 parser and serializer.",
  4539. "homepage": "http://masterminds.github.io/html5-php",
  4540. "keywords": [
  4541. "HTML5",
  4542. "dom",
  4543. "html",
  4544. "parser",
  4545. "querypath",
  4546. "serializer",
  4547. "xml"
  4548. ],
  4549. "support": {
  4550. "issues": "https://github.com/Masterminds/html5-php/issues",
  4551. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  4552. },
  4553. "time": "2024-03-31T07:05:07+00:00"
  4554. },
  4555. {
  4556. "name": "matomo/device-detector",
  4557. "version": "6.3.2",
  4558. "source": {
  4559. "type": "git",
  4560. "url": "https://github.com/matomo-org/device-detector.git",
  4561. "reference": "fd4042cb6a7f3f985a81aedc075dd59e0b991a51"
  4562. },
  4563. "dist": {
  4564. "type": "zip",
  4565. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/fd4042cb6a7f3f985a81aedc075dd59e0b991a51",
  4566. "reference": "fd4042cb6a7f3f985a81aedc075dd59e0b991a51",
  4567. "shasum": ""
  4568. },
  4569. "require": {
  4570. "mustangostang/spyc": "*",
  4571. "php": "^7.2|^8.0"
  4572. },
  4573. "replace": {
  4574. "piwik/device-detector": "self.version"
  4575. },
  4576. "require-dev": {
  4577. "matthiasmullie/scrapbook": "^1.4.7",
  4578. "mayflower/mo4-coding-standard": "^v9.0.0",
  4579. "phpstan/phpstan": "^1.10.44",
  4580. "phpunit/phpunit": "^8.5.8",
  4581. "psr/cache": "^1.0.1",
  4582. "psr/simple-cache": "^1.0.1",
  4583. "symfony/yaml": "^5.1.7"
  4584. },
  4585. "suggest": {
  4586. "doctrine/cache": "Can directly be used for caching purpose",
  4587. "ext-yaml": "Necessary for using the Pecl YAML parser"
  4588. },
  4589. "type": "library",
  4590. "autoload": {
  4591. "psr-4": {
  4592. "DeviceDetector\\": ""
  4593. },
  4594. "exclude-from-classmap": [
  4595. "Tests/"
  4596. ]
  4597. },
  4598. "notification-url": "https://packagist.org/downloads/",
  4599. "license": [
  4600. "LGPL-3.0-or-later"
  4601. ],
  4602. "authors": [
  4603. {
  4604. "name": "The Matomo Team",
  4605. "email": "hello@matomo.org",
  4606. "homepage": "https://matomo.org/team/"
  4607. }
  4608. ],
  4609. "description": "The Universal Device Detection library, that parses User Agents and detects devices (desktop, tablet, mobile, tv, cars, console, etc.), clients (browsers, media players, mobile apps, feed readers, libraries, etc), operating systems, devices, brands and models.",
  4610. "homepage": "https://matomo.org",
  4611. "keywords": [
  4612. "devicedetection",
  4613. "parser",
  4614. "useragent"
  4615. ],
  4616. "support": {
  4617. "forum": "https://forum.matomo.org/",
  4618. "issues": "https://github.com/matomo-org/device-detector/issues",
  4619. "source": "https://github.com/matomo-org/matomo",
  4620. "wiki": "https://dev.matomo.org/"
  4621. },
  4622. "time": "2024-05-28T10:16:19+00:00"
  4623. },
  4624. {
  4625. "name": "monolog/monolog",
  4626. "version": "3.7.0",
  4627. "source": {
  4628. "type": "git",
  4629. "url": "https://github.com/Seldaek/monolog.git",
  4630. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8"
  4631. },
  4632. "dist": {
  4633. "type": "zip",
  4634. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4635. "reference": "f4393b648b78a5408747de94fca38beb5f7e9ef8",
  4636. "shasum": ""
  4637. },
  4638. "require": {
  4639. "php": ">=8.1",
  4640. "psr/log": "^2.0 || ^3.0"
  4641. },
  4642. "provide": {
  4643. "psr/log-implementation": "3.0.0"
  4644. },
  4645. "require-dev": {
  4646. "aws/aws-sdk-php": "^3.0",
  4647. "doctrine/couchdb": "~1.0@dev",
  4648. "elasticsearch/elasticsearch": "^7 || ^8",
  4649. "ext-json": "*",
  4650. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4651. "guzzlehttp/guzzle": "^7.4.5",
  4652. "guzzlehttp/psr7": "^2.2",
  4653. "mongodb/mongodb": "^1.8",
  4654. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4655. "phpstan/phpstan": "^1.9",
  4656. "phpstan/phpstan-deprecation-rules": "^1.0",
  4657. "phpstan/phpstan-strict-rules": "^1.4",
  4658. "phpunit/phpunit": "^10.5.17",
  4659. "predis/predis": "^1.1 || ^2",
  4660. "ruflin/elastica": "^7",
  4661. "symfony/mailer": "^5.4 || ^6",
  4662. "symfony/mime": "^5.4 || ^6"
  4663. },
  4664. "suggest": {
  4665. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4666. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4667. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4668. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4669. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4670. "ext-mbstring": "Allow to work properly with unicode symbols",
  4671. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4672. "ext-openssl": "Required to send log messages using SSL",
  4673. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4674. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4675. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4676. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4677. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4678. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4679. },
  4680. "type": "library",
  4681. "extra": {
  4682. "branch-alias": {
  4683. "dev-main": "3.x-dev"
  4684. }
  4685. },
  4686. "autoload": {
  4687. "psr-4": {
  4688. "Monolog\\": "src/Monolog"
  4689. }
  4690. },
  4691. "notification-url": "https://packagist.org/downloads/",
  4692. "license": [
  4693. "MIT"
  4694. ],
  4695. "authors": [
  4696. {
  4697. "name": "Jordi Boggiano",
  4698. "email": "j.boggiano@seld.be",
  4699. "homepage": "https://seld.be"
  4700. }
  4701. ],
  4702. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4703. "homepage": "https://github.com/Seldaek/monolog",
  4704. "keywords": [
  4705. "log",
  4706. "logging",
  4707. "psr-3"
  4708. ],
  4709. "support": {
  4710. "issues": "https://github.com/Seldaek/monolog/issues",
  4711. "source": "https://github.com/Seldaek/monolog/tree/3.7.0"
  4712. },
  4713. "funding": [
  4714. {
  4715. "url": "https://github.com/Seldaek",
  4716. "type": "github"
  4717. },
  4718. {
  4719. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4720. "type": "tidelift"
  4721. }
  4722. ],
  4723. "time": "2024-06-28T09:40:51+00:00"
  4724. },
  4725. {
  4726. "name": "mtdowling/jmespath.php",
  4727. "version": "2.7.0",
  4728. "source": {
  4729. "type": "git",
  4730. "url": "https://github.com/jmespath/jmespath.php.git",
  4731. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  4732. },
  4733. "dist": {
  4734. "type": "zip",
  4735. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4736. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  4737. "shasum": ""
  4738. },
  4739. "require": {
  4740. "php": "^7.2.5 || ^8.0",
  4741. "symfony/polyfill-mbstring": "^1.17"
  4742. },
  4743. "require-dev": {
  4744. "composer/xdebug-handler": "^3.0.3",
  4745. "phpunit/phpunit": "^8.5.33"
  4746. },
  4747. "bin": [
  4748. "bin/jp.php"
  4749. ],
  4750. "type": "library",
  4751. "extra": {
  4752. "branch-alias": {
  4753. "dev-master": "2.7-dev"
  4754. }
  4755. },
  4756. "autoload": {
  4757. "files": [
  4758. "src/JmesPath.php"
  4759. ],
  4760. "psr-4": {
  4761. "JmesPath\\": "src/"
  4762. }
  4763. },
  4764. "notification-url": "https://packagist.org/downloads/",
  4765. "license": [
  4766. "MIT"
  4767. ],
  4768. "authors": [
  4769. {
  4770. "name": "Graham Campbell",
  4771. "email": "hello@gjcampbell.co.uk",
  4772. "homepage": "https://github.com/GrahamCampbell"
  4773. },
  4774. {
  4775. "name": "Michael Dowling",
  4776. "email": "mtdowling@gmail.com",
  4777. "homepage": "https://github.com/mtdowling"
  4778. }
  4779. ],
  4780. "description": "Declaratively specify how to extract elements from a JSON document",
  4781. "keywords": [
  4782. "json",
  4783. "jsonpath"
  4784. ],
  4785. "support": {
  4786. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4787. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  4788. },
  4789. "time": "2023-08-25T10:54:48+00:00"
  4790. },
  4791. {
  4792. "name": "mustangostang/spyc",
  4793. "version": "0.6.3",
  4794. "source": {
  4795. "type": "git",
  4796. "url": "https://github.com/mustangostang/spyc.git",
  4797. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  4798. },
  4799. "dist": {
  4800. "type": "zip",
  4801. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  4802. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  4803. "shasum": ""
  4804. },
  4805. "require": {
  4806. "php": ">=5.3.1"
  4807. },
  4808. "require-dev": {
  4809. "phpunit/phpunit": "4.3.*@dev"
  4810. },
  4811. "type": "library",
  4812. "extra": {
  4813. "branch-alias": {
  4814. "dev-master": "0.5.x-dev"
  4815. }
  4816. },
  4817. "autoload": {
  4818. "files": [
  4819. "Spyc.php"
  4820. ]
  4821. },
  4822. "notification-url": "https://packagist.org/downloads/",
  4823. "license": [
  4824. "MIT"
  4825. ],
  4826. "authors": [
  4827. {
  4828. "name": "mustangostang",
  4829. "email": "vlad.andersen@gmail.com"
  4830. }
  4831. ],
  4832. "description": "A simple YAML loader/dumper class for PHP",
  4833. "homepage": "https://github.com/mustangostang/spyc/",
  4834. "keywords": [
  4835. "spyc",
  4836. "yaml",
  4837. "yml"
  4838. ],
  4839. "support": {
  4840. "issues": "https://github.com/mustangostang/spyc/issues",
  4841. "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
  4842. },
  4843. "time": "2019-09-10T13:16:29+00:00"
  4844. },
  4845. {
  4846. "name": "nesbot/carbon",
  4847. "version": "3.7.0",
  4848. "source": {
  4849. "type": "git",
  4850. "url": "https://github.com/briannesbitt/Carbon.git",
  4851. "reference": "cb4374784c87d0a0294e8513a52eb63c0aff3139"
  4852. },
  4853. "dist": {
  4854. "type": "zip",
  4855. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/cb4374784c87d0a0294e8513a52eb63c0aff3139",
  4856. "reference": "cb4374784c87d0a0294e8513a52eb63c0aff3139",
  4857. "shasum": ""
  4858. },
  4859. "require": {
  4860. "carbonphp/carbon-doctrine-types": "*",
  4861. "ext-json": "*",
  4862. "php": "^8.1",
  4863. "psr/clock": "^1.0",
  4864. "symfony/clock": "^6.3 || ^7.0",
  4865. "symfony/polyfill-mbstring": "^1.0",
  4866. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  4867. },
  4868. "provide": {
  4869. "psr/clock-implementation": "1.0"
  4870. },
  4871. "require-dev": {
  4872. "doctrine/dbal": "^3.6.3 || ^4.0",
  4873. "doctrine/orm": "^2.15.2 || ^3.0",
  4874. "friendsofphp/php-cs-fixer": "^3.57.2",
  4875. "kylekatarnls/multi-tester": "^2.5.3",
  4876. "ondrejmirtes/better-reflection": "^6.25.0.4",
  4877. "phpmd/phpmd": "^2.15.0",
  4878. "phpstan/extension-installer": "^1.3.1",
  4879. "phpstan/phpstan": "^1.11.2",
  4880. "phpunit/phpunit": "^10.5.20",
  4881. "squizlabs/php_codesniffer": "^3.9.0"
  4882. },
  4883. "bin": [
  4884. "bin/carbon"
  4885. ],
  4886. "type": "library",
  4887. "extra": {
  4888. "branch-alias": {
  4889. "dev-master": "3.x-dev",
  4890. "dev-2.x": "2.x-dev"
  4891. },
  4892. "laravel": {
  4893. "providers": [
  4894. "Carbon\\Laravel\\ServiceProvider"
  4895. ]
  4896. },
  4897. "phpstan": {
  4898. "includes": [
  4899. "extension.neon"
  4900. ]
  4901. }
  4902. },
  4903. "autoload": {
  4904. "psr-4": {
  4905. "Carbon\\": "src/Carbon/"
  4906. }
  4907. },
  4908. "notification-url": "https://packagist.org/downloads/",
  4909. "license": [
  4910. "MIT"
  4911. ],
  4912. "authors": [
  4913. {
  4914. "name": "Brian Nesbitt",
  4915. "email": "brian@nesbot.com",
  4916. "homepage": "https://markido.com"
  4917. },
  4918. {
  4919. "name": "kylekatarnls",
  4920. "homepage": "https://github.com/kylekatarnls"
  4921. }
  4922. ],
  4923. "description": "An API extension for DateTime that supports 281 different languages.",
  4924. "homepage": "https://carbon.nesbot.com",
  4925. "keywords": [
  4926. "date",
  4927. "datetime",
  4928. "time"
  4929. ],
  4930. "support": {
  4931. "docs": "https://carbon.nesbot.com/docs",
  4932. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4933. "source": "https://github.com/briannesbitt/Carbon"
  4934. },
  4935. "funding": [
  4936. {
  4937. "url": "https://github.com/sponsors/kylekatarnls",
  4938. "type": "github"
  4939. },
  4940. {
  4941. "url": "https://opencollective.com/Carbon#sponsor",
  4942. "type": "opencollective"
  4943. },
  4944. {
  4945. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4946. "type": "tidelift"
  4947. }
  4948. ],
  4949. "time": "2024-07-16T22:29:20+00:00"
  4950. },
  4951. {
  4952. "name": "nette/schema",
  4953. "version": "v1.3.0",
  4954. "source": {
  4955. "type": "git",
  4956. "url": "https://github.com/nette/schema.git",
  4957. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188"
  4958. },
  4959. "dist": {
  4960. "type": "zip",
  4961. "url": "https://api.github.com/repos/nette/schema/zipball/a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  4962. "reference": "a6d3a6d1f545f01ef38e60f375d1cf1f4de98188",
  4963. "shasum": ""
  4964. },
  4965. "require": {
  4966. "nette/utils": "^4.0",
  4967. "php": "8.1 - 8.3"
  4968. },
  4969. "require-dev": {
  4970. "nette/tester": "^2.4",
  4971. "phpstan/phpstan-nette": "^1.0",
  4972. "tracy/tracy": "^2.8"
  4973. },
  4974. "type": "library",
  4975. "extra": {
  4976. "branch-alias": {
  4977. "dev-master": "1.3-dev"
  4978. }
  4979. },
  4980. "autoload": {
  4981. "classmap": [
  4982. "src/"
  4983. ]
  4984. },
  4985. "notification-url": "https://packagist.org/downloads/",
  4986. "license": [
  4987. "BSD-3-Clause",
  4988. "GPL-2.0-only",
  4989. "GPL-3.0-only"
  4990. ],
  4991. "authors": [
  4992. {
  4993. "name": "David Grudl",
  4994. "homepage": "https://davidgrudl.com"
  4995. },
  4996. {
  4997. "name": "Nette Community",
  4998. "homepage": "https://nette.org/contributors"
  4999. }
  5000. ],
  5001. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  5002. "homepage": "https://nette.org",
  5003. "keywords": [
  5004. "config",
  5005. "nette"
  5006. ],
  5007. "support": {
  5008. "issues": "https://github.com/nette/schema/issues",
  5009. "source": "https://github.com/nette/schema/tree/v1.3.0"
  5010. },
  5011. "time": "2023-12-11T11:54:22+00:00"
  5012. },
  5013. {
  5014. "name": "nette/utils",
  5015. "version": "v4.0.5",
  5016. "source": {
  5017. "type": "git",
  5018. "url": "https://github.com/nette/utils.git",
  5019. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  5020. },
  5021. "dist": {
  5022. "type": "zip",
  5023. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  5024. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  5025. "shasum": ""
  5026. },
  5027. "require": {
  5028. "php": "8.0 - 8.4"
  5029. },
  5030. "conflict": {
  5031. "nette/finder": "<3",
  5032. "nette/schema": "<1.2.2"
  5033. },
  5034. "require-dev": {
  5035. "jetbrains/phpstorm-attributes": "dev-master",
  5036. "nette/tester": "^2.5",
  5037. "phpstan/phpstan": "^1.0",
  5038. "tracy/tracy": "^2.9"
  5039. },
  5040. "suggest": {
  5041. "ext-gd": "to use Image",
  5042. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  5043. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  5044. "ext-json": "to use Nette\\Utils\\Json",
  5045. "ext-mbstring": "to use Strings::lower() etc...",
  5046. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  5047. },
  5048. "type": "library",
  5049. "extra": {
  5050. "branch-alias": {
  5051. "dev-master": "4.0-dev"
  5052. }
  5053. },
  5054. "autoload": {
  5055. "classmap": [
  5056. "src/"
  5057. ]
  5058. },
  5059. "notification-url": "https://packagist.org/downloads/",
  5060. "license": [
  5061. "BSD-3-Clause",
  5062. "GPL-2.0-only",
  5063. "GPL-3.0-only"
  5064. ],
  5065. "authors": [
  5066. {
  5067. "name": "David Grudl",
  5068. "homepage": "https://davidgrudl.com"
  5069. },
  5070. {
  5071. "name": "Nette Community",
  5072. "homepage": "https://nette.org/contributors"
  5073. }
  5074. ],
  5075. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  5076. "homepage": "https://nette.org",
  5077. "keywords": [
  5078. "array",
  5079. "core",
  5080. "datetime",
  5081. "images",
  5082. "json",
  5083. "nette",
  5084. "paginator",
  5085. "password",
  5086. "slugify",
  5087. "string",
  5088. "unicode",
  5089. "utf-8",
  5090. "utility",
  5091. "validation"
  5092. ],
  5093. "support": {
  5094. "issues": "https://github.com/nette/utils/issues",
  5095. "source": "https://github.com/nette/utils/tree/v4.0.5"
  5096. },
  5097. "time": "2024-08-07T15:39:19+00:00"
  5098. },
  5099. {
  5100. "name": "nikic/php-parser",
  5101. "version": "v5.1.0",
  5102. "source": {
  5103. "type": "git",
  5104. "url": "https://github.com/nikic/PHP-Parser.git",
  5105. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1"
  5106. },
  5107. "dist": {
  5108. "type": "zip",
  5109. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  5110. "reference": "683130c2ff8c2739f4822ff7ac5c873ec529abd1",
  5111. "shasum": ""
  5112. },
  5113. "require": {
  5114. "ext-ctype": "*",
  5115. "ext-json": "*",
  5116. "ext-tokenizer": "*",
  5117. "php": ">=7.4"
  5118. },
  5119. "require-dev": {
  5120. "ircmaxell/php-yacc": "^0.0.7",
  5121. "phpunit/phpunit": "^9.0"
  5122. },
  5123. "bin": [
  5124. "bin/php-parse"
  5125. ],
  5126. "type": "library",
  5127. "extra": {
  5128. "branch-alias": {
  5129. "dev-master": "5.0-dev"
  5130. }
  5131. },
  5132. "autoload": {
  5133. "psr-4": {
  5134. "PhpParser\\": "lib/PhpParser"
  5135. }
  5136. },
  5137. "notification-url": "https://packagist.org/downloads/",
  5138. "license": [
  5139. "BSD-3-Clause"
  5140. ],
  5141. "authors": [
  5142. {
  5143. "name": "Nikita Popov"
  5144. }
  5145. ],
  5146. "description": "A PHP parser written in PHP",
  5147. "keywords": [
  5148. "parser",
  5149. "php"
  5150. ],
  5151. "support": {
  5152. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5153. "source": "https://github.com/nikic/PHP-Parser/tree/v5.1.0"
  5154. },
  5155. "time": "2024-07-01T20:03:41+00:00"
  5156. },
  5157. {
  5158. "name": "nunomaduro/termwind",
  5159. "version": "v2.0.1",
  5160. "source": {
  5161. "type": "git",
  5162. "url": "https://github.com/nunomaduro/termwind.git",
  5163. "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a"
  5164. },
  5165. "dist": {
  5166. "type": "zip",
  5167. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/58c4c58cf23df7f498daeb97092e34f5259feb6a",
  5168. "reference": "58c4c58cf23df7f498daeb97092e34f5259feb6a",
  5169. "shasum": ""
  5170. },
  5171. "require": {
  5172. "ext-mbstring": "*",
  5173. "php": "^8.2",
  5174. "symfony/console": "^7.0.4"
  5175. },
  5176. "require-dev": {
  5177. "ergebnis/phpstan-rules": "^2.2.0",
  5178. "illuminate/console": "^11.0.0",
  5179. "laravel/pint": "^1.14.0",
  5180. "mockery/mockery": "^1.6.7",
  5181. "pestphp/pest": "^2.34.1",
  5182. "phpstan/phpstan": "^1.10.59",
  5183. "phpstan/phpstan-strict-rules": "^1.5.2",
  5184. "symfony/var-dumper": "^7.0.4",
  5185. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  5186. },
  5187. "type": "library",
  5188. "extra": {
  5189. "laravel": {
  5190. "providers": [
  5191. "Termwind\\Laravel\\TermwindServiceProvider"
  5192. ]
  5193. },
  5194. "branch-alias": {
  5195. "dev-2.x": "2.x-dev"
  5196. }
  5197. },
  5198. "autoload": {
  5199. "files": [
  5200. "src/Functions.php"
  5201. ],
  5202. "psr-4": {
  5203. "Termwind\\": "src/"
  5204. }
  5205. },
  5206. "notification-url": "https://packagist.org/downloads/",
  5207. "license": [
  5208. "MIT"
  5209. ],
  5210. "authors": [
  5211. {
  5212. "name": "Nuno Maduro",
  5213. "email": "enunomaduro@gmail.com"
  5214. }
  5215. ],
  5216. "description": "Its like Tailwind CSS, but for the console.",
  5217. "keywords": [
  5218. "cli",
  5219. "console",
  5220. "css",
  5221. "package",
  5222. "php",
  5223. "style"
  5224. ],
  5225. "support": {
  5226. "issues": "https://github.com/nunomaduro/termwind/issues",
  5227. "source": "https://github.com/nunomaduro/termwind/tree/v2.0.1"
  5228. },
  5229. "funding": [
  5230. {
  5231. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5232. "type": "custom"
  5233. },
  5234. {
  5235. "url": "https://github.com/nunomaduro",
  5236. "type": "github"
  5237. },
  5238. {
  5239. "url": "https://github.com/xiCO2k",
  5240. "type": "github"
  5241. }
  5242. ],
  5243. "time": "2024-03-06T16:17:14+00:00"
  5244. },
  5245. {
  5246. "name": "openspout/openspout",
  5247. "version": "v4.24.5",
  5248. "source": {
  5249. "type": "git",
  5250. "url": "https://github.com/openspout/openspout.git",
  5251. "reference": "393299ae21153f042f48b185f2adeb4b157d1d93"
  5252. },
  5253. "dist": {
  5254. "type": "zip",
  5255. "url": "https://api.github.com/repos/openspout/openspout/zipball/393299ae21153f042f48b185f2adeb4b157d1d93",
  5256. "reference": "393299ae21153f042f48b185f2adeb4b157d1d93",
  5257. "shasum": ""
  5258. },
  5259. "require": {
  5260. "ext-dom": "*",
  5261. "ext-fileinfo": "*",
  5262. "ext-filter": "*",
  5263. "ext-libxml": "*",
  5264. "ext-xmlreader": "*",
  5265. "ext-zip": "*",
  5266. "php": "~8.1.0 || ~8.2.0 || ~8.3.0"
  5267. },
  5268. "require-dev": {
  5269. "ext-zlib": "*",
  5270. "friendsofphp/php-cs-fixer": "^3.60.0",
  5271. "infection/infection": "^0.29.6",
  5272. "phpbench/phpbench": "^1.3.1",
  5273. "phpstan/phpstan": "^1.11.8",
  5274. "phpstan/phpstan-phpunit": "^1.4.0",
  5275. "phpstan/phpstan-strict-rules": "^1.6.0",
  5276. "phpunit/phpunit": "^10.5.20 || ^11.2.8"
  5277. },
  5278. "suggest": {
  5279. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5280. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5281. },
  5282. "type": "library",
  5283. "extra": {
  5284. "branch-alias": {
  5285. "dev-master": "3.3.x-dev"
  5286. }
  5287. },
  5288. "autoload": {
  5289. "psr-4": {
  5290. "OpenSpout\\": "src/"
  5291. }
  5292. },
  5293. "notification-url": "https://packagist.org/downloads/",
  5294. "license": [
  5295. "MIT"
  5296. ],
  5297. "authors": [
  5298. {
  5299. "name": "Adrien Loison",
  5300. "email": "adrien@box.com"
  5301. }
  5302. ],
  5303. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5304. "homepage": "https://github.com/openspout/openspout",
  5305. "keywords": [
  5306. "OOXML",
  5307. "csv",
  5308. "excel",
  5309. "memory",
  5310. "odf",
  5311. "ods",
  5312. "office",
  5313. "open",
  5314. "php",
  5315. "read",
  5316. "scale",
  5317. "spreadsheet",
  5318. "stream",
  5319. "write",
  5320. "xlsx"
  5321. ],
  5322. "support": {
  5323. "issues": "https://github.com/openspout/openspout/issues",
  5324. "source": "https://github.com/openspout/openspout/tree/v4.24.5"
  5325. },
  5326. "funding": [
  5327. {
  5328. "url": "https://paypal.me/filippotessarotto",
  5329. "type": "custom"
  5330. },
  5331. {
  5332. "url": "https://github.com/Slamdunk",
  5333. "type": "github"
  5334. }
  5335. ],
  5336. "time": "2024-07-26T05:48:04+00:00"
  5337. },
  5338. {
  5339. "name": "paragonie/constant_time_encoding",
  5340. "version": "v3.0.0",
  5341. "source": {
  5342. "type": "git",
  5343. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5344. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5345. },
  5346. "dist": {
  5347. "type": "zip",
  5348. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5349. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5350. "shasum": ""
  5351. },
  5352. "require": {
  5353. "php": "^8"
  5354. },
  5355. "require-dev": {
  5356. "phpunit/phpunit": "^9",
  5357. "vimeo/psalm": "^4|^5"
  5358. },
  5359. "type": "library",
  5360. "autoload": {
  5361. "psr-4": {
  5362. "ParagonIE\\ConstantTime\\": "src/"
  5363. }
  5364. },
  5365. "notification-url": "https://packagist.org/downloads/",
  5366. "license": [
  5367. "MIT"
  5368. ],
  5369. "authors": [
  5370. {
  5371. "name": "Paragon Initiative Enterprises",
  5372. "email": "security@paragonie.com",
  5373. "homepage": "https://paragonie.com",
  5374. "role": "Maintainer"
  5375. },
  5376. {
  5377. "name": "Steve 'Sc00bz' Thomas",
  5378. "email": "steve@tobtu.com",
  5379. "homepage": "https://www.tobtu.com",
  5380. "role": "Original Developer"
  5381. }
  5382. ],
  5383. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5384. "keywords": [
  5385. "base16",
  5386. "base32",
  5387. "base32_decode",
  5388. "base32_encode",
  5389. "base64",
  5390. "base64_decode",
  5391. "base64_encode",
  5392. "bin2hex",
  5393. "encoding",
  5394. "hex",
  5395. "hex2bin",
  5396. "rfc4648"
  5397. ],
  5398. "support": {
  5399. "email": "info@paragonie.com",
  5400. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5401. "source": "https://github.com/paragonie/constant_time_encoding"
  5402. },
  5403. "time": "2024-05-08T12:36:18+00:00"
  5404. },
  5405. {
  5406. "name": "paragonie/random_compat",
  5407. "version": "v9.99.100",
  5408. "source": {
  5409. "type": "git",
  5410. "url": "https://github.com/paragonie/random_compat.git",
  5411. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5412. },
  5413. "dist": {
  5414. "type": "zip",
  5415. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5416. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5417. "shasum": ""
  5418. },
  5419. "require": {
  5420. "php": ">= 7"
  5421. },
  5422. "require-dev": {
  5423. "phpunit/phpunit": "4.*|5.*",
  5424. "vimeo/psalm": "^1"
  5425. },
  5426. "suggest": {
  5427. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5428. },
  5429. "type": "library",
  5430. "notification-url": "https://packagist.org/downloads/",
  5431. "license": [
  5432. "MIT"
  5433. ],
  5434. "authors": [
  5435. {
  5436. "name": "Paragon Initiative Enterprises",
  5437. "email": "security@paragonie.com",
  5438. "homepage": "https://paragonie.com"
  5439. }
  5440. ],
  5441. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5442. "keywords": [
  5443. "csprng",
  5444. "polyfill",
  5445. "pseudorandom",
  5446. "random"
  5447. ],
  5448. "support": {
  5449. "email": "info@paragonie.com",
  5450. "issues": "https://github.com/paragonie/random_compat/issues",
  5451. "source": "https://github.com/paragonie/random_compat"
  5452. },
  5453. "time": "2020-10-15T08:29:30+00:00"
  5454. },
  5455. {
  5456. "name": "phpoption/phpoption",
  5457. "version": "1.9.3",
  5458. "source": {
  5459. "type": "git",
  5460. "url": "https://github.com/schmittjoh/php-option.git",
  5461. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5462. },
  5463. "dist": {
  5464. "type": "zip",
  5465. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5466. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5467. "shasum": ""
  5468. },
  5469. "require": {
  5470. "php": "^7.2.5 || ^8.0"
  5471. },
  5472. "require-dev": {
  5473. "bamarni/composer-bin-plugin": "^1.8.2",
  5474. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5475. },
  5476. "type": "library",
  5477. "extra": {
  5478. "bamarni-bin": {
  5479. "bin-links": true,
  5480. "forward-command": false
  5481. },
  5482. "branch-alias": {
  5483. "dev-master": "1.9-dev"
  5484. }
  5485. },
  5486. "autoload": {
  5487. "psr-4": {
  5488. "PhpOption\\": "src/PhpOption/"
  5489. }
  5490. },
  5491. "notification-url": "https://packagist.org/downloads/",
  5492. "license": [
  5493. "Apache-2.0"
  5494. ],
  5495. "authors": [
  5496. {
  5497. "name": "Johannes M. Schmitt",
  5498. "email": "schmittjoh@gmail.com",
  5499. "homepage": "https://github.com/schmittjoh"
  5500. },
  5501. {
  5502. "name": "Graham Campbell",
  5503. "email": "hello@gjcampbell.co.uk",
  5504. "homepage": "https://github.com/GrahamCampbell"
  5505. }
  5506. ],
  5507. "description": "Option Type for PHP",
  5508. "keywords": [
  5509. "language",
  5510. "option",
  5511. "php",
  5512. "type"
  5513. ],
  5514. "support": {
  5515. "issues": "https://github.com/schmittjoh/php-option/issues",
  5516. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5517. },
  5518. "funding": [
  5519. {
  5520. "url": "https://github.com/GrahamCampbell",
  5521. "type": "github"
  5522. },
  5523. {
  5524. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5525. "type": "tidelift"
  5526. }
  5527. ],
  5528. "time": "2024-07-20T21:41:07+00:00"
  5529. },
  5530. {
  5531. "name": "phpseclib/phpseclib",
  5532. "version": "3.0.39",
  5533. "source": {
  5534. "type": "git",
  5535. "url": "https://github.com/phpseclib/phpseclib.git",
  5536. "reference": "211ebc399c6e73c225a018435fe5ae209d1d1485"
  5537. },
  5538. "dist": {
  5539. "type": "zip",
  5540. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/211ebc399c6e73c225a018435fe5ae209d1d1485",
  5541. "reference": "211ebc399c6e73c225a018435fe5ae209d1d1485",
  5542. "shasum": ""
  5543. },
  5544. "require": {
  5545. "paragonie/constant_time_encoding": "^1|^2|^3",
  5546. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5547. "php": ">=5.6.1"
  5548. },
  5549. "require-dev": {
  5550. "phpunit/phpunit": "*"
  5551. },
  5552. "suggest": {
  5553. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5554. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5555. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5556. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5557. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5558. },
  5559. "type": "library",
  5560. "autoload": {
  5561. "files": [
  5562. "phpseclib/bootstrap.php"
  5563. ],
  5564. "psr-4": {
  5565. "phpseclib3\\": "phpseclib/"
  5566. }
  5567. },
  5568. "notification-url": "https://packagist.org/downloads/",
  5569. "license": [
  5570. "MIT"
  5571. ],
  5572. "authors": [
  5573. {
  5574. "name": "Jim Wigginton",
  5575. "email": "terrafrost@php.net",
  5576. "role": "Lead Developer"
  5577. },
  5578. {
  5579. "name": "Patrick Monnerat",
  5580. "email": "pm@datasphere.ch",
  5581. "role": "Developer"
  5582. },
  5583. {
  5584. "name": "Andreas Fischer",
  5585. "email": "bantu@phpbb.com",
  5586. "role": "Developer"
  5587. },
  5588. {
  5589. "name": "Hans-Jürgen Petrich",
  5590. "email": "petrich@tronic-media.com",
  5591. "role": "Developer"
  5592. },
  5593. {
  5594. "name": "Graham Campbell",
  5595. "email": "graham@alt-three.com",
  5596. "role": "Developer"
  5597. }
  5598. ],
  5599. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5600. "homepage": "http://phpseclib.sourceforge.net",
  5601. "keywords": [
  5602. "BigInteger",
  5603. "aes",
  5604. "asn.1",
  5605. "asn1",
  5606. "blowfish",
  5607. "crypto",
  5608. "cryptography",
  5609. "encryption",
  5610. "rsa",
  5611. "security",
  5612. "sftp",
  5613. "signature",
  5614. "signing",
  5615. "ssh",
  5616. "twofish",
  5617. "x.509",
  5618. "x509"
  5619. ],
  5620. "support": {
  5621. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5622. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.39"
  5623. },
  5624. "funding": [
  5625. {
  5626. "url": "https://github.com/terrafrost",
  5627. "type": "github"
  5628. },
  5629. {
  5630. "url": "https://www.patreon.com/phpseclib",
  5631. "type": "patreon"
  5632. },
  5633. {
  5634. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5635. "type": "tidelift"
  5636. }
  5637. ],
  5638. "time": "2024-06-24T06:27:33+00:00"
  5639. },
  5640. {
  5641. "name": "psr/cache",
  5642. "version": "3.0.0",
  5643. "source": {
  5644. "type": "git",
  5645. "url": "https://github.com/php-fig/cache.git",
  5646. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5647. },
  5648. "dist": {
  5649. "type": "zip",
  5650. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5651. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5652. "shasum": ""
  5653. },
  5654. "require": {
  5655. "php": ">=8.0.0"
  5656. },
  5657. "type": "library",
  5658. "extra": {
  5659. "branch-alias": {
  5660. "dev-master": "1.0.x-dev"
  5661. }
  5662. },
  5663. "autoload": {
  5664. "psr-4": {
  5665. "Psr\\Cache\\": "src/"
  5666. }
  5667. },
  5668. "notification-url": "https://packagist.org/downloads/",
  5669. "license": [
  5670. "MIT"
  5671. ],
  5672. "authors": [
  5673. {
  5674. "name": "PHP-FIG",
  5675. "homepage": "https://www.php-fig.org/"
  5676. }
  5677. ],
  5678. "description": "Common interface for caching libraries",
  5679. "keywords": [
  5680. "cache",
  5681. "psr",
  5682. "psr-6"
  5683. ],
  5684. "support": {
  5685. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5686. },
  5687. "time": "2021-02-03T23:26:27+00:00"
  5688. },
  5689. {
  5690. "name": "psr/clock",
  5691. "version": "1.0.0",
  5692. "source": {
  5693. "type": "git",
  5694. "url": "https://github.com/php-fig/clock.git",
  5695. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5696. },
  5697. "dist": {
  5698. "type": "zip",
  5699. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5700. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5701. "shasum": ""
  5702. },
  5703. "require": {
  5704. "php": "^7.0 || ^8.0"
  5705. },
  5706. "type": "library",
  5707. "autoload": {
  5708. "psr-4": {
  5709. "Psr\\Clock\\": "src/"
  5710. }
  5711. },
  5712. "notification-url": "https://packagist.org/downloads/",
  5713. "license": [
  5714. "MIT"
  5715. ],
  5716. "authors": [
  5717. {
  5718. "name": "PHP-FIG",
  5719. "homepage": "https://www.php-fig.org/"
  5720. }
  5721. ],
  5722. "description": "Common interface for reading the clock.",
  5723. "homepage": "https://github.com/php-fig/clock",
  5724. "keywords": [
  5725. "clock",
  5726. "now",
  5727. "psr",
  5728. "psr-20",
  5729. "time"
  5730. ],
  5731. "support": {
  5732. "issues": "https://github.com/php-fig/clock/issues",
  5733. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5734. },
  5735. "time": "2022-11-25T14:36:26+00:00"
  5736. },
  5737. {
  5738. "name": "psr/container",
  5739. "version": "2.0.2",
  5740. "source": {
  5741. "type": "git",
  5742. "url": "https://github.com/php-fig/container.git",
  5743. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5744. },
  5745. "dist": {
  5746. "type": "zip",
  5747. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5748. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5749. "shasum": ""
  5750. },
  5751. "require": {
  5752. "php": ">=7.4.0"
  5753. },
  5754. "type": "library",
  5755. "extra": {
  5756. "branch-alias": {
  5757. "dev-master": "2.0.x-dev"
  5758. }
  5759. },
  5760. "autoload": {
  5761. "psr-4": {
  5762. "Psr\\Container\\": "src/"
  5763. }
  5764. },
  5765. "notification-url": "https://packagist.org/downloads/",
  5766. "license": [
  5767. "MIT"
  5768. ],
  5769. "authors": [
  5770. {
  5771. "name": "PHP-FIG",
  5772. "homepage": "https://www.php-fig.org/"
  5773. }
  5774. ],
  5775. "description": "Common Container Interface (PHP FIG PSR-11)",
  5776. "homepage": "https://github.com/php-fig/container",
  5777. "keywords": [
  5778. "PSR-11",
  5779. "container",
  5780. "container-interface",
  5781. "container-interop",
  5782. "psr"
  5783. ],
  5784. "support": {
  5785. "issues": "https://github.com/php-fig/container/issues",
  5786. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5787. },
  5788. "time": "2021-11-05T16:47:00+00:00"
  5789. },
  5790. {
  5791. "name": "psr/event-dispatcher",
  5792. "version": "1.0.0",
  5793. "source": {
  5794. "type": "git",
  5795. "url": "https://github.com/php-fig/event-dispatcher.git",
  5796. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5797. },
  5798. "dist": {
  5799. "type": "zip",
  5800. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5801. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5802. "shasum": ""
  5803. },
  5804. "require": {
  5805. "php": ">=7.2.0"
  5806. },
  5807. "type": "library",
  5808. "extra": {
  5809. "branch-alias": {
  5810. "dev-master": "1.0.x-dev"
  5811. }
  5812. },
  5813. "autoload": {
  5814. "psr-4": {
  5815. "Psr\\EventDispatcher\\": "src/"
  5816. }
  5817. },
  5818. "notification-url": "https://packagist.org/downloads/",
  5819. "license": [
  5820. "MIT"
  5821. ],
  5822. "authors": [
  5823. {
  5824. "name": "PHP-FIG",
  5825. "homepage": "http://www.php-fig.org/"
  5826. }
  5827. ],
  5828. "description": "Standard interfaces for event handling.",
  5829. "keywords": [
  5830. "events",
  5831. "psr",
  5832. "psr-14"
  5833. ],
  5834. "support": {
  5835. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5836. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5837. },
  5838. "time": "2019-01-08T18:20:26+00:00"
  5839. },
  5840. {
  5841. "name": "psr/http-client",
  5842. "version": "1.0.3",
  5843. "source": {
  5844. "type": "git",
  5845. "url": "https://github.com/php-fig/http-client.git",
  5846. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5847. },
  5848. "dist": {
  5849. "type": "zip",
  5850. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5851. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5852. "shasum": ""
  5853. },
  5854. "require": {
  5855. "php": "^7.0 || ^8.0",
  5856. "psr/http-message": "^1.0 || ^2.0"
  5857. },
  5858. "type": "library",
  5859. "extra": {
  5860. "branch-alias": {
  5861. "dev-master": "1.0.x-dev"
  5862. }
  5863. },
  5864. "autoload": {
  5865. "psr-4": {
  5866. "Psr\\Http\\Client\\": "src/"
  5867. }
  5868. },
  5869. "notification-url": "https://packagist.org/downloads/",
  5870. "license": [
  5871. "MIT"
  5872. ],
  5873. "authors": [
  5874. {
  5875. "name": "PHP-FIG",
  5876. "homepage": "https://www.php-fig.org/"
  5877. }
  5878. ],
  5879. "description": "Common interface for HTTP clients",
  5880. "homepage": "https://github.com/php-fig/http-client",
  5881. "keywords": [
  5882. "http",
  5883. "http-client",
  5884. "psr",
  5885. "psr-18"
  5886. ],
  5887. "support": {
  5888. "source": "https://github.com/php-fig/http-client"
  5889. },
  5890. "time": "2023-09-23T14:17:50+00:00"
  5891. },
  5892. {
  5893. "name": "psr/http-factory",
  5894. "version": "1.1.0",
  5895. "source": {
  5896. "type": "git",
  5897. "url": "https://github.com/php-fig/http-factory.git",
  5898. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5899. },
  5900. "dist": {
  5901. "type": "zip",
  5902. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5903. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5904. "shasum": ""
  5905. },
  5906. "require": {
  5907. "php": ">=7.1",
  5908. "psr/http-message": "^1.0 || ^2.0"
  5909. },
  5910. "type": "library",
  5911. "extra": {
  5912. "branch-alias": {
  5913. "dev-master": "1.0.x-dev"
  5914. }
  5915. },
  5916. "autoload": {
  5917. "psr-4": {
  5918. "Psr\\Http\\Message\\": "src/"
  5919. }
  5920. },
  5921. "notification-url": "https://packagist.org/downloads/",
  5922. "license": [
  5923. "MIT"
  5924. ],
  5925. "authors": [
  5926. {
  5927. "name": "PHP-FIG",
  5928. "homepage": "https://www.php-fig.org/"
  5929. }
  5930. ],
  5931. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5932. "keywords": [
  5933. "factory",
  5934. "http",
  5935. "message",
  5936. "psr",
  5937. "psr-17",
  5938. "psr-7",
  5939. "request",
  5940. "response"
  5941. ],
  5942. "support": {
  5943. "source": "https://github.com/php-fig/http-factory"
  5944. },
  5945. "time": "2024-04-15T12:06:14+00:00"
  5946. },
  5947. {
  5948. "name": "psr/http-message",
  5949. "version": "2.0",
  5950. "source": {
  5951. "type": "git",
  5952. "url": "https://github.com/php-fig/http-message.git",
  5953. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5954. },
  5955. "dist": {
  5956. "type": "zip",
  5957. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5958. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5959. "shasum": ""
  5960. },
  5961. "require": {
  5962. "php": "^7.2 || ^8.0"
  5963. },
  5964. "type": "library",
  5965. "extra": {
  5966. "branch-alias": {
  5967. "dev-master": "2.0.x-dev"
  5968. }
  5969. },
  5970. "autoload": {
  5971. "psr-4": {
  5972. "Psr\\Http\\Message\\": "src/"
  5973. }
  5974. },
  5975. "notification-url": "https://packagist.org/downloads/",
  5976. "license": [
  5977. "MIT"
  5978. ],
  5979. "authors": [
  5980. {
  5981. "name": "PHP-FIG",
  5982. "homepage": "https://www.php-fig.org/"
  5983. }
  5984. ],
  5985. "description": "Common interface for HTTP messages",
  5986. "homepage": "https://github.com/php-fig/http-message",
  5987. "keywords": [
  5988. "http",
  5989. "http-message",
  5990. "psr",
  5991. "psr-7",
  5992. "request",
  5993. "response"
  5994. ],
  5995. "support": {
  5996. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5997. },
  5998. "time": "2023-04-04T09:54:51+00:00"
  5999. },
  6000. {
  6001. "name": "psr/log",
  6002. "version": "3.0.0",
  6003. "source": {
  6004. "type": "git",
  6005. "url": "https://github.com/php-fig/log.git",
  6006. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  6007. },
  6008. "dist": {
  6009. "type": "zip",
  6010. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6011. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  6012. "shasum": ""
  6013. },
  6014. "require": {
  6015. "php": ">=8.0.0"
  6016. },
  6017. "type": "library",
  6018. "extra": {
  6019. "branch-alias": {
  6020. "dev-master": "3.x-dev"
  6021. }
  6022. },
  6023. "autoload": {
  6024. "psr-4": {
  6025. "Psr\\Log\\": "src"
  6026. }
  6027. },
  6028. "notification-url": "https://packagist.org/downloads/",
  6029. "license": [
  6030. "MIT"
  6031. ],
  6032. "authors": [
  6033. {
  6034. "name": "PHP-FIG",
  6035. "homepage": "https://www.php-fig.org/"
  6036. }
  6037. ],
  6038. "description": "Common interface for logging libraries",
  6039. "homepage": "https://github.com/php-fig/log",
  6040. "keywords": [
  6041. "log",
  6042. "psr",
  6043. "psr-3"
  6044. ],
  6045. "support": {
  6046. "source": "https://github.com/php-fig/log/tree/3.0.0"
  6047. },
  6048. "time": "2021-07-14T16:46:02+00:00"
  6049. },
  6050. {
  6051. "name": "psr/simple-cache",
  6052. "version": "3.0.0",
  6053. "source": {
  6054. "type": "git",
  6055. "url": "https://github.com/php-fig/simple-cache.git",
  6056. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6057. },
  6058. "dist": {
  6059. "type": "zip",
  6060. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6061. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6062. "shasum": ""
  6063. },
  6064. "require": {
  6065. "php": ">=8.0.0"
  6066. },
  6067. "type": "library",
  6068. "extra": {
  6069. "branch-alias": {
  6070. "dev-master": "3.0.x-dev"
  6071. }
  6072. },
  6073. "autoload": {
  6074. "psr-4": {
  6075. "Psr\\SimpleCache\\": "src/"
  6076. }
  6077. },
  6078. "notification-url": "https://packagist.org/downloads/",
  6079. "license": [
  6080. "MIT"
  6081. ],
  6082. "authors": [
  6083. {
  6084. "name": "PHP-FIG",
  6085. "homepage": "https://www.php-fig.org/"
  6086. }
  6087. ],
  6088. "description": "Common interfaces for simple caching",
  6089. "keywords": [
  6090. "cache",
  6091. "caching",
  6092. "psr",
  6093. "psr-16",
  6094. "simple-cache"
  6095. ],
  6096. "support": {
  6097. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6098. },
  6099. "time": "2021-10-29T13:26:27+00:00"
  6100. },
  6101. {
  6102. "name": "psy/psysh",
  6103. "version": "v0.12.4",
  6104. "source": {
  6105. "type": "git",
  6106. "url": "https://github.com/bobthecow/psysh.git",
  6107. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818"
  6108. },
  6109. "dist": {
  6110. "type": "zip",
  6111. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/2fd717afa05341b4f8152547f142cd2f130f6818",
  6112. "reference": "2fd717afa05341b4f8152547f142cd2f130f6818",
  6113. "shasum": ""
  6114. },
  6115. "require": {
  6116. "ext-json": "*",
  6117. "ext-tokenizer": "*",
  6118. "nikic/php-parser": "^5.0 || ^4.0",
  6119. "php": "^8.0 || ^7.4",
  6120. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6121. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6122. },
  6123. "conflict": {
  6124. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6125. },
  6126. "require-dev": {
  6127. "bamarni/composer-bin-plugin": "^1.2"
  6128. },
  6129. "suggest": {
  6130. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6131. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6132. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6133. },
  6134. "bin": [
  6135. "bin/psysh"
  6136. ],
  6137. "type": "library",
  6138. "extra": {
  6139. "branch-alias": {
  6140. "dev-main": "0.12.x-dev"
  6141. },
  6142. "bamarni-bin": {
  6143. "bin-links": false,
  6144. "forward-command": false
  6145. }
  6146. },
  6147. "autoload": {
  6148. "files": [
  6149. "src/functions.php"
  6150. ],
  6151. "psr-4": {
  6152. "Psy\\": "src/"
  6153. }
  6154. },
  6155. "notification-url": "https://packagist.org/downloads/",
  6156. "license": [
  6157. "MIT"
  6158. ],
  6159. "authors": [
  6160. {
  6161. "name": "Justin Hileman",
  6162. "email": "justin@justinhileman.info",
  6163. "homepage": "http://justinhileman.com"
  6164. }
  6165. ],
  6166. "description": "An interactive shell for modern PHP.",
  6167. "homepage": "http://psysh.org",
  6168. "keywords": [
  6169. "REPL",
  6170. "console",
  6171. "interactive",
  6172. "shell"
  6173. ],
  6174. "support": {
  6175. "issues": "https://github.com/bobthecow/psysh/issues",
  6176. "source": "https://github.com/bobthecow/psysh/tree/v0.12.4"
  6177. },
  6178. "time": "2024-06-10T01:18:23+00:00"
  6179. },
  6180. {
  6181. "name": "ralouphie/getallheaders",
  6182. "version": "3.0.3",
  6183. "source": {
  6184. "type": "git",
  6185. "url": "https://github.com/ralouphie/getallheaders.git",
  6186. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6187. },
  6188. "dist": {
  6189. "type": "zip",
  6190. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6191. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6192. "shasum": ""
  6193. },
  6194. "require": {
  6195. "php": ">=5.6"
  6196. },
  6197. "require-dev": {
  6198. "php-coveralls/php-coveralls": "^2.1",
  6199. "phpunit/phpunit": "^5 || ^6.5"
  6200. },
  6201. "type": "library",
  6202. "autoload": {
  6203. "files": [
  6204. "src/getallheaders.php"
  6205. ]
  6206. },
  6207. "notification-url": "https://packagist.org/downloads/",
  6208. "license": [
  6209. "MIT"
  6210. ],
  6211. "authors": [
  6212. {
  6213. "name": "Ralph Khattar",
  6214. "email": "ralph.khattar@gmail.com"
  6215. }
  6216. ],
  6217. "description": "A polyfill for getallheaders.",
  6218. "support": {
  6219. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6220. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6221. },
  6222. "time": "2019-03-08T08:55:37+00:00"
  6223. },
  6224. {
  6225. "name": "ramsey/collection",
  6226. "version": "2.0.0",
  6227. "source": {
  6228. "type": "git",
  6229. "url": "https://github.com/ramsey/collection.git",
  6230. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  6231. },
  6232. "dist": {
  6233. "type": "zip",
  6234. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6235. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6236. "shasum": ""
  6237. },
  6238. "require": {
  6239. "php": "^8.1"
  6240. },
  6241. "require-dev": {
  6242. "captainhook/plugin-composer": "^5.3",
  6243. "ergebnis/composer-normalize": "^2.28.3",
  6244. "fakerphp/faker": "^1.21",
  6245. "hamcrest/hamcrest-php": "^2.0",
  6246. "jangregor/phpstan-prophecy": "^1.0",
  6247. "mockery/mockery": "^1.5",
  6248. "php-parallel-lint/php-console-highlighter": "^1.0",
  6249. "php-parallel-lint/php-parallel-lint": "^1.3",
  6250. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6251. "phpspec/prophecy-phpunit": "^2.0",
  6252. "phpstan/extension-installer": "^1.2",
  6253. "phpstan/phpstan": "^1.9",
  6254. "phpstan/phpstan-mockery": "^1.1",
  6255. "phpstan/phpstan-phpunit": "^1.3",
  6256. "phpunit/phpunit": "^9.5",
  6257. "psalm/plugin-mockery": "^1.1",
  6258. "psalm/plugin-phpunit": "^0.18.4",
  6259. "ramsey/coding-standard": "^2.0.3",
  6260. "ramsey/conventional-commits": "^1.3",
  6261. "vimeo/psalm": "^5.4"
  6262. },
  6263. "type": "library",
  6264. "extra": {
  6265. "captainhook": {
  6266. "force-install": true
  6267. },
  6268. "ramsey/conventional-commits": {
  6269. "configFile": "conventional-commits.json"
  6270. }
  6271. },
  6272. "autoload": {
  6273. "psr-4": {
  6274. "Ramsey\\Collection\\": "src/"
  6275. }
  6276. },
  6277. "notification-url": "https://packagist.org/downloads/",
  6278. "license": [
  6279. "MIT"
  6280. ],
  6281. "authors": [
  6282. {
  6283. "name": "Ben Ramsey",
  6284. "email": "ben@benramsey.com",
  6285. "homepage": "https://benramsey.com"
  6286. }
  6287. ],
  6288. "description": "A PHP library for representing and manipulating collections.",
  6289. "keywords": [
  6290. "array",
  6291. "collection",
  6292. "hash",
  6293. "map",
  6294. "queue",
  6295. "set"
  6296. ],
  6297. "support": {
  6298. "issues": "https://github.com/ramsey/collection/issues",
  6299. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  6300. },
  6301. "funding": [
  6302. {
  6303. "url": "https://github.com/ramsey",
  6304. "type": "github"
  6305. },
  6306. {
  6307. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6308. "type": "tidelift"
  6309. }
  6310. ],
  6311. "time": "2022-12-31T21:50:55+00:00"
  6312. },
  6313. {
  6314. "name": "ramsey/uuid",
  6315. "version": "4.7.6",
  6316. "source": {
  6317. "type": "git",
  6318. "url": "https://github.com/ramsey/uuid.git",
  6319. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6320. },
  6321. "dist": {
  6322. "type": "zip",
  6323. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6324. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6325. "shasum": ""
  6326. },
  6327. "require": {
  6328. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  6329. "ext-json": "*",
  6330. "php": "^8.0",
  6331. "ramsey/collection": "^1.2 || ^2.0"
  6332. },
  6333. "replace": {
  6334. "rhumsaa/uuid": "self.version"
  6335. },
  6336. "require-dev": {
  6337. "captainhook/captainhook": "^5.10",
  6338. "captainhook/plugin-composer": "^5.3",
  6339. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6340. "doctrine/annotations": "^1.8",
  6341. "ergebnis/composer-normalize": "^2.15",
  6342. "mockery/mockery": "^1.3",
  6343. "paragonie/random-lib": "^2",
  6344. "php-mock/php-mock": "^2.2",
  6345. "php-mock/php-mock-mockery": "^1.3",
  6346. "php-parallel-lint/php-parallel-lint": "^1.1",
  6347. "phpbench/phpbench": "^1.0",
  6348. "phpstan/extension-installer": "^1.1",
  6349. "phpstan/phpstan": "^1.8",
  6350. "phpstan/phpstan-mockery": "^1.1",
  6351. "phpstan/phpstan-phpunit": "^1.1",
  6352. "phpunit/phpunit": "^8.5 || ^9",
  6353. "ramsey/composer-repl": "^1.4",
  6354. "slevomat/coding-standard": "^8.4",
  6355. "squizlabs/php_codesniffer": "^3.5",
  6356. "vimeo/psalm": "^4.9"
  6357. },
  6358. "suggest": {
  6359. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6360. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6361. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6362. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6363. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6364. },
  6365. "type": "library",
  6366. "extra": {
  6367. "captainhook": {
  6368. "force-install": true
  6369. }
  6370. },
  6371. "autoload": {
  6372. "files": [
  6373. "src/functions.php"
  6374. ],
  6375. "psr-4": {
  6376. "Ramsey\\Uuid\\": "src/"
  6377. }
  6378. },
  6379. "notification-url": "https://packagist.org/downloads/",
  6380. "license": [
  6381. "MIT"
  6382. ],
  6383. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6384. "keywords": [
  6385. "guid",
  6386. "identifier",
  6387. "uuid"
  6388. ],
  6389. "support": {
  6390. "issues": "https://github.com/ramsey/uuid/issues",
  6391. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6392. },
  6393. "funding": [
  6394. {
  6395. "url": "https://github.com/ramsey",
  6396. "type": "github"
  6397. },
  6398. {
  6399. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6400. "type": "tidelift"
  6401. }
  6402. ],
  6403. "time": "2024-04-27T21:32:50+00:00"
  6404. },
  6405. {
  6406. "name": "ryangjchandler/blade-capture-directive",
  6407. "version": "v1.0.0",
  6408. "source": {
  6409. "type": "git",
  6410. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6411. "reference": "cb6f58663d97f17bece176295240b740835e14f1"
  6412. },
  6413. "dist": {
  6414. "type": "zip",
  6415. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/cb6f58663d97f17bece176295240b740835e14f1",
  6416. "reference": "cb6f58663d97f17bece176295240b740835e14f1",
  6417. "shasum": ""
  6418. },
  6419. "require": {
  6420. "illuminate/contracts": "^10.0|^11.0",
  6421. "php": "^8.1",
  6422. "spatie/laravel-package-tools": "^1.9.2"
  6423. },
  6424. "require-dev": {
  6425. "nunomaduro/collision": "^7.0|^8.0",
  6426. "nunomaduro/larastan": "^2.0",
  6427. "orchestra/testbench": "^8.0|^9.0",
  6428. "pestphp/pest": "^2.0",
  6429. "pestphp/pest-plugin-laravel": "^2.0",
  6430. "phpstan/extension-installer": "^1.1",
  6431. "phpstan/phpstan-deprecation-rules": "^1.0",
  6432. "phpstan/phpstan-phpunit": "^1.0",
  6433. "phpunit/phpunit": "^10.0",
  6434. "spatie/laravel-ray": "^1.26"
  6435. },
  6436. "type": "library",
  6437. "extra": {
  6438. "laravel": {
  6439. "providers": [
  6440. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6441. ],
  6442. "aliases": {
  6443. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6444. }
  6445. }
  6446. },
  6447. "autoload": {
  6448. "psr-4": {
  6449. "RyanChandler\\BladeCaptureDirective\\": "src",
  6450. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6451. }
  6452. },
  6453. "notification-url": "https://packagist.org/downloads/",
  6454. "license": [
  6455. "MIT"
  6456. ],
  6457. "authors": [
  6458. {
  6459. "name": "Ryan Chandler",
  6460. "email": "support@ryangjchandler.co.uk",
  6461. "role": "Developer"
  6462. }
  6463. ],
  6464. "description": "Create inline partials in your Blade templates with ease.",
  6465. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6466. "keywords": [
  6467. "blade-capture-directive",
  6468. "laravel",
  6469. "ryangjchandler"
  6470. ],
  6471. "support": {
  6472. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6473. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.0.0"
  6474. },
  6475. "funding": [
  6476. {
  6477. "url": "https://github.com/ryangjchandler",
  6478. "type": "github"
  6479. }
  6480. ],
  6481. "time": "2024-02-26T18:08:49+00:00"
  6482. },
  6483. {
  6484. "name": "spatie/color",
  6485. "version": "1.5.3",
  6486. "source": {
  6487. "type": "git",
  6488. "url": "https://github.com/spatie/color.git",
  6489. "reference": "49739265900cabce4640cd26c3266fd8d2cca390"
  6490. },
  6491. "dist": {
  6492. "type": "zip",
  6493. "url": "https://api.github.com/repos/spatie/color/zipball/49739265900cabce4640cd26c3266fd8d2cca390",
  6494. "reference": "49739265900cabce4640cd26c3266fd8d2cca390",
  6495. "shasum": ""
  6496. },
  6497. "require": {
  6498. "php": "^7.3|^8.0"
  6499. },
  6500. "require-dev": {
  6501. "pestphp/pest": "^1.22",
  6502. "phpunit/phpunit": "^6.5||^9.0"
  6503. },
  6504. "type": "library",
  6505. "autoload": {
  6506. "psr-4": {
  6507. "Spatie\\Color\\": "src"
  6508. }
  6509. },
  6510. "notification-url": "https://packagist.org/downloads/",
  6511. "license": [
  6512. "MIT"
  6513. ],
  6514. "authors": [
  6515. {
  6516. "name": "Sebastian De Deyne",
  6517. "email": "sebastian@spatie.be",
  6518. "homepage": "https://spatie.be",
  6519. "role": "Developer"
  6520. }
  6521. ],
  6522. "description": "A little library to handle color conversions",
  6523. "homepage": "https://github.com/spatie/color",
  6524. "keywords": [
  6525. "color",
  6526. "conversion",
  6527. "rgb",
  6528. "spatie"
  6529. ],
  6530. "support": {
  6531. "issues": "https://github.com/spatie/color/issues",
  6532. "source": "https://github.com/spatie/color/tree/1.5.3"
  6533. },
  6534. "funding": [
  6535. {
  6536. "url": "https://github.com/spatie",
  6537. "type": "github"
  6538. }
  6539. ],
  6540. "time": "2022-12-18T12:58:32+00:00"
  6541. },
  6542. {
  6543. "name": "spatie/invade",
  6544. "version": "2.1.0",
  6545. "source": {
  6546. "type": "git",
  6547. "url": "https://github.com/spatie/invade.git",
  6548. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  6549. },
  6550. "dist": {
  6551. "type": "zip",
  6552. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6553. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6554. "shasum": ""
  6555. },
  6556. "require": {
  6557. "php": "^8.0"
  6558. },
  6559. "require-dev": {
  6560. "pestphp/pest": "^1.20",
  6561. "phpstan/phpstan": "^1.4",
  6562. "spatie/ray": "^1.28"
  6563. },
  6564. "type": "library",
  6565. "autoload": {
  6566. "files": [
  6567. "src/functions.php"
  6568. ],
  6569. "psr-4": {
  6570. "Spatie\\Invade\\": "src"
  6571. }
  6572. },
  6573. "notification-url": "https://packagist.org/downloads/",
  6574. "license": [
  6575. "MIT"
  6576. ],
  6577. "authors": [
  6578. {
  6579. "name": "Freek Van der Herten",
  6580. "email": "freek@spatie.be",
  6581. "role": "Developer"
  6582. }
  6583. ],
  6584. "description": "A PHP function to work with private properties and methods",
  6585. "homepage": "https://github.com/spatie/invade",
  6586. "keywords": [
  6587. "invade",
  6588. "spatie"
  6589. ],
  6590. "support": {
  6591. "source": "https://github.com/spatie/invade/tree/2.1.0"
  6592. },
  6593. "funding": [
  6594. {
  6595. "url": "https://github.com/spatie",
  6596. "type": "github"
  6597. }
  6598. ],
  6599. "time": "2024-05-17T09:06:10+00:00"
  6600. },
  6601. {
  6602. "name": "spatie/laravel-package-tools",
  6603. "version": "1.16.4",
  6604. "source": {
  6605. "type": "git",
  6606. "url": "https://github.com/spatie/laravel-package-tools.git",
  6607. "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53"
  6608. },
  6609. "dist": {
  6610. "type": "zip",
  6611. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53",
  6612. "reference": "ddf678e78d7f8b17e5cdd99c0c3413a4a6592e53",
  6613. "shasum": ""
  6614. },
  6615. "require": {
  6616. "illuminate/contracts": "^9.28|^10.0|^11.0",
  6617. "php": "^8.0"
  6618. },
  6619. "require-dev": {
  6620. "mockery/mockery": "^1.5",
  6621. "orchestra/testbench": "^7.7|^8.0",
  6622. "pestphp/pest": "^1.22",
  6623. "phpunit/phpunit": "^9.5.24",
  6624. "spatie/pest-plugin-test-time": "^1.1"
  6625. },
  6626. "type": "library",
  6627. "autoload": {
  6628. "psr-4": {
  6629. "Spatie\\LaravelPackageTools\\": "src"
  6630. }
  6631. },
  6632. "notification-url": "https://packagist.org/downloads/",
  6633. "license": [
  6634. "MIT"
  6635. ],
  6636. "authors": [
  6637. {
  6638. "name": "Freek Van der Herten",
  6639. "email": "freek@spatie.be",
  6640. "role": "Developer"
  6641. }
  6642. ],
  6643. "description": "Tools for creating Laravel packages",
  6644. "homepage": "https://github.com/spatie/laravel-package-tools",
  6645. "keywords": [
  6646. "laravel-package-tools",
  6647. "spatie"
  6648. ],
  6649. "support": {
  6650. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6651. "source": "https://github.com/spatie/laravel-package-tools/tree/1.16.4"
  6652. },
  6653. "funding": [
  6654. {
  6655. "url": "https://github.com/spatie",
  6656. "type": "github"
  6657. }
  6658. ],
  6659. "time": "2024-03-20T07:29:11+00:00"
  6660. },
  6661. {
  6662. "name": "squirephp/model",
  6663. "version": "v3.6.0",
  6664. "source": {
  6665. "type": "git",
  6666. "url": "https://github.com/squirephp/model.git",
  6667. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce"
  6668. },
  6669. "dist": {
  6670. "type": "zip",
  6671. "url": "https://api.github.com/repos/squirephp/model/zipball/9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6672. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6673. "shasum": ""
  6674. },
  6675. "require": {
  6676. "ext-pdo_sqlite": "*",
  6677. "illuminate/database": "^8.40|^9.0|^10.0|^11.0",
  6678. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6679. "php": "^8.0"
  6680. },
  6681. "type": "library",
  6682. "extra": {
  6683. "laravel": {
  6684. "providers": [
  6685. "Squire\\ModelServiceProvider"
  6686. ]
  6687. }
  6688. },
  6689. "autoload": {
  6690. "psr-4": {
  6691. "Squire\\": "src"
  6692. }
  6693. },
  6694. "notification-url": "https://packagist.org/downloads/",
  6695. "license": [
  6696. "MIT"
  6697. ],
  6698. "authors": [
  6699. {
  6700. "name": "Dan Harrin",
  6701. "email": "dan@danharrin.com"
  6702. }
  6703. ],
  6704. "description": "A library containing the base Squire model class.",
  6705. "homepage": "https://github.com/squirephp",
  6706. "keywords": [
  6707. "squire"
  6708. ],
  6709. "support": {
  6710. "issues": "https://github.com/squirephp/squire/issues",
  6711. "source": "https://github.com/squirephp/squire"
  6712. },
  6713. "time": "2024-03-11T11:06:10+00:00"
  6714. },
  6715. {
  6716. "name": "squirephp/repository",
  6717. "version": "v3.6.0",
  6718. "source": {
  6719. "type": "git",
  6720. "url": "https://github.com/squirephp/repository.git",
  6721. "reference": "c7cf78011f32904905638f4689975cbbbc78501c"
  6722. },
  6723. "dist": {
  6724. "type": "zip",
  6725. "url": "https://api.github.com/repos/squirephp/repository/zipball/c7cf78011f32904905638f4689975cbbbc78501c",
  6726. "reference": "c7cf78011f32904905638f4689975cbbbc78501c",
  6727. "shasum": ""
  6728. },
  6729. "require": {
  6730. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6731. "php": "^8.0"
  6732. },
  6733. "type": "library",
  6734. "extra": {
  6735. "laravel": {
  6736. "providers": [
  6737. "Squire\\RepositoryServiceProvider"
  6738. ],
  6739. "aliases": {
  6740. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6741. }
  6742. }
  6743. },
  6744. "autoload": {
  6745. "psr-4": {
  6746. "Squire\\": "src"
  6747. }
  6748. },
  6749. "notification-url": "https://packagist.org/downloads/",
  6750. "license": [
  6751. "MIT"
  6752. ],
  6753. "authors": [
  6754. {
  6755. "name": "Dan Harrin",
  6756. "email": "dan@danharrin.com"
  6757. }
  6758. ],
  6759. "description": "A library containing the Squire repository.",
  6760. "homepage": "https://github.com/squirephp",
  6761. "keywords": [
  6762. "squire"
  6763. ],
  6764. "support": {
  6765. "issues": "https://github.com/squirephp/squire/issues",
  6766. "source": "https://github.com/squirephp/squire"
  6767. },
  6768. "time": "2024-03-11T11:06:10+00:00"
  6769. },
  6770. {
  6771. "name": "symfony/clock",
  6772. "version": "v7.1.1",
  6773. "source": {
  6774. "type": "git",
  6775. "url": "https://github.com/symfony/clock.git",
  6776. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7"
  6777. },
  6778. "dist": {
  6779. "type": "zip",
  6780. "url": "https://api.github.com/repos/symfony/clock/zipball/3dfc8b084853586de51dd1441c6242c76a28cbe7",
  6781. "reference": "3dfc8b084853586de51dd1441c6242c76a28cbe7",
  6782. "shasum": ""
  6783. },
  6784. "require": {
  6785. "php": ">=8.2",
  6786. "psr/clock": "^1.0",
  6787. "symfony/polyfill-php83": "^1.28"
  6788. },
  6789. "provide": {
  6790. "psr/clock-implementation": "1.0"
  6791. },
  6792. "type": "library",
  6793. "autoload": {
  6794. "files": [
  6795. "Resources/now.php"
  6796. ],
  6797. "psr-4": {
  6798. "Symfony\\Component\\Clock\\": ""
  6799. },
  6800. "exclude-from-classmap": [
  6801. "/Tests/"
  6802. ]
  6803. },
  6804. "notification-url": "https://packagist.org/downloads/",
  6805. "license": [
  6806. "MIT"
  6807. ],
  6808. "authors": [
  6809. {
  6810. "name": "Nicolas Grekas",
  6811. "email": "p@tchwork.com"
  6812. },
  6813. {
  6814. "name": "Symfony Community",
  6815. "homepage": "https://symfony.com/contributors"
  6816. }
  6817. ],
  6818. "description": "Decouples applications from the system clock",
  6819. "homepage": "https://symfony.com",
  6820. "keywords": [
  6821. "clock",
  6822. "psr20",
  6823. "time"
  6824. ],
  6825. "support": {
  6826. "source": "https://github.com/symfony/clock/tree/v7.1.1"
  6827. },
  6828. "funding": [
  6829. {
  6830. "url": "https://symfony.com/sponsor",
  6831. "type": "custom"
  6832. },
  6833. {
  6834. "url": "https://github.com/fabpot",
  6835. "type": "github"
  6836. },
  6837. {
  6838. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6839. "type": "tidelift"
  6840. }
  6841. ],
  6842. "time": "2024-05-31T14:57:53+00:00"
  6843. },
  6844. {
  6845. "name": "symfony/console",
  6846. "version": "v7.1.3",
  6847. "source": {
  6848. "type": "git",
  6849. "url": "https://github.com/symfony/console.git",
  6850. "reference": "cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9"
  6851. },
  6852. "dist": {
  6853. "type": "zip",
  6854. "url": "https://api.github.com/repos/symfony/console/zipball/cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9",
  6855. "reference": "cb1dcb30ebc7005c29864ee78adb47b5fb7c3cd9",
  6856. "shasum": ""
  6857. },
  6858. "require": {
  6859. "php": ">=8.2",
  6860. "symfony/polyfill-mbstring": "~1.0",
  6861. "symfony/service-contracts": "^2.5|^3",
  6862. "symfony/string": "^6.4|^7.0"
  6863. },
  6864. "conflict": {
  6865. "symfony/dependency-injection": "<6.4",
  6866. "symfony/dotenv": "<6.4",
  6867. "symfony/event-dispatcher": "<6.4",
  6868. "symfony/lock": "<6.4",
  6869. "symfony/process": "<6.4"
  6870. },
  6871. "provide": {
  6872. "psr/log-implementation": "1.0|2.0|3.0"
  6873. },
  6874. "require-dev": {
  6875. "psr/log": "^1|^2|^3",
  6876. "symfony/config": "^6.4|^7.0",
  6877. "symfony/dependency-injection": "^6.4|^7.0",
  6878. "symfony/event-dispatcher": "^6.4|^7.0",
  6879. "symfony/http-foundation": "^6.4|^7.0",
  6880. "symfony/http-kernel": "^6.4|^7.0",
  6881. "symfony/lock": "^6.4|^7.0",
  6882. "symfony/messenger": "^6.4|^7.0",
  6883. "symfony/process": "^6.4|^7.0",
  6884. "symfony/stopwatch": "^6.4|^7.0",
  6885. "symfony/var-dumper": "^6.4|^7.0"
  6886. },
  6887. "type": "library",
  6888. "autoload": {
  6889. "psr-4": {
  6890. "Symfony\\Component\\Console\\": ""
  6891. },
  6892. "exclude-from-classmap": [
  6893. "/Tests/"
  6894. ]
  6895. },
  6896. "notification-url": "https://packagist.org/downloads/",
  6897. "license": [
  6898. "MIT"
  6899. ],
  6900. "authors": [
  6901. {
  6902. "name": "Fabien Potencier",
  6903. "email": "fabien@symfony.com"
  6904. },
  6905. {
  6906. "name": "Symfony Community",
  6907. "homepage": "https://symfony.com/contributors"
  6908. }
  6909. ],
  6910. "description": "Eases the creation of beautiful and testable command line interfaces",
  6911. "homepage": "https://symfony.com",
  6912. "keywords": [
  6913. "cli",
  6914. "command-line",
  6915. "console",
  6916. "terminal"
  6917. ],
  6918. "support": {
  6919. "source": "https://github.com/symfony/console/tree/v7.1.3"
  6920. },
  6921. "funding": [
  6922. {
  6923. "url": "https://symfony.com/sponsor",
  6924. "type": "custom"
  6925. },
  6926. {
  6927. "url": "https://github.com/fabpot",
  6928. "type": "github"
  6929. },
  6930. {
  6931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6932. "type": "tidelift"
  6933. }
  6934. ],
  6935. "time": "2024-07-26T12:41:01+00:00"
  6936. },
  6937. {
  6938. "name": "symfony/css-selector",
  6939. "version": "v7.1.1",
  6940. "source": {
  6941. "type": "git",
  6942. "url": "https://github.com/symfony/css-selector.git",
  6943. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4"
  6944. },
  6945. "dist": {
  6946. "type": "zip",
  6947. "url": "https://api.github.com/repos/symfony/css-selector/zipball/1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  6948. "reference": "1c7cee86c6f812896af54434f8ce29c8d94f9ff4",
  6949. "shasum": ""
  6950. },
  6951. "require": {
  6952. "php": ">=8.2"
  6953. },
  6954. "type": "library",
  6955. "autoload": {
  6956. "psr-4": {
  6957. "Symfony\\Component\\CssSelector\\": ""
  6958. },
  6959. "exclude-from-classmap": [
  6960. "/Tests/"
  6961. ]
  6962. },
  6963. "notification-url": "https://packagist.org/downloads/",
  6964. "license": [
  6965. "MIT"
  6966. ],
  6967. "authors": [
  6968. {
  6969. "name": "Fabien Potencier",
  6970. "email": "fabien@symfony.com"
  6971. },
  6972. {
  6973. "name": "Jean-François Simon",
  6974. "email": "jeanfrancois.simon@sensiolabs.com"
  6975. },
  6976. {
  6977. "name": "Symfony Community",
  6978. "homepage": "https://symfony.com/contributors"
  6979. }
  6980. ],
  6981. "description": "Converts CSS selectors to XPath expressions",
  6982. "homepage": "https://symfony.com",
  6983. "support": {
  6984. "source": "https://github.com/symfony/css-selector/tree/v7.1.1"
  6985. },
  6986. "funding": [
  6987. {
  6988. "url": "https://symfony.com/sponsor",
  6989. "type": "custom"
  6990. },
  6991. {
  6992. "url": "https://github.com/fabpot",
  6993. "type": "github"
  6994. },
  6995. {
  6996. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6997. "type": "tidelift"
  6998. }
  6999. ],
  7000. "time": "2024-05-31T14:57:53+00:00"
  7001. },
  7002. {
  7003. "name": "symfony/deprecation-contracts",
  7004. "version": "v3.5.0",
  7005. "source": {
  7006. "type": "git",
  7007. "url": "https://github.com/symfony/deprecation-contracts.git",
  7008. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1"
  7009. },
  7010. "dist": {
  7011. "type": "zip",
  7012. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7013. "reference": "0e0d29ce1f20deffb4ab1b016a7257c4f1e789a1",
  7014. "shasum": ""
  7015. },
  7016. "require": {
  7017. "php": ">=8.1"
  7018. },
  7019. "type": "library",
  7020. "extra": {
  7021. "branch-alias": {
  7022. "dev-main": "3.5-dev"
  7023. },
  7024. "thanks": {
  7025. "name": "symfony/contracts",
  7026. "url": "https://github.com/symfony/contracts"
  7027. }
  7028. },
  7029. "autoload": {
  7030. "files": [
  7031. "function.php"
  7032. ]
  7033. },
  7034. "notification-url": "https://packagist.org/downloads/",
  7035. "license": [
  7036. "MIT"
  7037. ],
  7038. "authors": [
  7039. {
  7040. "name": "Nicolas Grekas",
  7041. "email": "p@tchwork.com"
  7042. },
  7043. {
  7044. "name": "Symfony Community",
  7045. "homepage": "https://symfony.com/contributors"
  7046. }
  7047. ],
  7048. "description": "A generic function and convention to trigger deprecation notices",
  7049. "homepage": "https://symfony.com",
  7050. "support": {
  7051. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.0"
  7052. },
  7053. "funding": [
  7054. {
  7055. "url": "https://symfony.com/sponsor",
  7056. "type": "custom"
  7057. },
  7058. {
  7059. "url": "https://github.com/fabpot",
  7060. "type": "github"
  7061. },
  7062. {
  7063. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7064. "type": "tidelift"
  7065. }
  7066. ],
  7067. "time": "2024-04-18T09:32:20+00:00"
  7068. },
  7069. {
  7070. "name": "symfony/error-handler",
  7071. "version": "v7.1.3",
  7072. "source": {
  7073. "type": "git",
  7074. "url": "https://github.com/symfony/error-handler.git",
  7075. "reference": "432bb369952795c61ca1def65e078c4a80dad13c"
  7076. },
  7077. "dist": {
  7078. "type": "zip",
  7079. "url": "https://api.github.com/repos/symfony/error-handler/zipball/432bb369952795c61ca1def65e078c4a80dad13c",
  7080. "reference": "432bb369952795c61ca1def65e078c4a80dad13c",
  7081. "shasum": ""
  7082. },
  7083. "require": {
  7084. "php": ">=8.2",
  7085. "psr/log": "^1|^2|^3",
  7086. "symfony/var-dumper": "^6.4|^7.0"
  7087. },
  7088. "conflict": {
  7089. "symfony/deprecation-contracts": "<2.5",
  7090. "symfony/http-kernel": "<6.4"
  7091. },
  7092. "require-dev": {
  7093. "symfony/deprecation-contracts": "^2.5|^3",
  7094. "symfony/http-kernel": "^6.4|^7.0",
  7095. "symfony/serializer": "^6.4|^7.0"
  7096. },
  7097. "bin": [
  7098. "Resources/bin/patch-type-declarations"
  7099. ],
  7100. "type": "library",
  7101. "autoload": {
  7102. "psr-4": {
  7103. "Symfony\\Component\\ErrorHandler\\": ""
  7104. },
  7105. "exclude-from-classmap": [
  7106. "/Tests/"
  7107. ]
  7108. },
  7109. "notification-url": "https://packagist.org/downloads/",
  7110. "license": [
  7111. "MIT"
  7112. ],
  7113. "authors": [
  7114. {
  7115. "name": "Fabien Potencier",
  7116. "email": "fabien@symfony.com"
  7117. },
  7118. {
  7119. "name": "Symfony Community",
  7120. "homepage": "https://symfony.com/contributors"
  7121. }
  7122. ],
  7123. "description": "Provides tools to manage errors and ease debugging PHP code",
  7124. "homepage": "https://symfony.com",
  7125. "support": {
  7126. "source": "https://github.com/symfony/error-handler/tree/v7.1.3"
  7127. },
  7128. "funding": [
  7129. {
  7130. "url": "https://symfony.com/sponsor",
  7131. "type": "custom"
  7132. },
  7133. {
  7134. "url": "https://github.com/fabpot",
  7135. "type": "github"
  7136. },
  7137. {
  7138. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7139. "type": "tidelift"
  7140. }
  7141. ],
  7142. "time": "2024-07-26T13:02:51+00:00"
  7143. },
  7144. {
  7145. "name": "symfony/event-dispatcher",
  7146. "version": "v7.1.1",
  7147. "source": {
  7148. "type": "git",
  7149. "url": "https://github.com/symfony/event-dispatcher.git",
  7150. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7"
  7151. },
  7152. "dist": {
  7153. "type": "zip",
  7154. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  7155. "reference": "9fa7f7a21beb22a39a8f3f28618b29e50d7a55a7",
  7156. "shasum": ""
  7157. },
  7158. "require": {
  7159. "php": ">=8.2",
  7160. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7161. },
  7162. "conflict": {
  7163. "symfony/dependency-injection": "<6.4",
  7164. "symfony/service-contracts": "<2.5"
  7165. },
  7166. "provide": {
  7167. "psr/event-dispatcher-implementation": "1.0",
  7168. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7169. },
  7170. "require-dev": {
  7171. "psr/log": "^1|^2|^3",
  7172. "symfony/config": "^6.4|^7.0",
  7173. "symfony/dependency-injection": "^6.4|^7.0",
  7174. "symfony/error-handler": "^6.4|^7.0",
  7175. "symfony/expression-language": "^6.4|^7.0",
  7176. "symfony/http-foundation": "^6.4|^7.0",
  7177. "symfony/service-contracts": "^2.5|^3",
  7178. "symfony/stopwatch": "^6.4|^7.0"
  7179. },
  7180. "type": "library",
  7181. "autoload": {
  7182. "psr-4": {
  7183. "Symfony\\Component\\EventDispatcher\\": ""
  7184. },
  7185. "exclude-from-classmap": [
  7186. "/Tests/"
  7187. ]
  7188. },
  7189. "notification-url": "https://packagist.org/downloads/",
  7190. "license": [
  7191. "MIT"
  7192. ],
  7193. "authors": [
  7194. {
  7195. "name": "Fabien Potencier",
  7196. "email": "fabien@symfony.com"
  7197. },
  7198. {
  7199. "name": "Symfony Community",
  7200. "homepage": "https://symfony.com/contributors"
  7201. }
  7202. ],
  7203. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7204. "homepage": "https://symfony.com",
  7205. "support": {
  7206. "source": "https://github.com/symfony/event-dispatcher/tree/v7.1.1"
  7207. },
  7208. "funding": [
  7209. {
  7210. "url": "https://symfony.com/sponsor",
  7211. "type": "custom"
  7212. },
  7213. {
  7214. "url": "https://github.com/fabpot",
  7215. "type": "github"
  7216. },
  7217. {
  7218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7219. "type": "tidelift"
  7220. }
  7221. ],
  7222. "time": "2024-05-31T14:57:53+00:00"
  7223. },
  7224. {
  7225. "name": "symfony/event-dispatcher-contracts",
  7226. "version": "v3.5.0",
  7227. "source": {
  7228. "type": "git",
  7229. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7230. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50"
  7231. },
  7232. "dist": {
  7233. "type": "zip",
  7234. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/8f93aec25d41b72493c6ddff14e916177c9efc50",
  7235. "reference": "8f93aec25d41b72493c6ddff14e916177c9efc50",
  7236. "shasum": ""
  7237. },
  7238. "require": {
  7239. "php": ">=8.1",
  7240. "psr/event-dispatcher": "^1"
  7241. },
  7242. "type": "library",
  7243. "extra": {
  7244. "branch-alias": {
  7245. "dev-main": "3.5-dev"
  7246. },
  7247. "thanks": {
  7248. "name": "symfony/contracts",
  7249. "url": "https://github.com/symfony/contracts"
  7250. }
  7251. },
  7252. "autoload": {
  7253. "psr-4": {
  7254. "Symfony\\Contracts\\EventDispatcher\\": ""
  7255. }
  7256. },
  7257. "notification-url": "https://packagist.org/downloads/",
  7258. "license": [
  7259. "MIT"
  7260. ],
  7261. "authors": [
  7262. {
  7263. "name": "Nicolas Grekas",
  7264. "email": "p@tchwork.com"
  7265. },
  7266. {
  7267. "name": "Symfony Community",
  7268. "homepage": "https://symfony.com/contributors"
  7269. }
  7270. ],
  7271. "description": "Generic abstractions related to dispatching event",
  7272. "homepage": "https://symfony.com",
  7273. "keywords": [
  7274. "abstractions",
  7275. "contracts",
  7276. "decoupling",
  7277. "interfaces",
  7278. "interoperability",
  7279. "standards"
  7280. ],
  7281. "support": {
  7282. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.0"
  7283. },
  7284. "funding": [
  7285. {
  7286. "url": "https://symfony.com/sponsor",
  7287. "type": "custom"
  7288. },
  7289. {
  7290. "url": "https://github.com/fabpot",
  7291. "type": "github"
  7292. },
  7293. {
  7294. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7295. "type": "tidelift"
  7296. }
  7297. ],
  7298. "time": "2024-04-18T09:32:20+00:00"
  7299. },
  7300. {
  7301. "name": "symfony/finder",
  7302. "version": "v7.1.3",
  7303. "source": {
  7304. "type": "git",
  7305. "url": "https://github.com/symfony/finder.git",
  7306. "reference": "717c6329886f32dc65e27461f80f2a465412fdca"
  7307. },
  7308. "dist": {
  7309. "type": "zip",
  7310. "url": "https://api.github.com/repos/symfony/finder/zipball/717c6329886f32dc65e27461f80f2a465412fdca",
  7311. "reference": "717c6329886f32dc65e27461f80f2a465412fdca",
  7312. "shasum": ""
  7313. },
  7314. "require": {
  7315. "php": ">=8.2"
  7316. },
  7317. "require-dev": {
  7318. "symfony/filesystem": "^6.4|^7.0"
  7319. },
  7320. "type": "library",
  7321. "autoload": {
  7322. "psr-4": {
  7323. "Symfony\\Component\\Finder\\": ""
  7324. },
  7325. "exclude-from-classmap": [
  7326. "/Tests/"
  7327. ]
  7328. },
  7329. "notification-url": "https://packagist.org/downloads/",
  7330. "license": [
  7331. "MIT"
  7332. ],
  7333. "authors": [
  7334. {
  7335. "name": "Fabien Potencier",
  7336. "email": "fabien@symfony.com"
  7337. },
  7338. {
  7339. "name": "Symfony Community",
  7340. "homepage": "https://symfony.com/contributors"
  7341. }
  7342. ],
  7343. "description": "Finds files and directories via an intuitive fluent interface",
  7344. "homepage": "https://symfony.com",
  7345. "support": {
  7346. "source": "https://github.com/symfony/finder/tree/v7.1.3"
  7347. },
  7348. "funding": [
  7349. {
  7350. "url": "https://symfony.com/sponsor",
  7351. "type": "custom"
  7352. },
  7353. {
  7354. "url": "https://github.com/fabpot",
  7355. "type": "github"
  7356. },
  7357. {
  7358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7359. "type": "tidelift"
  7360. }
  7361. ],
  7362. "time": "2024-07-24T07:08:44+00:00"
  7363. },
  7364. {
  7365. "name": "symfony/html-sanitizer",
  7366. "version": "v7.1.1",
  7367. "source": {
  7368. "type": "git",
  7369. "url": "https://github.com/symfony/html-sanitizer.git",
  7370. "reference": "737cbaa8082b696d0574afd91b9f471eca67fc65"
  7371. },
  7372. "dist": {
  7373. "type": "zip",
  7374. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/737cbaa8082b696d0574afd91b9f471eca67fc65",
  7375. "reference": "737cbaa8082b696d0574afd91b9f471eca67fc65",
  7376. "shasum": ""
  7377. },
  7378. "require": {
  7379. "ext-dom": "*",
  7380. "league/uri": "^6.5|^7.0",
  7381. "masterminds/html5": "^2.7.2",
  7382. "php": ">=8.2"
  7383. },
  7384. "type": "library",
  7385. "autoload": {
  7386. "psr-4": {
  7387. "Symfony\\Component\\HtmlSanitizer\\": ""
  7388. },
  7389. "exclude-from-classmap": [
  7390. "/Tests/"
  7391. ]
  7392. },
  7393. "notification-url": "https://packagist.org/downloads/",
  7394. "license": [
  7395. "MIT"
  7396. ],
  7397. "authors": [
  7398. {
  7399. "name": "Titouan Galopin",
  7400. "email": "galopintitouan@gmail.com"
  7401. },
  7402. {
  7403. "name": "Symfony Community",
  7404. "homepage": "https://symfony.com/contributors"
  7405. }
  7406. ],
  7407. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7408. "homepage": "https://symfony.com",
  7409. "keywords": [
  7410. "Purifier",
  7411. "html",
  7412. "sanitizer"
  7413. ],
  7414. "support": {
  7415. "source": "https://github.com/symfony/html-sanitizer/tree/v7.1.1"
  7416. },
  7417. "funding": [
  7418. {
  7419. "url": "https://symfony.com/sponsor",
  7420. "type": "custom"
  7421. },
  7422. {
  7423. "url": "https://github.com/fabpot",
  7424. "type": "github"
  7425. },
  7426. {
  7427. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7428. "type": "tidelift"
  7429. }
  7430. ],
  7431. "time": "2024-05-31T14:55:39+00:00"
  7432. },
  7433. {
  7434. "name": "symfony/http-foundation",
  7435. "version": "v7.1.3",
  7436. "source": {
  7437. "type": "git",
  7438. "url": "https://github.com/symfony/http-foundation.git",
  7439. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a"
  7440. },
  7441. "dist": {
  7442. "type": "zip",
  7443. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  7444. "reference": "f602d5c17d1fa02f8019ace2687d9d136b7f4a1a",
  7445. "shasum": ""
  7446. },
  7447. "require": {
  7448. "php": ">=8.2",
  7449. "symfony/polyfill-mbstring": "~1.1",
  7450. "symfony/polyfill-php83": "^1.27"
  7451. },
  7452. "conflict": {
  7453. "doctrine/dbal": "<3.6",
  7454. "symfony/cache": "<6.4"
  7455. },
  7456. "require-dev": {
  7457. "doctrine/dbal": "^3.6|^4",
  7458. "predis/predis": "^1.1|^2.0",
  7459. "symfony/cache": "^6.4|^7.0",
  7460. "symfony/dependency-injection": "^6.4|^7.0",
  7461. "symfony/expression-language": "^6.4|^7.0",
  7462. "symfony/http-kernel": "^6.4|^7.0",
  7463. "symfony/mime": "^6.4|^7.0",
  7464. "symfony/rate-limiter": "^6.4|^7.0"
  7465. },
  7466. "type": "library",
  7467. "autoload": {
  7468. "psr-4": {
  7469. "Symfony\\Component\\HttpFoundation\\": ""
  7470. },
  7471. "exclude-from-classmap": [
  7472. "/Tests/"
  7473. ]
  7474. },
  7475. "notification-url": "https://packagist.org/downloads/",
  7476. "license": [
  7477. "MIT"
  7478. ],
  7479. "authors": [
  7480. {
  7481. "name": "Fabien Potencier",
  7482. "email": "fabien@symfony.com"
  7483. },
  7484. {
  7485. "name": "Symfony Community",
  7486. "homepage": "https://symfony.com/contributors"
  7487. }
  7488. ],
  7489. "description": "Defines an object-oriented layer for the HTTP specification",
  7490. "homepage": "https://symfony.com",
  7491. "support": {
  7492. "source": "https://github.com/symfony/http-foundation/tree/v7.1.3"
  7493. },
  7494. "funding": [
  7495. {
  7496. "url": "https://symfony.com/sponsor",
  7497. "type": "custom"
  7498. },
  7499. {
  7500. "url": "https://github.com/fabpot",
  7501. "type": "github"
  7502. },
  7503. {
  7504. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7505. "type": "tidelift"
  7506. }
  7507. ],
  7508. "time": "2024-07-26T12:41:01+00:00"
  7509. },
  7510. {
  7511. "name": "symfony/http-kernel",
  7512. "version": "v7.1.3",
  7513. "source": {
  7514. "type": "git",
  7515. "url": "https://github.com/symfony/http-kernel.git",
  7516. "reference": "db9702f3a04cc471ec8c70e881825db26ac5f186"
  7517. },
  7518. "dist": {
  7519. "type": "zip",
  7520. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/db9702f3a04cc471ec8c70e881825db26ac5f186",
  7521. "reference": "db9702f3a04cc471ec8c70e881825db26ac5f186",
  7522. "shasum": ""
  7523. },
  7524. "require": {
  7525. "php": ">=8.2",
  7526. "psr/log": "^1|^2|^3",
  7527. "symfony/deprecation-contracts": "^2.5|^3",
  7528. "symfony/error-handler": "^6.4|^7.0",
  7529. "symfony/event-dispatcher": "^6.4|^7.0",
  7530. "symfony/http-foundation": "^6.4|^7.0",
  7531. "symfony/polyfill-ctype": "^1.8"
  7532. },
  7533. "conflict": {
  7534. "symfony/browser-kit": "<6.4",
  7535. "symfony/cache": "<6.4",
  7536. "symfony/config": "<6.4",
  7537. "symfony/console": "<6.4",
  7538. "symfony/dependency-injection": "<6.4",
  7539. "symfony/doctrine-bridge": "<6.4",
  7540. "symfony/form": "<6.4",
  7541. "symfony/http-client": "<6.4",
  7542. "symfony/http-client-contracts": "<2.5",
  7543. "symfony/mailer": "<6.4",
  7544. "symfony/messenger": "<6.4",
  7545. "symfony/translation": "<6.4",
  7546. "symfony/translation-contracts": "<2.5",
  7547. "symfony/twig-bridge": "<6.4",
  7548. "symfony/validator": "<6.4",
  7549. "symfony/var-dumper": "<6.4",
  7550. "twig/twig": "<3.0.4"
  7551. },
  7552. "provide": {
  7553. "psr/log-implementation": "1.0|2.0|3.0"
  7554. },
  7555. "require-dev": {
  7556. "psr/cache": "^1.0|^2.0|^3.0",
  7557. "symfony/browser-kit": "^6.4|^7.0",
  7558. "symfony/clock": "^6.4|^7.0",
  7559. "symfony/config": "^6.4|^7.0",
  7560. "symfony/console": "^6.4|^7.0",
  7561. "symfony/css-selector": "^6.4|^7.0",
  7562. "symfony/dependency-injection": "^6.4|^7.0",
  7563. "symfony/dom-crawler": "^6.4|^7.0",
  7564. "symfony/expression-language": "^6.4|^7.0",
  7565. "symfony/finder": "^6.4|^7.0",
  7566. "symfony/http-client-contracts": "^2.5|^3",
  7567. "symfony/process": "^6.4|^7.0",
  7568. "symfony/property-access": "^7.1",
  7569. "symfony/routing": "^6.4|^7.0",
  7570. "symfony/serializer": "^7.1",
  7571. "symfony/stopwatch": "^6.4|^7.0",
  7572. "symfony/translation": "^6.4|^7.0",
  7573. "symfony/translation-contracts": "^2.5|^3",
  7574. "symfony/uid": "^6.4|^7.0",
  7575. "symfony/validator": "^6.4|^7.0",
  7576. "symfony/var-dumper": "^6.4|^7.0",
  7577. "symfony/var-exporter": "^6.4|^7.0",
  7578. "twig/twig": "^3.0.4"
  7579. },
  7580. "type": "library",
  7581. "autoload": {
  7582. "psr-4": {
  7583. "Symfony\\Component\\HttpKernel\\": ""
  7584. },
  7585. "exclude-from-classmap": [
  7586. "/Tests/"
  7587. ]
  7588. },
  7589. "notification-url": "https://packagist.org/downloads/",
  7590. "license": [
  7591. "MIT"
  7592. ],
  7593. "authors": [
  7594. {
  7595. "name": "Fabien Potencier",
  7596. "email": "fabien@symfony.com"
  7597. },
  7598. {
  7599. "name": "Symfony Community",
  7600. "homepage": "https://symfony.com/contributors"
  7601. }
  7602. ],
  7603. "description": "Provides a structured process for converting a Request into a Response",
  7604. "homepage": "https://symfony.com",
  7605. "support": {
  7606. "source": "https://github.com/symfony/http-kernel/tree/v7.1.3"
  7607. },
  7608. "funding": [
  7609. {
  7610. "url": "https://symfony.com/sponsor",
  7611. "type": "custom"
  7612. },
  7613. {
  7614. "url": "https://github.com/fabpot",
  7615. "type": "github"
  7616. },
  7617. {
  7618. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7619. "type": "tidelift"
  7620. }
  7621. ],
  7622. "time": "2024-07-26T14:58:15+00:00"
  7623. },
  7624. {
  7625. "name": "symfony/intl",
  7626. "version": "v6.4.8",
  7627. "source": {
  7628. "type": "git",
  7629. "url": "https://github.com/symfony/intl.git",
  7630. "reference": "50265cdcf5a44bec3fcf487b5d0015aece91d1eb"
  7631. },
  7632. "dist": {
  7633. "type": "zip",
  7634. "url": "https://api.github.com/repos/symfony/intl/zipball/50265cdcf5a44bec3fcf487b5d0015aece91d1eb",
  7635. "reference": "50265cdcf5a44bec3fcf487b5d0015aece91d1eb",
  7636. "shasum": ""
  7637. },
  7638. "require": {
  7639. "php": ">=8.1"
  7640. },
  7641. "require-dev": {
  7642. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7643. "symfony/finder": "^5.4|^6.0|^7.0",
  7644. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7645. },
  7646. "type": "library",
  7647. "autoload": {
  7648. "psr-4": {
  7649. "Symfony\\Component\\Intl\\": ""
  7650. },
  7651. "exclude-from-classmap": [
  7652. "/Tests/",
  7653. "/Resources/data/"
  7654. ]
  7655. },
  7656. "notification-url": "https://packagist.org/downloads/",
  7657. "license": [
  7658. "MIT"
  7659. ],
  7660. "authors": [
  7661. {
  7662. "name": "Bernhard Schussek",
  7663. "email": "bschussek@gmail.com"
  7664. },
  7665. {
  7666. "name": "Eriksen Costa",
  7667. "email": "eriksen.costa@infranology.com.br"
  7668. },
  7669. {
  7670. "name": "Igor Wiedler",
  7671. "email": "igor@wiedler.ch"
  7672. },
  7673. {
  7674. "name": "Symfony Community",
  7675. "homepage": "https://symfony.com/contributors"
  7676. }
  7677. ],
  7678. "description": "Provides access to the localization data of the ICU library",
  7679. "homepage": "https://symfony.com",
  7680. "keywords": [
  7681. "i18n",
  7682. "icu",
  7683. "internationalization",
  7684. "intl",
  7685. "l10n",
  7686. "localization"
  7687. ],
  7688. "support": {
  7689. "source": "https://github.com/symfony/intl/tree/v6.4.8"
  7690. },
  7691. "funding": [
  7692. {
  7693. "url": "https://symfony.com/sponsor",
  7694. "type": "custom"
  7695. },
  7696. {
  7697. "url": "https://github.com/fabpot",
  7698. "type": "github"
  7699. },
  7700. {
  7701. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7702. "type": "tidelift"
  7703. }
  7704. ],
  7705. "time": "2024-05-31T14:49:08+00:00"
  7706. },
  7707. {
  7708. "name": "symfony/mailer",
  7709. "version": "v7.1.2",
  7710. "source": {
  7711. "type": "git",
  7712. "url": "https://github.com/symfony/mailer.git",
  7713. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee"
  7714. },
  7715. "dist": {
  7716. "type": "zip",
  7717. "url": "https://api.github.com/repos/symfony/mailer/zipball/8fcff0af9043c8f8a8e229437cea363e282f9aee",
  7718. "reference": "8fcff0af9043c8f8a8e229437cea363e282f9aee",
  7719. "shasum": ""
  7720. },
  7721. "require": {
  7722. "egulias/email-validator": "^2.1.10|^3|^4",
  7723. "php": ">=8.2",
  7724. "psr/event-dispatcher": "^1",
  7725. "psr/log": "^1|^2|^3",
  7726. "symfony/event-dispatcher": "^6.4|^7.0",
  7727. "symfony/mime": "^6.4|^7.0",
  7728. "symfony/service-contracts": "^2.5|^3"
  7729. },
  7730. "conflict": {
  7731. "symfony/http-client-contracts": "<2.5",
  7732. "symfony/http-kernel": "<6.4",
  7733. "symfony/messenger": "<6.4",
  7734. "symfony/mime": "<6.4",
  7735. "symfony/twig-bridge": "<6.4"
  7736. },
  7737. "require-dev": {
  7738. "symfony/console": "^6.4|^7.0",
  7739. "symfony/http-client": "^6.4|^7.0",
  7740. "symfony/messenger": "^6.4|^7.0",
  7741. "symfony/twig-bridge": "^6.4|^7.0"
  7742. },
  7743. "type": "library",
  7744. "autoload": {
  7745. "psr-4": {
  7746. "Symfony\\Component\\Mailer\\": ""
  7747. },
  7748. "exclude-from-classmap": [
  7749. "/Tests/"
  7750. ]
  7751. },
  7752. "notification-url": "https://packagist.org/downloads/",
  7753. "license": [
  7754. "MIT"
  7755. ],
  7756. "authors": [
  7757. {
  7758. "name": "Fabien Potencier",
  7759. "email": "fabien@symfony.com"
  7760. },
  7761. {
  7762. "name": "Symfony Community",
  7763. "homepage": "https://symfony.com/contributors"
  7764. }
  7765. ],
  7766. "description": "Helps sending emails",
  7767. "homepage": "https://symfony.com",
  7768. "support": {
  7769. "source": "https://github.com/symfony/mailer/tree/v7.1.2"
  7770. },
  7771. "funding": [
  7772. {
  7773. "url": "https://symfony.com/sponsor",
  7774. "type": "custom"
  7775. },
  7776. {
  7777. "url": "https://github.com/fabpot",
  7778. "type": "github"
  7779. },
  7780. {
  7781. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7782. "type": "tidelift"
  7783. }
  7784. ],
  7785. "time": "2024-06-28T08:00:31+00:00"
  7786. },
  7787. {
  7788. "name": "symfony/mime",
  7789. "version": "v7.1.2",
  7790. "source": {
  7791. "type": "git",
  7792. "url": "https://github.com/symfony/mime.git",
  7793. "reference": "26a00b85477e69a4bab63b66c5dce64f18b0cbfc"
  7794. },
  7795. "dist": {
  7796. "type": "zip",
  7797. "url": "https://api.github.com/repos/symfony/mime/zipball/26a00b85477e69a4bab63b66c5dce64f18b0cbfc",
  7798. "reference": "26a00b85477e69a4bab63b66c5dce64f18b0cbfc",
  7799. "shasum": ""
  7800. },
  7801. "require": {
  7802. "php": ">=8.2",
  7803. "symfony/polyfill-intl-idn": "^1.10",
  7804. "symfony/polyfill-mbstring": "^1.0"
  7805. },
  7806. "conflict": {
  7807. "egulias/email-validator": "~3.0.0",
  7808. "phpdocumentor/reflection-docblock": "<3.2.2",
  7809. "phpdocumentor/type-resolver": "<1.4.0",
  7810. "symfony/mailer": "<6.4",
  7811. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7812. },
  7813. "require-dev": {
  7814. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7815. "league/html-to-markdown": "^5.0",
  7816. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7817. "symfony/dependency-injection": "^6.4|^7.0",
  7818. "symfony/process": "^6.4|^7.0",
  7819. "symfony/property-access": "^6.4|^7.0",
  7820. "symfony/property-info": "^6.4|^7.0",
  7821. "symfony/serializer": "^6.4.3|^7.0.3"
  7822. },
  7823. "type": "library",
  7824. "autoload": {
  7825. "psr-4": {
  7826. "Symfony\\Component\\Mime\\": ""
  7827. },
  7828. "exclude-from-classmap": [
  7829. "/Tests/"
  7830. ]
  7831. },
  7832. "notification-url": "https://packagist.org/downloads/",
  7833. "license": [
  7834. "MIT"
  7835. ],
  7836. "authors": [
  7837. {
  7838. "name": "Fabien Potencier",
  7839. "email": "fabien@symfony.com"
  7840. },
  7841. {
  7842. "name": "Symfony Community",
  7843. "homepage": "https://symfony.com/contributors"
  7844. }
  7845. ],
  7846. "description": "Allows manipulating MIME messages",
  7847. "homepage": "https://symfony.com",
  7848. "keywords": [
  7849. "mime",
  7850. "mime-type"
  7851. ],
  7852. "support": {
  7853. "source": "https://github.com/symfony/mime/tree/v7.1.2"
  7854. },
  7855. "funding": [
  7856. {
  7857. "url": "https://symfony.com/sponsor",
  7858. "type": "custom"
  7859. },
  7860. {
  7861. "url": "https://github.com/fabpot",
  7862. "type": "github"
  7863. },
  7864. {
  7865. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7866. "type": "tidelift"
  7867. }
  7868. ],
  7869. "time": "2024-06-28T10:03:55+00:00"
  7870. },
  7871. {
  7872. "name": "symfony/polyfill-ctype",
  7873. "version": "v1.30.0",
  7874. "source": {
  7875. "type": "git",
  7876. "url": "https://github.com/symfony/polyfill-ctype.git",
  7877. "reference": "0424dff1c58f028c451efff2045f5d92410bd540"
  7878. },
  7879. "dist": {
  7880. "type": "zip",
  7881. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/0424dff1c58f028c451efff2045f5d92410bd540",
  7882. "reference": "0424dff1c58f028c451efff2045f5d92410bd540",
  7883. "shasum": ""
  7884. },
  7885. "require": {
  7886. "php": ">=7.1"
  7887. },
  7888. "provide": {
  7889. "ext-ctype": "*"
  7890. },
  7891. "suggest": {
  7892. "ext-ctype": "For best performance"
  7893. },
  7894. "type": "library",
  7895. "extra": {
  7896. "thanks": {
  7897. "name": "symfony/polyfill",
  7898. "url": "https://github.com/symfony/polyfill"
  7899. }
  7900. },
  7901. "autoload": {
  7902. "files": [
  7903. "bootstrap.php"
  7904. ],
  7905. "psr-4": {
  7906. "Symfony\\Polyfill\\Ctype\\": ""
  7907. }
  7908. },
  7909. "notification-url": "https://packagist.org/downloads/",
  7910. "license": [
  7911. "MIT"
  7912. ],
  7913. "authors": [
  7914. {
  7915. "name": "Gert de Pagter",
  7916. "email": "BackEndTea@gmail.com"
  7917. },
  7918. {
  7919. "name": "Symfony Community",
  7920. "homepage": "https://symfony.com/contributors"
  7921. }
  7922. ],
  7923. "description": "Symfony polyfill for ctype functions",
  7924. "homepage": "https://symfony.com",
  7925. "keywords": [
  7926. "compatibility",
  7927. "ctype",
  7928. "polyfill",
  7929. "portable"
  7930. ],
  7931. "support": {
  7932. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.30.0"
  7933. },
  7934. "funding": [
  7935. {
  7936. "url": "https://symfony.com/sponsor",
  7937. "type": "custom"
  7938. },
  7939. {
  7940. "url": "https://github.com/fabpot",
  7941. "type": "github"
  7942. },
  7943. {
  7944. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7945. "type": "tidelift"
  7946. }
  7947. ],
  7948. "time": "2024-05-31T15:07:36+00:00"
  7949. },
  7950. {
  7951. "name": "symfony/polyfill-intl-grapheme",
  7952. "version": "v1.30.0",
  7953. "source": {
  7954. "type": "git",
  7955. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7956. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a"
  7957. },
  7958. "dist": {
  7959. "type": "zip",
  7960. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/64647a7c30b2283f5d49b874d84a18fc22054b7a",
  7961. "reference": "64647a7c30b2283f5d49b874d84a18fc22054b7a",
  7962. "shasum": ""
  7963. },
  7964. "require": {
  7965. "php": ">=7.1"
  7966. },
  7967. "suggest": {
  7968. "ext-intl": "For best performance"
  7969. },
  7970. "type": "library",
  7971. "extra": {
  7972. "thanks": {
  7973. "name": "symfony/polyfill",
  7974. "url": "https://github.com/symfony/polyfill"
  7975. }
  7976. },
  7977. "autoload": {
  7978. "files": [
  7979. "bootstrap.php"
  7980. ],
  7981. "psr-4": {
  7982. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7983. }
  7984. },
  7985. "notification-url": "https://packagist.org/downloads/",
  7986. "license": [
  7987. "MIT"
  7988. ],
  7989. "authors": [
  7990. {
  7991. "name": "Nicolas Grekas",
  7992. "email": "p@tchwork.com"
  7993. },
  7994. {
  7995. "name": "Symfony Community",
  7996. "homepage": "https://symfony.com/contributors"
  7997. }
  7998. ],
  7999. "description": "Symfony polyfill for intl's grapheme_* functions",
  8000. "homepage": "https://symfony.com",
  8001. "keywords": [
  8002. "compatibility",
  8003. "grapheme",
  8004. "intl",
  8005. "polyfill",
  8006. "portable",
  8007. "shim"
  8008. ],
  8009. "support": {
  8010. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.30.0"
  8011. },
  8012. "funding": [
  8013. {
  8014. "url": "https://symfony.com/sponsor",
  8015. "type": "custom"
  8016. },
  8017. {
  8018. "url": "https://github.com/fabpot",
  8019. "type": "github"
  8020. },
  8021. {
  8022. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8023. "type": "tidelift"
  8024. }
  8025. ],
  8026. "time": "2024-05-31T15:07:36+00:00"
  8027. },
  8028. {
  8029. "name": "symfony/polyfill-intl-idn",
  8030. "version": "v1.30.0",
  8031. "source": {
  8032. "type": "git",
  8033. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8034. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c"
  8035. },
  8036. "dist": {
  8037. "type": "zip",
  8038. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  8039. "reference": "a6e83bdeb3c84391d1dfe16f42e40727ce524a5c",
  8040. "shasum": ""
  8041. },
  8042. "require": {
  8043. "php": ">=7.1",
  8044. "symfony/polyfill-intl-normalizer": "^1.10",
  8045. "symfony/polyfill-php72": "^1.10"
  8046. },
  8047. "suggest": {
  8048. "ext-intl": "For best performance"
  8049. },
  8050. "type": "library",
  8051. "extra": {
  8052. "thanks": {
  8053. "name": "symfony/polyfill",
  8054. "url": "https://github.com/symfony/polyfill"
  8055. }
  8056. },
  8057. "autoload": {
  8058. "files": [
  8059. "bootstrap.php"
  8060. ],
  8061. "psr-4": {
  8062. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8063. }
  8064. },
  8065. "notification-url": "https://packagist.org/downloads/",
  8066. "license": [
  8067. "MIT"
  8068. ],
  8069. "authors": [
  8070. {
  8071. "name": "Laurent Bassin",
  8072. "email": "laurent@bassin.info"
  8073. },
  8074. {
  8075. "name": "Trevor Rowbotham",
  8076. "email": "trevor.rowbotham@pm.me"
  8077. },
  8078. {
  8079. "name": "Symfony Community",
  8080. "homepage": "https://symfony.com/contributors"
  8081. }
  8082. ],
  8083. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8084. "homepage": "https://symfony.com",
  8085. "keywords": [
  8086. "compatibility",
  8087. "idn",
  8088. "intl",
  8089. "polyfill",
  8090. "portable",
  8091. "shim"
  8092. ],
  8093. "support": {
  8094. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.30.0"
  8095. },
  8096. "funding": [
  8097. {
  8098. "url": "https://symfony.com/sponsor",
  8099. "type": "custom"
  8100. },
  8101. {
  8102. "url": "https://github.com/fabpot",
  8103. "type": "github"
  8104. },
  8105. {
  8106. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8107. "type": "tidelift"
  8108. }
  8109. ],
  8110. "time": "2024-05-31T15:07:36+00:00"
  8111. },
  8112. {
  8113. "name": "symfony/polyfill-intl-normalizer",
  8114. "version": "v1.30.0",
  8115. "source": {
  8116. "type": "git",
  8117. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8118. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb"
  8119. },
  8120. "dist": {
  8121. "type": "zip",
  8122. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  8123. "reference": "a95281b0be0d9ab48050ebd988b967875cdb9fdb",
  8124. "shasum": ""
  8125. },
  8126. "require": {
  8127. "php": ">=7.1"
  8128. },
  8129. "suggest": {
  8130. "ext-intl": "For best performance"
  8131. },
  8132. "type": "library",
  8133. "extra": {
  8134. "thanks": {
  8135. "name": "symfony/polyfill",
  8136. "url": "https://github.com/symfony/polyfill"
  8137. }
  8138. },
  8139. "autoload": {
  8140. "files": [
  8141. "bootstrap.php"
  8142. ],
  8143. "psr-4": {
  8144. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8145. },
  8146. "classmap": [
  8147. "Resources/stubs"
  8148. ]
  8149. },
  8150. "notification-url": "https://packagist.org/downloads/",
  8151. "license": [
  8152. "MIT"
  8153. ],
  8154. "authors": [
  8155. {
  8156. "name": "Nicolas Grekas",
  8157. "email": "p@tchwork.com"
  8158. },
  8159. {
  8160. "name": "Symfony Community",
  8161. "homepage": "https://symfony.com/contributors"
  8162. }
  8163. ],
  8164. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8165. "homepage": "https://symfony.com",
  8166. "keywords": [
  8167. "compatibility",
  8168. "intl",
  8169. "normalizer",
  8170. "polyfill",
  8171. "portable",
  8172. "shim"
  8173. ],
  8174. "support": {
  8175. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.30.0"
  8176. },
  8177. "funding": [
  8178. {
  8179. "url": "https://symfony.com/sponsor",
  8180. "type": "custom"
  8181. },
  8182. {
  8183. "url": "https://github.com/fabpot",
  8184. "type": "github"
  8185. },
  8186. {
  8187. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8188. "type": "tidelift"
  8189. }
  8190. ],
  8191. "time": "2024-05-31T15:07:36+00:00"
  8192. },
  8193. {
  8194. "name": "symfony/polyfill-mbstring",
  8195. "version": "v1.30.0",
  8196. "source": {
  8197. "type": "git",
  8198. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8199. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c"
  8200. },
  8201. "dist": {
  8202. "type": "zip",
  8203. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  8204. "reference": "fd22ab50000ef01661e2a31d850ebaa297f8e03c",
  8205. "shasum": ""
  8206. },
  8207. "require": {
  8208. "php": ">=7.1"
  8209. },
  8210. "provide": {
  8211. "ext-mbstring": "*"
  8212. },
  8213. "suggest": {
  8214. "ext-mbstring": "For best performance"
  8215. },
  8216. "type": "library",
  8217. "extra": {
  8218. "thanks": {
  8219. "name": "symfony/polyfill",
  8220. "url": "https://github.com/symfony/polyfill"
  8221. }
  8222. },
  8223. "autoload": {
  8224. "files": [
  8225. "bootstrap.php"
  8226. ],
  8227. "psr-4": {
  8228. "Symfony\\Polyfill\\Mbstring\\": ""
  8229. }
  8230. },
  8231. "notification-url": "https://packagist.org/downloads/",
  8232. "license": [
  8233. "MIT"
  8234. ],
  8235. "authors": [
  8236. {
  8237. "name": "Nicolas Grekas",
  8238. "email": "p@tchwork.com"
  8239. },
  8240. {
  8241. "name": "Symfony Community",
  8242. "homepage": "https://symfony.com/contributors"
  8243. }
  8244. ],
  8245. "description": "Symfony polyfill for the Mbstring extension",
  8246. "homepage": "https://symfony.com",
  8247. "keywords": [
  8248. "compatibility",
  8249. "mbstring",
  8250. "polyfill",
  8251. "portable",
  8252. "shim"
  8253. ],
  8254. "support": {
  8255. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.30.0"
  8256. },
  8257. "funding": [
  8258. {
  8259. "url": "https://symfony.com/sponsor",
  8260. "type": "custom"
  8261. },
  8262. {
  8263. "url": "https://github.com/fabpot",
  8264. "type": "github"
  8265. },
  8266. {
  8267. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8268. "type": "tidelift"
  8269. }
  8270. ],
  8271. "time": "2024-06-19T12:30:46+00:00"
  8272. },
  8273. {
  8274. "name": "symfony/polyfill-php72",
  8275. "version": "v1.30.0",
  8276. "source": {
  8277. "type": "git",
  8278. "url": "https://github.com/symfony/polyfill-php72.git",
  8279. "reference": "10112722600777e02d2745716b70c5db4ca70442"
  8280. },
  8281. "dist": {
  8282. "type": "zip",
  8283. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/10112722600777e02d2745716b70c5db4ca70442",
  8284. "reference": "10112722600777e02d2745716b70c5db4ca70442",
  8285. "shasum": ""
  8286. },
  8287. "require": {
  8288. "php": ">=7.1"
  8289. },
  8290. "type": "library",
  8291. "extra": {
  8292. "thanks": {
  8293. "name": "symfony/polyfill",
  8294. "url": "https://github.com/symfony/polyfill"
  8295. }
  8296. },
  8297. "autoload": {
  8298. "files": [
  8299. "bootstrap.php"
  8300. ],
  8301. "psr-4": {
  8302. "Symfony\\Polyfill\\Php72\\": ""
  8303. }
  8304. },
  8305. "notification-url": "https://packagist.org/downloads/",
  8306. "license": [
  8307. "MIT"
  8308. ],
  8309. "authors": [
  8310. {
  8311. "name": "Nicolas Grekas",
  8312. "email": "p@tchwork.com"
  8313. },
  8314. {
  8315. "name": "Symfony Community",
  8316. "homepage": "https://symfony.com/contributors"
  8317. }
  8318. ],
  8319. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  8320. "homepage": "https://symfony.com",
  8321. "keywords": [
  8322. "compatibility",
  8323. "polyfill",
  8324. "portable",
  8325. "shim"
  8326. ],
  8327. "support": {
  8328. "source": "https://github.com/symfony/polyfill-php72/tree/v1.30.0"
  8329. },
  8330. "funding": [
  8331. {
  8332. "url": "https://symfony.com/sponsor",
  8333. "type": "custom"
  8334. },
  8335. {
  8336. "url": "https://github.com/fabpot",
  8337. "type": "github"
  8338. },
  8339. {
  8340. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8341. "type": "tidelift"
  8342. }
  8343. ],
  8344. "time": "2024-06-19T12:30:46+00:00"
  8345. },
  8346. {
  8347. "name": "symfony/polyfill-php80",
  8348. "version": "v1.30.0",
  8349. "source": {
  8350. "type": "git",
  8351. "url": "https://github.com/symfony/polyfill-php80.git",
  8352. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433"
  8353. },
  8354. "dist": {
  8355. "type": "zip",
  8356. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/77fa7995ac1b21ab60769b7323d600a991a90433",
  8357. "reference": "77fa7995ac1b21ab60769b7323d600a991a90433",
  8358. "shasum": ""
  8359. },
  8360. "require": {
  8361. "php": ">=7.1"
  8362. },
  8363. "type": "library",
  8364. "extra": {
  8365. "thanks": {
  8366. "name": "symfony/polyfill",
  8367. "url": "https://github.com/symfony/polyfill"
  8368. }
  8369. },
  8370. "autoload": {
  8371. "files": [
  8372. "bootstrap.php"
  8373. ],
  8374. "psr-4": {
  8375. "Symfony\\Polyfill\\Php80\\": ""
  8376. },
  8377. "classmap": [
  8378. "Resources/stubs"
  8379. ]
  8380. },
  8381. "notification-url": "https://packagist.org/downloads/",
  8382. "license": [
  8383. "MIT"
  8384. ],
  8385. "authors": [
  8386. {
  8387. "name": "Ion Bazan",
  8388. "email": "ion.bazan@gmail.com"
  8389. },
  8390. {
  8391. "name": "Nicolas Grekas",
  8392. "email": "p@tchwork.com"
  8393. },
  8394. {
  8395. "name": "Symfony Community",
  8396. "homepage": "https://symfony.com/contributors"
  8397. }
  8398. ],
  8399. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8400. "homepage": "https://symfony.com",
  8401. "keywords": [
  8402. "compatibility",
  8403. "polyfill",
  8404. "portable",
  8405. "shim"
  8406. ],
  8407. "support": {
  8408. "source": "https://github.com/symfony/polyfill-php80/tree/v1.30.0"
  8409. },
  8410. "funding": [
  8411. {
  8412. "url": "https://symfony.com/sponsor",
  8413. "type": "custom"
  8414. },
  8415. {
  8416. "url": "https://github.com/fabpot",
  8417. "type": "github"
  8418. },
  8419. {
  8420. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8421. "type": "tidelift"
  8422. }
  8423. ],
  8424. "time": "2024-05-31T15:07:36+00:00"
  8425. },
  8426. {
  8427. "name": "symfony/polyfill-php83",
  8428. "version": "v1.30.0",
  8429. "source": {
  8430. "type": "git",
  8431. "url": "https://github.com/symfony/polyfill-php83.git",
  8432. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9"
  8433. },
  8434. "dist": {
  8435. "type": "zip",
  8436. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  8437. "reference": "dbdcdf1a4dcc2743591f1079d0c35ab1e2dcbbc9",
  8438. "shasum": ""
  8439. },
  8440. "require": {
  8441. "php": ">=7.1"
  8442. },
  8443. "type": "library",
  8444. "extra": {
  8445. "thanks": {
  8446. "name": "symfony/polyfill",
  8447. "url": "https://github.com/symfony/polyfill"
  8448. }
  8449. },
  8450. "autoload": {
  8451. "files": [
  8452. "bootstrap.php"
  8453. ],
  8454. "psr-4": {
  8455. "Symfony\\Polyfill\\Php83\\": ""
  8456. },
  8457. "classmap": [
  8458. "Resources/stubs"
  8459. ]
  8460. },
  8461. "notification-url": "https://packagist.org/downloads/",
  8462. "license": [
  8463. "MIT"
  8464. ],
  8465. "authors": [
  8466. {
  8467. "name": "Nicolas Grekas",
  8468. "email": "p@tchwork.com"
  8469. },
  8470. {
  8471. "name": "Symfony Community",
  8472. "homepage": "https://symfony.com/contributors"
  8473. }
  8474. ],
  8475. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8476. "homepage": "https://symfony.com",
  8477. "keywords": [
  8478. "compatibility",
  8479. "polyfill",
  8480. "portable",
  8481. "shim"
  8482. ],
  8483. "support": {
  8484. "source": "https://github.com/symfony/polyfill-php83/tree/v1.30.0"
  8485. },
  8486. "funding": [
  8487. {
  8488. "url": "https://symfony.com/sponsor",
  8489. "type": "custom"
  8490. },
  8491. {
  8492. "url": "https://github.com/fabpot",
  8493. "type": "github"
  8494. },
  8495. {
  8496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8497. "type": "tidelift"
  8498. }
  8499. ],
  8500. "time": "2024-06-19T12:35:24+00:00"
  8501. },
  8502. {
  8503. "name": "symfony/polyfill-uuid",
  8504. "version": "v1.30.0",
  8505. "source": {
  8506. "type": "git",
  8507. "url": "https://github.com/symfony/polyfill-uuid.git",
  8508. "reference": "2ba1f33797470debcda07fe9dce20a0003df18e9"
  8509. },
  8510. "dist": {
  8511. "type": "zip",
  8512. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/2ba1f33797470debcda07fe9dce20a0003df18e9",
  8513. "reference": "2ba1f33797470debcda07fe9dce20a0003df18e9",
  8514. "shasum": ""
  8515. },
  8516. "require": {
  8517. "php": ">=7.1"
  8518. },
  8519. "provide": {
  8520. "ext-uuid": "*"
  8521. },
  8522. "suggest": {
  8523. "ext-uuid": "For best performance"
  8524. },
  8525. "type": "library",
  8526. "extra": {
  8527. "thanks": {
  8528. "name": "symfony/polyfill",
  8529. "url": "https://github.com/symfony/polyfill"
  8530. }
  8531. },
  8532. "autoload": {
  8533. "files": [
  8534. "bootstrap.php"
  8535. ],
  8536. "psr-4": {
  8537. "Symfony\\Polyfill\\Uuid\\": ""
  8538. }
  8539. },
  8540. "notification-url": "https://packagist.org/downloads/",
  8541. "license": [
  8542. "MIT"
  8543. ],
  8544. "authors": [
  8545. {
  8546. "name": "Grégoire Pineau",
  8547. "email": "lyrixx@lyrixx.info"
  8548. },
  8549. {
  8550. "name": "Symfony Community",
  8551. "homepage": "https://symfony.com/contributors"
  8552. }
  8553. ],
  8554. "description": "Symfony polyfill for uuid functions",
  8555. "homepage": "https://symfony.com",
  8556. "keywords": [
  8557. "compatibility",
  8558. "polyfill",
  8559. "portable",
  8560. "uuid"
  8561. ],
  8562. "support": {
  8563. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.30.0"
  8564. },
  8565. "funding": [
  8566. {
  8567. "url": "https://symfony.com/sponsor",
  8568. "type": "custom"
  8569. },
  8570. {
  8571. "url": "https://github.com/fabpot",
  8572. "type": "github"
  8573. },
  8574. {
  8575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8576. "type": "tidelift"
  8577. }
  8578. ],
  8579. "time": "2024-05-31T15:07:36+00:00"
  8580. },
  8581. {
  8582. "name": "symfony/process",
  8583. "version": "v7.1.3",
  8584. "source": {
  8585. "type": "git",
  8586. "url": "https://github.com/symfony/process.git",
  8587. "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca"
  8588. },
  8589. "dist": {
  8590. "type": "zip",
  8591. "url": "https://api.github.com/repos/symfony/process/zipball/7f2f542c668ad6c313dc4a5e9c3321f733197eca",
  8592. "reference": "7f2f542c668ad6c313dc4a5e9c3321f733197eca",
  8593. "shasum": ""
  8594. },
  8595. "require": {
  8596. "php": ">=8.2"
  8597. },
  8598. "type": "library",
  8599. "autoload": {
  8600. "psr-4": {
  8601. "Symfony\\Component\\Process\\": ""
  8602. },
  8603. "exclude-from-classmap": [
  8604. "/Tests/"
  8605. ]
  8606. },
  8607. "notification-url": "https://packagist.org/downloads/",
  8608. "license": [
  8609. "MIT"
  8610. ],
  8611. "authors": [
  8612. {
  8613. "name": "Fabien Potencier",
  8614. "email": "fabien@symfony.com"
  8615. },
  8616. {
  8617. "name": "Symfony Community",
  8618. "homepage": "https://symfony.com/contributors"
  8619. }
  8620. ],
  8621. "description": "Executes commands in sub-processes",
  8622. "homepage": "https://symfony.com",
  8623. "support": {
  8624. "source": "https://github.com/symfony/process/tree/v7.1.3"
  8625. },
  8626. "funding": [
  8627. {
  8628. "url": "https://symfony.com/sponsor",
  8629. "type": "custom"
  8630. },
  8631. {
  8632. "url": "https://github.com/fabpot",
  8633. "type": "github"
  8634. },
  8635. {
  8636. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8637. "type": "tidelift"
  8638. }
  8639. ],
  8640. "time": "2024-07-26T12:44:47+00:00"
  8641. },
  8642. {
  8643. "name": "symfony/routing",
  8644. "version": "v7.1.3",
  8645. "source": {
  8646. "type": "git",
  8647. "url": "https://github.com/symfony/routing.git",
  8648. "reference": "8a908a3f22d5a1b5d297578c2ceb41b02fa916d0"
  8649. },
  8650. "dist": {
  8651. "type": "zip",
  8652. "url": "https://api.github.com/repos/symfony/routing/zipball/8a908a3f22d5a1b5d297578c2ceb41b02fa916d0",
  8653. "reference": "8a908a3f22d5a1b5d297578c2ceb41b02fa916d0",
  8654. "shasum": ""
  8655. },
  8656. "require": {
  8657. "php": ">=8.2",
  8658. "symfony/deprecation-contracts": "^2.5|^3"
  8659. },
  8660. "conflict": {
  8661. "symfony/config": "<6.4",
  8662. "symfony/dependency-injection": "<6.4",
  8663. "symfony/yaml": "<6.4"
  8664. },
  8665. "require-dev": {
  8666. "psr/log": "^1|^2|^3",
  8667. "symfony/config": "^6.4|^7.0",
  8668. "symfony/dependency-injection": "^6.4|^7.0",
  8669. "symfony/expression-language": "^6.4|^7.0",
  8670. "symfony/http-foundation": "^6.4|^7.0",
  8671. "symfony/yaml": "^6.4|^7.0"
  8672. },
  8673. "type": "library",
  8674. "autoload": {
  8675. "psr-4": {
  8676. "Symfony\\Component\\Routing\\": ""
  8677. },
  8678. "exclude-from-classmap": [
  8679. "/Tests/"
  8680. ]
  8681. },
  8682. "notification-url": "https://packagist.org/downloads/",
  8683. "license": [
  8684. "MIT"
  8685. ],
  8686. "authors": [
  8687. {
  8688. "name": "Fabien Potencier",
  8689. "email": "fabien@symfony.com"
  8690. },
  8691. {
  8692. "name": "Symfony Community",
  8693. "homepage": "https://symfony.com/contributors"
  8694. }
  8695. ],
  8696. "description": "Maps an HTTP request to a set of configuration variables",
  8697. "homepage": "https://symfony.com",
  8698. "keywords": [
  8699. "router",
  8700. "routing",
  8701. "uri",
  8702. "url"
  8703. ],
  8704. "support": {
  8705. "source": "https://github.com/symfony/routing/tree/v7.1.3"
  8706. },
  8707. "funding": [
  8708. {
  8709. "url": "https://symfony.com/sponsor",
  8710. "type": "custom"
  8711. },
  8712. {
  8713. "url": "https://github.com/fabpot",
  8714. "type": "github"
  8715. },
  8716. {
  8717. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8718. "type": "tidelift"
  8719. }
  8720. ],
  8721. "time": "2024-07-17T06:10:24+00:00"
  8722. },
  8723. {
  8724. "name": "symfony/service-contracts",
  8725. "version": "v3.5.0",
  8726. "source": {
  8727. "type": "git",
  8728. "url": "https://github.com/symfony/service-contracts.git",
  8729. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f"
  8730. },
  8731. "dist": {
  8732. "type": "zip",
  8733. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  8734. "reference": "bd1d9e59a81d8fa4acdcea3f617c581f7475a80f",
  8735. "shasum": ""
  8736. },
  8737. "require": {
  8738. "php": ">=8.1",
  8739. "psr/container": "^1.1|^2.0",
  8740. "symfony/deprecation-contracts": "^2.5|^3"
  8741. },
  8742. "conflict": {
  8743. "ext-psr": "<1.1|>=2"
  8744. },
  8745. "type": "library",
  8746. "extra": {
  8747. "branch-alias": {
  8748. "dev-main": "3.5-dev"
  8749. },
  8750. "thanks": {
  8751. "name": "symfony/contracts",
  8752. "url": "https://github.com/symfony/contracts"
  8753. }
  8754. },
  8755. "autoload": {
  8756. "psr-4": {
  8757. "Symfony\\Contracts\\Service\\": ""
  8758. },
  8759. "exclude-from-classmap": [
  8760. "/Test/"
  8761. ]
  8762. },
  8763. "notification-url": "https://packagist.org/downloads/",
  8764. "license": [
  8765. "MIT"
  8766. ],
  8767. "authors": [
  8768. {
  8769. "name": "Nicolas Grekas",
  8770. "email": "p@tchwork.com"
  8771. },
  8772. {
  8773. "name": "Symfony Community",
  8774. "homepage": "https://symfony.com/contributors"
  8775. }
  8776. ],
  8777. "description": "Generic abstractions related to writing services",
  8778. "homepage": "https://symfony.com",
  8779. "keywords": [
  8780. "abstractions",
  8781. "contracts",
  8782. "decoupling",
  8783. "interfaces",
  8784. "interoperability",
  8785. "standards"
  8786. ],
  8787. "support": {
  8788. "source": "https://github.com/symfony/service-contracts/tree/v3.5.0"
  8789. },
  8790. "funding": [
  8791. {
  8792. "url": "https://symfony.com/sponsor",
  8793. "type": "custom"
  8794. },
  8795. {
  8796. "url": "https://github.com/fabpot",
  8797. "type": "github"
  8798. },
  8799. {
  8800. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8801. "type": "tidelift"
  8802. }
  8803. ],
  8804. "time": "2024-04-18T09:32:20+00:00"
  8805. },
  8806. {
  8807. "name": "symfony/string",
  8808. "version": "v7.1.3",
  8809. "source": {
  8810. "type": "git",
  8811. "url": "https://github.com/symfony/string.git",
  8812. "reference": "ea272a882be7f20cad58d5d78c215001617b7f07"
  8813. },
  8814. "dist": {
  8815. "type": "zip",
  8816. "url": "https://api.github.com/repos/symfony/string/zipball/ea272a882be7f20cad58d5d78c215001617b7f07",
  8817. "reference": "ea272a882be7f20cad58d5d78c215001617b7f07",
  8818. "shasum": ""
  8819. },
  8820. "require": {
  8821. "php": ">=8.2",
  8822. "symfony/polyfill-ctype": "~1.8",
  8823. "symfony/polyfill-intl-grapheme": "~1.0",
  8824. "symfony/polyfill-intl-normalizer": "~1.0",
  8825. "symfony/polyfill-mbstring": "~1.0"
  8826. },
  8827. "conflict": {
  8828. "symfony/translation-contracts": "<2.5"
  8829. },
  8830. "require-dev": {
  8831. "symfony/emoji": "^7.1",
  8832. "symfony/error-handler": "^6.4|^7.0",
  8833. "symfony/http-client": "^6.4|^7.0",
  8834. "symfony/intl": "^6.4|^7.0",
  8835. "symfony/translation-contracts": "^2.5|^3.0",
  8836. "symfony/var-exporter": "^6.4|^7.0"
  8837. },
  8838. "type": "library",
  8839. "autoload": {
  8840. "files": [
  8841. "Resources/functions.php"
  8842. ],
  8843. "psr-4": {
  8844. "Symfony\\Component\\String\\": ""
  8845. },
  8846. "exclude-from-classmap": [
  8847. "/Tests/"
  8848. ]
  8849. },
  8850. "notification-url": "https://packagist.org/downloads/",
  8851. "license": [
  8852. "MIT"
  8853. ],
  8854. "authors": [
  8855. {
  8856. "name": "Nicolas Grekas",
  8857. "email": "p@tchwork.com"
  8858. },
  8859. {
  8860. "name": "Symfony Community",
  8861. "homepage": "https://symfony.com/contributors"
  8862. }
  8863. ],
  8864. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8865. "homepage": "https://symfony.com",
  8866. "keywords": [
  8867. "grapheme",
  8868. "i18n",
  8869. "string",
  8870. "unicode",
  8871. "utf-8",
  8872. "utf8"
  8873. ],
  8874. "support": {
  8875. "source": "https://github.com/symfony/string/tree/v7.1.3"
  8876. },
  8877. "funding": [
  8878. {
  8879. "url": "https://symfony.com/sponsor",
  8880. "type": "custom"
  8881. },
  8882. {
  8883. "url": "https://github.com/fabpot",
  8884. "type": "github"
  8885. },
  8886. {
  8887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8888. "type": "tidelift"
  8889. }
  8890. ],
  8891. "time": "2024-07-22T10:25:37+00:00"
  8892. },
  8893. {
  8894. "name": "symfony/translation",
  8895. "version": "v7.1.3",
  8896. "source": {
  8897. "type": "git",
  8898. "url": "https://github.com/symfony/translation.git",
  8899. "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1"
  8900. },
  8901. "dist": {
  8902. "type": "zip",
  8903. "url": "https://api.github.com/repos/symfony/translation/zipball/8d5e50c813ba2859a6dfc99a0765c550507934a1",
  8904. "reference": "8d5e50c813ba2859a6dfc99a0765c550507934a1",
  8905. "shasum": ""
  8906. },
  8907. "require": {
  8908. "php": ">=8.2",
  8909. "symfony/polyfill-mbstring": "~1.0",
  8910. "symfony/translation-contracts": "^2.5|^3.0"
  8911. },
  8912. "conflict": {
  8913. "symfony/config": "<6.4",
  8914. "symfony/console": "<6.4",
  8915. "symfony/dependency-injection": "<6.4",
  8916. "symfony/http-client-contracts": "<2.5",
  8917. "symfony/http-kernel": "<6.4",
  8918. "symfony/service-contracts": "<2.5",
  8919. "symfony/twig-bundle": "<6.4",
  8920. "symfony/yaml": "<6.4"
  8921. },
  8922. "provide": {
  8923. "symfony/translation-implementation": "2.3|3.0"
  8924. },
  8925. "require-dev": {
  8926. "nikic/php-parser": "^4.18|^5.0",
  8927. "psr/log": "^1|^2|^3",
  8928. "symfony/config": "^6.4|^7.0",
  8929. "symfony/console": "^6.4|^7.0",
  8930. "symfony/dependency-injection": "^6.4|^7.0",
  8931. "symfony/finder": "^6.4|^7.0",
  8932. "symfony/http-client-contracts": "^2.5|^3.0",
  8933. "symfony/http-kernel": "^6.4|^7.0",
  8934. "symfony/intl": "^6.4|^7.0",
  8935. "symfony/polyfill-intl-icu": "^1.21",
  8936. "symfony/routing": "^6.4|^7.0",
  8937. "symfony/service-contracts": "^2.5|^3",
  8938. "symfony/yaml": "^6.4|^7.0"
  8939. },
  8940. "type": "library",
  8941. "autoload": {
  8942. "files": [
  8943. "Resources/functions.php"
  8944. ],
  8945. "psr-4": {
  8946. "Symfony\\Component\\Translation\\": ""
  8947. },
  8948. "exclude-from-classmap": [
  8949. "/Tests/"
  8950. ]
  8951. },
  8952. "notification-url": "https://packagist.org/downloads/",
  8953. "license": [
  8954. "MIT"
  8955. ],
  8956. "authors": [
  8957. {
  8958. "name": "Fabien Potencier",
  8959. "email": "fabien@symfony.com"
  8960. },
  8961. {
  8962. "name": "Symfony Community",
  8963. "homepage": "https://symfony.com/contributors"
  8964. }
  8965. ],
  8966. "description": "Provides tools to internationalize your application",
  8967. "homepage": "https://symfony.com",
  8968. "support": {
  8969. "source": "https://github.com/symfony/translation/tree/v7.1.3"
  8970. },
  8971. "funding": [
  8972. {
  8973. "url": "https://symfony.com/sponsor",
  8974. "type": "custom"
  8975. },
  8976. {
  8977. "url": "https://github.com/fabpot",
  8978. "type": "github"
  8979. },
  8980. {
  8981. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8982. "type": "tidelift"
  8983. }
  8984. ],
  8985. "time": "2024-07-26T12:41:01+00:00"
  8986. },
  8987. {
  8988. "name": "symfony/translation-contracts",
  8989. "version": "v3.5.0",
  8990. "source": {
  8991. "type": "git",
  8992. "url": "https://github.com/symfony/translation-contracts.git",
  8993. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a"
  8994. },
  8995. "dist": {
  8996. "type": "zip",
  8997. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  8998. "reference": "b9d2189887bb6b2e0367a9fc7136c5239ab9b05a",
  8999. "shasum": ""
  9000. },
  9001. "require": {
  9002. "php": ">=8.1"
  9003. },
  9004. "type": "library",
  9005. "extra": {
  9006. "branch-alias": {
  9007. "dev-main": "3.5-dev"
  9008. },
  9009. "thanks": {
  9010. "name": "symfony/contracts",
  9011. "url": "https://github.com/symfony/contracts"
  9012. }
  9013. },
  9014. "autoload": {
  9015. "psr-4": {
  9016. "Symfony\\Contracts\\Translation\\": ""
  9017. },
  9018. "exclude-from-classmap": [
  9019. "/Test/"
  9020. ]
  9021. },
  9022. "notification-url": "https://packagist.org/downloads/",
  9023. "license": [
  9024. "MIT"
  9025. ],
  9026. "authors": [
  9027. {
  9028. "name": "Nicolas Grekas",
  9029. "email": "p@tchwork.com"
  9030. },
  9031. {
  9032. "name": "Symfony Community",
  9033. "homepage": "https://symfony.com/contributors"
  9034. }
  9035. ],
  9036. "description": "Generic abstractions related to translation",
  9037. "homepage": "https://symfony.com",
  9038. "keywords": [
  9039. "abstractions",
  9040. "contracts",
  9041. "decoupling",
  9042. "interfaces",
  9043. "interoperability",
  9044. "standards"
  9045. ],
  9046. "support": {
  9047. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.0"
  9048. },
  9049. "funding": [
  9050. {
  9051. "url": "https://symfony.com/sponsor",
  9052. "type": "custom"
  9053. },
  9054. {
  9055. "url": "https://github.com/fabpot",
  9056. "type": "github"
  9057. },
  9058. {
  9059. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9060. "type": "tidelift"
  9061. }
  9062. ],
  9063. "time": "2024-04-18T09:32:20+00:00"
  9064. },
  9065. {
  9066. "name": "symfony/uid",
  9067. "version": "v7.1.1",
  9068. "source": {
  9069. "type": "git",
  9070. "url": "https://github.com/symfony/uid.git",
  9071. "reference": "bb59febeecc81528ff672fad5dab7f06db8c8277"
  9072. },
  9073. "dist": {
  9074. "type": "zip",
  9075. "url": "https://api.github.com/repos/symfony/uid/zipball/bb59febeecc81528ff672fad5dab7f06db8c8277",
  9076. "reference": "bb59febeecc81528ff672fad5dab7f06db8c8277",
  9077. "shasum": ""
  9078. },
  9079. "require": {
  9080. "php": ">=8.2",
  9081. "symfony/polyfill-uuid": "^1.15"
  9082. },
  9083. "require-dev": {
  9084. "symfony/console": "^6.4|^7.0"
  9085. },
  9086. "type": "library",
  9087. "autoload": {
  9088. "psr-4": {
  9089. "Symfony\\Component\\Uid\\": ""
  9090. },
  9091. "exclude-from-classmap": [
  9092. "/Tests/"
  9093. ]
  9094. },
  9095. "notification-url": "https://packagist.org/downloads/",
  9096. "license": [
  9097. "MIT"
  9098. ],
  9099. "authors": [
  9100. {
  9101. "name": "Grégoire Pineau",
  9102. "email": "lyrixx@lyrixx.info"
  9103. },
  9104. {
  9105. "name": "Nicolas Grekas",
  9106. "email": "p@tchwork.com"
  9107. },
  9108. {
  9109. "name": "Symfony Community",
  9110. "homepage": "https://symfony.com/contributors"
  9111. }
  9112. ],
  9113. "description": "Provides an object-oriented API to generate and represent UIDs",
  9114. "homepage": "https://symfony.com",
  9115. "keywords": [
  9116. "UID",
  9117. "ulid",
  9118. "uuid"
  9119. ],
  9120. "support": {
  9121. "source": "https://github.com/symfony/uid/tree/v7.1.1"
  9122. },
  9123. "funding": [
  9124. {
  9125. "url": "https://symfony.com/sponsor",
  9126. "type": "custom"
  9127. },
  9128. {
  9129. "url": "https://github.com/fabpot",
  9130. "type": "github"
  9131. },
  9132. {
  9133. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9134. "type": "tidelift"
  9135. }
  9136. ],
  9137. "time": "2024-05-31T14:57:53+00:00"
  9138. },
  9139. {
  9140. "name": "symfony/var-dumper",
  9141. "version": "v7.1.3",
  9142. "source": {
  9143. "type": "git",
  9144. "url": "https://github.com/symfony/var-dumper.git",
  9145. "reference": "86af4617cca75a6e28598f49ae0690f3b9d4591f"
  9146. },
  9147. "dist": {
  9148. "type": "zip",
  9149. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/86af4617cca75a6e28598f49ae0690f3b9d4591f",
  9150. "reference": "86af4617cca75a6e28598f49ae0690f3b9d4591f",
  9151. "shasum": ""
  9152. },
  9153. "require": {
  9154. "php": ">=8.2",
  9155. "symfony/polyfill-mbstring": "~1.0"
  9156. },
  9157. "conflict": {
  9158. "symfony/console": "<6.4"
  9159. },
  9160. "require-dev": {
  9161. "ext-iconv": "*",
  9162. "symfony/console": "^6.4|^7.0",
  9163. "symfony/http-kernel": "^6.4|^7.0",
  9164. "symfony/process": "^6.4|^7.0",
  9165. "symfony/uid": "^6.4|^7.0",
  9166. "twig/twig": "^3.0.4"
  9167. },
  9168. "bin": [
  9169. "Resources/bin/var-dump-server"
  9170. ],
  9171. "type": "library",
  9172. "autoload": {
  9173. "files": [
  9174. "Resources/functions/dump.php"
  9175. ],
  9176. "psr-4": {
  9177. "Symfony\\Component\\VarDumper\\": ""
  9178. },
  9179. "exclude-from-classmap": [
  9180. "/Tests/"
  9181. ]
  9182. },
  9183. "notification-url": "https://packagist.org/downloads/",
  9184. "license": [
  9185. "MIT"
  9186. ],
  9187. "authors": [
  9188. {
  9189. "name": "Nicolas Grekas",
  9190. "email": "p@tchwork.com"
  9191. },
  9192. {
  9193. "name": "Symfony Community",
  9194. "homepage": "https://symfony.com/contributors"
  9195. }
  9196. ],
  9197. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9198. "homepage": "https://symfony.com",
  9199. "keywords": [
  9200. "debug",
  9201. "dump"
  9202. ],
  9203. "support": {
  9204. "source": "https://github.com/symfony/var-dumper/tree/v7.1.3"
  9205. },
  9206. "funding": [
  9207. {
  9208. "url": "https://symfony.com/sponsor",
  9209. "type": "custom"
  9210. },
  9211. {
  9212. "url": "https://github.com/fabpot",
  9213. "type": "github"
  9214. },
  9215. {
  9216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9217. "type": "tidelift"
  9218. }
  9219. ],
  9220. "time": "2024-07-26T12:41:01+00:00"
  9221. },
  9222. {
  9223. "name": "tijsverkoyen/css-to-inline-styles",
  9224. "version": "v2.2.7",
  9225. "source": {
  9226. "type": "git",
  9227. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9228. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  9229. },
  9230. "dist": {
  9231. "type": "zip",
  9232. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  9233. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  9234. "shasum": ""
  9235. },
  9236. "require": {
  9237. "ext-dom": "*",
  9238. "ext-libxml": "*",
  9239. "php": "^5.5 || ^7.0 || ^8.0",
  9240. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  9241. },
  9242. "require-dev": {
  9243. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  9244. },
  9245. "type": "library",
  9246. "extra": {
  9247. "branch-alias": {
  9248. "dev-master": "2.2.x-dev"
  9249. }
  9250. },
  9251. "autoload": {
  9252. "psr-4": {
  9253. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9254. }
  9255. },
  9256. "notification-url": "https://packagist.org/downloads/",
  9257. "license": [
  9258. "BSD-3-Clause"
  9259. ],
  9260. "authors": [
  9261. {
  9262. "name": "Tijs Verkoyen",
  9263. "email": "css_to_inline_styles@verkoyen.eu",
  9264. "role": "Developer"
  9265. }
  9266. ],
  9267. "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.",
  9268. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9269. "support": {
  9270. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9271. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  9272. },
  9273. "time": "2023-12-08T13:03:43+00:00"
  9274. },
  9275. {
  9276. "name": "vlucas/phpdotenv",
  9277. "version": "v5.6.1",
  9278. "source": {
  9279. "type": "git",
  9280. "url": "https://github.com/vlucas/phpdotenv.git",
  9281. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  9282. },
  9283. "dist": {
  9284. "type": "zip",
  9285. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9286. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9287. "shasum": ""
  9288. },
  9289. "require": {
  9290. "ext-pcre": "*",
  9291. "graham-campbell/result-type": "^1.1.3",
  9292. "php": "^7.2.5 || ^8.0",
  9293. "phpoption/phpoption": "^1.9.3",
  9294. "symfony/polyfill-ctype": "^1.24",
  9295. "symfony/polyfill-mbstring": "^1.24",
  9296. "symfony/polyfill-php80": "^1.24"
  9297. },
  9298. "require-dev": {
  9299. "bamarni/composer-bin-plugin": "^1.8.2",
  9300. "ext-filter": "*",
  9301. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9302. },
  9303. "suggest": {
  9304. "ext-filter": "Required to use the boolean validator."
  9305. },
  9306. "type": "library",
  9307. "extra": {
  9308. "bamarni-bin": {
  9309. "bin-links": true,
  9310. "forward-command": false
  9311. },
  9312. "branch-alias": {
  9313. "dev-master": "5.6-dev"
  9314. }
  9315. },
  9316. "autoload": {
  9317. "psr-4": {
  9318. "Dotenv\\": "src/"
  9319. }
  9320. },
  9321. "notification-url": "https://packagist.org/downloads/",
  9322. "license": [
  9323. "BSD-3-Clause"
  9324. ],
  9325. "authors": [
  9326. {
  9327. "name": "Graham Campbell",
  9328. "email": "hello@gjcampbell.co.uk",
  9329. "homepage": "https://github.com/GrahamCampbell"
  9330. },
  9331. {
  9332. "name": "Vance Lucas",
  9333. "email": "vance@vancelucas.com",
  9334. "homepage": "https://github.com/vlucas"
  9335. }
  9336. ],
  9337. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9338. "keywords": [
  9339. "dotenv",
  9340. "env",
  9341. "environment"
  9342. ],
  9343. "support": {
  9344. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9345. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  9346. },
  9347. "funding": [
  9348. {
  9349. "url": "https://github.com/GrahamCampbell",
  9350. "type": "github"
  9351. },
  9352. {
  9353. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9354. "type": "tidelift"
  9355. }
  9356. ],
  9357. "time": "2024-07-20T21:52:34+00:00"
  9358. },
  9359. {
  9360. "name": "voku/portable-ascii",
  9361. "version": "2.0.1",
  9362. "source": {
  9363. "type": "git",
  9364. "url": "https://github.com/voku/portable-ascii.git",
  9365. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  9366. },
  9367. "dist": {
  9368. "type": "zip",
  9369. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  9370. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  9371. "shasum": ""
  9372. },
  9373. "require": {
  9374. "php": ">=7.0.0"
  9375. },
  9376. "require-dev": {
  9377. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9378. },
  9379. "suggest": {
  9380. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9381. },
  9382. "type": "library",
  9383. "autoload": {
  9384. "psr-4": {
  9385. "voku\\": "src/voku/"
  9386. }
  9387. },
  9388. "notification-url": "https://packagist.org/downloads/",
  9389. "license": [
  9390. "MIT"
  9391. ],
  9392. "authors": [
  9393. {
  9394. "name": "Lars Moelleken",
  9395. "homepage": "http://www.moelleken.org/"
  9396. }
  9397. ],
  9398. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9399. "homepage": "https://github.com/voku/portable-ascii",
  9400. "keywords": [
  9401. "ascii",
  9402. "clean",
  9403. "php"
  9404. ],
  9405. "support": {
  9406. "issues": "https://github.com/voku/portable-ascii/issues",
  9407. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  9408. },
  9409. "funding": [
  9410. {
  9411. "url": "https://www.paypal.me/moelleken",
  9412. "type": "custom"
  9413. },
  9414. {
  9415. "url": "https://github.com/voku",
  9416. "type": "github"
  9417. },
  9418. {
  9419. "url": "https://opencollective.com/portable-ascii",
  9420. "type": "open_collective"
  9421. },
  9422. {
  9423. "url": "https://www.patreon.com/voku",
  9424. "type": "patreon"
  9425. },
  9426. {
  9427. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9428. "type": "tidelift"
  9429. }
  9430. ],
  9431. "time": "2022-03-08T17:03:00+00:00"
  9432. },
  9433. {
  9434. "name": "webmozart/assert",
  9435. "version": "1.11.0",
  9436. "source": {
  9437. "type": "git",
  9438. "url": "https://github.com/webmozarts/assert.git",
  9439. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9440. },
  9441. "dist": {
  9442. "type": "zip",
  9443. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9444. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9445. "shasum": ""
  9446. },
  9447. "require": {
  9448. "ext-ctype": "*",
  9449. "php": "^7.2 || ^8.0"
  9450. },
  9451. "conflict": {
  9452. "phpstan/phpstan": "<0.12.20",
  9453. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9454. },
  9455. "require-dev": {
  9456. "phpunit/phpunit": "^8.5.13"
  9457. },
  9458. "type": "library",
  9459. "extra": {
  9460. "branch-alias": {
  9461. "dev-master": "1.10-dev"
  9462. }
  9463. },
  9464. "autoload": {
  9465. "psr-4": {
  9466. "Webmozart\\Assert\\": "src/"
  9467. }
  9468. },
  9469. "notification-url": "https://packagist.org/downloads/",
  9470. "license": [
  9471. "MIT"
  9472. ],
  9473. "authors": [
  9474. {
  9475. "name": "Bernhard Schussek",
  9476. "email": "bschussek@gmail.com"
  9477. }
  9478. ],
  9479. "description": "Assertions to validate method input/output with nice error messages.",
  9480. "keywords": [
  9481. "assert",
  9482. "check",
  9483. "validate"
  9484. ],
  9485. "support": {
  9486. "issues": "https://github.com/webmozarts/assert/issues",
  9487. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9488. },
  9489. "time": "2022-06-03T18:03:27+00:00"
  9490. }
  9491. ],
  9492. "packages-dev": [
  9493. {
  9494. "name": "fakerphp/faker",
  9495. "version": "v1.23.1",
  9496. "source": {
  9497. "type": "git",
  9498. "url": "https://github.com/FakerPHP/Faker.git",
  9499. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b"
  9500. },
  9501. "dist": {
  9502. "type": "zip",
  9503. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/bfb4fe148adbf78eff521199619b93a52ae3554b",
  9504. "reference": "bfb4fe148adbf78eff521199619b93a52ae3554b",
  9505. "shasum": ""
  9506. },
  9507. "require": {
  9508. "php": "^7.4 || ^8.0",
  9509. "psr/container": "^1.0 || ^2.0",
  9510. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9511. },
  9512. "conflict": {
  9513. "fzaninotto/faker": "*"
  9514. },
  9515. "require-dev": {
  9516. "bamarni/composer-bin-plugin": "^1.4.1",
  9517. "doctrine/persistence": "^1.3 || ^2.0",
  9518. "ext-intl": "*",
  9519. "phpunit/phpunit": "^9.5.26",
  9520. "symfony/phpunit-bridge": "^5.4.16"
  9521. },
  9522. "suggest": {
  9523. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9524. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9525. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9526. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9527. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9528. },
  9529. "type": "library",
  9530. "autoload": {
  9531. "psr-4": {
  9532. "Faker\\": "src/Faker/"
  9533. }
  9534. },
  9535. "notification-url": "https://packagist.org/downloads/",
  9536. "license": [
  9537. "MIT"
  9538. ],
  9539. "authors": [
  9540. {
  9541. "name": "François Zaninotto"
  9542. }
  9543. ],
  9544. "description": "Faker is a PHP library that generates fake data for you.",
  9545. "keywords": [
  9546. "data",
  9547. "faker",
  9548. "fixtures"
  9549. ],
  9550. "support": {
  9551. "issues": "https://github.com/FakerPHP/Faker/issues",
  9552. "source": "https://github.com/FakerPHP/Faker/tree/v1.23.1"
  9553. },
  9554. "time": "2024-01-02T13:46:09+00:00"
  9555. },
  9556. {
  9557. "name": "filp/whoops",
  9558. "version": "2.15.4",
  9559. "source": {
  9560. "type": "git",
  9561. "url": "https://github.com/filp/whoops.git",
  9562. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546"
  9563. },
  9564. "dist": {
  9565. "type": "zip",
  9566. "url": "https://api.github.com/repos/filp/whoops/zipball/a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9567. "reference": "a139776fa3f5985a50b509f2a02ff0f709d2a546",
  9568. "shasum": ""
  9569. },
  9570. "require": {
  9571. "php": "^5.5.9 || ^7.0 || ^8.0",
  9572. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9573. },
  9574. "require-dev": {
  9575. "mockery/mockery": "^0.9 || ^1.0",
  9576. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.3",
  9577. "symfony/var-dumper": "^2.6 || ^3.0 || ^4.0 || ^5.0"
  9578. },
  9579. "suggest": {
  9580. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9581. "whoops/soap": "Formats errors as SOAP responses"
  9582. },
  9583. "type": "library",
  9584. "extra": {
  9585. "branch-alias": {
  9586. "dev-master": "2.7-dev"
  9587. }
  9588. },
  9589. "autoload": {
  9590. "psr-4": {
  9591. "Whoops\\": "src/Whoops/"
  9592. }
  9593. },
  9594. "notification-url": "https://packagist.org/downloads/",
  9595. "license": [
  9596. "MIT"
  9597. ],
  9598. "authors": [
  9599. {
  9600. "name": "Filipe Dobreira",
  9601. "homepage": "https://github.com/filp",
  9602. "role": "Developer"
  9603. }
  9604. ],
  9605. "description": "php error handling for cool kids",
  9606. "homepage": "https://filp.github.io/whoops/",
  9607. "keywords": [
  9608. "error",
  9609. "exception",
  9610. "handling",
  9611. "library",
  9612. "throwable",
  9613. "whoops"
  9614. ],
  9615. "support": {
  9616. "issues": "https://github.com/filp/whoops/issues",
  9617. "source": "https://github.com/filp/whoops/tree/2.15.4"
  9618. },
  9619. "funding": [
  9620. {
  9621. "url": "https://github.com/denis-sokolov",
  9622. "type": "github"
  9623. }
  9624. ],
  9625. "time": "2023-11-03T12:00:00+00:00"
  9626. },
  9627. {
  9628. "name": "hamcrest/hamcrest-php",
  9629. "version": "v2.0.1",
  9630. "source": {
  9631. "type": "git",
  9632. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9633. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9634. },
  9635. "dist": {
  9636. "type": "zip",
  9637. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9638. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9639. "shasum": ""
  9640. },
  9641. "require": {
  9642. "php": "^5.3|^7.0|^8.0"
  9643. },
  9644. "replace": {
  9645. "cordoval/hamcrest-php": "*",
  9646. "davedevelopment/hamcrest-php": "*",
  9647. "kodova/hamcrest-php": "*"
  9648. },
  9649. "require-dev": {
  9650. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9651. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9652. },
  9653. "type": "library",
  9654. "extra": {
  9655. "branch-alias": {
  9656. "dev-master": "2.1-dev"
  9657. }
  9658. },
  9659. "autoload": {
  9660. "classmap": [
  9661. "hamcrest"
  9662. ]
  9663. },
  9664. "notification-url": "https://packagist.org/downloads/",
  9665. "license": [
  9666. "BSD-3-Clause"
  9667. ],
  9668. "description": "This is the PHP port of Hamcrest Matchers",
  9669. "keywords": [
  9670. "test"
  9671. ],
  9672. "support": {
  9673. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9674. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9675. },
  9676. "time": "2020-07-09T08:09:16+00:00"
  9677. },
  9678. {
  9679. "name": "laravel/pint",
  9680. "version": "v1.17.2",
  9681. "source": {
  9682. "type": "git",
  9683. "url": "https://github.com/laravel/pint.git",
  9684. "reference": "e8a88130a25e3f9d4d5785e6a1afca98268ab110"
  9685. },
  9686. "dist": {
  9687. "type": "zip",
  9688. "url": "https://api.github.com/repos/laravel/pint/zipball/e8a88130a25e3f9d4d5785e6a1afca98268ab110",
  9689. "reference": "e8a88130a25e3f9d4d5785e6a1afca98268ab110",
  9690. "shasum": ""
  9691. },
  9692. "require": {
  9693. "ext-json": "*",
  9694. "ext-mbstring": "*",
  9695. "ext-tokenizer": "*",
  9696. "ext-xml": "*",
  9697. "php": "^8.1.0"
  9698. },
  9699. "require-dev": {
  9700. "friendsofphp/php-cs-fixer": "^3.61.1",
  9701. "illuminate/view": "^10.48.18",
  9702. "larastan/larastan": "^2.9.8",
  9703. "laravel-zero/framework": "^10.4.0",
  9704. "mockery/mockery": "^1.6.12",
  9705. "nunomaduro/termwind": "^1.15.1",
  9706. "pestphp/pest": "^2.35.0"
  9707. },
  9708. "bin": [
  9709. "builds/pint"
  9710. ],
  9711. "type": "project",
  9712. "autoload": {
  9713. "psr-4": {
  9714. "App\\": "app/",
  9715. "Database\\Seeders\\": "database/seeders/",
  9716. "Database\\Factories\\": "database/factories/"
  9717. }
  9718. },
  9719. "notification-url": "https://packagist.org/downloads/",
  9720. "license": [
  9721. "MIT"
  9722. ],
  9723. "authors": [
  9724. {
  9725. "name": "Nuno Maduro",
  9726. "email": "enunomaduro@gmail.com"
  9727. }
  9728. ],
  9729. "description": "An opinionated code formatter for PHP.",
  9730. "homepage": "https://laravel.com",
  9731. "keywords": [
  9732. "format",
  9733. "formatter",
  9734. "lint",
  9735. "linter",
  9736. "php"
  9737. ],
  9738. "support": {
  9739. "issues": "https://github.com/laravel/pint/issues",
  9740. "source": "https://github.com/laravel/pint"
  9741. },
  9742. "time": "2024-08-06T15:11:54+00:00"
  9743. },
  9744. {
  9745. "name": "laravel/sail",
  9746. "version": "v1.31.1",
  9747. "source": {
  9748. "type": "git",
  9749. "url": "https://github.com/laravel/sail.git",
  9750. "reference": "3d06dd18cee8059baa7b388af00ba47f6d96bd85"
  9751. },
  9752. "dist": {
  9753. "type": "zip",
  9754. "url": "https://api.github.com/repos/laravel/sail/zipball/3d06dd18cee8059baa7b388af00ba47f6d96bd85",
  9755. "reference": "3d06dd18cee8059baa7b388af00ba47f6d96bd85",
  9756. "shasum": ""
  9757. },
  9758. "require": {
  9759. "illuminate/console": "^9.52.16|^10.0|^11.0",
  9760. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  9761. "illuminate/support": "^9.52.16|^10.0|^11.0",
  9762. "php": "^8.0",
  9763. "symfony/console": "^6.0|^7.0",
  9764. "symfony/yaml": "^6.0|^7.0"
  9765. },
  9766. "require-dev": {
  9767. "orchestra/testbench": "^7.0|^8.0|^9.0",
  9768. "phpstan/phpstan": "^1.10"
  9769. },
  9770. "bin": [
  9771. "bin/sail"
  9772. ],
  9773. "type": "library",
  9774. "extra": {
  9775. "laravel": {
  9776. "providers": [
  9777. "Laravel\\Sail\\SailServiceProvider"
  9778. ]
  9779. }
  9780. },
  9781. "autoload": {
  9782. "psr-4": {
  9783. "Laravel\\Sail\\": "src/"
  9784. }
  9785. },
  9786. "notification-url": "https://packagist.org/downloads/",
  9787. "license": [
  9788. "MIT"
  9789. ],
  9790. "authors": [
  9791. {
  9792. "name": "Taylor Otwell",
  9793. "email": "taylor@laravel.com"
  9794. }
  9795. ],
  9796. "description": "Docker files for running a basic Laravel application.",
  9797. "keywords": [
  9798. "docker",
  9799. "laravel"
  9800. ],
  9801. "support": {
  9802. "issues": "https://github.com/laravel/sail/issues",
  9803. "source": "https://github.com/laravel/sail"
  9804. },
  9805. "time": "2024-08-02T07:45:47+00:00"
  9806. },
  9807. {
  9808. "name": "mockery/mockery",
  9809. "version": "1.6.12",
  9810. "source": {
  9811. "type": "git",
  9812. "url": "https://github.com/mockery/mockery.git",
  9813. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9814. },
  9815. "dist": {
  9816. "type": "zip",
  9817. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9818. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9819. "shasum": ""
  9820. },
  9821. "require": {
  9822. "hamcrest/hamcrest-php": "^2.0.1",
  9823. "lib-pcre": ">=7.0",
  9824. "php": ">=7.3"
  9825. },
  9826. "conflict": {
  9827. "phpunit/phpunit": "<8.0"
  9828. },
  9829. "require-dev": {
  9830. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9831. "symplify/easy-coding-standard": "^12.1.14"
  9832. },
  9833. "type": "library",
  9834. "autoload": {
  9835. "files": [
  9836. "library/helpers.php",
  9837. "library/Mockery.php"
  9838. ],
  9839. "psr-4": {
  9840. "Mockery\\": "library/Mockery"
  9841. }
  9842. },
  9843. "notification-url": "https://packagist.org/downloads/",
  9844. "license": [
  9845. "BSD-3-Clause"
  9846. ],
  9847. "authors": [
  9848. {
  9849. "name": "Pádraic Brady",
  9850. "email": "padraic.brady@gmail.com",
  9851. "homepage": "https://github.com/padraic",
  9852. "role": "Author"
  9853. },
  9854. {
  9855. "name": "Dave Marshall",
  9856. "email": "dave.marshall@atstsolutions.co.uk",
  9857. "homepage": "https://davedevelopment.co.uk",
  9858. "role": "Developer"
  9859. },
  9860. {
  9861. "name": "Nathanael Esayeas",
  9862. "email": "nathanael.esayeas@protonmail.com",
  9863. "homepage": "https://github.com/ghostwriter",
  9864. "role": "Lead Developer"
  9865. }
  9866. ],
  9867. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9868. "homepage": "https://github.com/mockery/mockery",
  9869. "keywords": [
  9870. "BDD",
  9871. "TDD",
  9872. "library",
  9873. "mock",
  9874. "mock objects",
  9875. "mockery",
  9876. "stub",
  9877. "test",
  9878. "test double",
  9879. "testing"
  9880. ],
  9881. "support": {
  9882. "docs": "https://docs.mockery.io/",
  9883. "issues": "https://github.com/mockery/mockery/issues",
  9884. "rss": "https://github.com/mockery/mockery/releases.atom",
  9885. "security": "https://github.com/mockery/mockery/security/advisories",
  9886. "source": "https://github.com/mockery/mockery"
  9887. },
  9888. "time": "2024-05-16T03:13:13+00:00"
  9889. },
  9890. {
  9891. "name": "myclabs/deep-copy",
  9892. "version": "1.12.0",
  9893. "source": {
  9894. "type": "git",
  9895. "url": "https://github.com/myclabs/DeepCopy.git",
  9896. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c"
  9897. },
  9898. "dist": {
  9899. "type": "zip",
  9900. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  9901. "reference": "3a6b9a42cd8f8771bd4295d13e1423fa7f3d942c",
  9902. "shasum": ""
  9903. },
  9904. "require": {
  9905. "php": "^7.1 || ^8.0"
  9906. },
  9907. "conflict": {
  9908. "doctrine/collections": "<1.6.8",
  9909. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9910. },
  9911. "require-dev": {
  9912. "doctrine/collections": "^1.6.8",
  9913. "doctrine/common": "^2.13.3 || ^3.2.2",
  9914. "phpspec/prophecy": "^1.10",
  9915. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9916. },
  9917. "type": "library",
  9918. "autoload": {
  9919. "files": [
  9920. "src/DeepCopy/deep_copy.php"
  9921. ],
  9922. "psr-4": {
  9923. "DeepCopy\\": "src/DeepCopy/"
  9924. }
  9925. },
  9926. "notification-url": "https://packagist.org/downloads/",
  9927. "license": [
  9928. "MIT"
  9929. ],
  9930. "description": "Create deep copies (clones) of your objects",
  9931. "keywords": [
  9932. "clone",
  9933. "copy",
  9934. "duplicate",
  9935. "object",
  9936. "object graph"
  9937. ],
  9938. "support": {
  9939. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9940. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.0"
  9941. },
  9942. "funding": [
  9943. {
  9944. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9945. "type": "tidelift"
  9946. }
  9947. ],
  9948. "time": "2024-06-12T14:39:25+00:00"
  9949. },
  9950. {
  9951. "name": "nunomaduro/collision",
  9952. "version": "v8.4.0",
  9953. "source": {
  9954. "type": "git",
  9955. "url": "https://github.com/nunomaduro/collision.git",
  9956. "reference": "e7d1aa8ed753f63fa816932bbc89678238843b4a"
  9957. },
  9958. "dist": {
  9959. "type": "zip",
  9960. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/e7d1aa8ed753f63fa816932bbc89678238843b4a",
  9961. "reference": "e7d1aa8ed753f63fa816932bbc89678238843b4a",
  9962. "shasum": ""
  9963. },
  9964. "require": {
  9965. "filp/whoops": "^2.15.4",
  9966. "nunomaduro/termwind": "^2.0.1",
  9967. "php": "^8.2.0",
  9968. "symfony/console": "^7.1.3"
  9969. },
  9970. "conflict": {
  9971. "laravel/framework": "<11.0.0 || >=12.0.0",
  9972. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  9973. },
  9974. "require-dev": {
  9975. "larastan/larastan": "^2.9.8",
  9976. "laravel/framework": "^11.19.0",
  9977. "laravel/pint": "^1.17.1",
  9978. "laravel/sail": "^1.31.0",
  9979. "laravel/sanctum": "^4.0.2",
  9980. "laravel/tinker": "^2.9.0",
  9981. "orchestra/testbench-core": "^9.2.3",
  9982. "pestphp/pest": "^2.35.0 || ^3.0.0",
  9983. "sebastian/environment": "^6.1.0 || ^7.0.0"
  9984. },
  9985. "type": "library",
  9986. "extra": {
  9987. "laravel": {
  9988. "providers": [
  9989. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9990. ]
  9991. },
  9992. "branch-alias": {
  9993. "dev-8.x": "8.x-dev"
  9994. }
  9995. },
  9996. "autoload": {
  9997. "files": [
  9998. "./src/Adapters/Phpunit/Autoload.php"
  9999. ],
  10000. "psr-4": {
  10001. "NunoMaduro\\Collision\\": "src/"
  10002. }
  10003. },
  10004. "notification-url": "https://packagist.org/downloads/",
  10005. "license": [
  10006. "MIT"
  10007. ],
  10008. "authors": [
  10009. {
  10010. "name": "Nuno Maduro",
  10011. "email": "enunomaduro@gmail.com"
  10012. }
  10013. ],
  10014. "description": "Cli error handling for console/command-line PHP applications.",
  10015. "keywords": [
  10016. "artisan",
  10017. "cli",
  10018. "command-line",
  10019. "console",
  10020. "error",
  10021. "handling",
  10022. "laravel",
  10023. "laravel-zero",
  10024. "php",
  10025. "symfony"
  10026. ],
  10027. "support": {
  10028. "issues": "https://github.com/nunomaduro/collision/issues",
  10029. "source": "https://github.com/nunomaduro/collision"
  10030. },
  10031. "funding": [
  10032. {
  10033. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10034. "type": "custom"
  10035. },
  10036. {
  10037. "url": "https://github.com/nunomaduro",
  10038. "type": "github"
  10039. },
  10040. {
  10041. "url": "https://www.patreon.com/nunomaduro",
  10042. "type": "patreon"
  10043. }
  10044. ],
  10045. "time": "2024-08-03T15:32:23+00:00"
  10046. },
  10047. {
  10048. "name": "phar-io/manifest",
  10049. "version": "2.0.4",
  10050. "source": {
  10051. "type": "git",
  10052. "url": "https://github.com/phar-io/manifest.git",
  10053. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10054. },
  10055. "dist": {
  10056. "type": "zip",
  10057. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10058. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10059. "shasum": ""
  10060. },
  10061. "require": {
  10062. "ext-dom": "*",
  10063. "ext-libxml": "*",
  10064. "ext-phar": "*",
  10065. "ext-xmlwriter": "*",
  10066. "phar-io/version": "^3.0.1",
  10067. "php": "^7.2 || ^8.0"
  10068. },
  10069. "type": "library",
  10070. "extra": {
  10071. "branch-alias": {
  10072. "dev-master": "2.0.x-dev"
  10073. }
  10074. },
  10075. "autoload": {
  10076. "classmap": [
  10077. "src/"
  10078. ]
  10079. },
  10080. "notification-url": "https://packagist.org/downloads/",
  10081. "license": [
  10082. "BSD-3-Clause"
  10083. ],
  10084. "authors": [
  10085. {
  10086. "name": "Arne Blankerts",
  10087. "email": "arne@blankerts.de",
  10088. "role": "Developer"
  10089. },
  10090. {
  10091. "name": "Sebastian Heuer",
  10092. "email": "sebastian@phpeople.de",
  10093. "role": "Developer"
  10094. },
  10095. {
  10096. "name": "Sebastian Bergmann",
  10097. "email": "sebastian@phpunit.de",
  10098. "role": "Developer"
  10099. }
  10100. ],
  10101. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10102. "support": {
  10103. "issues": "https://github.com/phar-io/manifest/issues",
  10104. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10105. },
  10106. "funding": [
  10107. {
  10108. "url": "https://github.com/theseer",
  10109. "type": "github"
  10110. }
  10111. ],
  10112. "time": "2024-03-03T12:33:53+00:00"
  10113. },
  10114. {
  10115. "name": "phar-io/version",
  10116. "version": "3.2.1",
  10117. "source": {
  10118. "type": "git",
  10119. "url": "https://github.com/phar-io/version.git",
  10120. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10121. },
  10122. "dist": {
  10123. "type": "zip",
  10124. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10125. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10126. "shasum": ""
  10127. },
  10128. "require": {
  10129. "php": "^7.2 || ^8.0"
  10130. },
  10131. "type": "library",
  10132. "autoload": {
  10133. "classmap": [
  10134. "src/"
  10135. ]
  10136. },
  10137. "notification-url": "https://packagist.org/downloads/",
  10138. "license": [
  10139. "BSD-3-Clause"
  10140. ],
  10141. "authors": [
  10142. {
  10143. "name": "Arne Blankerts",
  10144. "email": "arne@blankerts.de",
  10145. "role": "Developer"
  10146. },
  10147. {
  10148. "name": "Sebastian Heuer",
  10149. "email": "sebastian@phpeople.de",
  10150. "role": "Developer"
  10151. },
  10152. {
  10153. "name": "Sebastian Bergmann",
  10154. "email": "sebastian@phpunit.de",
  10155. "role": "Developer"
  10156. }
  10157. ],
  10158. "description": "Library for handling version information and constraints",
  10159. "support": {
  10160. "issues": "https://github.com/phar-io/version/issues",
  10161. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10162. },
  10163. "time": "2022-02-21T01:04:05+00:00"
  10164. },
  10165. {
  10166. "name": "php-di/invoker",
  10167. "version": "2.3.4",
  10168. "source": {
  10169. "type": "git",
  10170. "url": "https://github.com/PHP-DI/Invoker.git",
  10171. "reference": "33234b32dafa8eb69202f950a1fc92055ed76a86"
  10172. },
  10173. "dist": {
  10174. "type": "zip",
  10175. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/33234b32dafa8eb69202f950a1fc92055ed76a86",
  10176. "reference": "33234b32dafa8eb69202f950a1fc92055ed76a86",
  10177. "shasum": ""
  10178. },
  10179. "require": {
  10180. "php": ">=7.3",
  10181. "psr/container": "^1.0|^2.0"
  10182. },
  10183. "require-dev": {
  10184. "athletic/athletic": "~0.1.8",
  10185. "mnapoli/hard-mode": "~0.3.0",
  10186. "phpunit/phpunit": "^9.0"
  10187. },
  10188. "type": "library",
  10189. "autoload": {
  10190. "psr-4": {
  10191. "Invoker\\": "src/"
  10192. }
  10193. },
  10194. "notification-url": "https://packagist.org/downloads/",
  10195. "license": [
  10196. "MIT"
  10197. ],
  10198. "description": "Generic and extensible callable invoker",
  10199. "homepage": "https://github.com/PHP-DI/Invoker",
  10200. "keywords": [
  10201. "callable",
  10202. "dependency",
  10203. "dependency-injection",
  10204. "injection",
  10205. "invoke",
  10206. "invoker"
  10207. ],
  10208. "support": {
  10209. "issues": "https://github.com/PHP-DI/Invoker/issues",
  10210. "source": "https://github.com/PHP-DI/Invoker/tree/2.3.4"
  10211. },
  10212. "funding": [
  10213. {
  10214. "url": "https://github.com/mnapoli",
  10215. "type": "github"
  10216. }
  10217. ],
  10218. "time": "2023-09-08T09:24:21+00:00"
  10219. },
  10220. {
  10221. "name": "php-di/php-di",
  10222. "version": "7.0.7",
  10223. "source": {
  10224. "type": "git",
  10225. "url": "https://github.com/PHP-DI/PHP-DI.git",
  10226. "reference": "e87435e3c0e8f22977adc5af0d5cdcc467e15cf1"
  10227. },
  10228. "dist": {
  10229. "type": "zip",
  10230. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/e87435e3c0e8f22977adc5af0d5cdcc467e15cf1",
  10231. "reference": "e87435e3c0e8f22977adc5af0d5cdcc467e15cf1",
  10232. "shasum": ""
  10233. },
  10234. "require": {
  10235. "laravel/serializable-closure": "^1.0",
  10236. "php": ">=8.0",
  10237. "php-di/invoker": "^2.0",
  10238. "psr/container": "^1.1 || ^2.0"
  10239. },
  10240. "provide": {
  10241. "psr/container-implementation": "^1.0"
  10242. },
  10243. "require-dev": {
  10244. "friendsofphp/php-cs-fixer": "^3",
  10245. "friendsofphp/proxy-manager-lts": "^1",
  10246. "mnapoli/phpunit-easymock": "^1.3",
  10247. "phpunit/phpunit": "^9.5",
  10248. "vimeo/psalm": "^4.6"
  10249. },
  10250. "suggest": {
  10251. "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)"
  10252. },
  10253. "type": "library",
  10254. "autoload": {
  10255. "files": [
  10256. "src/functions.php"
  10257. ],
  10258. "psr-4": {
  10259. "DI\\": "src/"
  10260. }
  10261. },
  10262. "notification-url": "https://packagist.org/downloads/",
  10263. "license": [
  10264. "MIT"
  10265. ],
  10266. "description": "The dependency injection container for humans",
  10267. "homepage": "https://php-di.org/",
  10268. "keywords": [
  10269. "PSR-11",
  10270. "container",
  10271. "container-interop",
  10272. "dependency injection",
  10273. "di",
  10274. "ioc",
  10275. "psr11"
  10276. ],
  10277. "support": {
  10278. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  10279. "source": "https://github.com/PHP-DI/PHP-DI/tree/7.0.7"
  10280. },
  10281. "funding": [
  10282. {
  10283. "url": "https://github.com/mnapoli",
  10284. "type": "github"
  10285. },
  10286. {
  10287. "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
  10288. "type": "tidelift"
  10289. }
  10290. ],
  10291. "time": "2024-07-21T15:55:45+00:00"
  10292. },
  10293. {
  10294. "name": "phpstan/phpstan",
  10295. "version": "1.11.10",
  10296. "source": {
  10297. "type": "git",
  10298. "url": "https://github.com/phpstan/phpstan.git",
  10299. "reference": "640410b32995914bde3eed26fa89552f9c2c082f"
  10300. },
  10301. "dist": {
  10302. "type": "zip",
  10303. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/640410b32995914bde3eed26fa89552f9c2c082f",
  10304. "reference": "640410b32995914bde3eed26fa89552f9c2c082f",
  10305. "shasum": ""
  10306. },
  10307. "require": {
  10308. "php": "^7.2|^8.0"
  10309. },
  10310. "conflict": {
  10311. "phpstan/phpstan-shim": "*"
  10312. },
  10313. "bin": [
  10314. "phpstan",
  10315. "phpstan.phar"
  10316. ],
  10317. "type": "library",
  10318. "autoload": {
  10319. "files": [
  10320. "bootstrap.php"
  10321. ]
  10322. },
  10323. "notification-url": "https://packagist.org/downloads/",
  10324. "license": [
  10325. "MIT"
  10326. ],
  10327. "description": "PHPStan - PHP Static Analysis Tool",
  10328. "keywords": [
  10329. "dev",
  10330. "static analysis"
  10331. ],
  10332. "support": {
  10333. "docs": "https://phpstan.org/user-guide/getting-started",
  10334. "forum": "https://github.com/phpstan/phpstan/discussions",
  10335. "issues": "https://github.com/phpstan/phpstan/issues",
  10336. "security": "https://github.com/phpstan/phpstan/security/policy",
  10337. "source": "https://github.com/phpstan/phpstan-src"
  10338. },
  10339. "funding": [
  10340. {
  10341. "url": "https://github.com/ondrejmirtes",
  10342. "type": "github"
  10343. },
  10344. {
  10345. "url": "https://github.com/phpstan",
  10346. "type": "github"
  10347. }
  10348. ],
  10349. "time": "2024-08-08T09:02:50+00:00"
  10350. },
  10351. {
  10352. "name": "phpunit/php-code-coverage",
  10353. "version": "10.1.15",
  10354. "source": {
  10355. "type": "git",
  10356. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10357. "reference": "5da8b1728acd1e6ffdf2ff32ffbdfd04307f26ae"
  10358. },
  10359. "dist": {
  10360. "type": "zip",
  10361. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/5da8b1728acd1e6ffdf2ff32ffbdfd04307f26ae",
  10362. "reference": "5da8b1728acd1e6ffdf2ff32ffbdfd04307f26ae",
  10363. "shasum": ""
  10364. },
  10365. "require": {
  10366. "ext-dom": "*",
  10367. "ext-libxml": "*",
  10368. "ext-xmlwriter": "*",
  10369. "nikic/php-parser": "^4.18 || ^5.0",
  10370. "php": ">=8.1",
  10371. "phpunit/php-file-iterator": "^4.0",
  10372. "phpunit/php-text-template": "^3.0",
  10373. "sebastian/code-unit-reverse-lookup": "^3.0",
  10374. "sebastian/complexity": "^3.0",
  10375. "sebastian/environment": "^6.0",
  10376. "sebastian/lines-of-code": "^2.0",
  10377. "sebastian/version": "^4.0",
  10378. "theseer/tokenizer": "^1.2.0"
  10379. },
  10380. "require-dev": {
  10381. "phpunit/phpunit": "^10.1"
  10382. },
  10383. "suggest": {
  10384. "ext-pcov": "PHP extension that provides line coverage",
  10385. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10386. },
  10387. "type": "library",
  10388. "extra": {
  10389. "branch-alias": {
  10390. "dev-main": "10.1-dev"
  10391. }
  10392. },
  10393. "autoload": {
  10394. "classmap": [
  10395. "src/"
  10396. ]
  10397. },
  10398. "notification-url": "https://packagist.org/downloads/",
  10399. "license": [
  10400. "BSD-3-Clause"
  10401. ],
  10402. "authors": [
  10403. {
  10404. "name": "Sebastian Bergmann",
  10405. "email": "sebastian@phpunit.de",
  10406. "role": "lead"
  10407. }
  10408. ],
  10409. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10410. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10411. "keywords": [
  10412. "coverage",
  10413. "testing",
  10414. "xunit"
  10415. ],
  10416. "support": {
  10417. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10418. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  10419. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.15"
  10420. },
  10421. "funding": [
  10422. {
  10423. "url": "https://github.com/sebastianbergmann",
  10424. "type": "github"
  10425. }
  10426. ],
  10427. "time": "2024-06-29T08:25:15+00:00"
  10428. },
  10429. {
  10430. "name": "phpunit/php-file-iterator",
  10431. "version": "4.1.0",
  10432. "source": {
  10433. "type": "git",
  10434. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10435. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  10436. },
  10437. "dist": {
  10438. "type": "zip",
  10439. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  10440. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  10441. "shasum": ""
  10442. },
  10443. "require": {
  10444. "php": ">=8.1"
  10445. },
  10446. "require-dev": {
  10447. "phpunit/phpunit": "^10.0"
  10448. },
  10449. "type": "library",
  10450. "extra": {
  10451. "branch-alias": {
  10452. "dev-main": "4.0-dev"
  10453. }
  10454. },
  10455. "autoload": {
  10456. "classmap": [
  10457. "src/"
  10458. ]
  10459. },
  10460. "notification-url": "https://packagist.org/downloads/",
  10461. "license": [
  10462. "BSD-3-Clause"
  10463. ],
  10464. "authors": [
  10465. {
  10466. "name": "Sebastian Bergmann",
  10467. "email": "sebastian@phpunit.de",
  10468. "role": "lead"
  10469. }
  10470. ],
  10471. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10472. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10473. "keywords": [
  10474. "filesystem",
  10475. "iterator"
  10476. ],
  10477. "support": {
  10478. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10479. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  10480. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  10481. },
  10482. "funding": [
  10483. {
  10484. "url": "https://github.com/sebastianbergmann",
  10485. "type": "github"
  10486. }
  10487. ],
  10488. "time": "2023-08-31T06:24:48+00:00"
  10489. },
  10490. {
  10491. "name": "phpunit/php-invoker",
  10492. "version": "4.0.0",
  10493. "source": {
  10494. "type": "git",
  10495. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10496. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  10497. },
  10498. "dist": {
  10499. "type": "zip",
  10500. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  10501. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  10502. "shasum": ""
  10503. },
  10504. "require": {
  10505. "php": ">=8.1"
  10506. },
  10507. "require-dev": {
  10508. "ext-pcntl": "*",
  10509. "phpunit/phpunit": "^10.0"
  10510. },
  10511. "suggest": {
  10512. "ext-pcntl": "*"
  10513. },
  10514. "type": "library",
  10515. "extra": {
  10516. "branch-alias": {
  10517. "dev-main": "4.0-dev"
  10518. }
  10519. },
  10520. "autoload": {
  10521. "classmap": [
  10522. "src/"
  10523. ]
  10524. },
  10525. "notification-url": "https://packagist.org/downloads/",
  10526. "license": [
  10527. "BSD-3-Clause"
  10528. ],
  10529. "authors": [
  10530. {
  10531. "name": "Sebastian Bergmann",
  10532. "email": "sebastian@phpunit.de",
  10533. "role": "lead"
  10534. }
  10535. ],
  10536. "description": "Invoke callables with a timeout",
  10537. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10538. "keywords": [
  10539. "process"
  10540. ],
  10541. "support": {
  10542. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10543. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  10544. },
  10545. "funding": [
  10546. {
  10547. "url": "https://github.com/sebastianbergmann",
  10548. "type": "github"
  10549. }
  10550. ],
  10551. "time": "2023-02-03T06:56:09+00:00"
  10552. },
  10553. {
  10554. "name": "phpunit/php-text-template",
  10555. "version": "3.0.1",
  10556. "source": {
  10557. "type": "git",
  10558. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10559. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  10560. },
  10561. "dist": {
  10562. "type": "zip",
  10563. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  10564. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  10565. "shasum": ""
  10566. },
  10567. "require": {
  10568. "php": ">=8.1"
  10569. },
  10570. "require-dev": {
  10571. "phpunit/phpunit": "^10.0"
  10572. },
  10573. "type": "library",
  10574. "extra": {
  10575. "branch-alias": {
  10576. "dev-main": "3.0-dev"
  10577. }
  10578. },
  10579. "autoload": {
  10580. "classmap": [
  10581. "src/"
  10582. ]
  10583. },
  10584. "notification-url": "https://packagist.org/downloads/",
  10585. "license": [
  10586. "BSD-3-Clause"
  10587. ],
  10588. "authors": [
  10589. {
  10590. "name": "Sebastian Bergmann",
  10591. "email": "sebastian@phpunit.de",
  10592. "role": "lead"
  10593. }
  10594. ],
  10595. "description": "Simple template engine.",
  10596. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10597. "keywords": [
  10598. "template"
  10599. ],
  10600. "support": {
  10601. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10602. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  10603. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  10604. },
  10605. "funding": [
  10606. {
  10607. "url": "https://github.com/sebastianbergmann",
  10608. "type": "github"
  10609. }
  10610. ],
  10611. "time": "2023-08-31T14:07:24+00:00"
  10612. },
  10613. {
  10614. "name": "phpunit/php-timer",
  10615. "version": "6.0.0",
  10616. "source": {
  10617. "type": "git",
  10618. "url": "https://github.com/sebastianbergmann/php-timer.git",
  10619. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  10620. },
  10621. "dist": {
  10622. "type": "zip",
  10623. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10624. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  10625. "shasum": ""
  10626. },
  10627. "require": {
  10628. "php": ">=8.1"
  10629. },
  10630. "require-dev": {
  10631. "phpunit/phpunit": "^10.0"
  10632. },
  10633. "type": "library",
  10634. "extra": {
  10635. "branch-alias": {
  10636. "dev-main": "6.0-dev"
  10637. }
  10638. },
  10639. "autoload": {
  10640. "classmap": [
  10641. "src/"
  10642. ]
  10643. },
  10644. "notification-url": "https://packagist.org/downloads/",
  10645. "license": [
  10646. "BSD-3-Clause"
  10647. ],
  10648. "authors": [
  10649. {
  10650. "name": "Sebastian Bergmann",
  10651. "email": "sebastian@phpunit.de",
  10652. "role": "lead"
  10653. }
  10654. ],
  10655. "description": "Utility class for timing",
  10656. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  10657. "keywords": [
  10658. "timer"
  10659. ],
  10660. "support": {
  10661. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  10662. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  10663. },
  10664. "funding": [
  10665. {
  10666. "url": "https://github.com/sebastianbergmann",
  10667. "type": "github"
  10668. }
  10669. ],
  10670. "time": "2023-02-03T06:57:52+00:00"
  10671. },
  10672. {
  10673. "name": "phpunit/phpunit",
  10674. "version": "10.5.29",
  10675. "source": {
  10676. "type": "git",
  10677. "url": "https://github.com/sebastianbergmann/phpunit.git",
  10678. "reference": "8e9e80872b4e8064401788ee8a32d40b4455318f"
  10679. },
  10680. "dist": {
  10681. "type": "zip",
  10682. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/8e9e80872b4e8064401788ee8a32d40b4455318f",
  10683. "reference": "8e9e80872b4e8064401788ee8a32d40b4455318f",
  10684. "shasum": ""
  10685. },
  10686. "require": {
  10687. "ext-dom": "*",
  10688. "ext-json": "*",
  10689. "ext-libxml": "*",
  10690. "ext-mbstring": "*",
  10691. "ext-xml": "*",
  10692. "ext-xmlwriter": "*",
  10693. "myclabs/deep-copy": "^1.12.0",
  10694. "phar-io/manifest": "^2.0.4",
  10695. "phar-io/version": "^3.2.1",
  10696. "php": ">=8.1",
  10697. "phpunit/php-code-coverage": "^10.1.15",
  10698. "phpunit/php-file-iterator": "^4.1.0",
  10699. "phpunit/php-invoker": "^4.0.0",
  10700. "phpunit/php-text-template": "^3.0.1",
  10701. "phpunit/php-timer": "^6.0.0",
  10702. "sebastian/cli-parser": "^2.0.1",
  10703. "sebastian/code-unit": "^2.0.0",
  10704. "sebastian/comparator": "^5.0.1",
  10705. "sebastian/diff": "^5.1.1",
  10706. "sebastian/environment": "^6.1.0",
  10707. "sebastian/exporter": "^5.1.2",
  10708. "sebastian/global-state": "^6.0.2",
  10709. "sebastian/object-enumerator": "^5.0.0",
  10710. "sebastian/recursion-context": "^5.0.0",
  10711. "sebastian/type": "^4.0.0",
  10712. "sebastian/version": "^4.0.1"
  10713. },
  10714. "suggest": {
  10715. "ext-soap": "To be able to generate mocks based on WSDL files"
  10716. },
  10717. "bin": [
  10718. "phpunit"
  10719. ],
  10720. "type": "library",
  10721. "extra": {
  10722. "branch-alias": {
  10723. "dev-main": "10.5-dev"
  10724. }
  10725. },
  10726. "autoload": {
  10727. "files": [
  10728. "src/Framework/Assert/Functions.php"
  10729. ],
  10730. "classmap": [
  10731. "src/"
  10732. ]
  10733. },
  10734. "notification-url": "https://packagist.org/downloads/",
  10735. "license": [
  10736. "BSD-3-Clause"
  10737. ],
  10738. "authors": [
  10739. {
  10740. "name": "Sebastian Bergmann",
  10741. "email": "sebastian@phpunit.de",
  10742. "role": "lead"
  10743. }
  10744. ],
  10745. "description": "The PHP Unit Testing framework.",
  10746. "homepage": "https://phpunit.de/",
  10747. "keywords": [
  10748. "phpunit",
  10749. "testing",
  10750. "xunit"
  10751. ],
  10752. "support": {
  10753. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  10754. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  10755. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.29"
  10756. },
  10757. "funding": [
  10758. {
  10759. "url": "https://phpunit.de/sponsors.html",
  10760. "type": "custom"
  10761. },
  10762. {
  10763. "url": "https://github.com/sebastianbergmann",
  10764. "type": "github"
  10765. },
  10766. {
  10767. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  10768. "type": "tidelift"
  10769. }
  10770. ],
  10771. "time": "2024-07-30T11:08:00+00:00"
  10772. },
  10773. {
  10774. "name": "rector/rector",
  10775. "version": "1.2.2",
  10776. "source": {
  10777. "type": "git",
  10778. "url": "https://github.com/rectorphp/rector.git",
  10779. "reference": "044e6364017882d1e346da8690eeabc154da5495"
  10780. },
  10781. "dist": {
  10782. "type": "zip",
  10783. "url": "https://api.github.com/repos/rectorphp/rector/zipball/044e6364017882d1e346da8690eeabc154da5495",
  10784. "reference": "044e6364017882d1e346da8690eeabc154da5495",
  10785. "shasum": ""
  10786. },
  10787. "require": {
  10788. "php": "^7.2|^8.0",
  10789. "phpstan/phpstan": "^1.11"
  10790. },
  10791. "conflict": {
  10792. "rector/rector-doctrine": "*",
  10793. "rector/rector-downgrade-php": "*",
  10794. "rector/rector-phpunit": "*",
  10795. "rector/rector-symfony": "*"
  10796. },
  10797. "suggest": {
  10798. "ext-dom": "To manipulate phpunit.xml via the custom-rule command"
  10799. },
  10800. "bin": [
  10801. "bin/rector"
  10802. ],
  10803. "type": "library",
  10804. "autoload": {
  10805. "files": [
  10806. "bootstrap.php"
  10807. ]
  10808. },
  10809. "notification-url": "https://packagist.org/downloads/",
  10810. "license": [
  10811. "MIT"
  10812. ],
  10813. "description": "Instant Upgrade and Automated Refactoring of any PHP code",
  10814. "keywords": [
  10815. "automation",
  10816. "dev",
  10817. "migration",
  10818. "refactoring"
  10819. ],
  10820. "support": {
  10821. "issues": "https://github.com/rectorphp/rector/issues",
  10822. "source": "https://github.com/rectorphp/rector/tree/1.2.2"
  10823. },
  10824. "funding": [
  10825. {
  10826. "url": "https://github.com/tomasvotruba",
  10827. "type": "github"
  10828. }
  10829. ],
  10830. "time": "2024-07-25T07:44:34+00:00"
  10831. },
  10832. {
  10833. "name": "sebastian/cli-parser",
  10834. "version": "2.0.1",
  10835. "source": {
  10836. "type": "git",
  10837. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  10838. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  10839. },
  10840. "dist": {
  10841. "type": "zip",
  10842. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10843. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  10844. "shasum": ""
  10845. },
  10846. "require": {
  10847. "php": ">=8.1"
  10848. },
  10849. "require-dev": {
  10850. "phpunit/phpunit": "^10.0"
  10851. },
  10852. "type": "library",
  10853. "extra": {
  10854. "branch-alias": {
  10855. "dev-main": "2.0-dev"
  10856. }
  10857. },
  10858. "autoload": {
  10859. "classmap": [
  10860. "src/"
  10861. ]
  10862. },
  10863. "notification-url": "https://packagist.org/downloads/",
  10864. "license": [
  10865. "BSD-3-Clause"
  10866. ],
  10867. "authors": [
  10868. {
  10869. "name": "Sebastian Bergmann",
  10870. "email": "sebastian@phpunit.de",
  10871. "role": "lead"
  10872. }
  10873. ],
  10874. "description": "Library for parsing CLI options",
  10875. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  10876. "support": {
  10877. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  10878. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  10879. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  10880. },
  10881. "funding": [
  10882. {
  10883. "url": "https://github.com/sebastianbergmann",
  10884. "type": "github"
  10885. }
  10886. ],
  10887. "time": "2024-03-02T07:12:49+00:00"
  10888. },
  10889. {
  10890. "name": "sebastian/code-unit",
  10891. "version": "2.0.0",
  10892. "source": {
  10893. "type": "git",
  10894. "url": "https://github.com/sebastianbergmann/code-unit.git",
  10895. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  10896. },
  10897. "dist": {
  10898. "type": "zip",
  10899. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  10900. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  10901. "shasum": ""
  10902. },
  10903. "require": {
  10904. "php": ">=8.1"
  10905. },
  10906. "require-dev": {
  10907. "phpunit/phpunit": "^10.0"
  10908. },
  10909. "type": "library",
  10910. "extra": {
  10911. "branch-alias": {
  10912. "dev-main": "2.0-dev"
  10913. }
  10914. },
  10915. "autoload": {
  10916. "classmap": [
  10917. "src/"
  10918. ]
  10919. },
  10920. "notification-url": "https://packagist.org/downloads/",
  10921. "license": [
  10922. "BSD-3-Clause"
  10923. ],
  10924. "authors": [
  10925. {
  10926. "name": "Sebastian Bergmann",
  10927. "email": "sebastian@phpunit.de",
  10928. "role": "lead"
  10929. }
  10930. ],
  10931. "description": "Collection of value objects that represent the PHP code units",
  10932. "homepage": "https://github.com/sebastianbergmann/code-unit",
  10933. "support": {
  10934. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  10935. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  10936. },
  10937. "funding": [
  10938. {
  10939. "url": "https://github.com/sebastianbergmann",
  10940. "type": "github"
  10941. }
  10942. ],
  10943. "time": "2023-02-03T06:58:43+00:00"
  10944. },
  10945. {
  10946. "name": "sebastian/code-unit-reverse-lookup",
  10947. "version": "3.0.0",
  10948. "source": {
  10949. "type": "git",
  10950. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  10951. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  10952. },
  10953. "dist": {
  10954. "type": "zip",
  10955. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10956. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  10957. "shasum": ""
  10958. },
  10959. "require": {
  10960. "php": ">=8.1"
  10961. },
  10962. "require-dev": {
  10963. "phpunit/phpunit": "^10.0"
  10964. },
  10965. "type": "library",
  10966. "extra": {
  10967. "branch-alias": {
  10968. "dev-main": "3.0-dev"
  10969. }
  10970. },
  10971. "autoload": {
  10972. "classmap": [
  10973. "src/"
  10974. ]
  10975. },
  10976. "notification-url": "https://packagist.org/downloads/",
  10977. "license": [
  10978. "BSD-3-Clause"
  10979. ],
  10980. "authors": [
  10981. {
  10982. "name": "Sebastian Bergmann",
  10983. "email": "sebastian@phpunit.de"
  10984. }
  10985. ],
  10986. "description": "Looks up which function or method a line of code belongs to",
  10987. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  10988. "support": {
  10989. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  10990. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  10991. },
  10992. "funding": [
  10993. {
  10994. "url": "https://github.com/sebastianbergmann",
  10995. "type": "github"
  10996. }
  10997. ],
  10998. "time": "2023-02-03T06:59:15+00:00"
  10999. },
  11000. {
  11001. "name": "sebastian/comparator",
  11002. "version": "5.0.1",
  11003. "source": {
  11004. "type": "git",
  11005. "url": "https://github.com/sebastianbergmann/comparator.git",
  11006. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  11007. },
  11008. "dist": {
  11009. "type": "zip",
  11010. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  11011. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  11012. "shasum": ""
  11013. },
  11014. "require": {
  11015. "ext-dom": "*",
  11016. "ext-mbstring": "*",
  11017. "php": ">=8.1",
  11018. "sebastian/diff": "^5.0",
  11019. "sebastian/exporter": "^5.0"
  11020. },
  11021. "require-dev": {
  11022. "phpunit/phpunit": "^10.3"
  11023. },
  11024. "type": "library",
  11025. "extra": {
  11026. "branch-alias": {
  11027. "dev-main": "5.0-dev"
  11028. }
  11029. },
  11030. "autoload": {
  11031. "classmap": [
  11032. "src/"
  11033. ]
  11034. },
  11035. "notification-url": "https://packagist.org/downloads/",
  11036. "license": [
  11037. "BSD-3-Clause"
  11038. ],
  11039. "authors": [
  11040. {
  11041. "name": "Sebastian Bergmann",
  11042. "email": "sebastian@phpunit.de"
  11043. },
  11044. {
  11045. "name": "Jeff Welch",
  11046. "email": "whatthejeff@gmail.com"
  11047. },
  11048. {
  11049. "name": "Volker Dusch",
  11050. "email": "github@wallbash.com"
  11051. },
  11052. {
  11053. "name": "Bernhard Schussek",
  11054. "email": "bschussek@2bepublished.at"
  11055. }
  11056. ],
  11057. "description": "Provides the functionality to compare PHP values for equality",
  11058. "homepage": "https://github.com/sebastianbergmann/comparator",
  11059. "keywords": [
  11060. "comparator",
  11061. "compare",
  11062. "equality"
  11063. ],
  11064. "support": {
  11065. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11066. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11067. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  11068. },
  11069. "funding": [
  11070. {
  11071. "url": "https://github.com/sebastianbergmann",
  11072. "type": "github"
  11073. }
  11074. ],
  11075. "time": "2023-08-14T13:18:12+00:00"
  11076. },
  11077. {
  11078. "name": "sebastian/complexity",
  11079. "version": "3.2.0",
  11080. "source": {
  11081. "type": "git",
  11082. "url": "https://github.com/sebastianbergmann/complexity.git",
  11083. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  11084. },
  11085. "dist": {
  11086. "type": "zip",
  11087. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  11088. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  11089. "shasum": ""
  11090. },
  11091. "require": {
  11092. "nikic/php-parser": "^4.18 || ^5.0",
  11093. "php": ">=8.1"
  11094. },
  11095. "require-dev": {
  11096. "phpunit/phpunit": "^10.0"
  11097. },
  11098. "type": "library",
  11099. "extra": {
  11100. "branch-alias": {
  11101. "dev-main": "3.2-dev"
  11102. }
  11103. },
  11104. "autoload": {
  11105. "classmap": [
  11106. "src/"
  11107. ]
  11108. },
  11109. "notification-url": "https://packagist.org/downloads/",
  11110. "license": [
  11111. "BSD-3-Clause"
  11112. ],
  11113. "authors": [
  11114. {
  11115. "name": "Sebastian Bergmann",
  11116. "email": "sebastian@phpunit.de",
  11117. "role": "lead"
  11118. }
  11119. ],
  11120. "description": "Library for calculating the complexity of PHP code units",
  11121. "homepage": "https://github.com/sebastianbergmann/complexity",
  11122. "support": {
  11123. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11124. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11125. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  11126. },
  11127. "funding": [
  11128. {
  11129. "url": "https://github.com/sebastianbergmann",
  11130. "type": "github"
  11131. }
  11132. ],
  11133. "time": "2023-12-21T08:37:17+00:00"
  11134. },
  11135. {
  11136. "name": "sebastian/diff",
  11137. "version": "5.1.1",
  11138. "source": {
  11139. "type": "git",
  11140. "url": "https://github.com/sebastianbergmann/diff.git",
  11141. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  11142. },
  11143. "dist": {
  11144. "type": "zip",
  11145. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  11146. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  11147. "shasum": ""
  11148. },
  11149. "require": {
  11150. "php": ">=8.1"
  11151. },
  11152. "require-dev": {
  11153. "phpunit/phpunit": "^10.0",
  11154. "symfony/process": "^6.4"
  11155. },
  11156. "type": "library",
  11157. "extra": {
  11158. "branch-alias": {
  11159. "dev-main": "5.1-dev"
  11160. }
  11161. },
  11162. "autoload": {
  11163. "classmap": [
  11164. "src/"
  11165. ]
  11166. },
  11167. "notification-url": "https://packagist.org/downloads/",
  11168. "license": [
  11169. "BSD-3-Clause"
  11170. ],
  11171. "authors": [
  11172. {
  11173. "name": "Sebastian Bergmann",
  11174. "email": "sebastian@phpunit.de"
  11175. },
  11176. {
  11177. "name": "Kore Nordmann",
  11178. "email": "mail@kore-nordmann.de"
  11179. }
  11180. ],
  11181. "description": "Diff implementation",
  11182. "homepage": "https://github.com/sebastianbergmann/diff",
  11183. "keywords": [
  11184. "diff",
  11185. "udiff",
  11186. "unidiff",
  11187. "unified diff"
  11188. ],
  11189. "support": {
  11190. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11191. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11192. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  11193. },
  11194. "funding": [
  11195. {
  11196. "url": "https://github.com/sebastianbergmann",
  11197. "type": "github"
  11198. }
  11199. ],
  11200. "time": "2024-03-02T07:15:17+00:00"
  11201. },
  11202. {
  11203. "name": "sebastian/environment",
  11204. "version": "6.1.0",
  11205. "source": {
  11206. "type": "git",
  11207. "url": "https://github.com/sebastianbergmann/environment.git",
  11208. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  11209. },
  11210. "dist": {
  11211. "type": "zip",
  11212. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  11213. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  11214. "shasum": ""
  11215. },
  11216. "require": {
  11217. "php": ">=8.1"
  11218. },
  11219. "require-dev": {
  11220. "phpunit/phpunit": "^10.0"
  11221. },
  11222. "suggest": {
  11223. "ext-posix": "*"
  11224. },
  11225. "type": "library",
  11226. "extra": {
  11227. "branch-alias": {
  11228. "dev-main": "6.1-dev"
  11229. }
  11230. },
  11231. "autoload": {
  11232. "classmap": [
  11233. "src/"
  11234. ]
  11235. },
  11236. "notification-url": "https://packagist.org/downloads/",
  11237. "license": [
  11238. "BSD-3-Clause"
  11239. ],
  11240. "authors": [
  11241. {
  11242. "name": "Sebastian Bergmann",
  11243. "email": "sebastian@phpunit.de"
  11244. }
  11245. ],
  11246. "description": "Provides functionality to handle HHVM/PHP environments",
  11247. "homepage": "https://github.com/sebastianbergmann/environment",
  11248. "keywords": [
  11249. "Xdebug",
  11250. "environment",
  11251. "hhvm"
  11252. ],
  11253. "support": {
  11254. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11255. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11256. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  11257. },
  11258. "funding": [
  11259. {
  11260. "url": "https://github.com/sebastianbergmann",
  11261. "type": "github"
  11262. }
  11263. ],
  11264. "time": "2024-03-23T08:47:14+00:00"
  11265. },
  11266. {
  11267. "name": "sebastian/exporter",
  11268. "version": "5.1.2",
  11269. "source": {
  11270. "type": "git",
  11271. "url": "https://github.com/sebastianbergmann/exporter.git",
  11272. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  11273. },
  11274. "dist": {
  11275. "type": "zip",
  11276. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  11277. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  11278. "shasum": ""
  11279. },
  11280. "require": {
  11281. "ext-mbstring": "*",
  11282. "php": ">=8.1",
  11283. "sebastian/recursion-context": "^5.0"
  11284. },
  11285. "require-dev": {
  11286. "phpunit/phpunit": "^10.0"
  11287. },
  11288. "type": "library",
  11289. "extra": {
  11290. "branch-alias": {
  11291. "dev-main": "5.1-dev"
  11292. }
  11293. },
  11294. "autoload": {
  11295. "classmap": [
  11296. "src/"
  11297. ]
  11298. },
  11299. "notification-url": "https://packagist.org/downloads/",
  11300. "license": [
  11301. "BSD-3-Clause"
  11302. ],
  11303. "authors": [
  11304. {
  11305. "name": "Sebastian Bergmann",
  11306. "email": "sebastian@phpunit.de"
  11307. },
  11308. {
  11309. "name": "Jeff Welch",
  11310. "email": "whatthejeff@gmail.com"
  11311. },
  11312. {
  11313. "name": "Volker Dusch",
  11314. "email": "github@wallbash.com"
  11315. },
  11316. {
  11317. "name": "Adam Harvey",
  11318. "email": "aharvey@php.net"
  11319. },
  11320. {
  11321. "name": "Bernhard Schussek",
  11322. "email": "bschussek@gmail.com"
  11323. }
  11324. ],
  11325. "description": "Provides the functionality to export PHP variables for visualization",
  11326. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11327. "keywords": [
  11328. "export",
  11329. "exporter"
  11330. ],
  11331. "support": {
  11332. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11333. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  11334. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  11335. },
  11336. "funding": [
  11337. {
  11338. "url": "https://github.com/sebastianbergmann",
  11339. "type": "github"
  11340. }
  11341. ],
  11342. "time": "2024-03-02T07:17:12+00:00"
  11343. },
  11344. {
  11345. "name": "sebastian/global-state",
  11346. "version": "6.0.2",
  11347. "source": {
  11348. "type": "git",
  11349. "url": "https://github.com/sebastianbergmann/global-state.git",
  11350. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  11351. },
  11352. "dist": {
  11353. "type": "zip",
  11354. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  11355. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  11356. "shasum": ""
  11357. },
  11358. "require": {
  11359. "php": ">=8.1",
  11360. "sebastian/object-reflector": "^3.0",
  11361. "sebastian/recursion-context": "^5.0"
  11362. },
  11363. "require-dev": {
  11364. "ext-dom": "*",
  11365. "phpunit/phpunit": "^10.0"
  11366. },
  11367. "type": "library",
  11368. "extra": {
  11369. "branch-alias": {
  11370. "dev-main": "6.0-dev"
  11371. }
  11372. },
  11373. "autoload": {
  11374. "classmap": [
  11375. "src/"
  11376. ]
  11377. },
  11378. "notification-url": "https://packagist.org/downloads/",
  11379. "license": [
  11380. "BSD-3-Clause"
  11381. ],
  11382. "authors": [
  11383. {
  11384. "name": "Sebastian Bergmann",
  11385. "email": "sebastian@phpunit.de"
  11386. }
  11387. ],
  11388. "description": "Snapshotting of global state",
  11389. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  11390. "keywords": [
  11391. "global state"
  11392. ],
  11393. "support": {
  11394. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11395. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  11396. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  11397. },
  11398. "funding": [
  11399. {
  11400. "url": "https://github.com/sebastianbergmann",
  11401. "type": "github"
  11402. }
  11403. ],
  11404. "time": "2024-03-02T07:19:19+00:00"
  11405. },
  11406. {
  11407. "name": "sebastian/lines-of-code",
  11408. "version": "2.0.2",
  11409. "source": {
  11410. "type": "git",
  11411. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11412. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  11413. },
  11414. "dist": {
  11415. "type": "zip",
  11416. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  11417. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  11418. "shasum": ""
  11419. },
  11420. "require": {
  11421. "nikic/php-parser": "^4.18 || ^5.0",
  11422. "php": ">=8.1"
  11423. },
  11424. "require-dev": {
  11425. "phpunit/phpunit": "^10.0"
  11426. },
  11427. "type": "library",
  11428. "extra": {
  11429. "branch-alias": {
  11430. "dev-main": "2.0-dev"
  11431. }
  11432. },
  11433. "autoload": {
  11434. "classmap": [
  11435. "src/"
  11436. ]
  11437. },
  11438. "notification-url": "https://packagist.org/downloads/",
  11439. "license": [
  11440. "BSD-3-Clause"
  11441. ],
  11442. "authors": [
  11443. {
  11444. "name": "Sebastian Bergmann",
  11445. "email": "sebastian@phpunit.de",
  11446. "role": "lead"
  11447. }
  11448. ],
  11449. "description": "Library for counting the lines of code in PHP source code",
  11450. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11451. "support": {
  11452. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11453. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11454. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  11455. },
  11456. "funding": [
  11457. {
  11458. "url": "https://github.com/sebastianbergmann",
  11459. "type": "github"
  11460. }
  11461. ],
  11462. "time": "2023-12-21T08:38:20+00:00"
  11463. },
  11464. {
  11465. "name": "sebastian/object-enumerator",
  11466. "version": "5.0.0",
  11467. "source": {
  11468. "type": "git",
  11469. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11470. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  11471. },
  11472. "dist": {
  11473. "type": "zip",
  11474. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  11475. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  11476. "shasum": ""
  11477. },
  11478. "require": {
  11479. "php": ">=8.1",
  11480. "sebastian/object-reflector": "^3.0",
  11481. "sebastian/recursion-context": "^5.0"
  11482. },
  11483. "require-dev": {
  11484. "phpunit/phpunit": "^10.0"
  11485. },
  11486. "type": "library",
  11487. "extra": {
  11488. "branch-alias": {
  11489. "dev-main": "5.0-dev"
  11490. }
  11491. },
  11492. "autoload": {
  11493. "classmap": [
  11494. "src/"
  11495. ]
  11496. },
  11497. "notification-url": "https://packagist.org/downloads/",
  11498. "license": [
  11499. "BSD-3-Clause"
  11500. ],
  11501. "authors": [
  11502. {
  11503. "name": "Sebastian Bergmann",
  11504. "email": "sebastian@phpunit.de"
  11505. }
  11506. ],
  11507. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11508. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11509. "support": {
  11510. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11511. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  11512. },
  11513. "funding": [
  11514. {
  11515. "url": "https://github.com/sebastianbergmann",
  11516. "type": "github"
  11517. }
  11518. ],
  11519. "time": "2023-02-03T07:08:32+00:00"
  11520. },
  11521. {
  11522. "name": "sebastian/object-reflector",
  11523. "version": "3.0.0",
  11524. "source": {
  11525. "type": "git",
  11526. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11527. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  11528. },
  11529. "dist": {
  11530. "type": "zip",
  11531. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  11532. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  11533. "shasum": ""
  11534. },
  11535. "require": {
  11536. "php": ">=8.1"
  11537. },
  11538. "require-dev": {
  11539. "phpunit/phpunit": "^10.0"
  11540. },
  11541. "type": "library",
  11542. "extra": {
  11543. "branch-alias": {
  11544. "dev-main": "3.0-dev"
  11545. }
  11546. },
  11547. "autoload": {
  11548. "classmap": [
  11549. "src/"
  11550. ]
  11551. },
  11552. "notification-url": "https://packagist.org/downloads/",
  11553. "license": [
  11554. "BSD-3-Clause"
  11555. ],
  11556. "authors": [
  11557. {
  11558. "name": "Sebastian Bergmann",
  11559. "email": "sebastian@phpunit.de"
  11560. }
  11561. ],
  11562. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11563. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11564. "support": {
  11565. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11566. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  11567. },
  11568. "funding": [
  11569. {
  11570. "url": "https://github.com/sebastianbergmann",
  11571. "type": "github"
  11572. }
  11573. ],
  11574. "time": "2023-02-03T07:06:18+00:00"
  11575. },
  11576. {
  11577. "name": "sebastian/recursion-context",
  11578. "version": "5.0.0",
  11579. "source": {
  11580. "type": "git",
  11581. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11582. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  11583. },
  11584. "dist": {
  11585. "type": "zip",
  11586. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  11587. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  11588. "shasum": ""
  11589. },
  11590. "require": {
  11591. "php": ">=8.1"
  11592. },
  11593. "require-dev": {
  11594. "phpunit/phpunit": "^10.0"
  11595. },
  11596. "type": "library",
  11597. "extra": {
  11598. "branch-alias": {
  11599. "dev-main": "5.0-dev"
  11600. }
  11601. },
  11602. "autoload": {
  11603. "classmap": [
  11604. "src/"
  11605. ]
  11606. },
  11607. "notification-url": "https://packagist.org/downloads/",
  11608. "license": [
  11609. "BSD-3-Clause"
  11610. ],
  11611. "authors": [
  11612. {
  11613. "name": "Sebastian Bergmann",
  11614. "email": "sebastian@phpunit.de"
  11615. },
  11616. {
  11617. "name": "Jeff Welch",
  11618. "email": "whatthejeff@gmail.com"
  11619. },
  11620. {
  11621. "name": "Adam Harvey",
  11622. "email": "aharvey@php.net"
  11623. }
  11624. ],
  11625. "description": "Provides functionality to recursively process PHP variables",
  11626. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  11627. "support": {
  11628. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  11629. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  11630. },
  11631. "funding": [
  11632. {
  11633. "url": "https://github.com/sebastianbergmann",
  11634. "type": "github"
  11635. }
  11636. ],
  11637. "time": "2023-02-03T07:05:40+00:00"
  11638. },
  11639. {
  11640. "name": "sebastian/type",
  11641. "version": "4.0.0",
  11642. "source": {
  11643. "type": "git",
  11644. "url": "https://github.com/sebastianbergmann/type.git",
  11645. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  11646. },
  11647. "dist": {
  11648. "type": "zip",
  11649. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  11650. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  11651. "shasum": ""
  11652. },
  11653. "require": {
  11654. "php": ">=8.1"
  11655. },
  11656. "require-dev": {
  11657. "phpunit/phpunit": "^10.0"
  11658. },
  11659. "type": "library",
  11660. "extra": {
  11661. "branch-alias": {
  11662. "dev-main": "4.0-dev"
  11663. }
  11664. },
  11665. "autoload": {
  11666. "classmap": [
  11667. "src/"
  11668. ]
  11669. },
  11670. "notification-url": "https://packagist.org/downloads/",
  11671. "license": [
  11672. "BSD-3-Clause"
  11673. ],
  11674. "authors": [
  11675. {
  11676. "name": "Sebastian Bergmann",
  11677. "email": "sebastian@phpunit.de",
  11678. "role": "lead"
  11679. }
  11680. ],
  11681. "description": "Collection of value objects that represent the types of the PHP type system",
  11682. "homepage": "https://github.com/sebastianbergmann/type",
  11683. "support": {
  11684. "issues": "https://github.com/sebastianbergmann/type/issues",
  11685. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  11686. },
  11687. "funding": [
  11688. {
  11689. "url": "https://github.com/sebastianbergmann",
  11690. "type": "github"
  11691. }
  11692. ],
  11693. "time": "2023-02-03T07:10:45+00:00"
  11694. },
  11695. {
  11696. "name": "sebastian/version",
  11697. "version": "4.0.1",
  11698. "source": {
  11699. "type": "git",
  11700. "url": "https://github.com/sebastianbergmann/version.git",
  11701. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  11702. },
  11703. "dist": {
  11704. "type": "zip",
  11705. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11706. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  11707. "shasum": ""
  11708. },
  11709. "require": {
  11710. "php": ">=8.1"
  11711. },
  11712. "type": "library",
  11713. "extra": {
  11714. "branch-alias": {
  11715. "dev-main": "4.0-dev"
  11716. }
  11717. },
  11718. "autoload": {
  11719. "classmap": [
  11720. "src/"
  11721. ]
  11722. },
  11723. "notification-url": "https://packagist.org/downloads/",
  11724. "license": [
  11725. "BSD-3-Clause"
  11726. ],
  11727. "authors": [
  11728. {
  11729. "name": "Sebastian Bergmann",
  11730. "email": "sebastian@phpunit.de",
  11731. "role": "lead"
  11732. }
  11733. ],
  11734. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  11735. "homepage": "https://github.com/sebastianbergmann/version",
  11736. "support": {
  11737. "issues": "https://github.com/sebastianbergmann/version/issues",
  11738. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  11739. },
  11740. "funding": [
  11741. {
  11742. "url": "https://github.com/sebastianbergmann",
  11743. "type": "github"
  11744. }
  11745. ],
  11746. "time": "2023-02-07T11:34:05+00:00"
  11747. },
  11748. {
  11749. "name": "spatie/backtrace",
  11750. "version": "1.6.2",
  11751. "source": {
  11752. "type": "git",
  11753. "url": "https://github.com/spatie/backtrace.git",
  11754. "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9"
  11755. },
  11756. "dist": {
  11757. "type": "zip",
  11758. "url": "https://api.github.com/repos/spatie/backtrace/zipball/1a9a145b044677ae3424693f7b06479fc8c137a9",
  11759. "reference": "1a9a145b044677ae3424693f7b06479fc8c137a9",
  11760. "shasum": ""
  11761. },
  11762. "require": {
  11763. "php": "^7.3|^8.0"
  11764. },
  11765. "require-dev": {
  11766. "ext-json": "*",
  11767. "laravel/serializable-closure": "^1.3",
  11768. "phpunit/phpunit": "^9.3",
  11769. "spatie/phpunit-snapshot-assertions": "^4.2",
  11770. "symfony/var-dumper": "^5.1"
  11771. },
  11772. "type": "library",
  11773. "autoload": {
  11774. "psr-4": {
  11775. "Spatie\\Backtrace\\": "src"
  11776. }
  11777. },
  11778. "notification-url": "https://packagist.org/downloads/",
  11779. "license": [
  11780. "MIT"
  11781. ],
  11782. "authors": [
  11783. {
  11784. "name": "Freek Van de Herten",
  11785. "email": "freek@spatie.be",
  11786. "homepage": "https://spatie.be",
  11787. "role": "Developer"
  11788. }
  11789. ],
  11790. "description": "A better backtrace",
  11791. "homepage": "https://github.com/spatie/backtrace",
  11792. "keywords": [
  11793. "Backtrace",
  11794. "spatie"
  11795. ],
  11796. "support": {
  11797. "source": "https://github.com/spatie/backtrace/tree/1.6.2"
  11798. },
  11799. "funding": [
  11800. {
  11801. "url": "https://github.com/sponsors/spatie",
  11802. "type": "github"
  11803. },
  11804. {
  11805. "url": "https://spatie.be/open-source/support-us",
  11806. "type": "other"
  11807. }
  11808. ],
  11809. "time": "2024-07-22T08:21:24+00:00"
  11810. },
  11811. {
  11812. "name": "spatie/error-solutions",
  11813. "version": "1.1.1",
  11814. "source": {
  11815. "type": "git",
  11816. "url": "https://github.com/spatie/error-solutions.git",
  11817. "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67"
  11818. },
  11819. "dist": {
  11820. "type": "zip",
  11821. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/ae7393122eda72eed7cc4f176d1e96ea444f2d67",
  11822. "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67",
  11823. "shasum": ""
  11824. },
  11825. "require": {
  11826. "php": "^8.0"
  11827. },
  11828. "require-dev": {
  11829. "illuminate/broadcasting": "^10.0|^11.0",
  11830. "illuminate/cache": "^10.0|^11.0",
  11831. "illuminate/support": "^10.0|^11.0",
  11832. "livewire/livewire": "^2.11|^3.3.5",
  11833. "openai-php/client": "^0.10.1",
  11834. "orchestra/testbench": "^7.0|8.22.3|^9.0",
  11835. "pestphp/pest": "^2.20",
  11836. "phpstan/phpstan": "^1.11",
  11837. "psr/simple-cache": "^3.0",
  11838. "psr/simple-cache-implementation": "^3.0",
  11839. "spatie/ray": "^1.28",
  11840. "symfony/cache": "^5.4|^6.0|^7.0",
  11841. "symfony/process": "^5.4|^6.0|^7.0",
  11842. "vlucas/phpdotenv": "^5.5"
  11843. },
  11844. "suggest": {
  11845. "openai-php/client": "Require get solutions from OpenAI",
  11846. "simple-cache-implementation": "To cache solutions from OpenAI"
  11847. },
  11848. "type": "library",
  11849. "autoload": {
  11850. "psr-4": {
  11851. "Spatie\\Ignition\\": "legacy/ignition",
  11852. "Spatie\\ErrorSolutions\\": "src",
  11853. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  11854. }
  11855. },
  11856. "notification-url": "https://packagist.org/downloads/",
  11857. "license": [
  11858. "MIT"
  11859. ],
  11860. "authors": [
  11861. {
  11862. "name": "Ruben Van Assche",
  11863. "email": "ruben@spatie.be",
  11864. "role": "Developer"
  11865. }
  11866. ],
  11867. "description": "This is my package error-solutions",
  11868. "homepage": "https://github.com/spatie/error-solutions",
  11869. "keywords": [
  11870. "error-solutions",
  11871. "spatie"
  11872. ],
  11873. "support": {
  11874. "issues": "https://github.com/spatie/error-solutions/issues",
  11875. "source": "https://github.com/spatie/error-solutions/tree/1.1.1"
  11876. },
  11877. "funding": [
  11878. {
  11879. "url": "https://github.com/Spatie",
  11880. "type": "github"
  11881. }
  11882. ],
  11883. "time": "2024-07-25T11:06:04+00:00"
  11884. },
  11885. {
  11886. "name": "spatie/flare-client-php",
  11887. "version": "1.8.0",
  11888. "source": {
  11889. "type": "git",
  11890. "url": "https://github.com/spatie/flare-client-php.git",
  11891. "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122"
  11892. },
  11893. "dist": {
  11894. "type": "zip",
  11895. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122",
  11896. "reference": "180f8ca4c0d0d6fc51477bd8c53ce37ab5a96122",
  11897. "shasum": ""
  11898. },
  11899. "require": {
  11900. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  11901. "php": "^8.0",
  11902. "spatie/backtrace": "^1.6.1",
  11903. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  11904. "symfony/mime": "^5.2|^6.0|^7.0",
  11905. "symfony/process": "^5.2|^6.0|^7.0",
  11906. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  11907. },
  11908. "require-dev": {
  11909. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  11910. "pestphp/pest": "^1.20|^2.0",
  11911. "phpstan/extension-installer": "^1.1",
  11912. "phpstan/phpstan-deprecation-rules": "^1.0",
  11913. "phpstan/phpstan-phpunit": "^1.0",
  11914. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  11915. },
  11916. "type": "library",
  11917. "extra": {
  11918. "branch-alias": {
  11919. "dev-main": "1.3.x-dev"
  11920. }
  11921. },
  11922. "autoload": {
  11923. "files": [
  11924. "src/helpers.php"
  11925. ],
  11926. "psr-4": {
  11927. "Spatie\\FlareClient\\": "src"
  11928. }
  11929. },
  11930. "notification-url": "https://packagist.org/downloads/",
  11931. "license": [
  11932. "MIT"
  11933. ],
  11934. "description": "Send PHP errors to Flare",
  11935. "homepage": "https://github.com/spatie/flare-client-php",
  11936. "keywords": [
  11937. "exception",
  11938. "flare",
  11939. "reporting",
  11940. "spatie"
  11941. ],
  11942. "support": {
  11943. "issues": "https://github.com/spatie/flare-client-php/issues",
  11944. "source": "https://github.com/spatie/flare-client-php/tree/1.8.0"
  11945. },
  11946. "funding": [
  11947. {
  11948. "url": "https://github.com/spatie",
  11949. "type": "github"
  11950. }
  11951. ],
  11952. "time": "2024-08-01T08:27:26+00:00"
  11953. },
  11954. {
  11955. "name": "spatie/ignition",
  11956. "version": "1.15.0",
  11957. "source": {
  11958. "type": "git",
  11959. "url": "https://github.com/spatie/ignition.git",
  11960. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2"
  11961. },
  11962. "dist": {
  11963. "type": "zip",
  11964. "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  11965. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  11966. "shasum": ""
  11967. },
  11968. "require": {
  11969. "ext-json": "*",
  11970. "ext-mbstring": "*",
  11971. "php": "^8.0",
  11972. "spatie/error-solutions": "^1.0",
  11973. "spatie/flare-client-php": "^1.7",
  11974. "symfony/console": "^5.4|^6.0|^7.0",
  11975. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  11976. },
  11977. "require-dev": {
  11978. "illuminate/cache": "^9.52|^10.0|^11.0",
  11979. "mockery/mockery": "^1.4",
  11980. "pestphp/pest": "^1.20|^2.0",
  11981. "phpstan/extension-installer": "^1.1",
  11982. "phpstan/phpstan-deprecation-rules": "^1.0",
  11983. "phpstan/phpstan-phpunit": "^1.0",
  11984. "psr/simple-cache-implementation": "*",
  11985. "symfony/cache": "^5.4|^6.0|^7.0",
  11986. "symfony/process": "^5.4|^6.0|^7.0",
  11987. "vlucas/phpdotenv": "^5.5"
  11988. },
  11989. "suggest": {
  11990. "openai-php/client": "Require get solutions from OpenAI",
  11991. "simple-cache-implementation": "To cache solutions from OpenAI"
  11992. },
  11993. "type": "library",
  11994. "extra": {
  11995. "branch-alias": {
  11996. "dev-main": "1.5.x-dev"
  11997. }
  11998. },
  11999. "autoload": {
  12000. "psr-4": {
  12001. "Spatie\\Ignition\\": "src"
  12002. }
  12003. },
  12004. "notification-url": "https://packagist.org/downloads/",
  12005. "license": [
  12006. "MIT"
  12007. ],
  12008. "authors": [
  12009. {
  12010. "name": "Spatie",
  12011. "email": "info@spatie.be",
  12012. "role": "Developer"
  12013. }
  12014. ],
  12015. "description": "A beautiful error page for PHP applications.",
  12016. "homepage": "https://flareapp.io/ignition",
  12017. "keywords": [
  12018. "error",
  12019. "flare",
  12020. "laravel",
  12021. "page"
  12022. ],
  12023. "support": {
  12024. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12025. "forum": "https://twitter.com/flareappio",
  12026. "issues": "https://github.com/spatie/ignition/issues",
  12027. "source": "https://github.com/spatie/ignition"
  12028. },
  12029. "funding": [
  12030. {
  12031. "url": "https://github.com/spatie",
  12032. "type": "github"
  12033. }
  12034. ],
  12035. "time": "2024-06-12T14:55:22+00:00"
  12036. },
  12037. {
  12038. "name": "spatie/laravel-ignition",
  12039. "version": "2.8.0",
  12040. "source": {
  12041. "type": "git",
  12042. "url": "https://github.com/spatie/laravel-ignition.git",
  12043. "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c"
  12044. },
  12045. "dist": {
  12046. "type": "zip",
  12047. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/3c067b75bfb50574db8f7e2c3978c65eed71126c",
  12048. "reference": "3c067b75bfb50574db8f7e2c3978c65eed71126c",
  12049. "shasum": ""
  12050. },
  12051. "require": {
  12052. "ext-curl": "*",
  12053. "ext-json": "*",
  12054. "ext-mbstring": "*",
  12055. "illuminate/support": "^10.0|^11.0",
  12056. "php": "^8.1",
  12057. "spatie/ignition": "^1.15",
  12058. "symfony/console": "^6.2.3|^7.0",
  12059. "symfony/var-dumper": "^6.2.3|^7.0"
  12060. },
  12061. "require-dev": {
  12062. "livewire/livewire": "^2.11|^3.3.5",
  12063. "mockery/mockery": "^1.5.1",
  12064. "openai-php/client": "^0.8.1",
  12065. "orchestra/testbench": "8.22.3|^9.0",
  12066. "pestphp/pest": "^2.34",
  12067. "phpstan/extension-installer": "^1.3.1",
  12068. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  12069. "phpstan/phpstan-phpunit": "^1.3.16",
  12070. "vlucas/phpdotenv": "^5.5"
  12071. },
  12072. "suggest": {
  12073. "openai-php/client": "Require get solutions from OpenAI",
  12074. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  12075. },
  12076. "type": "library",
  12077. "extra": {
  12078. "laravel": {
  12079. "providers": [
  12080. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  12081. ],
  12082. "aliases": {
  12083. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  12084. }
  12085. }
  12086. },
  12087. "autoload": {
  12088. "files": [
  12089. "src/helpers.php"
  12090. ],
  12091. "psr-4": {
  12092. "Spatie\\LaravelIgnition\\": "src"
  12093. }
  12094. },
  12095. "notification-url": "https://packagist.org/downloads/",
  12096. "license": [
  12097. "MIT"
  12098. ],
  12099. "authors": [
  12100. {
  12101. "name": "Spatie",
  12102. "email": "info@spatie.be",
  12103. "role": "Developer"
  12104. }
  12105. ],
  12106. "description": "A beautiful error page for Laravel applications.",
  12107. "homepage": "https://flareapp.io/ignition",
  12108. "keywords": [
  12109. "error",
  12110. "flare",
  12111. "laravel",
  12112. "page"
  12113. ],
  12114. "support": {
  12115. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12116. "forum": "https://twitter.com/flareappio",
  12117. "issues": "https://github.com/spatie/laravel-ignition/issues",
  12118. "source": "https://github.com/spatie/laravel-ignition"
  12119. },
  12120. "funding": [
  12121. {
  12122. "url": "https://github.com/spatie",
  12123. "type": "github"
  12124. }
  12125. ],
  12126. "time": "2024-06-12T15:01:18+00:00"
  12127. },
  12128. {
  12129. "name": "spatie/laravel-ray",
  12130. "version": "1.37.1",
  12131. "source": {
  12132. "type": "git",
  12133. "url": "https://github.com/spatie/laravel-ray.git",
  12134. "reference": "c2bedfd1172648df2c80aaceb2541d70f1d9a5b9"
  12135. },
  12136. "dist": {
  12137. "type": "zip",
  12138. "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/c2bedfd1172648df2c80aaceb2541d70f1d9a5b9",
  12139. "reference": "c2bedfd1172648df2c80aaceb2541d70f1d9a5b9",
  12140. "shasum": ""
  12141. },
  12142. "require": {
  12143. "ext-json": "*",
  12144. "illuminate/contracts": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12145. "illuminate/database": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12146. "illuminate/queue": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12147. "illuminate/support": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12148. "php": "^7.4|^8.0",
  12149. "rector/rector": "^0.19.2|^1.0",
  12150. "spatie/backtrace": "^1.0",
  12151. "spatie/ray": "^1.41.1",
  12152. "symfony/stopwatch": "4.2|^5.1|^6.0|^7.0",
  12153. "zbateson/mail-mime-parser": "^1.3.1|^2.0|^3.0"
  12154. },
  12155. "require-dev": {
  12156. "guzzlehttp/guzzle": "^7.3",
  12157. "laravel/framework": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12158. "orchestra/testbench-core": "^5.0|^6.0|^7.0|^8.0|^9.0",
  12159. "pestphp/pest": "^1.22|^2.0",
  12160. "phpstan/phpstan": "^1.10.57",
  12161. "phpunit/phpunit": "^9.3|^10.1",
  12162. "spatie/pest-plugin-snapshots": "^1.1|^2.0",
  12163. "symfony/var-dumper": "^4.2|^5.1|^6.0|^7.0.3"
  12164. },
  12165. "type": "library",
  12166. "extra": {
  12167. "branch-alias": {
  12168. "dev-main": "1.x-dev"
  12169. },
  12170. "laravel": {
  12171. "providers": [
  12172. "Spatie\\LaravelRay\\RayServiceProvider"
  12173. ]
  12174. }
  12175. },
  12176. "autoload": {
  12177. "psr-4": {
  12178. "Spatie\\LaravelRay\\": "src"
  12179. }
  12180. },
  12181. "notification-url": "https://packagist.org/downloads/",
  12182. "license": [
  12183. "MIT"
  12184. ],
  12185. "authors": [
  12186. {
  12187. "name": "Freek Van der Herten",
  12188. "email": "freek@spatie.be",
  12189. "homepage": "https://spatie.be",
  12190. "role": "Developer"
  12191. }
  12192. ],
  12193. "description": "Easily debug Laravel apps",
  12194. "homepage": "https://github.com/spatie/laravel-ray",
  12195. "keywords": [
  12196. "laravel-ray",
  12197. "spatie"
  12198. ],
  12199. "support": {
  12200. "issues": "https://github.com/spatie/laravel-ray/issues",
  12201. "source": "https://github.com/spatie/laravel-ray/tree/1.37.1"
  12202. },
  12203. "funding": [
  12204. {
  12205. "url": "https://github.com/sponsors/spatie",
  12206. "type": "github"
  12207. },
  12208. {
  12209. "url": "https://spatie.be/open-source/support-us",
  12210. "type": "other"
  12211. }
  12212. ],
  12213. "time": "2024-07-12T12:35:17+00:00"
  12214. },
  12215. {
  12216. "name": "spatie/macroable",
  12217. "version": "2.0.0",
  12218. "source": {
  12219. "type": "git",
  12220. "url": "https://github.com/spatie/macroable.git",
  12221. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072"
  12222. },
  12223. "dist": {
  12224. "type": "zip",
  12225. "url": "https://api.github.com/repos/spatie/macroable/zipball/ec2c320f932e730607aff8052c44183cf3ecb072",
  12226. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072",
  12227. "shasum": ""
  12228. },
  12229. "require": {
  12230. "php": "^8.0"
  12231. },
  12232. "require-dev": {
  12233. "phpunit/phpunit": "^8.0|^9.3"
  12234. },
  12235. "type": "library",
  12236. "autoload": {
  12237. "psr-4": {
  12238. "Spatie\\Macroable\\": "src"
  12239. }
  12240. },
  12241. "notification-url": "https://packagist.org/downloads/",
  12242. "license": [
  12243. "MIT"
  12244. ],
  12245. "authors": [
  12246. {
  12247. "name": "Freek Van der Herten",
  12248. "email": "freek@spatie.be",
  12249. "homepage": "https://spatie.be",
  12250. "role": "Developer"
  12251. }
  12252. ],
  12253. "description": "A trait to dynamically add methods to a class",
  12254. "homepage": "https://github.com/spatie/macroable",
  12255. "keywords": [
  12256. "macroable",
  12257. "spatie"
  12258. ],
  12259. "support": {
  12260. "issues": "https://github.com/spatie/macroable/issues",
  12261. "source": "https://github.com/spatie/macroable/tree/2.0.0"
  12262. },
  12263. "time": "2021-03-26T22:39:02+00:00"
  12264. },
  12265. {
  12266. "name": "spatie/ray",
  12267. "version": "1.41.2",
  12268. "source": {
  12269. "type": "git",
  12270. "url": "https://github.com/spatie/ray.git",
  12271. "reference": "c44f8cfbf82c69909b505de61d8d3f2d324e93fc"
  12272. },
  12273. "dist": {
  12274. "type": "zip",
  12275. "url": "https://api.github.com/repos/spatie/ray/zipball/c44f8cfbf82c69909b505de61d8d3f2d324e93fc",
  12276. "reference": "c44f8cfbf82c69909b505de61d8d3f2d324e93fc",
  12277. "shasum": ""
  12278. },
  12279. "require": {
  12280. "ext-curl": "*",
  12281. "ext-json": "*",
  12282. "php": "^7.3|^8.0",
  12283. "ramsey/uuid": "^3.0|^4.1",
  12284. "spatie/backtrace": "^1.1",
  12285. "spatie/macroable": "^1.0|^2.0",
  12286. "symfony/stopwatch": "^4.0|^5.1|^6.0|^7.0",
  12287. "symfony/var-dumper": "^4.2|^5.1|^6.0|^7.0.3"
  12288. },
  12289. "require-dev": {
  12290. "illuminate/support": "6.x|^8.18|^9.0",
  12291. "nesbot/carbon": "^2.63",
  12292. "pestphp/pest": "^1.22",
  12293. "phpstan/phpstan": "^1.10",
  12294. "phpunit/phpunit": "^9.5",
  12295. "rector/rector": "^0.19.2",
  12296. "spatie/phpunit-snapshot-assertions": "^4.2",
  12297. "spatie/test-time": "^1.2"
  12298. },
  12299. "bin": [
  12300. "bin/remove-ray.sh"
  12301. ],
  12302. "type": "library",
  12303. "extra": {
  12304. "branch-alias": {
  12305. "dev-main": "1.x-dev"
  12306. }
  12307. },
  12308. "autoload": {
  12309. "files": [
  12310. "src/helpers.php"
  12311. ],
  12312. "psr-4": {
  12313. "Spatie\\Ray\\": "src"
  12314. }
  12315. },
  12316. "notification-url": "https://packagist.org/downloads/",
  12317. "license": [
  12318. "MIT"
  12319. ],
  12320. "authors": [
  12321. {
  12322. "name": "Freek Van der Herten",
  12323. "email": "freek@spatie.be",
  12324. "homepage": "https://spatie.be",
  12325. "role": "Developer"
  12326. }
  12327. ],
  12328. "description": "Debug with Ray to fix problems faster",
  12329. "homepage": "https://github.com/spatie/ray",
  12330. "keywords": [
  12331. "ray",
  12332. "spatie"
  12333. ],
  12334. "support": {
  12335. "issues": "https://github.com/spatie/ray/issues",
  12336. "source": "https://github.com/spatie/ray/tree/1.41.2"
  12337. },
  12338. "funding": [
  12339. {
  12340. "url": "https://github.com/sponsors/spatie",
  12341. "type": "github"
  12342. },
  12343. {
  12344. "url": "https://spatie.be/open-source/support-us",
  12345. "type": "other"
  12346. }
  12347. ],
  12348. "time": "2024-04-24T14:21:46+00:00"
  12349. },
  12350. {
  12351. "name": "symfony/polyfill-iconv",
  12352. "version": "v1.30.0",
  12353. "source": {
  12354. "type": "git",
  12355. "url": "https://github.com/symfony/polyfill-iconv.git",
  12356. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805"
  12357. },
  12358. "dist": {
  12359. "type": "zip",
  12360. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/c027e6a3c6aee334663ec21f5852e89738abc805",
  12361. "reference": "c027e6a3c6aee334663ec21f5852e89738abc805",
  12362. "shasum": ""
  12363. },
  12364. "require": {
  12365. "php": ">=7.1"
  12366. },
  12367. "provide": {
  12368. "ext-iconv": "*"
  12369. },
  12370. "suggest": {
  12371. "ext-iconv": "For best performance"
  12372. },
  12373. "type": "library",
  12374. "extra": {
  12375. "thanks": {
  12376. "name": "symfony/polyfill",
  12377. "url": "https://github.com/symfony/polyfill"
  12378. }
  12379. },
  12380. "autoload": {
  12381. "files": [
  12382. "bootstrap.php"
  12383. ],
  12384. "psr-4": {
  12385. "Symfony\\Polyfill\\Iconv\\": ""
  12386. }
  12387. },
  12388. "notification-url": "https://packagist.org/downloads/",
  12389. "license": [
  12390. "MIT"
  12391. ],
  12392. "authors": [
  12393. {
  12394. "name": "Nicolas Grekas",
  12395. "email": "p@tchwork.com"
  12396. },
  12397. {
  12398. "name": "Symfony Community",
  12399. "homepage": "https://symfony.com/contributors"
  12400. }
  12401. ],
  12402. "description": "Symfony polyfill for the Iconv extension",
  12403. "homepage": "https://symfony.com",
  12404. "keywords": [
  12405. "compatibility",
  12406. "iconv",
  12407. "polyfill",
  12408. "portable",
  12409. "shim"
  12410. ],
  12411. "support": {
  12412. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.30.0"
  12413. },
  12414. "funding": [
  12415. {
  12416. "url": "https://symfony.com/sponsor",
  12417. "type": "custom"
  12418. },
  12419. {
  12420. "url": "https://github.com/fabpot",
  12421. "type": "github"
  12422. },
  12423. {
  12424. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12425. "type": "tidelift"
  12426. }
  12427. ],
  12428. "time": "2024-05-31T15:07:36+00:00"
  12429. },
  12430. {
  12431. "name": "symfony/stopwatch",
  12432. "version": "v7.1.1",
  12433. "source": {
  12434. "type": "git",
  12435. "url": "https://github.com/symfony/stopwatch.git",
  12436. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d"
  12437. },
  12438. "dist": {
  12439. "type": "zip",
  12440. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  12441. "reference": "5b75bb1ac2ba1b9d05c47fc4b3046a625377d23d",
  12442. "shasum": ""
  12443. },
  12444. "require": {
  12445. "php": ">=8.2",
  12446. "symfony/service-contracts": "^2.5|^3"
  12447. },
  12448. "type": "library",
  12449. "autoload": {
  12450. "psr-4": {
  12451. "Symfony\\Component\\Stopwatch\\": ""
  12452. },
  12453. "exclude-from-classmap": [
  12454. "/Tests/"
  12455. ]
  12456. },
  12457. "notification-url": "https://packagist.org/downloads/",
  12458. "license": [
  12459. "MIT"
  12460. ],
  12461. "authors": [
  12462. {
  12463. "name": "Fabien Potencier",
  12464. "email": "fabien@symfony.com"
  12465. },
  12466. {
  12467. "name": "Symfony Community",
  12468. "homepage": "https://symfony.com/contributors"
  12469. }
  12470. ],
  12471. "description": "Provides a way to profile code",
  12472. "homepage": "https://symfony.com",
  12473. "support": {
  12474. "source": "https://github.com/symfony/stopwatch/tree/v7.1.1"
  12475. },
  12476. "funding": [
  12477. {
  12478. "url": "https://symfony.com/sponsor",
  12479. "type": "custom"
  12480. },
  12481. {
  12482. "url": "https://github.com/fabpot",
  12483. "type": "github"
  12484. },
  12485. {
  12486. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12487. "type": "tidelift"
  12488. }
  12489. ],
  12490. "time": "2024-05-31T14:57:53+00:00"
  12491. },
  12492. {
  12493. "name": "symfony/yaml",
  12494. "version": "v7.1.1",
  12495. "source": {
  12496. "type": "git",
  12497. "url": "https://github.com/symfony/yaml.git",
  12498. "reference": "fa34c77015aa6720469db7003567b9f772492bf2"
  12499. },
  12500. "dist": {
  12501. "type": "zip",
  12502. "url": "https://api.github.com/repos/symfony/yaml/zipball/fa34c77015aa6720469db7003567b9f772492bf2",
  12503. "reference": "fa34c77015aa6720469db7003567b9f772492bf2",
  12504. "shasum": ""
  12505. },
  12506. "require": {
  12507. "php": ">=8.2",
  12508. "symfony/polyfill-ctype": "^1.8"
  12509. },
  12510. "conflict": {
  12511. "symfony/console": "<6.4"
  12512. },
  12513. "require-dev": {
  12514. "symfony/console": "^6.4|^7.0"
  12515. },
  12516. "bin": [
  12517. "Resources/bin/yaml-lint"
  12518. ],
  12519. "type": "library",
  12520. "autoload": {
  12521. "psr-4": {
  12522. "Symfony\\Component\\Yaml\\": ""
  12523. },
  12524. "exclude-from-classmap": [
  12525. "/Tests/"
  12526. ]
  12527. },
  12528. "notification-url": "https://packagist.org/downloads/",
  12529. "license": [
  12530. "MIT"
  12531. ],
  12532. "authors": [
  12533. {
  12534. "name": "Fabien Potencier",
  12535. "email": "fabien@symfony.com"
  12536. },
  12537. {
  12538. "name": "Symfony Community",
  12539. "homepage": "https://symfony.com/contributors"
  12540. }
  12541. ],
  12542. "description": "Loads and dumps YAML files",
  12543. "homepage": "https://symfony.com",
  12544. "support": {
  12545. "source": "https://github.com/symfony/yaml/tree/v7.1.1"
  12546. },
  12547. "funding": [
  12548. {
  12549. "url": "https://symfony.com/sponsor",
  12550. "type": "custom"
  12551. },
  12552. {
  12553. "url": "https://github.com/fabpot",
  12554. "type": "github"
  12555. },
  12556. {
  12557. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12558. "type": "tidelift"
  12559. }
  12560. ],
  12561. "time": "2024-05-31T14:57:53+00:00"
  12562. },
  12563. {
  12564. "name": "theseer/tokenizer",
  12565. "version": "1.2.3",
  12566. "source": {
  12567. "type": "git",
  12568. "url": "https://github.com/theseer/tokenizer.git",
  12569. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  12570. },
  12571. "dist": {
  12572. "type": "zip",
  12573. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12574. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12575. "shasum": ""
  12576. },
  12577. "require": {
  12578. "ext-dom": "*",
  12579. "ext-tokenizer": "*",
  12580. "ext-xmlwriter": "*",
  12581. "php": "^7.2 || ^8.0"
  12582. },
  12583. "type": "library",
  12584. "autoload": {
  12585. "classmap": [
  12586. "src/"
  12587. ]
  12588. },
  12589. "notification-url": "https://packagist.org/downloads/",
  12590. "license": [
  12591. "BSD-3-Clause"
  12592. ],
  12593. "authors": [
  12594. {
  12595. "name": "Arne Blankerts",
  12596. "email": "arne@blankerts.de",
  12597. "role": "Developer"
  12598. }
  12599. ],
  12600. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12601. "support": {
  12602. "issues": "https://github.com/theseer/tokenizer/issues",
  12603. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  12604. },
  12605. "funding": [
  12606. {
  12607. "url": "https://github.com/theseer",
  12608. "type": "github"
  12609. }
  12610. ],
  12611. "time": "2024-03-03T12:36:25+00:00"
  12612. },
  12613. {
  12614. "name": "zbateson/mail-mime-parser",
  12615. "version": "3.0.2",
  12616. "source": {
  12617. "type": "git",
  12618. "url": "https://github.com/zbateson/mail-mime-parser.git",
  12619. "reference": "9a240522ae5e4eaeb7bf72c9bc88fe89dfb014a3"
  12620. },
  12621. "dist": {
  12622. "type": "zip",
  12623. "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/9a240522ae5e4eaeb7bf72c9bc88fe89dfb014a3",
  12624. "reference": "9a240522ae5e4eaeb7bf72c9bc88fe89dfb014a3",
  12625. "shasum": ""
  12626. },
  12627. "require": {
  12628. "guzzlehttp/psr7": "^2.5",
  12629. "php": ">=8.0",
  12630. "php-di/php-di": "^6.0|^7.0",
  12631. "psr/log": "^1|^2|^3",
  12632. "zbateson/mb-wrapper": "^2.0",
  12633. "zbateson/stream-decorators": "^2.1"
  12634. },
  12635. "require-dev": {
  12636. "friendsofphp/php-cs-fixer": "*",
  12637. "monolog/monolog": "^2|^3",
  12638. "phpstan/phpstan": "*",
  12639. "phpunit/phpunit": "^9.6"
  12640. },
  12641. "suggest": {
  12642. "ext-iconv": "For best support/performance",
  12643. "ext-mbstring": "For best support/performance"
  12644. },
  12645. "type": "library",
  12646. "autoload": {
  12647. "psr-4": {
  12648. "ZBateson\\MailMimeParser\\": "src/"
  12649. }
  12650. },
  12651. "notification-url": "https://packagist.org/downloads/",
  12652. "license": [
  12653. "BSD-2-Clause"
  12654. ],
  12655. "authors": [
  12656. {
  12657. "name": "Zaahid Bateson"
  12658. },
  12659. {
  12660. "name": "Contributors",
  12661. "homepage": "https://github.com/zbateson/mail-mime-parser/graphs/contributors"
  12662. }
  12663. ],
  12664. "description": "MIME email message parser",
  12665. "homepage": "https://mail-mime-parser.org",
  12666. "keywords": [
  12667. "MimeMailParser",
  12668. "email",
  12669. "mail",
  12670. "mailparse",
  12671. "mime",
  12672. "mimeparse",
  12673. "parser",
  12674. "php-imap"
  12675. ],
  12676. "support": {
  12677. "docs": "https://mail-mime-parser.org/#usage-guide",
  12678. "issues": "https://github.com/zbateson/mail-mime-parser/issues",
  12679. "source": "https://github.com/zbateson/mail-mime-parser"
  12680. },
  12681. "funding": [
  12682. {
  12683. "url": "https://github.com/zbateson",
  12684. "type": "github"
  12685. }
  12686. ],
  12687. "time": "2024-05-01T16:49:29+00:00"
  12688. },
  12689. {
  12690. "name": "zbateson/mb-wrapper",
  12691. "version": "2.0.0",
  12692. "source": {
  12693. "type": "git",
  12694. "url": "https://github.com/zbateson/mb-wrapper.git",
  12695. "reference": "9e4373a153585d12b6c621ac4a6bb143264d4619"
  12696. },
  12697. "dist": {
  12698. "type": "zip",
  12699. "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/9e4373a153585d12b6c621ac4a6bb143264d4619",
  12700. "reference": "9e4373a153585d12b6c621ac4a6bb143264d4619",
  12701. "shasum": ""
  12702. },
  12703. "require": {
  12704. "php": ">=8.0",
  12705. "symfony/polyfill-iconv": "^1.9",
  12706. "symfony/polyfill-mbstring": "^1.9"
  12707. },
  12708. "require-dev": {
  12709. "friendsofphp/php-cs-fixer": "*",
  12710. "phpstan/phpstan": "*",
  12711. "phpunit/phpunit": "<10.0"
  12712. },
  12713. "suggest": {
  12714. "ext-iconv": "For best support/performance",
  12715. "ext-mbstring": "For best support/performance"
  12716. },
  12717. "type": "library",
  12718. "autoload": {
  12719. "psr-4": {
  12720. "ZBateson\\MbWrapper\\": "src/"
  12721. }
  12722. },
  12723. "notification-url": "https://packagist.org/downloads/",
  12724. "license": [
  12725. "BSD-2-Clause"
  12726. ],
  12727. "authors": [
  12728. {
  12729. "name": "Zaahid Bateson"
  12730. }
  12731. ],
  12732. "description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
  12733. "keywords": [
  12734. "charset",
  12735. "encoding",
  12736. "http",
  12737. "iconv",
  12738. "mail",
  12739. "mb",
  12740. "mb_convert_encoding",
  12741. "mbstring",
  12742. "mime",
  12743. "multibyte",
  12744. "string"
  12745. ],
  12746. "support": {
  12747. "issues": "https://github.com/zbateson/mb-wrapper/issues",
  12748. "source": "https://github.com/zbateson/mb-wrapper/tree/2.0.0"
  12749. },
  12750. "funding": [
  12751. {
  12752. "url": "https://github.com/zbateson",
  12753. "type": "github"
  12754. }
  12755. ],
  12756. "time": "2024-03-20T01:38:07+00:00"
  12757. },
  12758. {
  12759. "name": "zbateson/stream-decorators",
  12760. "version": "2.1.1",
  12761. "source": {
  12762. "type": "git",
  12763. "url": "https://github.com/zbateson/stream-decorators.git",
  12764. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5"
  12765. },
  12766. "dist": {
  12767. "type": "zip",
  12768. "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  12769. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  12770. "shasum": ""
  12771. },
  12772. "require": {
  12773. "guzzlehttp/psr7": "^2.5",
  12774. "php": ">=8.0",
  12775. "zbateson/mb-wrapper": "^2.0"
  12776. },
  12777. "require-dev": {
  12778. "friendsofphp/php-cs-fixer": "*",
  12779. "phpstan/phpstan": "*",
  12780. "phpunit/phpunit": "^9.6|^10.0"
  12781. },
  12782. "type": "library",
  12783. "autoload": {
  12784. "psr-4": {
  12785. "ZBateson\\StreamDecorators\\": "src/"
  12786. }
  12787. },
  12788. "notification-url": "https://packagist.org/downloads/",
  12789. "license": [
  12790. "BSD-2-Clause"
  12791. ],
  12792. "authors": [
  12793. {
  12794. "name": "Zaahid Bateson"
  12795. }
  12796. ],
  12797. "description": "PHP psr7 stream decorators for mime message part streams",
  12798. "keywords": [
  12799. "base64",
  12800. "charset",
  12801. "decorators",
  12802. "mail",
  12803. "mime",
  12804. "psr7",
  12805. "quoted-printable",
  12806. "stream",
  12807. "uuencode"
  12808. ],
  12809. "support": {
  12810. "issues": "https://github.com/zbateson/stream-decorators/issues",
  12811. "source": "https://github.com/zbateson/stream-decorators/tree/2.1.1"
  12812. },
  12813. "funding": [
  12814. {
  12815. "url": "https://github.com/zbateson",
  12816. "type": "github"
  12817. }
  12818. ],
  12819. "time": "2024-04-29T21:42:39+00:00"
  12820. }
  12821. ],
  12822. "aliases": [],
  12823. "minimum-stability": "stable",
  12824. "stability-flags": [],
  12825. "prefer-stable": true,
  12826. "prefer-lowest": false,
  12827. "platform": {
  12828. "php": "^8.2",
  12829. "ext-bcmath": "*",
  12830. "ext-intl": "*"
  12831. },
  12832. "platform-dev": [],
  12833. "plugin-api-version": "2.6.0"
  12834. }