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 493KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643136441364513646136471364813649
  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": "370f1def076669e74e94cb2c1bf9c31f",
  8. "packages": [
  9. {
  10. "name": "akaunting/laravel-money",
  11. "version": "5.2.2",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/akaunting/laravel-money.git",
  15. "reference": "d99a9e8e576cac40668d0a5afaf7ea153590aff9"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/akaunting/laravel-money/zipball/d99a9e8e576cac40668d0a5afaf7ea153590aff9",
  20. "reference": "d99a9e8e576cac40668d0a5afaf7ea153590aff9",
  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.2"
  75. },
  76. "time": "2024-09-25T10:06:11+00:00"
  77. },
  78. {
  79. "name": "andrewdwallo/filament-companies",
  80. "version": "v4.2.2",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "52cbc988e28d1d78db9e374f3f47e91f3bfd5252"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/52cbc988e28d1d78db9e374f3f47e91f3bfd5252",
  89. "reference": "52cbc988e28d1d78db9e374f3f47e91f3bfd5252",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^3.2.29",
  95. "illuminate/console": "^11.0|^12.0",
  96. "illuminate/contracts": "^11.0|^12.0",
  97. "illuminate/support": "^11.0|^12.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|^10.0",
  108. "phpunit/phpunit": "^10.5|^11.5.3"
  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.2.2"
  154. },
  155. "time": "2025-05-08T03:02:08+00:00"
  156. },
  157. {
  158. "name": "andrewdwallo/filament-selectify",
  159. "version": "v2.0.9",
  160. "source": {
  161. "type": "git",
  162. "url": "https://github.com/andrewdwallo/filament-selectify.git",
  163. "reference": "2c01aae4f9ef9910b8746805ebd3ee6801aad57d"
  164. },
  165. "dist": {
  166. "type": "zip",
  167. "url": "https://api.github.com/repos/andrewdwallo/filament-selectify/zipball/2c01aae4f9ef9910b8746805ebd3ee6801aad57d",
  168. "reference": "2c01aae4f9ef9910b8746805ebd3ee6801aad57d",
  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.9"
  218. },
  219. "time": "2024-09-10T00:21:38+00:00"
  220. },
  221. {
  222. "name": "andrewdwallo/transmatic",
  223. "version": "v1.2.0",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/andrewdwallo/transmatic.git",
  227. "reference": "b70c5a5ed58e6ed951651cb4ea00357e53c1748d"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/andrewdwallo/transmatic/zipball/b70c5a5ed58e6ed951651cb4ea00357e53c1748d",
  232. "reference": "b70c5a5ed58e6ed951651cb4ea00357e53c1748d",
  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|^12.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|^10.0",
  248. "pestphp/pest": "^2.20|^3.0",
  249. "pestphp/pest-plugin-arch": "^2.0|^3.0",
  250. "pestphp/pest-plugin-laravel": "^2.0|^3.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. "aliases": {
  260. "Transmatic": "Wallo\\Transmatic\\Facades\\Transmatic"
  261. },
  262. "providers": [
  263. "Wallo\\Transmatic\\TransmaticServiceProvider"
  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.2.0"
  300. },
  301. "time": "2025-03-02T00:21:46+00:00"
  302. },
  303. {
  304. "name": "anourvalar/eloquent-serialize",
  305. "version": "1.3.3",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  309. "reference": "2f05023f1e465a91dc4f08483e6710325641a444"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/2f05023f1e465a91dc4f08483e6710325641a444",
  314. "reference": "2f05023f1e465a91dc4f08483e6710325641a444",
  315. "shasum": ""
  316. },
  317. "require": {
  318. "laravel/framework": "^8.0|^9.0|^10.0|^11.0|^12.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|^10.0",
  325. "phpstan/phpstan": "^2.0",
  326. "phpunit/phpunit": "^9.5|^10.5|^11.0",
  327. "psalm/plugin-laravel": "^2.8|^3.0",
  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.3.3"
  366. },
  367. "time": "2025-05-28T17:07:28+00:00"
  368. },
  369. {
  370. "name": "awcodes/filament-table-repeater",
  371. "version": "v3.1.4",
  372. "source": {
  373. "type": "git",
  374. "url": "https://github.com/awcodes/filament-table-repeater.git",
  375. "reference": "275de32e2123a2f7e586404352ee4c794f019a09"
  376. },
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://api.github.com/repos/awcodes/filament-table-repeater/zipball/275de32e2123a2f7e586404352ee4c794f019a09",
  380. "reference": "275de32e2123a2f7e586404352ee4c794f019a09",
  381. "shasum": ""
  382. },
  383. "require": {
  384. "filament/forms": "^3.2.116",
  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.1.4"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://github.com/awcodes",
  439. "type": "github"
  440. }
  441. ],
  442. "time": "2025-05-15T15:46:52+00:00"
  443. },
  444. {
  445. "name": "aws/aws-crt-php",
  446. "version": "v1.2.7",
  447. "source": {
  448. "type": "git",
  449. "url": "https://github.com/awslabs/aws-crt-php.git",
  450. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  451. },
  452. "dist": {
  453. "type": "zip",
  454. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  455. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  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.7"
  495. },
  496. "time": "2024-10-18T22:15:13+00:00"
  497. },
  498. {
  499. "name": "aws/aws-sdk-php",
  500. "version": "3.344.0",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "787a8ec6301657d9cbdb389db4fa92243c68666a"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/787a8ec6301657d9cbdb389db4fa92243c68666a",
  509. "reference": "787a8ec6301657d9cbdb389db4fa92243c68666a",
  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": "^7.4.5",
  518. "guzzlehttp/promises": "^2.0",
  519. "guzzlehttp/psr7": "^2.4.5",
  520. "mtdowling/jmespath.php": "^2.8.0",
  521. "php": ">=8.1",
  522. "psr/http-message": "^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": "^2.7.8",
  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. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  536. "psr/cache": "^2.0 || ^3.0",
  537. "psr/simple-cache": "^2.0 || ^3.0",
  538. "sebastian/comparator": "^1.2.3 || ^4.0 || ^5.0",
  539. "symfony/filesystem": "^v6.4.0 || ^v7.1.0",
  540. "yoast/phpunit-polyfills": "^2.0"
  541. },
  542. "suggest": {
  543. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  544. "doctrine/cache": "To use the DoctrineCacheAdapter",
  545. "ext-curl": "To send requests using cURL",
  546. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  547. "ext-sockets": "To use client-side monitoring"
  548. },
  549. "type": "library",
  550. "extra": {
  551. "branch-alias": {
  552. "dev-master": "3.0-dev"
  553. }
  554. },
  555. "autoload": {
  556. "files": [
  557. "src/functions.php"
  558. ],
  559. "psr-4": {
  560. "Aws\\": "src/"
  561. },
  562. "exclude-from-classmap": [
  563. "src/data/"
  564. ]
  565. },
  566. "notification-url": "https://packagist.org/downloads/",
  567. "license": [
  568. "Apache-2.0"
  569. ],
  570. "authors": [
  571. {
  572. "name": "Amazon Web Services",
  573. "homepage": "http://aws.amazon.com"
  574. }
  575. ],
  576. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  577. "homepage": "http://aws.amazon.com/sdkforphp",
  578. "keywords": [
  579. "amazon",
  580. "aws",
  581. "cloud",
  582. "dynamodb",
  583. "ec2",
  584. "glacier",
  585. "s3",
  586. "sdk"
  587. ],
  588. "support": {
  589. "forum": "https://github.com/aws/aws-sdk-php/discussions",
  590. "issues": "https://github.com/aws/aws-sdk-php/issues",
  591. "source": "https://github.com/aws/aws-sdk-php/tree/3.344.0"
  592. },
  593. "time": "2025-06-04T18:36:41+00:00"
  594. },
  595. {
  596. "name": "aws/aws-sdk-php-laravel",
  597. "version": "3.10.0",
  598. "source": {
  599. "type": "git",
  600. "url": "https://github.com/aws/aws-sdk-php-laravel.git",
  601. "reference": "c1477b1efd43a61238090c0e8f1ede979573dd4b"
  602. },
  603. "dist": {
  604. "type": "zip",
  605. "url": "https://api.github.com/repos/aws/aws-sdk-php-laravel/zipball/c1477b1efd43a61238090c0e8f1ede979573dd4b",
  606. "reference": "c1477b1efd43a61238090c0e8f1ede979573dd4b",
  607. "shasum": ""
  608. },
  609. "require": {
  610. "aws/aws-sdk-php": "^3.338.0",
  611. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  612. "php": ">=8.1"
  613. },
  614. "require-dev": {
  615. "phpunit/phpunit": "^8.0 || ^9.0",
  616. "vlucas/phpdotenv": "^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0",
  617. "yoast/phpunit-polyfills": "^1.0"
  618. },
  619. "suggest": {
  620. "laravel/framework": "To test the Laravel bindings",
  621. "laravel/lumen-framework": "To test the Lumen bindings"
  622. },
  623. "type": "library",
  624. "extra": {
  625. "laravel": {
  626. "aliases": {
  627. "AWS": "Aws\\Laravel\\AwsFacade"
  628. },
  629. "providers": [
  630. "Aws\\Laravel\\AwsServiceProvider"
  631. ]
  632. }
  633. },
  634. "autoload": {
  635. "psr-4": {
  636. "Aws\\Laravel\\": "src/"
  637. }
  638. },
  639. "notification-url": "https://packagist.org/downloads/",
  640. "license": [
  641. "Apache-2.0"
  642. ],
  643. "authors": [
  644. {
  645. "name": "Amazon Web Services",
  646. "homepage": "http://aws.amazon.com"
  647. }
  648. ],
  649. "description": "A simple Laravel 6/7/8/9/10/11/12 service provider for including the AWS SDK for PHP.",
  650. "homepage": "https://aws.amazon.com/sdk-for-php/",
  651. "keywords": [
  652. "amazon",
  653. "aws",
  654. "dynamodb",
  655. "ec2",
  656. "laravel",
  657. "laravel 10",
  658. "laravel 11",
  659. "laravel 12",
  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.10.0"
  670. },
  671. "time": "2025-02-26T22:25:56+00:00"
  672. },
  673. {
  674. "name": "barryvdh/laravel-snappy",
  675. "version": "v1.0.4",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/barryvdh/laravel-snappy.git",
  679. "reference": "5b8668e4a54be630973fd309b4cb1abe75a8afbb"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/5b8668e4a54be630973fd309b4cb1abe75a8afbb",
  684. "reference": "5b8668e4a54be630973fd309b4cb1abe75a8afbb",
  685. "shasum": ""
  686. },
  687. "require": {
  688. "illuminate/filesystem": "^9|^10|^11|^12",
  689. "illuminate/support": "^9|^10|^11|^12",
  690. "knplabs/knp-snappy": "^1.4.4",
  691. "php": "^8.1"
  692. },
  693. "require-dev": {
  694. "orchestra/testbench": "^7|^8|^9|^10"
  695. },
  696. "type": "library",
  697. "extra": {
  698. "laravel": {
  699. "aliases": {
  700. "PDF": "Barryvdh\\Snappy\\Facades\\SnappyPdf",
  701. "SnappyImage": "Barryvdh\\Snappy\\Facades\\SnappyImage"
  702. },
  703. "providers": [
  704. "Barryvdh\\Snappy\\ServiceProvider"
  705. ]
  706. },
  707. "branch-alias": {
  708. "dev-master": "1.0-dev"
  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.4"
  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": "2025-02-24T15:20:06+00:00"
  750. },
  751. {
  752. "name": "blade-ui-kit/blade-heroicons",
  753. "version": "2.6.0",
  754. "source": {
  755. "type": "git",
  756. "url": "https://github.com/driesvints/blade-heroicons.git",
  757. "reference": "4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19"
  758. },
  759. "dist": {
  760. "type": "zip",
  761. "url": "https://api.github.com/repos/driesvints/blade-heroicons/zipball/4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19",
  762. "reference": "4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19",
  763. "shasum": ""
  764. },
  765. "require": {
  766. "blade-ui-kit/blade-icons": "^1.6",
  767. "illuminate/support": "^9.0|^10.0|^11.0|^12.0",
  768. "php": "^8.0"
  769. },
  770. "require-dev": {
  771. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  772. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  773. },
  774. "type": "library",
  775. "extra": {
  776. "laravel": {
  777. "providers": [
  778. "BladeUI\\Heroicons\\BladeHeroiconsServiceProvider"
  779. ]
  780. }
  781. },
  782. "autoload": {
  783. "psr-4": {
  784. "BladeUI\\Heroicons\\": "src"
  785. }
  786. },
  787. "notification-url": "https://packagist.org/downloads/",
  788. "license": [
  789. "MIT"
  790. ],
  791. "authors": [
  792. {
  793. "name": "Dries Vints",
  794. "homepage": "https://driesvints.com"
  795. }
  796. ],
  797. "description": "A package to easily make use of Heroicons in your Laravel Blade views.",
  798. "homepage": "https://github.com/blade-ui-kit/blade-heroicons",
  799. "keywords": [
  800. "Heroicons",
  801. "blade",
  802. "laravel"
  803. ],
  804. "support": {
  805. "issues": "https://github.com/driesvints/blade-heroicons/issues",
  806. "source": "https://github.com/driesvints/blade-heroicons/tree/2.6.0"
  807. },
  808. "funding": [
  809. {
  810. "url": "https://github.com/sponsors/driesvints",
  811. "type": "github"
  812. },
  813. {
  814. "url": "https://www.paypal.com/paypalme/driesvints",
  815. "type": "paypal"
  816. }
  817. ],
  818. "time": "2025-02-13T20:53:33+00:00"
  819. },
  820. {
  821. "name": "blade-ui-kit/blade-icons",
  822. "version": "1.8.0",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/driesvints/blade-icons.git",
  826. "reference": "7b743f27476acb2ed04cb518213d78abe096e814"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/driesvints/blade-icons/zipball/7b743f27476acb2ed04cb518213d78abe096e814",
  831. "reference": "7b743f27476acb2ed04cb518213d78abe096e814",
  832. "shasum": ""
  833. },
  834. "require": {
  835. "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0|^12.0",
  836. "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0|^12.0",
  837. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  838. "illuminate/view": "^8.0|^9.0|^10.0|^11.0|^12.0",
  839. "php": "^7.4|^8.0",
  840. "symfony/console": "^5.3|^6.0|^7.0",
  841. "symfony/finder": "^5.3|^6.0|^7.0"
  842. },
  843. "require-dev": {
  844. "mockery/mockery": "^1.5.1",
  845. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0|^10.0",
  846. "phpunit/phpunit": "^9.0|^10.5|^11.0"
  847. },
  848. "bin": [
  849. "bin/blade-icons-generate"
  850. ],
  851. "type": "library",
  852. "extra": {
  853. "laravel": {
  854. "providers": [
  855. "BladeUI\\Icons\\BladeIconsServiceProvider"
  856. ]
  857. }
  858. },
  859. "autoload": {
  860. "files": [
  861. "src/helpers.php"
  862. ],
  863. "psr-4": {
  864. "BladeUI\\Icons\\": "src"
  865. }
  866. },
  867. "notification-url": "https://packagist.org/downloads/",
  868. "license": [
  869. "MIT"
  870. ],
  871. "authors": [
  872. {
  873. "name": "Dries Vints",
  874. "homepage": "https://driesvints.com"
  875. }
  876. ],
  877. "description": "A package to easily make use of icons in your Laravel Blade views.",
  878. "homepage": "https://github.com/blade-ui-kit/blade-icons",
  879. "keywords": [
  880. "blade",
  881. "icons",
  882. "laravel",
  883. "svg"
  884. ],
  885. "support": {
  886. "issues": "https://github.com/blade-ui-kit/blade-icons/issues",
  887. "source": "https://github.com/blade-ui-kit/blade-icons"
  888. },
  889. "funding": [
  890. {
  891. "url": "https://github.com/sponsors/driesvints",
  892. "type": "github"
  893. },
  894. {
  895. "url": "https://www.paypal.com/paypalme/driesvints",
  896. "type": "paypal"
  897. }
  898. ],
  899. "time": "2025-02-13T20:35:06+00:00"
  900. },
  901. {
  902. "name": "brick/math",
  903. "version": "0.12.3",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/brick/math.git",
  907. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/brick/math/zipball/866551da34e9a618e64a819ee1e01c20d8a588ba",
  912. "reference": "866551da34e9a618e64a819ee1e01c20d8a588ba",
  913. "shasum": ""
  914. },
  915. "require": {
  916. "php": "^8.1"
  917. },
  918. "require-dev": {
  919. "php-coveralls/php-coveralls": "^2.2",
  920. "phpunit/phpunit": "^10.1",
  921. "vimeo/psalm": "6.8.8"
  922. },
  923. "type": "library",
  924. "autoload": {
  925. "psr-4": {
  926. "Brick\\Math\\": "src/"
  927. }
  928. },
  929. "notification-url": "https://packagist.org/downloads/",
  930. "license": [
  931. "MIT"
  932. ],
  933. "description": "Arbitrary-precision arithmetic library",
  934. "keywords": [
  935. "Arbitrary-precision",
  936. "BigInteger",
  937. "BigRational",
  938. "arithmetic",
  939. "bigdecimal",
  940. "bignum",
  941. "bignumber",
  942. "brick",
  943. "decimal",
  944. "integer",
  945. "math",
  946. "mathematics",
  947. "rational"
  948. ],
  949. "support": {
  950. "issues": "https://github.com/brick/math/issues",
  951. "source": "https://github.com/brick/math/tree/0.12.3"
  952. },
  953. "funding": [
  954. {
  955. "url": "https://github.com/BenMorel",
  956. "type": "github"
  957. }
  958. ],
  959. "time": "2025-02-28T13:11:00+00:00"
  960. },
  961. {
  962. "name": "carbonphp/carbon-doctrine-types",
  963. "version": "3.2.0",
  964. "source": {
  965. "type": "git",
  966. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  967. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  968. },
  969. "dist": {
  970. "type": "zip",
  971. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  972. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  973. "shasum": ""
  974. },
  975. "require": {
  976. "php": "^8.1"
  977. },
  978. "conflict": {
  979. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  980. },
  981. "require-dev": {
  982. "doctrine/dbal": "^4.0.0",
  983. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  984. "phpunit/phpunit": "^10.3"
  985. },
  986. "type": "library",
  987. "autoload": {
  988. "psr-4": {
  989. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  990. }
  991. },
  992. "notification-url": "https://packagist.org/downloads/",
  993. "license": [
  994. "MIT"
  995. ],
  996. "authors": [
  997. {
  998. "name": "KyleKatarn",
  999. "email": "kylekatarnls@gmail.com"
  1000. }
  1001. ],
  1002. "description": "Types to use Carbon in Doctrine",
  1003. "keywords": [
  1004. "carbon",
  1005. "date",
  1006. "datetime",
  1007. "doctrine",
  1008. "time"
  1009. ],
  1010. "support": {
  1011. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  1012. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  1013. },
  1014. "funding": [
  1015. {
  1016. "url": "https://github.com/kylekatarnls",
  1017. "type": "github"
  1018. },
  1019. {
  1020. "url": "https://opencollective.com/Carbon",
  1021. "type": "open_collective"
  1022. },
  1023. {
  1024. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  1025. "type": "tidelift"
  1026. }
  1027. ],
  1028. "time": "2024-02-09T16:56:22+00:00"
  1029. },
  1030. {
  1031. "name": "codewithdennis/filament-simple-alert",
  1032. "version": "v3.0.18",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/CodeWithDennis/filament-simple-alert.git",
  1036. "reference": "50bb18626b8b6c3b9780a778e9781f726574e1e7"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/CodeWithDennis/filament-simple-alert/zipball/50bb18626b8b6c3b9780a778e9781f726574e1e7",
  1041. "reference": "50bb18626b8b6c3b9780a778e9781f726574e1e7",
  1042. "shasum": ""
  1043. },
  1044. "require": {
  1045. "filament/filament": "^3.0",
  1046. "php": "^8.1",
  1047. "spatie/laravel-package-tools": "^1.15.0"
  1048. },
  1049. "require-dev": {
  1050. "laravel/pint": "^1.16",
  1051. "nunomaduro/collision": "^7.9",
  1052. "orchestra/testbench": "^8.0",
  1053. "pestphp/pest": "^2.1",
  1054. "pestphp/pest-plugin-arch": "^2.0",
  1055. "pestphp/pest-plugin-laravel": "^2.0"
  1056. },
  1057. "type": "library",
  1058. "extra": {
  1059. "laravel": {
  1060. "aliases": {
  1061. "SimpleAlert": "CodeWithDennis\\SimpleAlert\\Facades\\SimpleAlert"
  1062. },
  1063. "providers": [
  1064. "CodeWithDennis\\SimpleAlert\\SimpleAlertServiceProvider"
  1065. ]
  1066. }
  1067. },
  1068. "autoload": {
  1069. "psr-4": {
  1070. "CodeWithDennis\\SimpleAlert\\": "src/",
  1071. "CodeWithDennis\\SimpleAlert\\Database\\Factories\\": "database/factories/"
  1072. }
  1073. },
  1074. "notification-url": "https://packagist.org/downloads/",
  1075. "license": [
  1076. "MIT"
  1077. ],
  1078. "authors": [
  1079. {
  1080. "name": "CodeWithDennis",
  1081. "role": "Developer"
  1082. }
  1083. ],
  1084. "description": "A plugin for adding straightforward alerts to your filament pages",
  1085. "homepage": "https://github.com/codewithdennis/filament-simple-alert",
  1086. "keywords": [
  1087. "CodeWithDennis",
  1088. "filament-simple-alert",
  1089. "laravel"
  1090. ],
  1091. "support": {
  1092. "issues": "https://github.com/codewithdennis/filament-simple-alert/issues",
  1093. "source": "https://github.com/codewithdennis/filament-simple-alert"
  1094. },
  1095. "funding": [
  1096. {
  1097. "url": "https://github.com/CodeWithDennis",
  1098. "type": "github"
  1099. }
  1100. ],
  1101. "time": "2025-02-10T09:29:26+00:00"
  1102. },
  1103. {
  1104. "name": "danharrin/date-format-converter",
  1105. "version": "v0.3.1",
  1106. "source": {
  1107. "type": "git",
  1108. "url": "https://github.com/danharrin/date-format-converter.git",
  1109. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e"
  1110. },
  1111. "dist": {
  1112. "type": "zip",
  1113. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1114. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1115. "shasum": ""
  1116. },
  1117. "require": {
  1118. "php": "^7.2|^8.0"
  1119. },
  1120. "type": "library",
  1121. "autoload": {
  1122. "files": [
  1123. "src/helpers.php",
  1124. "src/standards.php"
  1125. ],
  1126. "psr-4": {
  1127. "DanHarrin\\DateFormatConverter\\": "src/"
  1128. }
  1129. },
  1130. "notification-url": "https://packagist.org/downloads/",
  1131. "license": [
  1132. "MIT"
  1133. ],
  1134. "authors": [
  1135. {
  1136. "name": "Dan Harrin",
  1137. "email": "dan@danharrin.com"
  1138. }
  1139. ],
  1140. "description": "Convert token-based date formats between standards.",
  1141. "homepage": "https://github.com/danharrin/date-format-converter",
  1142. "support": {
  1143. "issues": "https://github.com/danharrin/date-format-converter/issues",
  1144. "source": "https://github.com/danharrin/date-format-converter"
  1145. },
  1146. "funding": [
  1147. {
  1148. "url": "https://github.com/danharrin",
  1149. "type": "github"
  1150. }
  1151. ],
  1152. "time": "2024-06-13T09:38:44+00:00"
  1153. },
  1154. {
  1155. "name": "danharrin/livewire-rate-limiting",
  1156. "version": "v2.1.0",
  1157. "source": {
  1158. "type": "git",
  1159. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  1160. "reference": "14dde653a9ae8f38af07a0ba4921dc046235e1a0"
  1161. },
  1162. "dist": {
  1163. "type": "zip",
  1164. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/14dde653a9ae8f38af07a0ba4921dc046235e1a0",
  1165. "reference": "14dde653a9ae8f38af07a0ba4921dc046235e1a0",
  1166. "shasum": ""
  1167. },
  1168. "require": {
  1169. "illuminate/support": "^9.0|^10.0|^11.0|^12.0",
  1170. "php": "^8.0"
  1171. },
  1172. "require-dev": {
  1173. "livewire/livewire": "^3.0",
  1174. "livewire/volt": "^1.3",
  1175. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  1176. "phpunit/phpunit": "^9.0|^10.0|^11.5.3"
  1177. },
  1178. "type": "library",
  1179. "autoload": {
  1180. "psr-4": {
  1181. "DanHarrin\\LivewireRateLimiting\\": "src"
  1182. }
  1183. },
  1184. "notification-url": "https://packagist.org/downloads/",
  1185. "license": [
  1186. "MIT"
  1187. ],
  1188. "authors": [
  1189. {
  1190. "name": "Dan Harrin",
  1191. "email": "dan@danharrin.com"
  1192. }
  1193. ],
  1194. "description": "Apply rate limiters to Laravel Livewire actions.",
  1195. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  1196. "support": {
  1197. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  1198. "source": "https://github.com/danharrin/livewire-rate-limiting"
  1199. },
  1200. "funding": [
  1201. {
  1202. "url": "https://github.com/danharrin",
  1203. "type": "github"
  1204. }
  1205. ],
  1206. "time": "2025-02-21T08:52:11+00:00"
  1207. },
  1208. {
  1209. "name": "dflydev/dot-access-data",
  1210. "version": "v3.0.3",
  1211. "source": {
  1212. "type": "git",
  1213. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1214. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1215. },
  1216. "dist": {
  1217. "type": "zip",
  1218. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1219. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1220. "shasum": ""
  1221. },
  1222. "require": {
  1223. "php": "^7.1 || ^8.0"
  1224. },
  1225. "require-dev": {
  1226. "phpstan/phpstan": "^0.12.42",
  1227. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1228. "scrutinizer/ocular": "1.6.0",
  1229. "squizlabs/php_codesniffer": "^3.5",
  1230. "vimeo/psalm": "^4.0.0"
  1231. },
  1232. "type": "library",
  1233. "extra": {
  1234. "branch-alias": {
  1235. "dev-main": "3.x-dev"
  1236. }
  1237. },
  1238. "autoload": {
  1239. "psr-4": {
  1240. "Dflydev\\DotAccessData\\": "src/"
  1241. }
  1242. },
  1243. "notification-url": "https://packagist.org/downloads/",
  1244. "license": [
  1245. "MIT"
  1246. ],
  1247. "authors": [
  1248. {
  1249. "name": "Dragonfly Development Inc.",
  1250. "email": "info@dflydev.com",
  1251. "homepage": "http://dflydev.com"
  1252. },
  1253. {
  1254. "name": "Beau Simensen",
  1255. "email": "beau@dflydev.com",
  1256. "homepage": "http://beausimensen.com"
  1257. },
  1258. {
  1259. "name": "Carlos Frutos",
  1260. "email": "carlos@kiwing.it",
  1261. "homepage": "https://github.com/cfrutos"
  1262. },
  1263. {
  1264. "name": "Colin O'Dell",
  1265. "email": "colinodell@gmail.com",
  1266. "homepage": "https://www.colinodell.com"
  1267. }
  1268. ],
  1269. "description": "Given a deep data structure, access data by dot notation.",
  1270. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1271. "keywords": [
  1272. "access",
  1273. "data",
  1274. "dot",
  1275. "notation"
  1276. ],
  1277. "support": {
  1278. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1279. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1280. },
  1281. "time": "2024-07-08T12:26:09+00:00"
  1282. },
  1283. {
  1284. "name": "doctrine/dbal",
  1285. "version": "4.2.3",
  1286. "source": {
  1287. "type": "git",
  1288. "url": "https://github.com/doctrine/dbal.git",
  1289. "reference": "33d2d7fe1269b2301640c44cf2896ea607b30e3e"
  1290. },
  1291. "dist": {
  1292. "type": "zip",
  1293. "url": "https://api.github.com/repos/doctrine/dbal/zipball/33d2d7fe1269b2301640c44cf2896ea607b30e3e",
  1294. "reference": "33d2d7fe1269b2301640c44cf2896ea607b30e3e",
  1295. "shasum": ""
  1296. },
  1297. "require": {
  1298. "doctrine/deprecations": "^0.5.3|^1",
  1299. "php": "^8.1",
  1300. "psr/cache": "^1|^2|^3",
  1301. "psr/log": "^1|^2|^3"
  1302. },
  1303. "require-dev": {
  1304. "doctrine/coding-standard": "12.0.0",
  1305. "fig/log-test": "^1",
  1306. "jetbrains/phpstorm-stubs": "2023.2",
  1307. "phpstan/phpstan": "2.1.1",
  1308. "phpstan/phpstan-phpunit": "2.0.3",
  1309. "phpstan/phpstan-strict-rules": "^2",
  1310. "phpunit/phpunit": "10.5.39",
  1311. "slevomat/coding-standard": "8.13.1",
  1312. "squizlabs/php_codesniffer": "3.10.2",
  1313. "symfony/cache": "^6.3.8|^7.0",
  1314. "symfony/console": "^5.4|^6.3|^7.0"
  1315. },
  1316. "suggest": {
  1317. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1318. },
  1319. "type": "library",
  1320. "autoload": {
  1321. "psr-4": {
  1322. "Doctrine\\DBAL\\": "src"
  1323. }
  1324. },
  1325. "notification-url": "https://packagist.org/downloads/",
  1326. "license": [
  1327. "MIT"
  1328. ],
  1329. "authors": [
  1330. {
  1331. "name": "Guilherme Blanco",
  1332. "email": "guilhermeblanco@gmail.com"
  1333. },
  1334. {
  1335. "name": "Roman Borschel",
  1336. "email": "roman@code-factory.org"
  1337. },
  1338. {
  1339. "name": "Benjamin Eberlei",
  1340. "email": "kontakt@beberlei.de"
  1341. },
  1342. {
  1343. "name": "Jonathan Wage",
  1344. "email": "jonwage@gmail.com"
  1345. }
  1346. ],
  1347. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1348. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1349. "keywords": [
  1350. "abstraction",
  1351. "database",
  1352. "db2",
  1353. "dbal",
  1354. "mariadb",
  1355. "mssql",
  1356. "mysql",
  1357. "oci8",
  1358. "oracle",
  1359. "pdo",
  1360. "pgsql",
  1361. "postgresql",
  1362. "queryobject",
  1363. "sasql",
  1364. "sql",
  1365. "sqlite",
  1366. "sqlserver",
  1367. "sqlsrv"
  1368. ],
  1369. "support": {
  1370. "issues": "https://github.com/doctrine/dbal/issues",
  1371. "source": "https://github.com/doctrine/dbal/tree/4.2.3"
  1372. },
  1373. "funding": [
  1374. {
  1375. "url": "https://www.doctrine-project.org/sponsorship.html",
  1376. "type": "custom"
  1377. },
  1378. {
  1379. "url": "https://www.patreon.com/phpdoctrine",
  1380. "type": "patreon"
  1381. },
  1382. {
  1383. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1384. "type": "tidelift"
  1385. }
  1386. ],
  1387. "time": "2025-03-07T18:29:05+00:00"
  1388. },
  1389. {
  1390. "name": "doctrine/deprecations",
  1391. "version": "1.1.5",
  1392. "source": {
  1393. "type": "git",
  1394. "url": "https://github.com/doctrine/deprecations.git",
  1395. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  1396. },
  1397. "dist": {
  1398. "type": "zip",
  1399. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1400. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  1401. "shasum": ""
  1402. },
  1403. "require": {
  1404. "php": "^7.1 || ^8.0"
  1405. },
  1406. "conflict": {
  1407. "phpunit/phpunit": "<=7.5 || >=13"
  1408. },
  1409. "require-dev": {
  1410. "doctrine/coding-standard": "^9 || ^12 || ^13",
  1411. "phpstan/phpstan": "1.4.10 || 2.1.11",
  1412. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1413. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  1414. "psr/log": "^1 || ^2 || ^3"
  1415. },
  1416. "suggest": {
  1417. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1418. },
  1419. "type": "library",
  1420. "autoload": {
  1421. "psr-4": {
  1422. "Doctrine\\Deprecations\\": "src"
  1423. }
  1424. },
  1425. "notification-url": "https://packagist.org/downloads/",
  1426. "license": [
  1427. "MIT"
  1428. ],
  1429. "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.",
  1430. "homepage": "https://www.doctrine-project.org/",
  1431. "support": {
  1432. "issues": "https://github.com/doctrine/deprecations/issues",
  1433. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  1434. },
  1435. "time": "2025-04-07T20:06:18+00:00"
  1436. },
  1437. {
  1438. "name": "doctrine/inflector",
  1439. "version": "2.0.10",
  1440. "source": {
  1441. "type": "git",
  1442. "url": "https://github.com/doctrine/inflector.git",
  1443. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1444. },
  1445. "dist": {
  1446. "type": "zip",
  1447. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1448. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1449. "shasum": ""
  1450. },
  1451. "require": {
  1452. "php": "^7.2 || ^8.0"
  1453. },
  1454. "require-dev": {
  1455. "doctrine/coding-standard": "^11.0",
  1456. "phpstan/phpstan": "^1.8",
  1457. "phpstan/phpstan-phpunit": "^1.1",
  1458. "phpstan/phpstan-strict-rules": "^1.3",
  1459. "phpunit/phpunit": "^8.5 || ^9.5",
  1460. "vimeo/psalm": "^4.25 || ^5.4"
  1461. },
  1462. "type": "library",
  1463. "autoload": {
  1464. "psr-4": {
  1465. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1466. }
  1467. },
  1468. "notification-url": "https://packagist.org/downloads/",
  1469. "license": [
  1470. "MIT"
  1471. ],
  1472. "authors": [
  1473. {
  1474. "name": "Guilherme Blanco",
  1475. "email": "guilhermeblanco@gmail.com"
  1476. },
  1477. {
  1478. "name": "Roman Borschel",
  1479. "email": "roman@code-factory.org"
  1480. },
  1481. {
  1482. "name": "Benjamin Eberlei",
  1483. "email": "kontakt@beberlei.de"
  1484. },
  1485. {
  1486. "name": "Jonathan Wage",
  1487. "email": "jonwage@gmail.com"
  1488. },
  1489. {
  1490. "name": "Johannes Schmitt",
  1491. "email": "schmittjoh@gmail.com"
  1492. }
  1493. ],
  1494. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1495. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1496. "keywords": [
  1497. "inflection",
  1498. "inflector",
  1499. "lowercase",
  1500. "manipulation",
  1501. "php",
  1502. "plural",
  1503. "singular",
  1504. "strings",
  1505. "uppercase",
  1506. "words"
  1507. ],
  1508. "support": {
  1509. "issues": "https://github.com/doctrine/inflector/issues",
  1510. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1511. },
  1512. "funding": [
  1513. {
  1514. "url": "https://www.doctrine-project.org/sponsorship.html",
  1515. "type": "custom"
  1516. },
  1517. {
  1518. "url": "https://www.patreon.com/phpdoctrine",
  1519. "type": "patreon"
  1520. },
  1521. {
  1522. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1523. "type": "tidelift"
  1524. }
  1525. ],
  1526. "time": "2024-02-18T20:23:39+00:00"
  1527. },
  1528. {
  1529. "name": "doctrine/lexer",
  1530. "version": "3.0.1",
  1531. "source": {
  1532. "type": "git",
  1533. "url": "https://github.com/doctrine/lexer.git",
  1534. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1535. },
  1536. "dist": {
  1537. "type": "zip",
  1538. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1539. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1540. "shasum": ""
  1541. },
  1542. "require": {
  1543. "php": "^8.1"
  1544. },
  1545. "require-dev": {
  1546. "doctrine/coding-standard": "^12",
  1547. "phpstan/phpstan": "^1.10",
  1548. "phpunit/phpunit": "^10.5",
  1549. "psalm/plugin-phpunit": "^0.18.3",
  1550. "vimeo/psalm": "^5.21"
  1551. },
  1552. "type": "library",
  1553. "autoload": {
  1554. "psr-4": {
  1555. "Doctrine\\Common\\Lexer\\": "src"
  1556. }
  1557. },
  1558. "notification-url": "https://packagist.org/downloads/",
  1559. "license": [
  1560. "MIT"
  1561. ],
  1562. "authors": [
  1563. {
  1564. "name": "Guilherme Blanco",
  1565. "email": "guilhermeblanco@gmail.com"
  1566. },
  1567. {
  1568. "name": "Roman Borschel",
  1569. "email": "roman@code-factory.org"
  1570. },
  1571. {
  1572. "name": "Johannes Schmitt",
  1573. "email": "schmittjoh@gmail.com"
  1574. }
  1575. ],
  1576. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1577. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1578. "keywords": [
  1579. "annotations",
  1580. "docblock",
  1581. "lexer",
  1582. "parser",
  1583. "php"
  1584. ],
  1585. "support": {
  1586. "issues": "https://github.com/doctrine/lexer/issues",
  1587. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1588. },
  1589. "funding": [
  1590. {
  1591. "url": "https://www.doctrine-project.org/sponsorship.html",
  1592. "type": "custom"
  1593. },
  1594. {
  1595. "url": "https://www.patreon.com/phpdoctrine",
  1596. "type": "patreon"
  1597. },
  1598. {
  1599. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1600. "type": "tidelift"
  1601. }
  1602. ],
  1603. "time": "2024-02-05T11:56:58+00:00"
  1604. },
  1605. {
  1606. "name": "dragonmantank/cron-expression",
  1607. "version": "v3.4.0",
  1608. "source": {
  1609. "type": "git",
  1610. "url": "https://github.com/dragonmantank/cron-expression.git",
  1611. "reference": "8c784d071debd117328803d86b2097615b457500"
  1612. },
  1613. "dist": {
  1614. "type": "zip",
  1615. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  1616. "reference": "8c784d071debd117328803d86b2097615b457500",
  1617. "shasum": ""
  1618. },
  1619. "require": {
  1620. "php": "^7.2|^8.0",
  1621. "webmozart/assert": "^1.0"
  1622. },
  1623. "replace": {
  1624. "mtdowling/cron-expression": "^1.0"
  1625. },
  1626. "require-dev": {
  1627. "phpstan/extension-installer": "^1.0",
  1628. "phpstan/phpstan": "^1.0",
  1629. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1630. },
  1631. "type": "library",
  1632. "extra": {
  1633. "branch-alias": {
  1634. "dev-master": "3.x-dev"
  1635. }
  1636. },
  1637. "autoload": {
  1638. "psr-4": {
  1639. "Cron\\": "src/Cron/"
  1640. }
  1641. },
  1642. "notification-url": "https://packagist.org/downloads/",
  1643. "license": [
  1644. "MIT"
  1645. ],
  1646. "authors": [
  1647. {
  1648. "name": "Chris Tankersley",
  1649. "email": "chris@ctankersley.com",
  1650. "homepage": "https://github.com/dragonmantank"
  1651. }
  1652. ],
  1653. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1654. "keywords": [
  1655. "cron",
  1656. "schedule"
  1657. ],
  1658. "support": {
  1659. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1660. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1661. },
  1662. "funding": [
  1663. {
  1664. "url": "https://github.com/dragonmantank",
  1665. "type": "github"
  1666. }
  1667. ],
  1668. "time": "2024-10-09T13:47:03+00:00"
  1669. },
  1670. {
  1671. "name": "egulias/email-validator",
  1672. "version": "4.0.4",
  1673. "source": {
  1674. "type": "git",
  1675. "url": "https://github.com/egulias/EmailValidator.git",
  1676. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1677. },
  1678. "dist": {
  1679. "type": "zip",
  1680. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1681. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1682. "shasum": ""
  1683. },
  1684. "require": {
  1685. "doctrine/lexer": "^2.0 || ^3.0",
  1686. "php": ">=8.1",
  1687. "symfony/polyfill-intl-idn": "^1.26"
  1688. },
  1689. "require-dev": {
  1690. "phpunit/phpunit": "^10.2",
  1691. "vimeo/psalm": "^5.12"
  1692. },
  1693. "suggest": {
  1694. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1695. },
  1696. "type": "library",
  1697. "extra": {
  1698. "branch-alias": {
  1699. "dev-master": "4.0.x-dev"
  1700. }
  1701. },
  1702. "autoload": {
  1703. "psr-4": {
  1704. "Egulias\\EmailValidator\\": "src"
  1705. }
  1706. },
  1707. "notification-url": "https://packagist.org/downloads/",
  1708. "license": [
  1709. "MIT"
  1710. ],
  1711. "authors": [
  1712. {
  1713. "name": "Eduardo Gulias Davis"
  1714. }
  1715. ],
  1716. "description": "A library for validating emails against several RFCs",
  1717. "homepage": "https://github.com/egulias/EmailValidator",
  1718. "keywords": [
  1719. "email",
  1720. "emailvalidation",
  1721. "emailvalidator",
  1722. "validation",
  1723. "validator"
  1724. ],
  1725. "support": {
  1726. "issues": "https://github.com/egulias/EmailValidator/issues",
  1727. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1728. },
  1729. "funding": [
  1730. {
  1731. "url": "https://github.com/egulias",
  1732. "type": "github"
  1733. }
  1734. ],
  1735. "time": "2025-03-06T22:45:56+00:00"
  1736. },
  1737. {
  1738. "name": "fakerphp/faker",
  1739. "version": "v1.24.1",
  1740. "source": {
  1741. "type": "git",
  1742. "url": "https://github.com/FakerPHP/Faker.git",
  1743. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  1744. },
  1745. "dist": {
  1746. "type": "zip",
  1747. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  1748. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  1749. "shasum": ""
  1750. },
  1751. "require": {
  1752. "php": "^7.4 || ^8.0",
  1753. "psr/container": "^1.0 || ^2.0",
  1754. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1755. },
  1756. "conflict": {
  1757. "fzaninotto/faker": "*"
  1758. },
  1759. "require-dev": {
  1760. "bamarni/composer-bin-plugin": "^1.4.1",
  1761. "doctrine/persistence": "^1.3 || ^2.0",
  1762. "ext-intl": "*",
  1763. "phpunit/phpunit": "^9.5.26",
  1764. "symfony/phpunit-bridge": "^5.4.16"
  1765. },
  1766. "suggest": {
  1767. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  1768. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  1769. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  1770. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  1771. "ext-mbstring": "Required for multibyte Unicode string functionality."
  1772. },
  1773. "type": "library",
  1774. "autoload": {
  1775. "psr-4": {
  1776. "Faker\\": "src/Faker/"
  1777. }
  1778. },
  1779. "notification-url": "https://packagist.org/downloads/",
  1780. "license": [
  1781. "MIT"
  1782. ],
  1783. "authors": [
  1784. {
  1785. "name": "François Zaninotto"
  1786. }
  1787. ],
  1788. "description": "Faker is a PHP library that generates fake data for you.",
  1789. "keywords": [
  1790. "data",
  1791. "faker",
  1792. "fixtures"
  1793. ],
  1794. "support": {
  1795. "issues": "https://github.com/FakerPHP/Faker/issues",
  1796. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  1797. },
  1798. "time": "2024-11-21T13:46:39+00:00"
  1799. },
  1800. {
  1801. "name": "filament/actions",
  1802. "version": "v3.3.20",
  1803. "source": {
  1804. "type": "git",
  1805. "url": "https://github.com/filamentphp/actions.git",
  1806. "reference": "151f776552ee10d70591c2649708bc4b0a7cba91"
  1807. },
  1808. "dist": {
  1809. "type": "zip",
  1810. "url": "https://api.github.com/repos/filamentphp/actions/zipball/151f776552ee10d70591c2649708bc4b0a7cba91",
  1811. "reference": "151f776552ee10d70591c2649708bc4b0a7cba91",
  1812. "shasum": ""
  1813. },
  1814. "require": {
  1815. "anourvalar/eloquent-serialize": "^1.2",
  1816. "filament/forms": "self.version",
  1817. "filament/infolists": "self.version",
  1818. "filament/notifications": "self.version",
  1819. "filament/support": "self.version",
  1820. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1821. "illuminate/database": "^10.45|^11.0|^12.0",
  1822. "illuminate/support": "^10.45|^11.0|^12.0",
  1823. "league/csv": "^9.16",
  1824. "openspout/openspout": "^4.23",
  1825. "php": "^8.1",
  1826. "spatie/laravel-package-tools": "^1.9"
  1827. },
  1828. "type": "library",
  1829. "extra": {
  1830. "laravel": {
  1831. "providers": [
  1832. "Filament\\Actions\\ActionsServiceProvider"
  1833. ]
  1834. }
  1835. },
  1836. "autoload": {
  1837. "psr-4": {
  1838. "Filament\\Actions\\": "src"
  1839. }
  1840. },
  1841. "notification-url": "https://packagist.org/downloads/",
  1842. "license": [
  1843. "MIT"
  1844. ],
  1845. "description": "Easily add beautiful action modals to any Livewire component.",
  1846. "homepage": "https://github.com/filamentphp/filament",
  1847. "support": {
  1848. "issues": "https://github.com/filamentphp/filament/issues",
  1849. "source": "https://github.com/filamentphp/filament"
  1850. },
  1851. "time": "2025-06-03T06:15:27+00:00"
  1852. },
  1853. {
  1854. "name": "filament/filament",
  1855. "version": "v3.3.20",
  1856. "source": {
  1857. "type": "git",
  1858. "url": "https://github.com/filamentphp/panels.git",
  1859. "reference": "94ee92244d2a64666fb8c1ea50cb7315ebceb63b"
  1860. },
  1861. "dist": {
  1862. "type": "zip",
  1863. "url": "https://api.github.com/repos/filamentphp/panels/zipball/94ee92244d2a64666fb8c1ea50cb7315ebceb63b",
  1864. "reference": "94ee92244d2a64666fb8c1ea50cb7315ebceb63b",
  1865. "shasum": ""
  1866. },
  1867. "require": {
  1868. "danharrin/livewire-rate-limiting": "^0.3|^1.0|^2.0",
  1869. "filament/actions": "self.version",
  1870. "filament/forms": "self.version",
  1871. "filament/infolists": "self.version",
  1872. "filament/notifications": "self.version",
  1873. "filament/support": "self.version",
  1874. "filament/tables": "self.version",
  1875. "filament/widgets": "self.version",
  1876. "illuminate/auth": "^10.45|^11.0|^12.0",
  1877. "illuminate/console": "^10.45|^11.0|^12.0",
  1878. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1879. "illuminate/cookie": "^10.45|^11.0|^12.0",
  1880. "illuminate/database": "^10.45|^11.0|^12.0",
  1881. "illuminate/http": "^10.45|^11.0|^12.0",
  1882. "illuminate/routing": "^10.45|^11.0|^12.0",
  1883. "illuminate/session": "^10.45|^11.0|^12.0",
  1884. "illuminate/support": "^10.45|^11.0|^12.0",
  1885. "illuminate/view": "^10.45|^11.0|^12.0",
  1886. "php": "^8.1",
  1887. "spatie/laravel-package-tools": "^1.9"
  1888. },
  1889. "type": "library",
  1890. "extra": {
  1891. "laravel": {
  1892. "providers": [
  1893. "Filament\\FilamentServiceProvider"
  1894. ]
  1895. }
  1896. },
  1897. "autoload": {
  1898. "files": [
  1899. "src/global_helpers.php",
  1900. "src/helpers.php"
  1901. ],
  1902. "psr-4": {
  1903. "Filament\\": "src"
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1911. "homepage": "https://github.com/filamentphp/filament",
  1912. "support": {
  1913. "issues": "https://github.com/filamentphp/filament/issues",
  1914. "source": "https://github.com/filamentphp/filament"
  1915. },
  1916. "time": "2025-05-27T18:46:23+00:00"
  1917. },
  1918. {
  1919. "name": "filament/forms",
  1920. "version": "v3.3.20",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/filamentphp/forms.git",
  1924. "reference": "d73cdda057a4f5bd409eab9573101e73edb404cc"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/filamentphp/forms/zipball/d73cdda057a4f5bd409eab9573101e73edb404cc",
  1929. "reference": "d73cdda057a4f5bd409eab9573101e73edb404cc",
  1930. "shasum": ""
  1931. },
  1932. "require": {
  1933. "danharrin/date-format-converter": "^0.3",
  1934. "filament/actions": "self.version",
  1935. "filament/support": "self.version",
  1936. "illuminate/console": "^10.45|^11.0|^12.0",
  1937. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1938. "illuminate/database": "^10.45|^11.0|^12.0",
  1939. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  1940. "illuminate/support": "^10.45|^11.0|^12.0",
  1941. "illuminate/validation": "^10.45|^11.0|^12.0",
  1942. "illuminate/view": "^10.45|^11.0|^12.0",
  1943. "php": "^8.1",
  1944. "spatie/laravel-package-tools": "^1.9"
  1945. },
  1946. "type": "library",
  1947. "extra": {
  1948. "laravel": {
  1949. "providers": [
  1950. "Filament\\Forms\\FormsServiceProvider"
  1951. ]
  1952. }
  1953. },
  1954. "autoload": {
  1955. "files": [
  1956. "src/helpers.php"
  1957. ],
  1958. "psr-4": {
  1959. "Filament\\Forms\\": "src"
  1960. }
  1961. },
  1962. "notification-url": "https://packagist.org/downloads/",
  1963. "license": [
  1964. "MIT"
  1965. ],
  1966. "description": "Easily add beautiful forms to any Livewire component.",
  1967. "homepage": "https://github.com/filamentphp/filament",
  1968. "support": {
  1969. "issues": "https://github.com/filamentphp/filament/issues",
  1970. "source": "https://github.com/filamentphp/filament"
  1971. },
  1972. "time": "2025-06-03T13:40:37+00:00"
  1973. },
  1974. {
  1975. "name": "filament/infolists",
  1976. "version": "v3.3.20",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/filamentphp/infolists.git",
  1980. "reference": "b54ff0fa89f654eca1c14edfd41a7e16ccb8165d"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/b54ff0fa89f654eca1c14edfd41a7e16ccb8165d",
  1985. "reference": "b54ff0fa89f654eca1c14edfd41a7e16ccb8165d",
  1986. "shasum": ""
  1987. },
  1988. "require": {
  1989. "filament/actions": "self.version",
  1990. "filament/support": "self.version",
  1991. "illuminate/console": "^10.45|^11.0|^12.0",
  1992. "illuminate/contracts": "^10.45|^11.0|^12.0",
  1993. "illuminate/database": "^10.45|^11.0|^12.0",
  1994. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  1995. "illuminate/support": "^10.45|^11.0|^12.0",
  1996. "illuminate/view": "^10.45|^11.0|^12.0",
  1997. "php": "^8.1",
  1998. "spatie/laravel-package-tools": "^1.9"
  1999. },
  2000. "type": "library",
  2001. "extra": {
  2002. "laravel": {
  2003. "providers": [
  2004. "Filament\\Infolists\\InfolistsServiceProvider"
  2005. ]
  2006. }
  2007. },
  2008. "autoload": {
  2009. "psr-4": {
  2010. "Filament\\Infolists\\": "src"
  2011. }
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  2018. "homepage": "https://github.com/filamentphp/filament",
  2019. "support": {
  2020. "issues": "https://github.com/filamentphp/filament/issues",
  2021. "source": "https://github.com/filamentphp/filament"
  2022. },
  2023. "time": "2025-06-02T09:43:23+00:00"
  2024. },
  2025. {
  2026. "name": "filament/notifications",
  2027. "version": "v3.3.20",
  2028. "source": {
  2029. "type": "git",
  2030. "url": "https://github.com/filamentphp/notifications.git",
  2031. "reference": "356f50e24798a6f06522bfa5123c6ffd054171d3"
  2032. },
  2033. "dist": {
  2034. "type": "zip",
  2035. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/356f50e24798a6f06522bfa5123c6ffd054171d3",
  2036. "reference": "356f50e24798a6f06522bfa5123c6ffd054171d3",
  2037. "shasum": ""
  2038. },
  2039. "require": {
  2040. "filament/actions": "self.version",
  2041. "filament/support": "self.version",
  2042. "illuminate/contracts": "^10.45|^11.0|^12.0",
  2043. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  2044. "illuminate/notifications": "^10.45|^11.0|^12.0",
  2045. "illuminate/support": "^10.45|^11.0|^12.0",
  2046. "php": "^8.1",
  2047. "spatie/laravel-package-tools": "^1.9"
  2048. },
  2049. "type": "library",
  2050. "extra": {
  2051. "laravel": {
  2052. "providers": [
  2053. "Filament\\Notifications\\NotificationsServiceProvider"
  2054. ]
  2055. }
  2056. },
  2057. "autoload": {
  2058. "files": [
  2059. "src/Testing/Autoload.php"
  2060. ],
  2061. "psr-4": {
  2062. "Filament\\Notifications\\": "src"
  2063. }
  2064. },
  2065. "notification-url": "https://packagist.org/downloads/",
  2066. "license": [
  2067. "MIT"
  2068. ],
  2069. "description": "Easily add beautiful notifications to any Livewire app.",
  2070. "homepage": "https://github.com/filamentphp/filament",
  2071. "support": {
  2072. "issues": "https://github.com/filamentphp/filament/issues",
  2073. "source": "https://github.com/filamentphp/filament"
  2074. },
  2075. "time": "2025-05-21T08:44:14+00:00"
  2076. },
  2077. {
  2078. "name": "filament/support",
  2079. "version": "v3.3.20",
  2080. "source": {
  2081. "type": "git",
  2082. "url": "https://github.com/filamentphp/support.git",
  2083. "reference": "4f9793ad3339301ca53ea6f2c984734f7ac38ce7"
  2084. },
  2085. "dist": {
  2086. "type": "zip",
  2087. "url": "https://api.github.com/repos/filamentphp/support/zipball/4f9793ad3339301ca53ea6f2c984734f7ac38ce7",
  2088. "reference": "4f9793ad3339301ca53ea6f2c984734f7ac38ce7",
  2089. "shasum": ""
  2090. },
  2091. "require": {
  2092. "blade-ui-kit/blade-heroicons": "^2.5",
  2093. "doctrine/dbal": "^3.2|^4.0",
  2094. "ext-intl": "*",
  2095. "illuminate/contracts": "^10.45|^11.0|^12.0",
  2096. "illuminate/support": "^10.45|^11.0|^12.0",
  2097. "illuminate/view": "^10.45|^11.0|^12.0",
  2098. "kirschbaum-development/eloquent-power-joins": "^3.0|^4.0",
  2099. "livewire/livewire": "^3.5",
  2100. "php": "^8.1",
  2101. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  2102. "spatie/color": "^1.5",
  2103. "spatie/invade": "^1.0|^2.0",
  2104. "spatie/laravel-package-tools": "^1.9",
  2105. "symfony/console": "^6.0|^7.0",
  2106. "symfony/html-sanitizer": "^6.1|^7.0"
  2107. },
  2108. "type": "library",
  2109. "extra": {
  2110. "laravel": {
  2111. "providers": [
  2112. "Filament\\Support\\SupportServiceProvider"
  2113. ]
  2114. }
  2115. },
  2116. "autoload": {
  2117. "files": [
  2118. "src/helpers.php"
  2119. ],
  2120. "psr-4": {
  2121. "Filament\\Support\\": "src"
  2122. }
  2123. },
  2124. "notification-url": "https://packagist.org/downloads/",
  2125. "license": [
  2126. "MIT"
  2127. ],
  2128. "description": "Core helper methods and foundation code for all Filament packages.",
  2129. "homepage": "https://github.com/filamentphp/filament",
  2130. "support": {
  2131. "issues": "https://github.com/filamentphp/filament/issues",
  2132. "source": "https://github.com/filamentphp/filament"
  2133. },
  2134. "time": "2025-06-03T06:16:13+00:00"
  2135. },
  2136. {
  2137. "name": "filament/tables",
  2138. "version": "v3.3.20",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://github.com/filamentphp/tables.git",
  2142. "reference": "1a107a8411549297b97d1142b1f7a5fa7a65e32b"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://api.github.com/repos/filamentphp/tables/zipball/1a107a8411549297b97d1142b1f7a5fa7a65e32b",
  2147. "reference": "1a107a8411549297b97d1142b1f7a5fa7a65e32b",
  2148. "shasum": ""
  2149. },
  2150. "require": {
  2151. "filament/actions": "self.version",
  2152. "filament/forms": "self.version",
  2153. "filament/support": "self.version",
  2154. "illuminate/console": "^10.45|^11.0|^12.0",
  2155. "illuminate/contracts": "^10.45|^11.0|^12.0",
  2156. "illuminate/database": "^10.45|^11.0|^12.0",
  2157. "illuminate/filesystem": "^10.45|^11.0|^12.0",
  2158. "illuminate/support": "^10.45|^11.0|^12.0",
  2159. "illuminate/view": "^10.45|^11.0|^12.0",
  2160. "php": "^8.1",
  2161. "spatie/laravel-package-tools": "^1.9"
  2162. },
  2163. "type": "library",
  2164. "extra": {
  2165. "laravel": {
  2166. "providers": [
  2167. "Filament\\Tables\\TablesServiceProvider"
  2168. ]
  2169. }
  2170. },
  2171. "autoload": {
  2172. "psr-4": {
  2173. "Filament\\Tables\\": "src"
  2174. }
  2175. },
  2176. "notification-url": "https://packagist.org/downloads/",
  2177. "license": [
  2178. "MIT"
  2179. ],
  2180. "description": "Easily add beautiful tables to any Livewire component.",
  2181. "homepage": "https://github.com/filamentphp/filament",
  2182. "support": {
  2183. "issues": "https://github.com/filamentphp/filament/issues",
  2184. "source": "https://github.com/filamentphp/filament"
  2185. },
  2186. "time": "2025-06-02T09:43:47+00:00"
  2187. },
  2188. {
  2189. "name": "filament/widgets",
  2190. "version": "v3.3.20",
  2191. "source": {
  2192. "type": "git",
  2193. "url": "https://github.com/filamentphp/widgets.git",
  2194. "reference": "048c5a4bf0477efbe2910c54a1aeb55c64cf1348"
  2195. },
  2196. "dist": {
  2197. "type": "zip",
  2198. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/048c5a4bf0477efbe2910c54a1aeb55c64cf1348",
  2199. "reference": "048c5a4bf0477efbe2910c54a1aeb55c64cf1348",
  2200. "shasum": ""
  2201. },
  2202. "require": {
  2203. "filament/support": "self.version",
  2204. "php": "^8.1",
  2205. "spatie/laravel-package-tools": "^1.9"
  2206. },
  2207. "type": "library",
  2208. "extra": {
  2209. "laravel": {
  2210. "providers": [
  2211. "Filament\\Widgets\\WidgetsServiceProvider"
  2212. ]
  2213. }
  2214. },
  2215. "autoload": {
  2216. "psr-4": {
  2217. "Filament\\Widgets\\": "src"
  2218. }
  2219. },
  2220. "notification-url": "https://packagist.org/downloads/",
  2221. "license": [
  2222. "MIT"
  2223. ],
  2224. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2225. "homepage": "https://github.com/filamentphp/filament",
  2226. "support": {
  2227. "issues": "https://github.com/filamentphp/filament/issues",
  2228. "source": "https://github.com/filamentphp/filament"
  2229. },
  2230. "time": "2025-04-23T06:39:59+00:00"
  2231. },
  2232. {
  2233. "name": "firebase/php-jwt",
  2234. "version": "v6.11.1",
  2235. "source": {
  2236. "type": "git",
  2237. "url": "https://github.com/firebase/php-jwt.git",
  2238. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66"
  2239. },
  2240. "dist": {
  2241. "type": "zip",
  2242. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  2243. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  2244. "shasum": ""
  2245. },
  2246. "require": {
  2247. "php": "^8.0"
  2248. },
  2249. "require-dev": {
  2250. "guzzlehttp/guzzle": "^7.4",
  2251. "phpspec/prophecy-phpunit": "^2.0",
  2252. "phpunit/phpunit": "^9.5",
  2253. "psr/cache": "^2.0||^3.0",
  2254. "psr/http-client": "^1.0",
  2255. "psr/http-factory": "^1.0"
  2256. },
  2257. "suggest": {
  2258. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2259. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2260. },
  2261. "type": "library",
  2262. "autoload": {
  2263. "psr-4": {
  2264. "Firebase\\JWT\\": "src"
  2265. }
  2266. },
  2267. "notification-url": "https://packagist.org/downloads/",
  2268. "license": [
  2269. "BSD-3-Clause"
  2270. ],
  2271. "authors": [
  2272. {
  2273. "name": "Neuman Vong",
  2274. "email": "neuman+pear@twilio.com",
  2275. "role": "Developer"
  2276. },
  2277. {
  2278. "name": "Anant Narayanan",
  2279. "email": "anant@php.net",
  2280. "role": "Developer"
  2281. }
  2282. ],
  2283. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2284. "homepage": "https://github.com/firebase/php-jwt",
  2285. "keywords": [
  2286. "jwt",
  2287. "php"
  2288. ],
  2289. "support": {
  2290. "issues": "https://github.com/firebase/php-jwt/issues",
  2291. "source": "https://github.com/firebase/php-jwt/tree/v6.11.1"
  2292. },
  2293. "time": "2025-04-09T20:32:01+00:00"
  2294. },
  2295. {
  2296. "name": "fruitcake/php-cors",
  2297. "version": "v1.3.0",
  2298. "source": {
  2299. "type": "git",
  2300. "url": "https://github.com/fruitcake/php-cors.git",
  2301. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2302. },
  2303. "dist": {
  2304. "type": "zip",
  2305. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2306. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2307. "shasum": ""
  2308. },
  2309. "require": {
  2310. "php": "^7.4|^8.0",
  2311. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2312. },
  2313. "require-dev": {
  2314. "phpstan/phpstan": "^1.4",
  2315. "phpunit/phpunit": "^9",
  2316. "squizlabs/php_codesniffer": "^3.5"
  2317. },
  2318. "type": "library",
  2319. "extra": {
  2320. "branch-alias": {
  2321. "dev-master": "1.2-dev"
  2322. }
  2323. },
  2324. "autoload": {
  2325. "psr-4": {
  2326. "Fruitcake\\Cors\\": "src/"
  2327. }
  2328. },
  2329. "notification-url": "https://packagist.org/downloads/",
  2330. "license": [
  2331. "MIT"
  2332. ],
  2333. "authors": [
  2334. {
  2335. "name": "Fruitcake",
  2336. "homepage": "https://fruitcake.nl"
  2337. },
  2338. {
  2339. "name": "Barryvdh",
  2340. "email": "barryvdh@gmail.com"
  2341. }
  2342. ],
  2343. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2344. "homepage": "https://github.com/fruitcake/php-cors",
  2345. "keywords": [
  2346. "cors",
  2347. "laravel",
  2348. "symfony"
  2349. ],
  2350. "support": {
  2351. "issues": "https://github.com/fruitcake/php-cors/issues",
  2352. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2353. },
  2354. "funding": [
  2355. {
  2356. "url": "https://fruitcake.nl",
  2357. "type": "custom"
  2358. },
  2359. {
  2360. "url": "https://github.com/barryvdh",
  2361. "type": "github"
  2362. }
  2363. ],
  2364. "time": "2023-10-12T05:21:21+00:00"
  2365. },
  2366. {
  2367. "name": "graham-campbell/result-type",
  2368. "version": "v1.1.3",
  2369. "source": {
  2370. "type": "git",
  2371. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2372. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2373. },
  2374. "dist": {
  2375. "type": "zip",
  2376. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2377. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2378. "shasum": ""
  2379. },
  2380. "require": {
  2381. "php": "^7.2.5 || ^8.0",
  2382. "phpoption/phpoption": "^1.9.3"
  2383. },
  2384. "require-dev": {
  2385. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2386. },
  2387. "type": "library",
  2388. "autoload": {
  2389. "psr-4": {
  2390. "GrahamCampbell\\ResultType\\": "src/"
  2391. }
  2392. },
  2393. "notification-url": "https://packagist.org/downloads/",
  2394. "license": [
  2395. "MIT"
  2396. ],
  2397. "authors": [
  2398. {
  2399. "name": "Graham Campbell",
  2400. "email": "hello@gjcampbell.co.uk",
  2401. "homepage": "https://github.com/GrahamCampbell"
  2402. }
  2403. ],
  2404. "description": "An Implementation Of The Result Type",
  2405. "keywords": [
  2406. "Graham Campbell",
  2407. "GrahamCampbell",
  2408. "Result Type",
  2409. "Result-Type",
  2410. "result"
  2411. ],
  2412. "support": {
  2413. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2414. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2415. },
  2416. "funding": [
  2417. {
  2418. "url": "https://github.com/GrahamCampbell",
  2419. "type": "github"
  2420. },
  2421. {
  2422. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2423. "type": "tidelift"
  2424. }
  2425. ],
  2426. "time": "2024-07-20T21:45:45+00:00"
  2427. },
  2428. {
  2429. "name": "guava/filament-clusters",
  2430. "version": "1.5.0",
  2431. "source": {
  2432. "type": "git",
  2433. "url": "https://github.com/GuavaCZ/filament-clusters.git",
  2434. "reference": "fda54d83b2141813e79578fdd6ac56e8b3ea6884"
  2435. },
  2436. "dist": {
  2437. "type": "zip",
  2438. "url": "https://api.github.com/repos/GuavaCZ/filament-clusters/zipball/fda54d83b2141813e79578fdd6ac56e8b3ea6884",
  2439. "reference": "fda54d83b2141813e79578fdd6ac56e8b3ea6884",
  2440. "shasum": ""
  2441. },
  2442. "require": {
  2443. "filament/filament": "^3.0",
  2444. "illuminate/contracts": "^10.0 | ^11.0 | ^12.0",
  2445. "php": "^8.1",
  2446. "spatie/laravel-package-tools": "^1.14.0"
  2447. },
  2448. "require-dev": {
  2449. "laravel/pint": "^1.0",
  2450. "nunomaduro/collision": "^7.8",
  2451. "nunomaduro/larastan": "^2.0.1",
  2452. "orchestra/testbench": "^8.8 | ^10.0",
  2453. "pestphp/pest": "^2.0 | ^3.7",
  2454. "pestphp/pest-plugin-arch": "^2.0 | ^3.0",
  2455. "pestphp/pest-plugin-laravel": "^2.0 | ^3.1",
  2456. "phpstan/extension-installer": "^1.1",
  2457. "phpstan/phpstan-deprecation-rules": "^1.0 | ^2.0",
  2458. "phpstan/phpstan-phpunit": "^1.0 | ^2.0"
  2459. },
  2460. "type": "library",
  2461. "extra": {
  2462. "laravel": {
  2463. "providers": [
  2464. "Guava\\FilamentClusters\\FilamentClustersServiceProvider"
  2465. ]
  2466. }
  2467. },
  2468. "autoload": {
  2469. "psr-4": {
  2470. "Guava\\FilamentClusters\\": "src/"
  2471. }
  2472. },
  2473. "notification-url": "https://packagist.org/downloads/",
  2474. "license": [
  2475. "MIT"
  2476. ],
  2477. "authors": [
  2478. {
  2479. "name": "Lukas Frey",
  2480. "email": "lukas.frey@guava.cz",
  2481. "role": "Developer"
  2482. }
  2483. ],
  2484. "description": "Filament clusters allow you to cluster multiple fields into one visually.",
  2485. "homepage": "https://github.com/GuavaCZ/filament-clusters",
  2486. "keywords": [
  2487. "Guava",
  2488. "filament-clusters",
  2489. "laravel"
  2490. ],
  2491. "support": {
  2492. "issues": "https://github.com/GuavaCZ/filament-clusters/issues",
  2493. "source": "https://github.com/GuavaCZ/filament-clusters/tree/1.5.0"
  2494. },
  2495. "funding": [
  2496. {
  2497. "url": "https://github.com/GuavaCZ",
  2498. "type": "github"
  2499. }
  2500. ],
  2501. "time": "2025-02-25T13:48:00+00:00"
  2502. },
  2503. {
  2504. "name": "guzzlehttp/guzzle",
  2505. "version": "7.9.3",
  2506. "source": {
  2507. "type": "git",
  2508. "url": "https://github.com/guzzle/guzzle.git",
  2509. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  2510. },
  2511. "dist": {
  2512. "type": "zip",
  2513. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  2514. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  2515. "shasum": ""
  2516. },
  2517. "require": {
  2518. "ext-json": "*",
  2519. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2520. "guzzlehttp/psr7": "^2.7.0",
  2521. "php": "^7.2.5 || ^8.0",
  2522. "psr/http-client": "^1.0",
  2523. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2524. },
  2525. "provide": {
  2526. "psr/http-client-implementation": "1.0"
  2527. },
  2528. "require-dev": {
  2529. "bamarni/composer-bin-plugin": "^1.8.2",
  2530. "ext-curl": "*",
  2531. "guzzle/client-integration-tests": "3.0.2",
  2532. "php-http/message-factory": "^1.1",
  2533. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2534. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2535. },
  2536. "suggest": {
  2537. "ext-curl": "Required for CURL handler support",
  2538. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2539. "psr/log": "Required for using the Log middleware"
  2540. },
  2541. "type": "library",
  2542. "extra": {
  2543. "bamarni-bin": {
  2544. "bin-links": true,
  2545. "forward-command": false
  2546. }
  2547. },
  2548. "autoload": {
  2549. "files": [
  2550. "src/functions_include.php"
  2551. ],
  2552. "psr-4": {
  2553. "GuzzleHttp\\": "src/"
  2554. }
  2555. },
  2556. "notification-url": "https://packagist.org/downloads/",
  2557. "license": [
  2558. "MIT"
  2559. ],
  2560. "authors": [
  2561. {
  2562. "name": "Graham Campbell",
  2563. "email": "hello@gjcampbell.co.uk",
  2564. "homepage": "https://github.com/GrahamCampbell"
  2565. },
  2566. {
  2567. "name": "Michael Dowling",
  2568. "email": "mtdowling@gmail.com",
  2569. "homepage": "https://github.com/mtdowling"
  2570. },
  2571. {
  2572. "name": "Jeremy Lindblom",
  2573. "email": "jeremeamia@gmail.com",
  2574. "homepage": "https://github.com/jeremeamia"
  2575. },
  2576. {
  2577. "name": "George Mponos",
  2578. "email": "gmponos@gmail.com",
  2579. "homepage": "https://github.com/gmponos"
  2580. },
  2581. {
  2582. "name": "Tobias Nyholm",
  2583. "email": "tobias.nyholm@gmail.com",
  2584. "homepage": "https://github.com/Nyholm"
  2585. },
  2586. {
  2587. "name": "Márk Sági-Kazár",
  2588. "email": "mark.sagikazar@gmail.com",
  2589. "homepage": "https://github.com/sagikazarmark"
  2590. },
  2591. {
  2592. "name": "Tobias Schultze",
  2593. "email": "webmaster@tubo-world.de",
  2594. "homepage": "https://github.com/Tobion"
  2595. }
  2596. ],
  2597. "description": "Guzzle is a PHP HTTP client library",
  2598. "keywords": [
  2599. "client",
  2600. "curl",
  2601. "framework",
  2602. "http",
  2603. "http client",
  2604. "psr-18",
  2605. "psr-7",
  2606. "rest",
  2607. "web service"
  2608. ],
  2609. "support": {
  2610. "issues": "https://github.com/guzzle/guzzle/issues",
  2611. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  2612. },
  2613. "funding": [
  2614. {
  2615. "url": "https://github.com/GrahamCampbell",
  2616. "type": "github"
  2617. },
  2618. {
  2619. "url": "https://github.com/Nyholm",
  2620. "type": "github"
  2621. },
  2622. {
  2623. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2624. "type": "tidelift"
  2625. }
  2626. ],
  2627. "time": "2025-03-27T13:37:11+00:00"
  2628. },
  2629. {
  2630. "name": "guzzlehttp/promises",
  2631. "version": "2.2.0",
  2632. "source": {
  2633. "type": "git",
  2634. "url": "https://github.com/guzzle/promises.git",
  2635. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  2636. },
  2637. "dist": {
  2638. "type": "zip",
  2639. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  2640. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  2641. "shasum": ""
  2642. },
  2643. "require": {
  2644. "php": "^7.2.5 || ^8.0"
  2645. },
  2646. "require-dev": {
  2647. "bamarni/composer-bin-plugin": "^1.8.2",
  2648. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2649. },
  2650. "type": "library",
  2651. "extra": {
  2652. "bamarni-bin": {
  2653. "bin-links": true,
  2654. "forward-command": false
  2655. }
  2656. },
  2657. "autoload": {
  2658. "psr-4": {
  2659. "GuzzleHttp\\Promise\\": "src/"
  2660. }
  2661. },
  2662. "notification-url": "https://packagist.org/downloads/",
  2663. "license": [
  2664. "MIT"
  2665. ],
  2666. "authors": [
  2667. {
  2668. "name": "Graham Campbell",
  2669. "email": "hello@gjcampbell.co.uk",
  2670. "homepage": "https://github.com/GrahamCampbell"
  2671. },
  2672. {
  2673. "name": "Michael Dowling",
  2674. "email": "mtdowling@gmail.com",
  2675. "homepage": "https://github.com/mtdowling"
  2676. },
  2677. {
  2678. "name": "Tobias Nyholm",
  2679. "email": "tobias.nyholm@gmail.com",
  2680. "homepage": "https://github.com/Nyholm"
  2681. },
  2682. {
  2683. "name": "Tobias Schultze",
  2684. "email": "webmaster@tubo-world.de",
  2685. "homepage": "https://github.com/Tobion"
  2686. }
  2687. ],
  2688. "description": "Guzzle promises library",
  2689. "keywords": [
  2690. "promise"
  2691. ],
  2692. "support": {
  2693. "issues": "https://github.com/guzzle/promises/issues",
  2694. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  2695. },
  2696. "funding": [
  2697. {
  2698. "url": "https://github.com/GrahamCampbell",
  2699. "type": "github"
  2700. },
  2701. {
  2702. "url": "https://github.com/Nyholm",
  2703. "type": "github"
  2704. },
  2705. {
  2706. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2707. "type": "tidelift"
  2708. }
  2709. ],
  2710. "time": "2025-03-27T13:27:01+00:00"
  2711. },
  2712. {
  2713. "name": "guzzlehttp/psr7",
  2714. "version": "2.7.1",
  2715. "source": {
  2716. "type": "git",
  2717. "url": "https://github.com/guzzle/psr7.git",
  2718. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  2719. },
  2720. "dist": {
  2721. "type": "zip",
  2722. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  2723. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  2724. "shasum": ""
  2725. },
  2726. "require": {
  2727. "php": "^7.2.5 || ^8.0",
  2728. "psr/http-factory": "^1.0",
  2729. "psr/http-message": "^1.1 || ^2.0",
  2730. "ralouphie/getallheaders": "^3.0"
  2731. },
  2732. "provide": {
  2733. "psr/http-factory-implementation": "1.0",
  2734. "psr/http-message-implementation": "1.0"
  2735. },
  2736. "require-dev": {
  2737. "bamarni/composer-bin-plugin": "^1.8.2",
  2738. "http-interop/http-factory-tests": "0.9.0",
  2739. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2740. },
  2741. "suggest": {
  2742. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2743. },
  2744. "type": "library",
  2745. "extra": {
  2746. "bamarni-bin": {
  2747. "bin-links": true,
  2748. "forward-command": false
  2749. }
  2750. },
  2751. "autoload": {
  2752. "psr-4": {
  2753. "GuzzleHttp\\Psr7\\": "src/"
  2754. }
  2755. },
  2756. "notification-url": "https://packagist.org/downloads/",
  2757. "license": [
  2758. "MIT"
  2759. ],
  2760. "authors": [
  2761. {
  2762. "name": "Graham Campbell",
  2763. "email": "hello@gjcampbell.co.uk",
  2764. "homepage": "https://github.com/GrahamCampbell"
  2765. },
  2766. {
  2767. "name": "Michael Dowling",
  2768. "email": "mtdowling@gmail.com",
  2769. "homepage": "https://github.com/mtdowling"
  2770. },
  2771. {
  2772. "name": "George Mponos",
  2773. "email": "gmponos@gmail.com",
  2774. "homepage": "https://github.com/gmponos"
  2775. },
  2776. {
  2777. "name": "Tobias Nyholm",
  2778. "email": "tobias.nyholm@gmail.com",
  2779. "homepage": "https://github.com/Nyholm"
  2780. },
  2781. {
  2782. "name": "Márk Sági-Kazár",
  2783. "email": "mark.sagikazar@gmail.com",
  2784. "homepage": "https://github.com/sagikazarmark"
  2785. },
  2786. {
  2787. "name": "Tobias Schultze",
  2788. "email": "webmaster@tubo-world.de",
  2789. "homepage": "https://github.com/Tobion"
  2790. },
  2791. {
  2792. "name": "Márk Sági-Kazár",
  2793. "email": "mark.sagikazar@gmail.com",
  2794. "homepage": "https://sagikazarmark.hu"
  2795. }
  2796. ],
  2797. "description": "PSR-7 message implementation that also provides common utility methods",
  2798. "keywords": [
  2799. "http",
  2800. "message",
  2801. "psr-7",
  2802. "request",
  2803. "response",
  2804. "stream",
  2805. "uri",
  2806. "url"
  2807. ],
  2808. "support": {
  2809. "issues": "https://github.com/guzzle/psr7/issues",
  2810. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  2811. },
  2812. "funding": [
  2813. {
  2814. "url": "https://github.com/GrahamCampbell",
  2815. "type": "github"
  2816. },
  2817. {
  2818. "url": "https://github.com/Nyholm",
  2819. "type": "github"
  2820. },
  2821. {
  2822. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2823. "type": "tidelift"
  2824. }
  2825. ],
  2826. "time": "2025-03-27T12:30:47+00:00"
  2827. },
  2828. {
  2829. "name": "guzzlehttp/uri-template",
  2830. "version": "v1.0.4",
  2831. "source": {
  2832. "type": "git",
  2833. "url": "https://github.com/guzzle/uri-template.git",
  2834. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2"
  2835. },
  2836. "dist": {
  2837. "type": "zip",
  2838. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2",
  2839. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2",
  2840. "shasum": ""
  2841. },
  2842. "require": {
  2843. "php": "^7.2.5 || ^8.0",
  2844. "symfony/polyfill-php80": "^1.24"
  2845. },
  2846. "require-dev": {
  2847. "bamarni/composer-bin-plugin": "^1.8.2",
  2848. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2849. "uri-template/tests": "1.0.0"
  2850. },
  2851. "type": "library",
  2852. "extra": {
  2853. "bamarni-bin": {
  2854. "bin-links": true,
  2855. "forward-command": false
  2856. }
  2857. },
  2858. "autoload": {
  2859. "psr-4": {
  2860. "GuzzleHttp\\UriTemplate\\": "src"
  2861. }
  2862. },
  2863. "notification-url": "https://packagist.org/downloads/",
  2864. "license": [
  2865. "MIT"
  2866. ],
  2867. "authors": [
  2868. {
  2869. "name": "Graham Campbell",
  2870. "email": "hello@gjcampbell.co.uk",
  2871. "homepage": "https://github.com/GrahamCampbell"
  2872. },
  2873. {
  2874. "name": "Michael Dowling",
  2875. "email": "mtdowling@gmail.com",
  2876. "homepage": "https://github.com/mtdowling"
  2877. },
  2878. {
  2879. "name": "George Mponos",
  2880. "email": "gmponos@gmail.com",
  2881. "homepage": "https://github.com/gmponos"
  2882. },
  2883. {
  2884. "name": "Tobias Nyholm",
  2885. "email": "tobias.nyholm@gmail.com",
  2886. "homepage": "https://github.com/Nyholm"
  2887. }
  2888. ],
  2889. "description": "A polyfill class for uri_template of PHP",
  2890. "keywords": [
  2891. "guzzlehttp",
  2892. "uri-template"
  2893. ],
  2894. "support": {
  2895. "issues": "https://github.com/guzzle/uri-template/issues",
  2896. "source": "https://github.com/guzzle/uri-template/tree/v1.0.4"
  2897. },
  2898. "funding": [
  2899. {
  2900. "url": "https://github.com/GrahamCampbell",
  2901. "type": "github"
  2902. },
  2903. {
  2904. "url": "https://github.com/Nyholm",
  2905. "type": "github"
  2906. },
  2907. {
  2908. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2909. "type": "tidelift"
  2910. }
  2911. ],
  2912. "time": "2025-02-03T10:55:03+00:00"
  2913. },
  2914. {
  2915. "name": "jaocero/radio-deck",
  2916. "version": "v1.2.10",
  2917. "source": {
  2918. "type": "git",
  2919. "url": "https://github.com/199ocero/radio-deck.git",
  2920. "reference": "7e876322049ab611fe0dc4ec0803f60a2353ddf8"
  2921. },
  2922. "dist": {
  2923. "type": "zip",
  2924. "url": "https://api.github.com/repos/199ocero/radio-deck/zipball/7e876322049ab611fe0dc4ec0803f60a2353ddf8",
  2925. "reference": "7e876322049ab611fe0dc4ec0803f60a2353ddf8",
  2926. "shasum": ""
  2927. },
  2928. "require": {
  2929. "filament/forms": "^3.0",
  2930. "illuminate/contracts": "^10.0|^11.0|^12.0",
  2931. "php": "^8.1",
  2932. "spatie/laravel-package-tools": "^1.15.0"
  2933. },
  2934. "require-dev": {
  2935. "nunomaduro/collision": "^7.9",
  2936. "orchestra/testbench": "^8.0|^9.0",
  2937. "pestphp/pest": "^2.0",
  2938. "pestphp/pest-plugin-arch": "^2.0",
  2939. "pestphp/pest-plugin-laravel": "^2.0"
  2940. },
  2941. "type": "library",
  2942. "extra": {
  2943. "laravel": {
  2944. "providers": [
  2945. "JaOcero\\RadioDeck\\RadioDeckServiceProvider"
  2946. ]
  2947. }
  2948. },
  2949. "autoload": {
  2950. "psr-4": {
  2951. "JaOcero\\RadioDeck\\": "src/",
  2952. "JaOcero\\RadioDeck\\Database\\Factories\\": "database/factories/"
  2953. }
  2954. },
  2955. "notification-url": "https://packagist.org/downloads/",
  2956. "license": [
  2957. "MIT"
  2958. ],
  2959. "authors": [
  2960. {
  2961. "name": "Jay-Are Ocero",
  2962. "email": "199ocero@gmail.com",
  2963. "role": "Developer"
  2964. }
  2965. ],
  2966. "description": "Turn filament default radio button into a selectable card with icons, title and description.",
  2967. "homepage": "https://github.com/jaocero/radio-deck",
  2968. "keywords": [
  2969. "filament-form",
  2970. "filament-plugin",
  2971. "filamentphp",
  2972. "jaocero",
  2973. "laravel",
  2974. "radio-deck"
  2975. ],
  2976. "support": {
  2977. "issues": "https://github.com/jaocero/radio-deck/issues",
  2978. "source": "https://github.com/jaocero/radio-deck"
  2979. },
  2980. "funding": [
  2981. {
  2982. "url": "https://github.com/jaocero",
  2983. "type": "github"
  2984. }
  2985. ],
  2986. "time": "2025-02-27T00:00:03+00:00"
  2987. },
  2988. {
  2989. "name": "kirschbaum-development/eloquent-power-joins",
  2990. "version": "4.2.4",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2994. "reference": "4a8012cef7abed8ac3633a180c69138a228b6c4c"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/4a8012cef7abed8ac3633a180c69138a228b6c4c",
  2999. "reference": "4a8012cef7abed8ac3633a180c69138a228b6c4c",
  3000. "shasum": ""
  3001. },
  3002. "require": {
  3003. "illuminate/database": "^11.42|^12.0",
  3004. "illuminate/support": "^11.42|^12.0",
  3005. "php": "^8.2"
  3006. },
  3007. "require-dev": {
  3008. "friendsofphp/php-cs-fixer": "dev-master",
  3009. "laravel/legacy-factories": "^1.0@dev",
  3010. "orchestra/testbench": "^9.0|^10.0",
  3011. "phpunit/phpunit": "^10.0|^11.0"
  3012. },
  3013. "type": "library",
  3014. "extra": {
  3015. "laravel": {
  3016. "providers": [
  3017. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  3018. ]
  3019. }
  3020. },
  3021. "autoload": {
  3022. "psr-4": {
  3023. "Kirschbaum\\PowerJoins\\": "src"
  3024. }
  3025. },
  3026. "notification-url": "https://packagist.org/downloads/",
  3027. "license": [
  3028. "MIT"
  3029. ],
  3030. "authors": [
  3031. {
  3032. "name": "Luis Dalmolin",
  3033. "email": "luis.nh@gmail.com",
  3034. "role": "Developer"
  3035. }
  3036. ],
  3037. "description": "The Laravel magic applied to joins.",
  3038. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  3039. "keywords": [
  3040. "eloquent",
  3041. "join",
  3042. "laravel",
  3043. "mysql"
  3044. ],
  3045. "support": {
  3046. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  3047. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.2.4"
  3048. },
  3049. "time": "2025-05-19T14:14:41+00:00"
  3050. },
  3051. {
  3052. "name": "knplabs/knp-snappy",
  3053. "version": "v1.5.1",
  3054. "source": {
  3055. "type": "git",
  3056. "url": "https://github.com/KnpLabs/snappy.git",
  3057. "reference": "3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7"
  3058. },
  3059. "dist": {
  3060. "type": "zip",
  3061. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7",
  3062. "reference": "3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7",
  3063. "shasum": ""
  3064. },
  3065. "require": {
  3066. "php": ">=8.1",
  3067. "psr/log": "^2.0||^3.0",
  3068. "symfony/process": "^5.0||^6.0||^7.0"
  3069. },
  3070. "require-dev": {
  3071. "friendsofphp/php-cs-fixer": "^3.0",
  3072. "pedrotroller/php-cs-custom-fixer": "^2.19",
  3073. "phpstan/phpstan": "^1.0.0",
  3074. "phpstan/phpstan-phpunit": "^1.0.0",
  3075. "phpunit/phpunit": "^8.5"
  3076. },
  3077. "type": "library",
  3078. "extra": {
  3079. "branch-alias": {
  3080. "dev-master": "1.x-dev"
  3081. }
  3082. },
  3083. "autoload": {
  3084. "psr-4": {
  3085. "Knp\\Snappy\\": "src/Knp/Snappy"
  3086. }
  3087. },
  3088. "notification-url": "https://packagist.org/downloads/",
  3089. "license": [
  3090. "MIT"
  3091. ],
  3092. "authors": [
  3093. {
  3094. "name": "KNP Labs Team",
  3095. "homepage": "http://knplabs.com"
  3096. },
  3097. {
  3098. "name": "Symfony Community",
  3099. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  3100. }
  3101. ],
  3102. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  3103. "homepage": "http://github.com/KnpLabs/snappy",
  3104. "keywords": [
  3105. "knp",
  3106. "knplabs",
  3107. "pdf",
  3108. "snapshot",
  3109. "thumbnail",
  3110. "wkhtmltopdf"
  3111. ],
  3112. "support": {
  3113. "issues": "https://github.com/KnpLabs/snappy/issues",
  3114. "source": "https://github.com/KnpLabs/snappy/tree/v1.5.1"
  3115. },
  3116. "time": "2025-01-06T16:53:26+00:00"
  3117. },
  3118. {
  3119. "name": "laravel/framework",
  3120. "version": "v11.45.1",
  3121. "source": {
  3122. "type": "git",
  3123. "url": "https://github.com/laravel/framework.git",
  3124. "reference": "b09ba32795b8e71df10856a2694706663984a239"
  3125. },
  3126. "dist": {
  3127. "type": "zip",
  3128. "url": "https://api.github.com/repos/laravel/framework/zipball/b09ba32795b8e71df10856a2694706663984a239",
  3129. "reference": "b09ba32795b8e71df10856a2694706663984a239",
  3130. "shasum": ""
  3131. },
  3132. "require": {
  3133. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  3134. "composer-runtime-api": "^2.2",
  3135. "doctrine/inflector": "^2.0.5",
  3136. "dragonmantank/cron-expression": "^3.4",
  3137. "egulias/email-validator": "^3.2.1|^4.0",
  3138. "ext-ctype": "*",
  3139. "ext-filter": "*",
  3140. "ext-hash": "*",
  3141. "ext-mbstring": "*",
  3142. "ext-openssl": "*",
  3143. "ext-session": "*",
  3144. "ext-tokenizer": "*",
  3145. "fruitcake/php-cors": "^1.3",
  3146. "guzzlehttp/guzzle": "^7.8.2",
  3147. "guzzlehttp/uri-template": "^1.0",
  3148. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  3149. "laravel/serializable-closure": "^1.3|^2.0",
  3150. "league/commonmark": "^2.7",
  3151. "league/flysystem": "^3.25.1",
  3152. "league/flysystem-local": "^3.25.1",
  3153. "league/uri": "^7.5.1",
  3154. "monolog/monolog": "^3.0",
  3155. "nesbot/carbon": "^2.72.6|^3.8.4",
  3156. "nunomaduro/termwind": "^2.0",
  3157. "php": "^8.2",
  3158. "psr/container": "^1.1.1|^2.0.1",
  3159. "psr/log": "^1.0|^2.0|^3.0",
  3160. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3161. "ramsey/uuid": "^4.7",
  3162. "symfony/console": "^7.0.3",
  3163. "symfony/error-handler": "^7.0.3",
  3164. "symfony/finder": "^7.0.3",
  3165. "symfony/http-foundation": "^7.2.0",
  3166. "symfony/http-kernel": "^7.0.3",
  3167. "symfony/mailer": "^7.0.3",
  3168. "symfony/mime": "^7.0.3",
  3169. "symfony/polyfill-php83": "^1.31",
  3170. "symfony/process": "^7.0.3",
  3171. "symfony/routing": "^7.0.3",
  3172. "symfony/uid": "^7.0.3",
  3173. "symfony/var-dumper": "^7.0.3",
  3174. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3175. "vlucas/phpdotenv": "^5.6.1",
  3176. "voku/portable-ascii": "^2.0.2"
  3177. },
  3178. "conflict": {
  3179. "tightenco/collect": "<5.5.33"
  3180. },
  3181. "provide": {
  3182. "psr/container-implementation": "1.1|2.0",
  3183. "psr/log-implementation": "1.0|2.0|3.0",
  3184. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3185. },
  3186. "replace": {
  3187. "illuminate/auth": "self.version",
  3188. "illuminate/broadcasting": "self.version",
  3189. "illuminate/bus": "self.version",
  3190. "illuminate/cache": "self.version",
  3191. "illuminate/collections": "self.version",
  3192. "illuminate/concurrency": "self.version",
  3193. "illuminate/conditionable": "self.version",
  3194. "illuminate/config": "self.version",
  3195. "illuminate/console": "self.version",
  3196. "illuminate/container": "self.version",
  3197. "illuminate/contracts": "self.version",
  3198. "illuminate/cookie": "self.version",
  3199. "illuminate/database": "self.version",
  3200. "illuminate/encryption": "self.version",
  3201. "illuminate/events": "self.version",
  3202. "illuminate/filesystem": "self.version",
  3203. "illuminate/hashing": "self.version",
  3204. "illuminate/http": "self.version",
  3205. "illuminate/log": "self.version",
  3206. "illuminate/macroable": "self.version",
  3207. "illuminate/mail": "self.version",
  3208. "illuminate/notifications": "self.version",
  3209. "illuminate/pagination": "self.version",
  3210. "illuminate/pipeline": "self.version",
  3211. "illuminate/process": "self.version",
  3212. "illuminate/queue": "self.version",
  3213. "illuminate/redis": "self.version",
  3214. "illuminate/routing": "self.version",
  3215. "illuminate/session": "self.version",
  3216. "illuminate/support": "self.version",
  3217. "illuminate/testing": "self.version",
  3218. "illuminate/translation": "self.version",
  3219. "illuminate/validation": "self.version",
  3220. "illuminate/view": "self.version",
  3221. "spatie/once": "*"
  3222. },
  3223. "require-dev": {
  3224. "ably/ably-php": "^1.0",
  3225. "aws/aws-sdk-php": "^3.322.9",
  3226. "ext-gmp": "*",
  3227. "fakerphp/faker": "^1.24",
  3228. "guzzlehttp/promises": "^2.0.3",
  3229. "guzzlehttp/psr7": "^2.4",
  3230. "laravel/pint": "^1.18",
  3231. "league/flysystem-aws-s3-v3": "^3.25.1",
  3232. "league/flysystem-ftp": "^3.25.1",
  3233. "league/flysystem-path-prefixing": "^3.25.1",
  3234. "league/flysystem-read-only": "^3.25.1",
  3235. "league/flysystem-sftp-v3": "^3.25.1",
  3236. "mockery/mockery": "^1.6.10",
  3237. "orchestra/testbench-core": "^9.13.2",
  3238. "pda/pheanstalk": "^5.0.6",
  3239. "php-http/discovery": "^1.15",
  3240. "phpstan/phpstan": "^2.0",
  3241. "phpunit/phpunit": "^10.5.35|^11.3.6|^12.0.1",
  3242. "predis/predis": "^2.3",
  3243. "resend/resend-php": "^0.10.0",
  3244. "symfony/cache": "^7.0.3",
  3245. "symfony/http-client": "^7.0.3",
  3246. "symfony/psr-http-message-bridge": "^7.0.3",
  3247. "symfony/translation": "^7.0.3"
  3248. },
  3249. "suggest": {
  3250. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3251. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  3252. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3253. "ext-apcu": "Required to use the APC cache driver.",
  3254. "ext-fileinfo": "Required to use the Filesystem class.",
  3255. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3256. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3257. "ext-memcached": "Required to use the memcache cache driver.",
  3258. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3259. "ext-pdo": "Required to use all database features.",
  3260. "ext-posix": "Required to use all features of the queue worker.",
  3261. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3262. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3263. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3264. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3265. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  3266. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  3267. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  3268. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  3269. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  3270. "mockery/mockery": "Required to use mocking (^1.6).",
  3271. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3272. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  3273. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.3.6|^12.0.1).",
  3274. "predis/predis": "Required to use the predis connector (^2.3).",
  3275. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3276. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3277. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3278. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3279. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3280. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3281. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3282. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3283. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3284. },
  3285. "type": "library",
  3286. "extra": {
  3287. "branch-alias": {
  3288. "dev-master": "11.x-dev"
  3289. }
  3290. },
  3291. "autoload": {
  3292. "files": [
  3293. "src/Illuminate/Collections/functions.php",
  3294. "src/Illuminate/Collections/helpers.php",
  3295. "src/Illuminate/Events/functions.php",
  3296. "src/Illuminate/Filesystem/functions.php",
  3297. "src/Illuminate/Foundation/helpers.php",
  3298. "src/Illuminate/Log/functions.php",
  3299. "src/Illuminate/Support/functions.php",
  3300. "src/Illuminate/Support/helpers.php"
  3301. ],
  3302. "psr-4": {
  3303. "Illuminate\\": "src/Illuminate/",
  3304. "Illuminate\\Support\\": [
  3305. "src/Illuminate/Macroable/",
  3306. "src/Illuminate/Collections/",
  3307. "src/Illuminate/Conditionable/"
  3308. ]
  3309. }
  3310. },
  3311. "notification-url": "https://packagist.org/downloads/",
  3312. "license": [
  3313. "MIT"
  3314. ],
  3315. "authors": [
  3316. {
  3317. "name": "Taylor Otwell",
  3318. "email": "taylor@laravel.com"
  3319. }
  3320. ],
  3321. "description": "The Laravel Framework.",
  3322. "homepage": "https://laravel.com",
  3323. "keywords": [
  3324. "framework",
  3325. "laravel"
  3326. ],
  3327. "support": {
  3328. "issues": "https://github.com/laravel/framework/issues",
  3329. "source": "https://github.com/laravel/framework"
  3330. },
  3331. "time": "2025-06-03T14:01:40+00:00"
  3332. },
  3333. {
  3334. "name": "laravel/prompts",
  3335. "version": "v0.3.5",
  3336. "source": {
  3337. "type": "git",
  3338. "url": "https://github.com/laravel/prompts.git",
  3339. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1"
  3340. },
  3341. "dist": {
  3342. "type": "zip",
  3343. "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1",
  3344. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1",
  3345. "shasum": ""
  3346. },
  3347. "require": {
  3348. "composer-runtime-api": "^2.2",
  3349. "ext-mbstring": "*",
  3350. "php": "^8.1",
  3351. "symfony/console": "^6.2|^7.0"
  3352. },
  3353. "conflict": {
  3354. "illuminate/console": ">=10.17.0 <10.25.0",
  3355. "laravel/framework": ">=10.17.0 <10.25.0"
  3356. },
  3357. "require-dev": {
  3358. "illuminate/collections": "^10.0|^11.0|^12.0",
  3359. "mockery/mockery": "^1.5",
  3360. "pestphp/pest": "^2.3|^3.4",
  3361. "phpstan/phpstan": "^1.11",
  3362. "phpstan/phpstan-mockery": "^1.1"
  3363. },
  3364. "suggest": {
  3365. "ext-pcntl": "Required for the spinner to be animated."
  3366. },
  3367. "type": "library",
  3368. "extra": {
  3369. "branch-alias": {
  3370. "dev-main": "0.3.x-dev"
  3371. }
  3372. },
  3373. "autoload": {
  3374. "files": [
  3375. "src/helpers.php"
  3376. ],
  3377. "psr-4": {
  3378. "Laravel\\Prompts\\": "src/"
  3379. }
  3380. },
  3381. "notification-url": "https://packagist.org/downloads/",
  3382. "license": [
  3383. "MIT"
  3384. ],
  3385. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3386. "support": {
  3387. "issues": "https://github.com/laravel/prompts/issues",
  3388. "source": "https://github.com/laravel/prompts/tree/v0.3.5"
  3389. },
  3390. "time": "2025-02-11T13:34:40+00:00"
  3391. },
  3392. {
  3393. "name": "laravel/sanctum",
  3394. "version": "v4.1.1",
  3395. "source": {
  3396. "type": "git",
  3397. "url": "https://github.com/laravel/sanctum.git",
  3398. "reference": "a360a6a1fd2400ead4eb9b6a9c1bb272939194f5"
  3399. },
  3400. "dist": {
  3401. "type": "zip",
  3402. "url": "https://api.github.com/repos/laravel/sanctum/zipball/a360a6a1fd2400ead4eb9b6a9c1bb272939194f5",
  3403. "reference": "a360a6a1fd2400ead4eb9b6a9c1bb272939194f5",
  3404. "shasum": ""
  3405. },
  3406. "require": {
  3407. "ext-json": "*",
  3408. "illuminate/console": "^11.0|^12.0",
  3409. "illuminate/contracts": "^11.0|^12.0",
  3410. "illuminate/database": "^11.0|^12.0",
  3411. "illuminate/support": "^11.0|^12.0",
  3412. "php": "^8.2",
  3413. "symfony/console": "^7.0"
  3414. },
  3415. "require-dev": {
  3416. "mockery/mockery": "^1.6",
  3417. "orchestra/testbench": "^9.0|^10.0",
  3418. "phpstan/phpstan": "^1.10",
  3419. "phpunit/phpunit": "^11.3"
  3420. },
  3421. "type": "library",
  3422. "extra": {
  3423. "laravel": {
  3424. "providers": [
  3425. "Laravel\\Sanctum\\SanctumServiceProvider"
  3426. ]
  3427. }
  3428. },
  3429. "autoload": {
  3430. "psr-4": {
  3431. "Laravel\\Sanctum\\": "src/"
  3432. }
  3433. },
  3434. "notification-url": "https://packagist.org/downloads/",
  3435. "license": [
  3436. "MIT"
  3437. ],
  3438. "authors": [
  3439. {
  3440. "name": "Taylor Otwell",
  3441. "email": "taylor@laravel.com"
  3442. }
  3443. ],
  3444. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3445. "keywords": [
  3446. "auth",
  3447. "laravel",
  3448. "sanctum"
  3449. ],
  3450. "support": {
  3451. "issues": "https://github.com/laravel/sanctum/issues",
  3452. "source": "https://github.com/laravel/sanctum"
  3453. },
  3454. "time": "2025-04-23T13:03:38+00:00"
  3455. },
  3456. {
  3457. "name": "laravel/serializable-closure",
  3458. "version": "v2.0.4",
  3459. "source": {
  3460. "type": "git",
  3461. "url": "https://github.com/laravel/serializable-closure.git",
  3462. "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841"
  3463. },
  3464. "dist": {
  3465. "type": "zip",
  3466. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
  3467. "reference": "b352cf0534aa1ae6b4d825d1e762e35d43f8a841",
  3468. "shasum": ""
  3469. },
  3470. "require": {
  3471. "php": "^8.1"
  3472. },
  3473. "require-dev": {
  3474. "illuminate/support": "^10.0|^11.0|^12.0",
  3475. "nesbot/carbon": "^2.67|^3.0",
  3476. "pestphp/pest": "^2.36|^3.0",
  3477. "phpstan/phpstan": "^2.0",
  3478. "symfony/var-dumper": "^6.2.0|^7.0.0"
  3479. },
  3480. "type": "library",
  3481. "extra": {
  3482. "branch-alias": {
  3483. "dev-master": "2.x-dev"
  3484. }
  3485. },
  3486. "autoload": {
  3487. "psr-4": {
  3488. "Laravel\\SerializableClosure\\": "src/"
  3489. }
  3490. },
  3491. "notification-url": "https://packagist.org/downloads/",
  3492. "license": [
  3493. "MIT"
  3494. ],
  3495. "authors": [
  3496. {
  3497. "name": "Taylor Otwell",
  3498. "email": "taylor@laravel.com"
  3499. },
  3500. {
  3501. "name": "Nuno Maduro",
  3502. "email": "nuno@laravel.com"
  3503. }
  3504. ],
  3505. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3506. "keywords": [
  3507. "closure",
  3508. "laravel",
  3509. "serializable"
  3510. ],
  3511. "support": {
  3512. "issues": "https://github.com/laravel/serializable-closure/issues",
  3513. "source": "https://github.com/laravel/serializable-closure"
  3514. },
  3515. "time": "2025-03-19T13:51:03+00:00"
  3516. },
  3517. {
  3518. "name": "laravel/socialite",
  3519. "version": "v5.21.0",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://github.com/laravel/socialite.git",
  3523. "reference": "d83639499ad14985c9a6a9713b70073300ce998d"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://api.github.com/repos/laravel/socialite/zipball/d83639499ad14985c9a6a9713b70073300ce998d",
  3528. "reference": "d83639499ad14985c9a6a9713b70073300ce998d",
  3529. "shasum": ""
  3530. },
  3531. "require": {
  3532. "ext-json": "*",
  3533. "firebase/php-jwt": "^6.4",
  3534. "guzzlehttp/guzzle": "^6.0|^7.0",
  3535. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3536. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3537. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3538. "league/oauth1-client": "^1.11",
  3539. "php": "^7.2|^8.0",
  3540. "phpseclib/phpseclib": "^3.0"
  3541. },
  3542. "require-dev": {
  3543. "mockery/mockery": "^1.0",
  3544. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  3545. "phpstan/phpstan": "^1.12.23",
  3546. "phpunit/phpunit": "^8.0|^9.3|^10.4|^11.5"
  3547. },
  3548. "type": "library",
  3549. "extra": {
  3550. "laravel": {
  3551. "aliases": {
  3552. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3553. },
  3554. "providers": [
  3555. "Laravel\\Socialite\\SocialiteServiceProvider"
  3556. ]
  3557. },
  3558. "branch-alias": {
  3559. "dev-master": "5.x-dev"
  3560. }
  3561. },
  3562. "autoload": {
  3563. "psr-4": {
  3564. "Laravel\\Socialite\\": "src/"
  3565. }
  3566. },
  3567. "notification-url": "https://packagist.org/downloads/",
  3568. "license": [
  3569. "MIT"
  3570. ],
  3571. "authors": [
  3572. {
  3573. "name": "Taylor Otwell",
  3574. "email": "taylor@laravel.com"
  3575. }
  3576. ],
  3577. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3578. "homepage": "https://laravel.com",
  3579. "keywords": [
  3580. "laravel",
  3581. "oauth"
  3582. ],
  3583. "support": {
  3584. "issues": "https://github.com/laravel/socialite/issues",
  3585. "source": "https://github.com/laravel/socialite"
  3586. },
  3587. "time": "2025-05-19T12:56:37+00:00"
  3588. },
  3589. {
  3590. "name": "laravel/tinker",
  3591. "version": "v2.10.1",
  3592. "source": {
  3593. "type": "git",
  3594. "url": "https://github.com/laravel/tinker.git",
  3595. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
  3596. },
  3597. "dist": {
  3598. "type": "zip",
  3599. "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
  3600. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
  3601. "shasum": ""
  3602. },
  3603. "require": {
  3604. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3605. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3606. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3607. "php": "^7.2.5|^8.0",
  3608. "psy/psysh": "^0.11.1|^0.12.0",
  3609. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3610. },
  3611. "require-dev": {
  3612. "mockery/mockery": "~1.3.3|^1.4.2",
  3613. "phpstan/phpstan": "^1.10",
  3614. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  3615. },
  3616. "suggest": {
  3617. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  3618. },
  3619. "type": "library",
  3620. "extra": {
  3621. "laravel": {
  3622. "providers": [
  3623. "Laravel\\Tinker\\TinkerServiceProvider"
  3624. ]
  3625. }
  3626. },
  3627. "autoload": {
  3628. "psr-4": {
  3629. "Laravel\\Tinker\\": "src/"
  3630. }
  3631. },
  3632. "notification-url": "https://packagist.org/downloads/",
  3633. "license": [
  3634. "MIT"
  3635. ],
  3636. "authors": [
  3637. {
  3638. "name": "Taylor Otwell",
  3639. "email": "taylor@laravel.com"
  3640. }
  3641. ],
  3642. "description": "Powerful REPL for the Laravel framework.",
  3643. "keywords": [
  3644. "REPL",
  3645. "Tinker",
  3646. "laravel",
  3647. "psysh"
  3648. ],
  3649. "support": {
  3650. "issues": "https://github.com/laravel/tinker/issues",
  3651. "source": "https://github.com/laravel/tinker/tree/v2.10.1"
  3652. },
  3653. "time": "2025-01-27T14:24:01+00:00"
  3654. },
  3655. {
  3656. "name": "league/commonmark",
  3657. "version": "2.7.0",
  3658. "source": {
  3659. "type": "git",
  3660. "url": "https://github.com/thephpleague/commonmark.git",
  3661. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405"
  3662. },
  3663. "dist": {
  3664. "type": "zip",
  3665. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  3666. "reference": "6fbb36d44824ed4091adbcf4c7d4a3923cdb3405",
  3667. "shasum": ""
  3668. },
  3669. "require": {
  3670. "ext-mbstring": "*",
  3671. "league/config": "^1.1.1",
  3672. "php": "^7.4 || ^8.0",
  3673. "psr/event-dispatcher": "^1.0",
  3674. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3675. "symfony/polyfill-php80": "^1.16"
  3676. },
  3677. "require-dev": {
  3678. "cebe/markdown": "^1.0",
  3679. "commonmark/cmark": "0.31.1",
  3680. "commonmark/commonmark.js": "0.31.1",
  3681. "composer/package-versions-deprecated": "^1.8",
  3682. "embed/embed": "^4.4",
  3683. "erusev/parsedown": "^1.0",
  3684. "ext-json": "*",
  3685. "github/gfm": "0.29.0",
  3686. "michelf/php-markdown": "^1.4 || ^2.0",
  3687. "nyholm/psr7": "^1.5",
  3688. "phpstan/phpstan": "^1.8.2",
  3689. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3690. "scrutinizer/ocular": "^1.8.1",
  3691. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  3692. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  3693. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  3694. "unleashedtech/php-coding-standard": "^3.1.1",
  3695. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3696. },
  3697. "suggest": {
  3698. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3699. },
  3700. "type": "library",
  3701. "extra": {
  3702. "branch-alias": {
  3703. "dev-main": "2.8-dev"
  3704. }
  3705. },
  3706. "autoload": {
  3707. "psr-4": {
  3708. "League\\CommonMark\\": "src"
  3709. }
  3710. },
  3711. "notification-url": "https://packagist.org/downloads/",
  3712. "license": [
  3713. "BSD-3-Clause"
  3714. ],
  3715. "authors": [
  3716. {
  3717. "name": "Colin O'Dell",
  3718. "email": "colinodell@gmail.com",
  3719. "homepage": "https://www.colinodell.com",
  3720. "role": "Lead Developer"
  3721. }
  3722. ],
  3723. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3724. "homepage": "https://commonmark.thephpleague.com",
  3725. "keywords": [
  3726. "commonmark",
  3727. "flavored",
  3728. "gfm",
  3729. "github",
  3730. "github-flavored",
  3731. "markdown",
  3732. "md",
  3733. "parser"
  3734. ],
  3735. "support": {
  3736. "docs": "https://commonmark.thephpleague.com/",
  3737. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3738. "issues": "https://github.com/thephpleague/commonmark/issues",
  3739. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3740. "source": "https://github.com/thephpleague/commonmark"
  3741. },
  3742. "funding": [
  3743. {
  3744. "url": "https://www.colinodell.com/sponsor",
  3745. "type": "custom"
  3746. },
  3747. {
  3748. "url": "https://www.paypal.me/colinpodell/10.00",
  3749. "type": "custom"
  3750. },
  3751. {
  3752. "url": "https://github.com/colinodell",
  3753. "type": "github"
  3754. },
  3755. {
  3756. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3757. "type": "tidelift"
  3758. }
  3759. ],
  3760. "time": "2025-05-05T12:20:28+00:00"
  3761. },
  3762. {
  3763. "name": "league/config",
  3764. "version": "v1.2.0",
  3765. "source": {
  3766. "type": "git",
  3767. "url": "https://github.com/thephpleague/config.git",
  3768. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3769. },
  3770. "dist": {
  3771. "type": "zip",
  3772. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3773. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3774. "shasum": ""
  3775. },
  3776. "require": {
  3777. "dflydev/dot-access-data": "^3.0.1",
  3778. "nette/schema": "^1.2",
  3779. "php": "^7.4 || ^8.0"
  3780. },
  3781. "require-dev": {
  3782. "phpstan/phpstan": "^1.8.2",
  3783. "phpunit/phpunit": "^9.5.5",
  3784. "scrutinizer/ocular": "^1.8.1",
  3785. "unleashedtech/php-coding-standard": "^3.1",
  3786. "vimeo/psalm": "^4.7.3"
  3787. },
  3788. "type": "library",
  3789. "extra": {
  3790. "branch-alias": {
  3791. "dev-main": "1.2-dev"
  3792. }
  3793. },
  3794. "autoload": {
  3795. "psr-4": {
  3796. "League\\Config\\": "src"
  3797. }
  3798. },
  3799. "notification-url": "https://packagist.org/downloads/",
  3800. "license": [
  3801. "BSD-3-Clause"
  3802. ],
  3803. "authors": [
  3804. {
  3805. "name": "Colin O'Dell",
  3806. "email": "colinodell@gmail.com",
  3807. "homepage": "https://www.colinodell.com",
  3808. "role": "Lead Developer"
  3809. }
  3810. ],
  3811. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3812. "homepage": "https://config.thephpleague.com",
  3813. "keywords": [
  3814. "array",
  3815. "config",
  3816. "configuration",
  3817. "dot",
  3818. "dot-access",
  3819. "nested",
  3820. "schema"
  3821. ],
  3822. "support": {
  3823. "docs": "https://config.thephpleague.com/",
  3824. "issues": "https://github.com/thephpleague/config/issues",
  3825. "rss": "https://github.com/thephpleague/config/releases.atom",
  3826. "source": "https://github.com/thephpleague/config"
  3827. },
  3828. "funding": [
  3829. {
  3830. "url": "https://www.colinodell.com/sponsor",
  3831. "type": "custom"
  3832. },
  3833. {
  3834. "url": "https://www.paypal.me/colinpodell/10.00",
  3835. "type": "custom"
  3836. },
  3837. {
  3838. "url": "https://github.com/colinodell",
  3839. "type": "github"
  3840. }
  3841. ],
  3842. "time": "2022-12-11T20:36:23+00:00"
  3843. },
  3844. {
  3845. "name": "league/csv",
  3846. "version": "9.23.0",
  3847. "source": {
  3848. "type": "git",
  3849. "url": "https://github.com/thephpleague/csv.git",
  3850. "reference": "774008ad8a634448e4f8e288905e070e8b317ff3"
  3851. },
  3852. "dist": {
  3853. "type": "zip",
  3854. "url": "https://api.github.com/repos/thephpleague/csv/zipball/774008ad8a634448e4f8e288905e070e8b317ff3",
  3855. "reference": "774008ad8a634448e4f8e288905e070e8b317ff3",
  3856. "shasum": ""
  3857. },
  3858. "require": {
  3859. "ext-filter": "*",
  3860. "php": "^8.1.2"
  3861. },
  3862. "require-dev": {
  3863. "ext-dom": "*",
  3864. "ext-xdebug": "*",
  3865. "friendsofphp/php-cs-fixer": "^3.69.0",
  3866. "phpbench/phpbench": "^1.4.0",
  3867. "phpstan/phpstan": "^1.12.18",
  3868. "phpstan/phpstan-deprecation-rules": "^1.2.1",
  3869. "phpstan/phpstan-phpunit": "^1.4.2",
  3870. "phpstan/phpstan-strict-rules": "^1.6.2",
  3871. "phpunit/phpunit": "^10.5.16 || ^11.5.7",
  3872. "symfony/var-dumper": "^6.4.8 || ^7.2.3"
  3873. },
  3874. "suggest": {
  3875. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  3876. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
  3877. "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters",
  3878. "ext-mysqli": "Requiered to use the package with the MySQLi extension",
  3879. "ext-pdo": "Required to use the package with the PDO extension",
  3880. "ext-pgsql": "Requiered to use the package with the PgSQL extension",
  3881. "ext-sqlite3": "Required to use the package with the SQLite3 extension"
  3882. },
  3883. "type": "library",
  3884. "extra": {
  3885. "branch-alias": {
  3886. "dev-master": "9.x-dev"
  3887. }
  3888. },
  3889. "autoload": {
  3890. "files": [
  3891. "src/functions_include.php"
  3892. ],
  3893. "psr-4": {
  3894. "League\\Csv\\": "src"
  3895. }
  3896. },
  3897. "notification-url": "https://packagist.org/downloads/",
  3898. "license": [
  3899. "MIT"
  3900. ],
  3901. "authors": [
  3902. {
  3903. "name": "Ignace Nyamagana Butera",
  3904. "email": "nyamsprod@gmail.com",
  3905. "homepage": "https://github.com/nyamsprod/",
  3906. "role": "Developer"
  3907. }
  3908. ],
  3909. "description": "CSV data manipulation made easy in PHP",
  3910. "homepage": "https://csv.thephpleague.com",
  3911. "keywords": [
  3912. "convert",
  3913. "csv",
  3914. "export",
  3915. "filter",
  3916. "import",
  3917. "read",
  3918. "transform",
  3919. "write"
  3920. ],
  3921. "support": {
  3922. "docs": "https://csv.thephpleague.com",
  3923. "issues": "https://github.com/thephpleague/csv/issues",
  3924. "rss": "https://github.com/thephpleague/csv/releases.atom",
  3925. "source": "https://github.com/thephpleague/csv"
  3926. },
  3927. "funding": [
  3928. {
  3929. "url": "https://github.com/sponsors/nyamsprod",
  3930. "type": "github"
  3931. }
  3932. ],
  3933. "time": "2025-03-28T06:52:04+00:00"
  3934. },
  3935. {
  3936. "name": "league/flysystem",
  3937. "version": "3.29.1",
  3938. "source": {
  3939. "type": "git",
  3940. "url": "https://github.com/thephpleague/flysystem.git",
  3941. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  3942. },
  3943. "dist": {
  3944. "type": "zip",
  3945. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3946. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3947. "shasum": ""
  3948. },
  3949. "require": {
  3950. "league/flysystem-local": "^3.0.0",
  3951. "league/mime-type-detection": "^1.0.0",
  3952. "php": "^8.0.2"
  3953. },
  3954. "conflict": {
  3955. "async-aws/core": "<1.19.0",
  3956. "async-aws/s3": "<1.14.0",
  3957. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3958. "guzzlehttp/guzzle": "<7.0",
  3959. "guzzlehttp/ringphp": "<1.1.1",
  3960. "phpseclib/phpseclib": "3.0.15",
  3961. "symfony/http-client": "<5.2"
  3962. },
  3963. "require-dev": {
  3964. "async-aws/s3": "^1.5 || ^2.0",
  3965. "async-aws/simple-s3": "^1.1 || ^2.0",
  3966. "aws/aws-sdk-php": "^3.295.10",
  3967. "composer/semver": "^3.0",
  3968. "ext-fileinfo": "*",
  3969. "ext-ftp": "*",
  3970. "ext-mongodb": "^1.3",
  3971. "ext-zip": "*",
  3972. "friendsofphp/php-cs-fixer": "^3.5",
  3973. "google/cloud-storage": "^1.23",
  3974. "guzzlehttp/psr7": "^2.6",
  3975. "microsoft/azure-storage-blob": "^1.1",
  3976. "mongodb/mongodb": "^1.2",
  3977. "phpseclib/phpseclib": "^3.0.36",
  3978. "phpstan/phpstan": "^1.10",
  3979. "phpunit/phpunit": "^9.5.11|^10.0",
  3980. "sabre/dav": "^4.6.0"
  3981. },
  3982. "type": "library",
  3983. "autoload": {
  3984. "psr-4": {
  3985. "League\\Flysystem\\": "src"
  3986. }
  3987. },
  3988. "notification-url": "https://packagist.org/downloads/",
  3989. "license": [
  3990. "MIT"
  3991. ],
  3992. "authors": [
  3993. {
  3994. "name": "Frank de Jonge",
  3995. "email": "info@frankdejonge.nl"
  3996. }
  3997. ],
  3998. "description": "File storage abstraction for PHP",
  3999. "keywords": [
  4000. "WebDAV",
  4001. "aws",
  4002. "cloud",
  4003. "file",
  4004. "files",
  4005. "filesystem",
  4006. "filesystems",
  4007. "ftp",
  4008. "s3",
  4009. "sftp",
  4010. "storage"
  4011. ],
  4012. "support": {
  4013. "issues": "https://github.com/thephpleague/flysystem/issues",
  4014. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  4015. },
  4016. "time": "2024-10-08T08:58:34+00:00"
  4017. },
  4018. {
  4019. "name": "league/flysystem-local",
  4020. "version": "3.29.0",
  4021. "source": {
  4022. "type": "git",
  4023. "url": "https://github.com/thephpleague/flysystem-local.git",
  4024. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  4025. },
  4026. "dist": {
  4027. "type": "zip",
  4028. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  4029. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  4030. "shasum": ""
  4031. },
  4032. "require": {
  4033. "ext-fileinfo": "*",
  4034. "league/flysystem": "^3.0.0",
  4035. "league/mime-type-detection": "^1.0.0",
  4036. "php": "^8.0.2"
  4037. },
  4038. "type": "library",
  4039. "autoload": {
  4040. "psr-4": {
  4041. "League\\Flysystem\\Local\\": ""
  4042. }
  4043. },
  4044. "notification-url": "https://packagist.org/downloads/",
  4045. "license": [
  4046. "MIT"
  4047. ],
  4048. "authors": [
  4049. {
  4050. "name": "Frank de Jonge",
  4051. "email": "info@frankdejonge.nl"
  4052. }
  4053. ],
  4054. "description": "Local filesystem adapter for Flysystem.",
  4055. "keywords": [
  4056. "Flysystem",
  4057. "file",
  4058. "files",
  4059. "filesystem",
  4060. "local"
  4061. ],
  4062. "support": {
  4063. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  4064. },
  4065. "time": "2024-08-09T21:24:39+00:00"
  4066. },
  4067. {
  4068. "name": "league/mime-type-detection",
  4069. "version": "1.16.0",
  4070. "source": {
  4071. "type": "git",
  4072. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4073. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  4074. },
  4075. "dist": {
  4076. "type": "zip",
  4077. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  4078. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  4079. "shasum": ""
  4080. },
  4081. "require": {
  4082. "ext-fileinfo": "*",
  4083. "php": "^7.4 || ^8.0"
  4084. },
  4085. "require-dev": {
  4086. "friendsofphp/php-cs-fixer": "^3.2",
  4087. "phpstan/phpstan": "^0.12.68",
  4088. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  4089. },
  4090. "type": "library",
  4091. "autoload": {
  4092. "psr-4": {
  4093. "League\\MimeTypeDetection\\": "src"
  4094. }
  4095. },
  4096. "notification-url": "https://packagist.org/downloads/",
  4097. "license": [
  4098. "MIT"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "Frank de Jonge",
  4103. "email": "info@frankdejonge.nl"
  4104. }
  4105. ],
  4106. "description": "Mime-type detection for Flysystem",
  4107. "support": {
  4108. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4109. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  4110. },
  4111. "funding": [
  4112. {
  4113. "url": "https://github.com/frankdejonge",
  4114. "type": "github"
  4115. },
  4116. {
  4117. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4118. "type": "tidelift"
  4119. }
  4120. ],
  4121. "time": "2024-09-21T08:32:55+00:00"
  4122. },
  4123. {
  4124. "name": "league/oauth1-client",
  4125. "version": "v1.11.0",
  4126. "source": {
  4127. "type": "git",
  4128. "url": "https://github.com/thephpleague/oauth1-client.git",
  4129. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055"
  4130. },
  4131. "dist": {
  4132. "type": "zip",
  4133. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4134. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4135. "shasum": ""
  4136. },
  4137. "require": {
  4138. "ext-json": "*",
  4139. "ext-openssl": "*",
  4140. "guzzlehttp/guzzle": "^6.0|^7.0",
  4141. "guzzlehttp/psr7": "^1.7|^2.0",
  4142. "php": ">=7.1||>=8.0"
  4143. },
  4144. "require-dev": {
  4145. "ext-simplexml": "*",
  4146. "friendsofphp/php-cs-fixer": "^2.17",
  4147. "mockery/mockery": "^1.3.3",
  4148. "phpstan/phpstan": "^0.12.42",
  4149. "phpunit/phpunit": "^7.5||9.5"
  4150. },
  4151. "suggest": {
  4152. "ext-simplexml": "For decoding XML-based responses."
  4153. },
  4154. "type": "library",
  4155. "extra": {
  4156. "branch-alias": {
  4157. "dev-master": "1.0-dev",
  4158. "dev-develop": "2.0-dev"
  4159. }
  4160. },
  4161. "autoload": {
  4162. "psr-4": {
  4163. "League\\OAuth1\\Client\\": "src/"
  4164. }
  4165. },
  4166. "notification-url": "https://packagist.org/downloads/",
  4167. "license": [
  4168. "MIT"
  4169. ],
  4170. "authors": [
  4171. {
  4172. "name": "Ben Corlett",
  4173. "email": "bencorlett@me.com",
  4174. "homepage": "http://www.webcomm.com.au",
  4175. "role": "Developer"
  4176. }
  4177. ],
  4178. "description": "OAuth 1.0 Client Library",
  4179. "keywords": [
  4180. "Authentication",
  4181. "SSO",
  4182. "authorization",
  4183. "bitbucket",
  4184. "identity",
  4185. "idp",
  4186. "oauth",
  4187. "oauth1",
  4188. "single sign on",
  4189. "trello",
  4190. "tumblr",
  4191. "twitter"
  4192. ],
  4193. "support": {
  4194. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4195. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.11.0"
  4196. },
  4197. "time": "2024-12-10T19:59:05+00:00"
  4198. },
  4199. {
  4200. "name": "league/uri",
  4201. "version": "7.5.1",
  4202. "source": {
  4203. "type": "git",
  4204. "url": "https://github.com/thephpleague/uri.git",
  4205. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  4206. },
  4207. "dist": {
  4208. "type": "zip",
  4209. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  4210. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  4211. "shasum": ""
  4212. },
  4213. "require": {
  4214. "league/uri-interfaces": "^7.5",
  4215. "php": "^8.1"
  4216. },
  4217. "conflict": {
  4218. "league/uri-schemes": "^1.0"
  4219. },
  4220. "suggest": {
  4221. "ext-bcmath": "to improve IPV4 host parsing",
  4222. "ext-fileinfo": "to create Data URI from file contennts",
  4223. "ext-gmp": "to improve IPV4 host parsing",
  4224. "ext-intl": "to handle IDN host with the best performance",
  4225. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4226. "league/uri-components": "Needed to easily manipulate URI objects components",
  4227. "php-64bit": "to improve IPV4 host parsing",
  4228. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4229. },
  4230. "type": "library",
  4231. "extra": {
  4232. "branch-alias": {
  4233. "dev-master": "7.x-dev"
  4234. }
  4235. },
  4236. "autoload": {
  4237. "psr-4": {
  4238. "League\\Uri\\": ""
  4239. }
  4240. },
  4241. "notification-url": "https://packagist.org/downloads/",
  4242. "license": [
  4243. "MIT"
  4244. ],
  4245. "authors": [
  4246. {
  4247. "name": "Ignace Nyamagana Butera",
  4248. "email": "nyamsprod@gmail.com",
  4249. "homepage": "https://nyamsprod.com"
  4250. }
  4251. ],
  4252. "description": "URI manipulation library",
  4253. "homepage": "https://uri.thephpleague.com",
  4254. "keywords": [
  4255. "data-uri",
  4256. "file-uri",
  4257. "ftp",
  4258. "hostname",
  4259. "http",
  4260. "https",
  4261. "middleware",
  4262. "parse_str",
  4263. "parse_url",
  4264. "psr-7",
  4265. "query-string",
  4266. "querystring",
  4267. "rfc3986",
  4268. "rfc3987",
  4269. "rfc6570",
  4270. "uri",
  4271. "uri-template",
  4272. "url",
  4273. "ws"
  4274. ],
  4275. "support": {
  4276. "docs": "https://uri.thephpleague.com",
  4277. "forum": "https://thephpleague.slack.com",
  4278. "issues": "https://github.com/thephpleague/uri-src/issues",
  4279. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  4280. },
  4281. "funding": [
  4282. {
  4283. "url": "https://github.com/sponsors/nyamsprod",
  4284. "type": "github"
  4285. }
  4286. ],
  4287. "time": "2024-12-08T08:40:02+00:00"
  4288. },
  4289. {
  4290. "name": "league/uri-interfaces",
  4291. "version": "7.5.0",
  4292. "source": {
  4293. "type": "git",
  4294. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4295. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  4296. },
  4297. "dist": {
  4298. "type": "zip",
  4299. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4300. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4301. "shasum": ""
  4302. },
  4303. "require": {
  4304. "ext-filter": "*",
  4305. "php": "^8.1",
  4306. "psr/http-factory": "^1",
  4307. "psr/http-message": "^1.1 || ^2.0"
  4308. },
  4309. "suggest": {
  4310. "ext-bcmath": "to improve IPV4 host parsing",
  4311. "ext-gmp": "to improve IPV4 host parsing",
  4312. "ext-intl": "to handle IDN host with the best performance",
  4313. "php-64bit": "to improve IPV4 host parsing",
  4314. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4315. },
  4316. "type": "library",
  4317. "extra": {
  4318. "branch-alias": {
  4319. "dev-master": "7.x-dev"
  4320. }
  4321. },
  4322. "autoload": {
  4323. "psr-4": {
  4324. "League\\Uri\\": ""
  4325. }
  4326. },
  4327. "notification-url": "https://packagist.org/downloads/",
  4328. "license": [
  4329. "MIT"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "Ignace Nyamagana Butera",
  4334. "email": "nyamsprod@gmail.com",
  4335. "homepage": "https://nyamsprod.com"
  4336. }
  4337. ],
  4338. "description": "Common interfaces and classes for URI representation and interaction",
  4339. "homepage": "https://uri.thephpleague.com",
  4340. "keywords": [
  4341. "data-uri",
  4342. "file-uri",
  4343. "ftp",
  4344. "hostname",
  4345. "http",
  4346. "https",
  4347. "parse_str",
  4348. "parse_url",
  4349. "psr-7",
  4350. "query-string",
  4351. "querystring",
  4352. "rfc3986",
  4353. "rfc3987",
  4354. "rfc6570",
  4355. "uri",
  4356. "url",
  4357. "ws"
  4358. ],
  4359. "support": {
  4360. "docs": "https://uri.thephpleague.com",
  4361. "forum": "https://thephpleague.slack.com",
  4362. "issues": "https://github.com/thephpleague/uri-src/issues",
  4363. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  4364. },
  4365. "funding": [
  4366. {
  4367. "url": "https://github.com/sponsors/nyamsprod",
  4368. "type": "github"
  4369. }
  4370. ],
  4371. "time": "2024-12-08T08:18:47+00:00"
  4372. },
  4373. {
  4374. "name": "livewire/livewire",
  4375. "version": "v3.6.3",
  4376. "source": {
  4377. "type": "git",
  4378. "url": "https://github.com/livewire/livewire.git",
  4379. "reference": "56aa1bb63a46e06181c56fa64717a7287e19115e"
  4380. },
  4381. "dist": {
  4382. "type": "zip",
  4383. "url": "https://api.github.com/repos/livewire/livewire/zipball/56aa1bb63a46e06181c56fa64717a7287e19115e",
  4384. "reference": "56aa1bb63a46e06181c56fa64717a7287e19115e",
  4385. "shasum": ""
  4386. },
  4387. "require": {
  4388. "illuminate/database": "^10.0|^11.0|^12.0",
  4389. "illuminate/routing": "^10.0|^11.0|^12.0",
  4390. "illuminate/support": "^10.0|^11.0|^12.0",
  4391. "illuminate/validation": "^10.0|^11.0|^12.0",
  4392. "laravel/prompts": "^0.1.24|^0.2|^0.3",
  4393. "league/mime-type-detection": "^1.9",
  4394. "php": "^8.1",
  4395. "symfony/console": "^6.0|^7.0",
  4396. "symfony/http-kernel": "^6.2|^7.0"
  4397. },
  4398. "require-dev": {
  4399. "calebporzio/sushi": "^2.1",
  4400. "laravel/framework": "^10.15.0|^11.0|^12.0",
  4401. "mockery/mockery": "^1.3.1",
  4402. "orchestra/testbench": "^8.21.0|^9.0|^10.0",
  4403. "orchestra/testbench-dusk": "^8.24|^9.1|^10.0",
  4404. "phpunit/phpunit": "^10.4|^11.5",
  4405. "psy/psysh": "^0.11.22|^0.12"
  4406. },
  4407. "type": "library",
  4408. "extra": {
  4409. "laravel": {
  4410. "aliases": {
  4411. "Livewire": "Livewire\\Livewire"
  4412. },
  4413. "providers": [
  4414. "Livewire\\LivewireServiceProvider"
  4415. ]
  4416. }
  4417. },
  4418. "autoload": {
  4419. "files": [
  4420. "src/helpers.php"
  4421. ],
  4422. "psr-4": {
  4423. "Livewire\\": "src/"
  4424. }
  4425. },
  4426. "notification-url": "https://packagist.org/downloads/",
  4427. "license": [
  4428. "MIT"
  4429. ],
  4430. "authors": [
  4431. {
  4432. "name": "Caleb Porzio",
  4433. "email": "calebporzio@gmail.com"
  4434. }
  4435. ],
  4436. "description": "A front-end framework for Laravel.",
  4437. "support": {
  4438. "issues": "https://github.com/livewire/livewire/issues",
  4439. "source": "https://github.com/livewire/livewire/tree/v3.6.3"
  4440. },
  4441. "funding": [
  4442. {
  4443. "url": "https://github.com/livewire",
  4444. "type": "github"
  4445. }
  4446. ],
  4447. "time": "2025-04-12T22:26:52+00:00"
  4448. },
  4449. {
  4450. "name": "masterminds/html5",
  4451. "version": "2.9.0",
  4452. "source": {
  4453. "type": "git",
  4454. "url": "https://github.com/Masterminds/html5-php.git",
  4455. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  4456. },
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4460. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4461. "shasum": ""
  4462. },
  4463. "require": {
  4464. "ext-dom": "*",
  4465. "php": ">=5.3.0"
  4466. },
  4467. "require-dev": {
  4468. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4469. },
  4470. "type": "library",
  4471. "extra": {
  4472. "branch-alias": {
  4473. "dev-master": "2.7-dev"
  4474. }
  4475. },
  4476. "autoload": {
  4477. "psr-4": {
  4478. "Masterminds\\": "src"
  4479. }
  4480. },
  4481. "notification-url": "https://packagist.org/downloads/",
  4482. "license": [
  4483. "MIT"
  4484. ],
  4485. "authors": [
  4486. {
  4487. "name": "Matt Butcher",
  4488. "email": "technosophos@gmail.com"
  4489. },
  4490. {
  4491. "name": "Matt Farina",
  4492. "email": "matt@mattfarina.com"
  4493. },
  4494. {
  4495. "name": "Asmir Mustafic",
  4496. "email": "goetas@gmail.com"
  4497. }
  4498. ],
  4499. "description": "An HTML5 parser and serializer.",
  4500. "homepage": "http://masterminds.github.io/html5-php",
  4501. "keywords": [
  4502. "HTML5",
  4503. "dom",
  4504. "html",
  4505. "parser",
  4506. "querypath",
  4507. "serializer",
  4508. "xml"
  4509. ],
  4510. "support": {
  4511. "issues": "https://github.com/Masterminds/html5-php/issues",
  4512. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  4513. },
  4514. "time": "2024-03-31T07:05:07+00:00"
  4515. },
  4516. {
  4517. "name": "matomo/device-detector",
  4518. "version": "6.4.5",
  4519. "source": {
  4520. "type": "git",
  4521. "url": "https://github.com/matomo-org/device-detector.git",
  4522. "reference": "270bbc41f80994e80805ac377b67324eba53c412"
  4523. },
  4524. "dist": {
  4525. "type": "zip",
  4526. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/270bbc41f80994e80805ac377b67324eba53c412",
  4527. "reference": "270bbc41f80994e80805ac377b67324eba53c412",
  4528. "shasum": ""
  4529. },
  4530. "require": {
  4531. "mustangostang/spyc": "*",
  4532. "php": "^7.2|^8.0"
  4533. },
  4534. "replace": {
  4535. "piwik/device-detector": "self.version"
  4536. },
  4537. "require-dev": {
  4538. "matthiasmullie/scrapbook": "^1.4.7",
  4539. "mayflower/mo4-coding-standard": "^v9.0.0",
  4540. "phpstan/phpstan": "^1.10.44",
  4541. "phpunit/phpunit": "^8.5.8",
  4542. "psr/cache": "^1.0.1",
  4543. "psr/simple-cache": "^1.0.1",
  4544. "slevomat/coding-standard": "<8.16.0",
  4545. "symfony/yaml": "^5.1.7"
  4546. },
  4547. "suggest": {
  4548. "doctrine/cache": "Can directly be used for caching purpose",
  4549. "ext-yaml": "Necessary for using the Pecl YAML parser"
  4550. },
  4551. "type": "library",
  4552. "autoload": {
  4553. "psr-4": {
  4554. "DeviceDetector\\": ""
  4555. },
  4556. "exclude-from-classmap": [
  4557. "Tests/"
  4558. ]
  4559. },
  4560. "notification-url": "https://packagist.org/downloads/",
  4561. "license": [
  4562. "LGPL-3.0-or-later"
  4563. ],
  4564. "authors": [
  4565. {
  4566. "name": "The Matomo Team",
  4567. "email": "hello@matomo.org",
  4568. "homepage": "https://matomo.org/team/"
  4569. }
  4570. ],
  4571. "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.",
  4572. "homepage": "https://matomo.org",
  4573. "keywords": [
  4574. "devicedetection",
  4575. "parser",
  4576. "useragent"
  4577. ],
  4578. "support": {
  4579. "forum": "https://forum.matomo.org/",
  4580. "issues": "https://github.com/matomo-org/device-detector/issues",
  4581. "source": "https://github.com/matomo-org/matomo",
  4582. "wiki": "https://dev.matomo.org/"
  4583. },
  4584. "time": "2025-02-26T17:37:32+00:00"
  4585. },
  4586. {
  4587. "name": "monolog/monolog",
  4588. "version": "3.9.0",
  4589. "source": {
  4590. "type": "git",
  4591. "url": "https://github.com/Seldaek/monolog.git",
  4592. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6"
  4593. },
  4594. "dist": {
  4595. "type": "zip",
  4596. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/10d85740180ecba7896c87e06a166e0c95a0e3b6",
  4597. "reference": "10d85740180ecba7896c87e06a166e0c95a0e3b6",
  4598. "shasum": ""
  4599. },
  4600. "require": {
  4601. "php": ">=8.1",
  4602. "psr/log": "^2.0 || ^3.0"
  4603. },
  4604. "provide": {
  4605. "psr/log-implementation": "3.0.0"
  4606. },
  4607. "require-dev": {
  4608. "aws/aws-sdk-php": "^3.0",
  4609. "doctrine/couchdb": "~1.0@dev",
  4610. "elasticsearch/elasticsearch": "^7 || ^8",
  4611. "ext-json": "*",
  4612. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4613. "guzzlehttp/guzzle": "^7.4.5",
  4614. "guzzlehttp/psr7": "^2.2",
  4615. "mongodb/mongodb": "^1.8",
  4616. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4617. "php-console/php-console": "^3.1.8",
  4618. "phpstan/phpstan": "^2",
  4619. "phpstan/phpstan-deprecation-rules": "^2",
  4620. "phpstan/phpstan-strict-rules": "^2",
  4621. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4622. "predis/predis": "^1.1 || ^2",
  4623. "rollbar/rollbar": "^4.0",
  4624. "ruflin/elastica": "^7 || ^8",
  4625. "symfony/mailer": "^5.4 || ^6",
  4626. "symfony/mime": "^5.4 || ^6"
  4627. },
  4628. "suggest": {
  4629. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4630. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4631. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4632. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4633. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4634. "ext-mbstring": "Allow to work properly with unicode symbols",
  4635. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4636. "ext-openssl": "Required to send log messages using SSL",
  4637. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4638. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4639. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4640. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4641. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4642. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4643. },
  4644. "type": "library",
  4645. "extra": {
  4646. "branch-alias": {
  4647. "dev-main": "3.x-dev"
  4648. }
  4649. },
  4650. "autoload": {
  4651. "psr-4": {
  4652. "Monolog\\": "src/Monolog"
  4653. }
  4654. },
  4655. "notification-url": "https://packagist.org/downloads/",
  4656. "license": [
  4657. "MIT"
  4658. ],
  4659. "authors": [
  4660. {
  4661. "name": "Jordi Boggiano",
  4662. "email": "j.boggiano@seld.be",
  4663. "homepage": "https://seld.be"
  4664. }
  4665. ],
  4666. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4667. "homepage": "https://github.com/Seldaek/monolog",
  4668. "keywords": [
  4669. "log",
  4670. "logging",
  4671. "psr-3"
  4672. ],
  4673. "support": {
  4674. "issues": "https://github.com/Seldaek/monolog/issues",
  4675. "source": "https://github.com/Seldaek/monolog/tree/3.9.0"
  4676. },
  4677. "funding": [
  4678. {
  4679. "url": "https://github.com/Seldaek",
  4680. "type": "github"
  4681. },
  4682. {
  4683. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4684. "type": "tidelift"
  4685. }
  4686. ],
  4687. "time": "2025-03-24T10:02:05+00:00"
  4688. },
  4689. {
  4690. "name": "mtdowling/jmespath.php",
  4691. "version": "2.8.0",
  4692. "source": {
  4693. "type": "git",
  4694. "url": "https://github.com/jmespath/jmespath.php.git",
  4695. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4696. },
  4697. "dist": {
  4698. "type": "zip",
  4699. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4700. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4701. "shasum": ""
  4702. },
  4703. "require": {
  4704. "php": "^7.2.5 || ^8.0",
  4705. "symfony/polyfill-mbstring": "^1.17"
  4706. },
  4707. "require-dev": {
  4708. "composer/xdebug-handler": "^3.0.3",
  4709. "phpunit/phpunit": "^8.5.33"
  4710. },
  4711. "bin": [
  4712. "bin/jp.php"
  4713. ],
  4714. "type": "library",
  4715. "extra": {
  4716. "branch-alias": {
  4717. "dev-master": "2.8-dev"
  4718. }
  4719. },
  4720. "autoload": {
  4721. "files": [
  4722. "src/JmesPath.php"
  4723. ],
  4724. "psr-4": {
  4725. "JmesPath\\": "src/"
  4726. }
  4727. },
  4728. "notification-url": "https://packagist.org/downloads/",
  4729. "license": [
  4730. "MIT"
  4731. ],
  4732. "authors": [
  4733. {
  4734. "name": "Graham Campbell",
  4735. "email": "hello@gjcampbell.co.uk",
  4736. "homepage": "https://github.com/GrahamCampbell"
  4737. },
  4738. {
  4739. "name": "Michael Dowling",
  4740. "email": "mtdowling@gmail.com",
  4741. "homepage": "https://github.com/mtdowling"
  4742. }
  4743. ],
  4744. "description": "Declaratively specify how to extract elements from a JSON document",
  4745. "keywords": [
  4746. "json",
  4747. "jsonpath"
  4748. ],
  4749. "support": {
  4750. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4751. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  4752. },
  4753. "time": "2024-09-04T18:46:31+00:00"
  4754. },
  4755. {
  4756. "name": "mustangostang/spyc",
  4757. "version": "0.6.3",
  4758. "source": {
  4759. "type": "git",
  4760. "url": "https://github.com/mustangostang/spyc.git",
  4761. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  4762. },
  4763. "dist": {
  4764. "type": "zip",
  4765. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  4766. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  4767. "shasum": ""
  4768. },
  4769. "require": {
  4770. "php": ">=5.3.1"
  4771. },
  4772. "require-dev": {
  4773. "phpunit/phpunit": "4.3.*@dev"
  4774. },
  4775. "type": "library",
  4776. "extra": {
  4777. "branch-alias": {
  4778. "dev-master": "0.5.x-dev"
  4779. }
  4780. },
  4781. "autoload": {
  4782. "files": [
  4783. "Spyc.php"
  4784. ]
  4785. },
  4786. "notification-url": "https://packagist.org/downloads/",
  4787. "license": [
  4788. "MIT"
  4789. ],
  4790. "authors": [
  4791. {
  4792. "name": "mustangostang",
  4793. "email": "vlad.andersen@gmail.com"
  4794. }
  4795. ],
  4796. "description": "A simple YAML loader/dumper class for PHP",
  4797. "homepage": "https://github.com/mustangostang/spyc/",
  4798. "keywords": [
  4799. "spyc",
  4800. "yaml",
  4801. "yml"
  4802. ],
  4803. "support": {
  4804. "issues": "https://github.com/mustangostang/spyc/issues",
  4805. "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
  4806. },
  4807. "time": "2019-09-10T13:16:29+00:00"
  4808. },
  4809. {
  4810. "name": "nesbot/carbon",
  4811. "version": "3.9.1",
  4812. "source": {
  4813. "type": "git",
  4814. "url": "https://github.com/CarbonPHP/carbon.git",
  4815. "reference": "ced71f79398ece168e24f7f7710462f462310d4d"
  4816. },
  4817. "dist": {
  4818. "type": "zip",
  4819. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/ced71f79398ece168e24f7f7710462f462310d4d",
  4820. "reference": "ced71f79398ece168e24f7f7710462f462310d4d",
  4821. "shasum": ""
  4822. },
  4823. "require": {
  4824. "carbonphp/carbon-doctrine-types": "<100.0",
  4825. "ext-json": "*",
  4826. "php": "^8.1",
  4827. "psr/clock": "^1.0",
  4828. "symfony/clock": "^6.3 || ^7.0",
  4829. "symfony/polyfill-mbstring": "^1.0",
  4830. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  4831. },
  4832. "provide": {
  4833. "psr/clock-implementation": "1.0"
  4834. },
  4835. "require-dev": {
  4836. "doctrine/dbal": "^3.6.3 || ^4.0",
  4837. "doctrine/orm": "^2.15.2 || ^3.0",
  4838. "friendsofphp/php-cs-fixer": "^3.57.2",
  4839. "kylekatarnls/multi-tester": "^2.5.3",
  4840. "ondrejmirtes/better-reflection": "^6.25.0.4",
  4841. "phpmd/phpmd": "^2.15.0",
  4842. "phpstan/extension-installer": "^1.3.1",
  4843. "phpstan/phpstan": "^1.11.2",
  4844. "phpunit/phpunit": "^10.5.20",
  4845. "squizlabs/php_codesniffer": "^3.9.0"
  4846. },
  4847. "bin": [
  4848. "bin/carbon"
  4849. ],
  4850. "type": "library",
  4851. "extra": {
  4852. "laravel": {
  4853. "providers": [
  4854. "Carbon\\Laravel\\ServiceProvider"
  4855. ]
  4856. },
  4857. "phpstan": {
  4858. "includes": [
  4859. "extension.neon"
  4860. ]
  4861. },
  4862. "branch-alias": {
  4863. "dev-2.x": "2.x-dev",
  4864. "dev-master": "3.x-dev"
  4865. }
  4866. },
  4867. "autoload": {
  4868. "psr-4": {
  4869. "Carbon\\": "src/Carbon/"
  4870. }
  4871. },
  4872. "notification-url": "https://packagist.org/downloads/",
  4873. "license": [
  4874. "MIT"
  4875. ],
  4876. "authors": [
  4877. {
  4878. "name": "Brian Nesbitt",
  4879. "email": "brian@nesbot.com",
  4880. "homepage": "https://markido.com"
  4881. },
  4882. {
  4883. "name": "kylekatarnls",
  4884. "homepage": "https://github.com/kylekatarnls"
  4885. }
  4886. ],
  4887. "description": "An API extension for DateTime that supports 281 different languages.",
  4888. "homepage": "https://carbon.nesbot.com",
  4889. "keywords": [
  4890. "date",
  4891. "datetime",
  4892. "time"
  4893. ],
  4894. "support": {
  4895. "docs": "https://carbon.nesbot.com/docs",
  4896. "issues": "https://github.com/CarbonPHP/carbon/issues",
  4897. "source": "https://github.com/CarbonPHP/carbon"
  4898. },
  4899. "funding": [
  4900. {
  4901. "url": "https://github.com/sponsors/kylekatarnls",
  4902. "type": "github"
  4903. },
  4904. {
  4905. "url": "https://opencollective.com/Carbon#sponsor",
  4906. "type": "opencollective"
  4907. },
  4908. {
  4909. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4910. "type": "tidelift"
  4911. }
  4912. ],
  4913. "time": "2025-05-01T19:51:51+00:00"
  4914. },
  4915. {
  4916. "name": "nette/schema",
  4917. "version": "v1.3.2",
  4918. "source": {
  4919. "type": "git",
  4920. "url": "https://github.com/nette/schema.git",
  4921. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  4922. },
  4923. "dist": {
  4924. "type": "zip",
  4925. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  4926. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  4927. "shasum": ""
  4928. },
  4929. "require": {
  4930. "nette/utils": "^4.0",
  4931. "php": "8.1 - 8.4"
  4932. },
  4933. "require-dev": {
  4934. "nette/tester": "^2.5.2",
  4935. "phpstan/phpstan-nette": "^1.0",
  4936. "tracy/tracy": "^2.8"
  4937. },
  4938. "type": "library",
  4939. "extra": {
  4940. "branch-alias": {
  4941. "dev-master": "1.3-dev"
  4942. }
  4943. },
  4944. "autoload": {
  4945. "classmap": [
  4946. "src/"
  4947. ]
  4948. },
  4949. "notification-url": "https://packagist.org/downloads/",
  4950. "license": [
  4951. "BSD-3-Clause",
  4952. "GPL-2.0-only",
  4953. "GPL-3.0-only"
  4954. ],
  4955. "authors": [
  4956. {
  4957. "name": "David Grudl",
  4958. "homepage": "https://davidgrudl.com"
  4959. },
  4960. {
  4961. "name": "Nette Community",
  4962. "homepage": "https://nette.org/contributors"
  4963. }
  4964. ],
  4965. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4966. "homepage": "https://nette.org",
  4967. "keywords": [
  4968. "config",
  4969. "nette"
  4970. ],
  4971. "support": {
  4972. "issues": "https://github.com/nette/schema/issues",
  4973. "source": "https://github.com/nette/schema/tree/v1.3.2"
  4974. },
  4975. "time": "2024-10-06T23:10:23+00:00"
  4976. },
  4977. {
  4978. "name": "nette/utils",
  4979. "version": "v4.0.7",
  4980. "source": {
  4981. "type": "git",
  4982. "url": "https://github.com/nette/utils.git",
  4983. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2"
  4984. },
  4985. "dist": {
  4986. "type": "zip",
  4987. "url": "https://api.github.com/repos/nette/utils/zipball/e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  4988. "reference": "e67c4061eb40b9c113b218214e42cb5a0dda28f2",
  4989. "shasum": ""
  4990. },
  4991. "require": {
  4992. "php": "8.0 - 8.4"
  4993. },
  4994. "conflict": {
  4995. "nette/finder": "<3",
  4996. "nette/schema": "<1.2.2"
  4997. },
  4998. "require-dev": {
  4999. "jetbrains/phpstorm-attributes": "dev-master",
  5000. "nette/tester": "^2.5",
  5001. "phpstan/phpstan": "^1.0",
  5002. "tracy/tracy": "^2.9"
  5003. },
  5004. "suggest": {
  5005. "ext-gd": "to use Image",
  5006. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  5007. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  5008. "ext-json": "to use Nette\\Utils\\Json",
  5009. "ext-mbstring": "to use Strings::lower() etc...",
  5010. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  5011. },
  5012. "type": "library",
  5013. "extra": {
  5014. "branch-alias": {
  5015. "dev-master": "4.0-dev"
  5016. }
  5017. },
  5018. "autoload": {
  5019. "classmap": [
  5020. "src/"
  5021. ]
  5022. },
  5023. "notification-url": "https://packagist.org/downloads/",
  5024. "license": [
  5025. "BSD-3-Clause",
  5026. "GPL-2.0-only",
  5027. "GPL-3.0-only"
  5028. ],
  5029. "authors": [
  5030. {
  5031. "name": "David Grudl",
  5032. "homepage": "https://davidgrudl.com"
  5033. },
  5034. {
  5035. "name": "Nette Community",
  5036. "homepage": "https://nette.org/contributors"
  5037. }
  5038. ],
  5039. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  5040. "homepage": "https://nette.org",
  5041. "keywords": [
  5042. "array",
  5043. "core",
  5044. "datetime",
  5045. "images",
  5046. "json",
  5047. "nette",
  5048. "paginator",
  5049. "password",
  5050. "slugify",
  5051. "string",
  5052. "unicode",
  5053. "utf-8",
  5054. "utility",
  5055. "validation"
  5056. ],
  5057. "support": {
  5058. "issues": "https://github.com/nette/utils/issues",
  5059. "source": "https://github.com/nette/utils/tree/v4.0.7"
  5060. },
  5061. "time": "2025-06-03T04:55:08+00:00"
  5062. },
  5063. {
  5064. "name": "nikic/php-parser",
  5065. "version": "v5.5.0",
  5066. "source": {
  5067. "type": "git",
  5068. "url": "https://github.com/nikic/PHP-Parser.git",
  5069. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9"
  5070. },
  5071. "dist": {
  5072. "type": "zip",
  5073. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/ae59794362fe85e051a58ad36b289443f57be7a9",
  5074. "reference": "ae59794362fe85e051a58ad36b289443f57be7a9",
  5075. "shasum": ""
  5076. },
  5077. "require": {
  5078. "ext-ctype": "*",
  5079. "ext-json": "*",
  5080. "ext-tokenizer": "*",
  5081. "php": ">=7.4"
  5082. },
  5083. "require-dev": {
  5084. "ircmaxell/php-yacc": "^0.0.7",
  5085. "phpunit/phpunit": "^9.0"
  5086. },
  5087. "bin": [
  5088. "bin/php-parse"
  5089. ],
  5090. "type": "library",
  5091. "extra": {
  5092. "branch-alias": {
  5093. "dev-master": "5.0-dev"
  5094. }
  5095. },
  5096. "autoload": {
  5097. "psr-4": {
  5098. "PhpParser\\": "lib/PhpParser"
  5099. }
  5100. },
  5101. "notification-url": "https://packagist.org/downloads/",
  5102. "license": [
  5103. "BSD-3-Clause"
  5104. ],
  5105. "authors": [
  5106. {
  5107. "name": "Nikita Popov"
  5108. }
  5109. ],
  5110. "description": "A PHP parser written in PHP",
  5111. "keywords": [
  5112. "parser",
  5113. "php"
  5114. ],
  5115. "support": {
  5116. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5117. "source": "https://github.com/nikic/PHP-Parser/tree/v5.5.0"
  5118. },
  5119. "time": "2025-05-31T08:24:38+00:00"
  5120. },
  5121. {
  5122. "name": "nunomaduro/termwind",
  5123. "version": "v2.3.1",
  5124. "source": {
  5125. "type": "git",
  5126. "url": "https://github.com/nunomaduro/termwind.git",
  5127. "reference": "dfa08f390e509967a15c22493dc0bac5733d9123"
  5128. },
  5129. "dist": {
  5130. "type": "zip",
  5131. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/dfa08f390e509967a15c22493dc0bac5733d9123",
  5132. "reference": "dfa08f390e509967a15c22493dc0bac5733d9123",
  5133. "shasum": ""
  5134. },
  5135. "require": {
  5136. "ext-mbstring": "*",
  5137. "php": "^8.2",
  5138. "symfony/console": "^7.2.6"
  5139. },
  5140. "require-dev": {
  5141. "illuminate/console": "^11.44.7",
  5142. "laravel/pint": "^1.22.0",
  5143. "mockery/mockery": "^1.6.12",
  5144. "pestphp/pest": "^2.36.0 || ^3.8.2",
  5145. "phpstan/phpstan": "^1.12.25",
  5146. "phpstan/phpstan-strict-rules": "^1.6.2",
  5147. "symfony/var-dumper": "^7.2.6",
  5148. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  5149. },
  5150. "type": "library",
  5151. "extra": {
  5152. "laravel": {
  5153. "providers": [
  5154. "Termwind\\Laravel\\TermwindServiceProvider"
  5155. ]
  5156. },
  5157. "branch-alias": {
  5158. "dev-2.x": "2.x-dev"
  5159. }
  5160. },
  5161. "autoload": {
  5162. "files": [
  5163. "src/Functions.php"
  5164. ],
  5165. "psr-4": {
  5166. "Termwind\\": "src/"
  5167. }
  5168. },
  5169. "notification-url": "https://packagist.org/downloads/",
  5170. "license": [
  5171. "MIT"
  5172. ],
  5173. "authors": [
  5174. {
  5175. "name": "Nuno Maduro",
  5176. "email": "enunomaduro@gmail.com"
  5177. }
  5178. ],
  5179. "description": "Its like Tailwind CSS, but for the console.",
  5180. "keywords": [
  5181. "cli",
  5182. "console",
  5183. "css",
  5184. "package",
  5185. "php",
  5186. "style"
  5187. ],
  5188. "support": {
  5189. "issues": "https://github.com/nunomaduro/termwind/issues",
  5190. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.1"
  5191. },
  5192. "funding": [
  5193. {
  5194. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5195. "type": "custom"
  5196. },
  5197. {
  5198. "url": "https://github.com/nunomaduro",
  5199. "type": "github"
  5200. },
  5201. {
  5202. "url": "https://github.com/xiCO2k",
  5203. "type": "github"
  5204. }
  5205. ],
  5206. "time": "2025-05-08T08:14:37+00:00"
  5207. },
  5208. {
  5209. "name": "openspout/openspout",
  5210. "version": "v4.30.0",
  5211. "source": {
  5212. "type": "git",
  5213. "url": "https://github.com/openspout/openspout.git",
  5214. "reference": "df9b0f4d229c37c3caa5a9252a6ad8a94efb0fb5"
  5215. },
  5216. "dist": {
  5217. "type": "zip",
  5218. "url": "https://api.github.com/repos/openspout/openspout/zipball/df9b0f4d229c37c3caa5a9252a6ad8a94efb0fb5",
  5219. "reference": "df9b0f4d229c37c3caa5a9252a6ad8a94efb0fb5",
  5220. "shasum": ""
  5221. },
  5222. "require": {
  5223. "ext-dom": "*",
  5224. "ext-fileinfo": "*",
  5225. "ext-filter": "*",
  5226. "ext-libxml": "*",
  5227. "ext-xmlreader": "*",
  5228. "ext-zip": "*",
  5229. "php": "~8.3.0 || ~8.4.0"
  5230. },
  5231. "require-dev": {
  5232. "ext-zlib": "*",
  5233. "friendsofphp/php-cs-fixer": "^3.75.0",
  5234. "infection/infection": "^0.29.14",
  5235. "phpbench/phpbench": "^1.4.1",
  5236. "phpstan/phpstan": "^2.1.16",
  5237. "phpstan/phpstan-phpunit": "^2.0.6",
  5238. "phpstan/phpstan-strict-rules": "^2.0.4",
  5239. "phpunit/phpunit": "^12.1.5"
  5240. },
  5241. "suggest": {
  5242. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5243. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5244. },
  5245. "type": "library",
  5246. "extra": {
  5247. "branch-alias": {
  5248. "dev-master": "3.3.x-dev"
  5249. }
  5250. },
  5251. "autoload": {
  5252. "psr-4": {
  5253. "OpenSpout\\": "src/"
  5254. }
  5255. },
  5256. "notification-url": "https://packagist.org/downloads/",
  5257. "license": [
  5258. "MIT"
  5259. ],
  5260. "authors": [
  5261. {
  5262. "name": "Adrien Loison",
  5263. "email": "adrien@box.com"
  5264. }
  5265. ],
  5266. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5267. "homepage": "https://github.com/openspout/openspout",
  5268. "keywords": [
  5269. "OOXML",
  5270. "csv",
  5271. "excel",
  5272. "memory",
  5273. "odf",
  5274. "ods",
  5275. "office",
  5276. "open",
  5277. "php",
  5278. "read",
  5279. "scale",
  5280. "spreadsheet",
  5281. "stream",
  5282. "write",
  5283. "xlsx"
  5284. ],
  5285. "support": {
  5286. "issues": "https://github.com/openspout/openspout/issues",
  5287. "source": "https://github.com/openspout/openspout/tree/v4.30.0"
  5288. },
  5289. "funding": [
  5290. {
  5291. "url": "https://paypal.me/filippotessarotto",
  5292. "type": "custom"
  5293. },
  5294. {
  5295. "url": "https://github.com/Slamdunk",
  5296. "type": "github"
  5297. }
  5298. ],
  5299. "time": "2025-05-20T12:33:06+00:00"
  5300. },
  5301. {
  5302. "name": "paragonie/constant_time_encoding",
  5303. "version": "v3.0.0",
  5304. "source": {
  5305. "type": "git",
  5306. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5307. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5308. },
  5309. "dist": {
  5310. "type": "zip",
  5311. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5312. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5313. "shasum": ""
  5314. },
  5315. "require": {
  5316. "php": "^8"
  5317. },
  5318. "require-dev": {
  5319. "phpunit/phpunit": "^9",
  5320. "vimeo/psalm": "^4|^5"
  5321. },
  5322. "type": "library",
  5323. "autoload": {
  5324. "psr-4": {
  5325. "ParagonIE\\ConstantTime\\": "src/"
  5326. }
  5327. },
  5328. "notification-url": "https://packagist.org/downloads/",
  5329. "license": [
  5330. "MIT"
  5331. ],
  5332. "authors": [
  5333. {
  5334. "name": "Paragon Initiative Enterprises",
  5335. "email": "security@paragonie.com",
  5336. "homepage": "https://paragonie.com",
  5337. "role": "Maintainer"
  5338. },
  5339. {
  5340. "name": "Steve 'Sc00bz' Thomas",
  5341. "email": "steve@tobtu.com",
  5342. "homepage": "https://www.tobtu.com",
  5343. "role": "Original Developer"
  5344. }
  5345. ],
  5346. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5347. "keywords": [
  5348. "base16",
  5349. "base32",
  5350. "base32_decode",
  5351. "base32_encode",
  5352. "base64",
  5353. "base64_decode",
  5354. "base64_encode",
  5355. "bin2hex",
  5356. "encoding",
  5357. "hex",
  5358. "hex2bin",
  5359. "rfc4648"
  5360. ],
  5361. "support": {
  5362. "email": "info@paragonie.com",
  5363. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5364. "source": "https://github.com/paragonie/constant_time_encoding"
  5365. },
  5366. "time": "2024-05-08T12:36:18+00:00"
  5367. },
  5368. {
  5369. "name": "paragonie/random_compat",
  5370. "version": "v9.99.100",
  5371. "source": {
  5372. "type": "git",
  5373. "url": "https://github.com/paragonie/random_compat.git",
  5374. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5375. },
  5376. "dist": {
  5377. "type": "zip",
  5378. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5379. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5380. "shasum": ""
  5381. },
  5382. "require": {
  5383. "php": ">= 7"
  5384. },
  5385. "require-dev": {
  5386. "phpunit/phpunit": "4.*|5.*",
  5387. "vimeo/psalm": "^1"
  5388. },
  5389. "suggest": {
  5390. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5391. },
  5392. "type": "library",
  5393. "notification-url": "https://packagist.org/downloads/",
  5394. "license": [
  5395. "MIT"
  5396. ],
  5397. "authors": [
  5398. {
  5399. "name": "Paragon Initiative Enterprises",
  5400. "email": "security@paragonie.com",
  5401. "homepage": "https://paragonie.com"
  5402. }
  5403. ],
  5404. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5405. "keywords": [
  5406. "csprng",
  5407. "polyfill",
  5408. "pseudorandom",
  5409. "random"
  5410. ],
  5411. "support": {
  5412. "email": "info@paragonie.com",
  5413. "issues": "https://github.com/paragonie/random_compat/issues",
  5414. "source": "https://github.com/paragonie/random_compat"
  5415. },
  5416. "time": "2020-10-15T08:29:30+00:00"
  5417. },
  5418. {
  5419. "name": "phpoption/phpoption",
  5420. "version": "1.9.3",
  5421. "source": {
  5422. "type": "git",
  5423. "url": "https://github.com/schmittjoh/php-option.git",
  5424. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5425. },
  5426. "dist": {
  5427. "type": "zip",
  5428. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5429. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5430. "shasum": ""
  5431. },
  5432. "require": {
  5433. "php": "^7.2.5 || ^8.0"
  5434. },
  5435. "require-dev": {
  5436. "bamarni/composer-bin-plugin": "^1.8.2",
  5437. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5438. },
  5439. "type": "library",
  5440. "extra": {
  5441. "bamarni-bin": {
  5442. "bin-links": true,
  5443. "forward-command": false
  5444. },
  5445. "branch-alias": {
  5446. "dev-master": "1.9-dev"
  5447. }
  5448. },
  5449. "autoload": {
  5450. "psr-4": {
  5451. "PhpOption\\": "src/PhpOption/"
  5452. }
  5453. },
  5454. "notification-url": "https://packagist.org/downloads/",
  5455. "license": [
  5456. "Apache-2.0"
  5457. ],
  5458. "authors": [
  5459. {
  5460. "name": "Johannes M. Schmitt",
  5461. "email": "schmittjoh@gmail.com",
  5462. "homepage": "https://github.com/schmittjoh"
  5463. },
  5464. {
  5465. "name": "Graham Campbell",
  5466. "email": "hello@gjcampbell.co.uk",
  5467. "homepage": "https://github.com/GrahamCampbell"
  5468. }
  5469. ],
  5470. "description": "Option Type for PHP",
  5471. "keywords": [
  5472. "language",
  5473. "option",
  5474. "php",
  5475. "type"
  5476. ],
  5477. "support": {
  5478. "issues": "https://github.com/schmittjoh/php-option/issues",
  5479. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5480. },
  5481. "funding": [
  5482. {
  5483. "url": "https://github.com/GrahamCampbell",
  5484. "type": "github"
  5485. },
  5486. {
  5487. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5488. "type": "tidelift"
  5489. }
  5490. ],
  5491. "time": "2024-07-20T21:41:07+00:00"
  5492. },
  5493. {
  5494. "name": "phpseclib/phpseclib",
  5495. "version": "3.0.43",
  5496. "source": {
  5497. "type": "git",
  5498. "url": "https://github.com/phpseclib/phpseclib.git",
  5499. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  5500. },
  5501. "dist": {
  5502. "type": "zip",
  5503. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  5504. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  5505. "shasum": ""
  5506. },
  5507. "require": {
  5508. "paragonie/constant_time_encoding": "^1|^2|^3",
  5509. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5510. "php": ">=5.6.1"
  5511. },
  5512. "require-dev": {
  5513. "phpunit/phpunit": "*"
  5514. },
  5515. "suggest": {
  5516. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5517. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5518. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5519. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5520. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5521. },
  5522. "type": "library",
  5523. "autoload": {
  5524. "files": [
  5525. "phpseclib/bootstrap.php"
  5526. ],
  5527. "psr-4": {
  5528. "phpseclib3\\": "phpseclib/"
  5529. }
  5530. },
  5531. "notification-url": "https://packagist.org/downloads/",
  5532. "license": [
  5533. "MIT"
  5534. ],
  5535. "authors": [
  5536. {
  5537. "name": "Jim Wigginton",
  5538. "email": "terrafrost@php.net",
  5539. "role": "Lead Developer"
  5540. },
  5541. {
  5542. "name": "Patrick Monnerat",
  5543. "email": "pm@datasphere.ch",
  5544. "role": "Developer"
  5545. },
  5546. {
  5547. "name": "Andreas Fischer",
  5548. "email": "bantu@phpbb.com",
  5549. "role": "Developer"
  5550. },
  5551. {
  5552. "name": "Hans-Jürgen Petrich",
  5553. "email": "petrich@tronic-media.com",
  5554. "role": "Developer"
  5555. },
  5556. {
  5557. "name": "Graham Campbell",
  5558. "email": "graham@alt-three.com",
  5559. "role": "Developer"
  5560. }
  5561. ],
  5562. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5563. "homepage": "http://phpseclib.sourceforge.net",
  5564. "keywords": [
  5565. "BigInteger",
  5566. "aes",
  5567. "asn.1",
  5568. "asn1",
  5569. "blowfish",
  5570. "crypto",
  5571. "cryptography",
  5572. "encryption",
  5573. "rsa",
  5574. "security",
  5575. "sftp",
  5576. "signature",
  5577. "signing",
  5578. "ssh",
  5579. "twofish",
  5580. "x.509",
  5581. "x509"
  5582. ],
  5583. "support": {
  5584. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5585. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  5586. },
  5587. "funding": [
  5588. {
  5589. "url": "https://github.com/terrafrost",
  5590. "type": "github"
  5591. },
  5592. {
  5593. "url": "https://www.patreon.com/phpseclib",
  5594. "type": "patreon"
  5595. },
  5596. {
  5597. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5598. "type": "tidelift"
  5599. }
  5600. ],
  5601. "time": "2024-12-14T21:12:59+00:00"
  5602. },
  5603. {
  5604. "name": "psr/cache",
  5605. "version": "3.0.0",
  5606. "source": {
  5607. "type": "git",
  5608. "url": "https://github.com/php-fig/cache.git",
  5609. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5610. },
  5611. "dist": {
  5612. "type": "zip",
  5613. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5614. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5615. "shasum": ""
  5616. },
  5617. "require": {
  5618. "php": ">=8.0.0"
  5619. },
  5620. "type": "library",
  5621. "extra": {
  5622. "branch-alias": {
  5623. "dev-master": "1.0.x-dev"
  5624. }
  5625. },
  5626. "autoload": {
  5627. "psr-4": {
  5628. "Psr\\Cache\\": "src/"
  5629. }
  5630. },
  5631. "notification-url": "https://packagist.org/downloads/",
  5632. "license": [
  5633. "MIT"
  5634. ],
  5635. "authors": [
  5636. {
  5637. "name": "PHP-FIG",
  5638. "homepage": "https://www.php-fig.org/"
  5639. }
  5640. ],
  5641. "description": "Common interface for caching libraries",
  5642. "keywords": [
  5643. "cache",
  5644. "psr",
  5645. "psr-6"
  5646. ],
  5647. "support": {
  5648. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5649. },
  5650. "time": "2021-02-03T23:26:27+00:00"
  5651. },
  5652. {
  5653. "name": "psr/clock",
  5654. "version": "1.0.0",
  5655. "source": {
  5656. "type": "git",
  5657. "url": "https://github.com/php-fig/clock.git",
  5658. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5659. },
  5660. "dist": {
  5661. "type": "zip",
  5662. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5663. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5664. "shasum": ""
  5665. },
  5666. "require": {
  5667. "php": "^7.0 || ^8.0"
  5668. },
  5669. "type": "library",
  5670. "autoload": {
  5671. "psr-4": {
  5672. "Psr\\Clock\\": "src/"
  5673. }
  5674. },
  5675. "notification-url": "https://packagist.org/downloads/",
  5676. "license": [
  5677. "MIT"
  5678. ],
  5679. "authors": [
  5680. {
  5681. "name": "PHP-FIG",
  5682. "homepage": "https://www.php-fig.org/"
  5683. }
  5684. ],
  5685. "description": "Common interface for reading the clock.",
  5686. "homepage": "https://github.com/php-fig/clock",
  5687. "keywords": [
  5688. "clock",
  5689. "now",
  5690. "psr",
  5691. "psr-20",
  5692. "time"
  5693. ],
  5694. "support": {
  5695. "issues": "https://github.com/php-fig/clock/issues",
  5696. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5697. },
  5698. "time": "2022-11-25T14:36:26+00:00"
  5699. },
  5700. {
  5701. "name": "psr/container",
  5702. "version": "2.0.2",
  5703. "source": {
  5704. "type": "git",
  5705. "url": "https://github.com/php-fig/container.git",
  5706. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5707. },
  5708. "dist": {
  5709. "type": "zip",
  5710. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5711. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5712. "shasum": ""
  5713. },
  5714. "require": {
  5715. "php": ">=7.4.0"
  5716. },
  5717. "type": "library",
  5718. "extra": {
  5719. "branch-alias": {
  5720. "dev-master": "2.0.x-dev"
  5721. }
  5722. },
  5723. "autoload": {
  5724. "psr-4": {
  5725. "Psr\\Container\\": "src/"
  5726. }
  5727. },
  5728. "notification-url": "https://packagist.org/downloads/",
  5729. "license": [
  5730. "MIT"
  5731. ],
  5732. "authors": [
  5733. {
  5734. "name": "PHP-FIG",
  5735. "homepage": "https://www.php-fig.org/"
  5736. }
  5737. ],
  5738. "description": "Common Container Interface (PHP FIG PSR-11)",
  5739. "homepage": "https://github.com/php-fig/container",
  5740. "keywords": [
  5741. "PSR-11",
  5742. "container",
  5743. "container-interface",
  5744. "container-interop",
  5745. "psr"
  5746. ],
  5747. "support": {
  5748. "issues": "https://github.com/php-fig/container/issues",
  5749. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5750. },
  5751. "time": "2021-11-05T16:47:00+00:00"
  5752. },
  5753. {
  5754. "name": "psr/event-dispatcher",
  5755. "version": "1.0.0",
  5756. "source": {
  5757. "type": "git",
  5758. "url": "https://github.com/php-fig/event-dispatcher.git",
  5759. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5760. },
  5761. "dist": {
  5762. "type": "zip",
  5763. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5764. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5765. "shasum": ""
  5766. },
  5767. "require": {
  5768. "php": ">=7.2.0"
  5769. },
  5770. "type": "library",
  5771. "extra": {
  5772. "branch-alias": {
  5773. "dev-master": "1.0.x-dev"
  5774. }
  5775. },
  5776. "autoload": {
  5777. "psr-4": {
  5778. "Psr\\EventDispatcher\\": "src/"
  5779. }
  5780. },
  5781. "notification-url": "https://packagist.org/downloads/",
  5782. "license": [
  5783. "MIT"
  5784. ],
  5785. "authors": [
  5786. {
  5787. "name": "PHP-FIG",
  5788. "homepage": "http://www.php-fig.org/"
  5789. }
  5790. ],
  5791. "description": "Standard interfaces for event handling.",
  5792. "keywords": [
  5793. "events",
  5794. "psr",
  5795. "psr-14"
  5796. ],
  5797. "support": {
  5798. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5799. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5800. },
  5801. "time": "2019-01-08T18:20:26+00:00"
  5802. },
  5803. {
  5804. "name": "psr/http-client",
  5805. "version": "1.0.3",
  5806. "source": {
  5807. "type": "git",
  5808. "url": "https://github.com/php-fig/http-client.git",
  5809. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5810. },
  5811. "dist": {
  5812. "type": "zip",
  5813. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5814. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5815. "shasum": ""
  5816. },
  5817. "require": {
  5818. "php": "^7.0 || ^8.0",
  5819. "psr/http-message": "^1.0 || ^2.0"
  5820. },
  5821. "type": "library",
  5822. "extra": {
  5823. "branch-alias": {
  5824. "dev-master": "1.0.x-dev"
  5825. }
  5826. },
  5827. "autoload": {
  5828. "psr-4": {
  5829. "Psr\\Http\\Client\\": "src/"
  5830. }
  5831. },
  5832. "notification-url": "https://packagist.org/downloads/",
  5833. "license": [
  5834. "MIT"
  5835. ],
  5836. "authors": [
  5837. {
  5838. "name": "PHP-FIG",
  5839. "homepage": "https://www.php-fig.org/"
  5840. }
  5841. ],
  5842. "description": "Common interface for HTTP clients",
  5843. "homepage": "https://github.com/php-fig/http-client",
  5844. "keywords": [
  5845. "http",
  5846. "http-client",
  5847. "psr",
  5848. "psr-18"
  5849. ],
  5850. "support": {
  5851. "source": "https://github.com/php-fig/http-client"
  5852. },
  5853. "time": "2023-09-23T14:17:50+00:00"
  5854. },
  5855. {
  5856. "name": "psr/http-factory",
  5857. "version": "1.1.0",
  5858. "source": {
  5859. "type": "git",
  5860. "url": "https://github.com/php-fig/http-factory.git",
  5861. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5862. },
  5863. "dist": {
  5864. "type": "zip",
  5865. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5866. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5867. "shasum": ""
  5868. },
  5869. "require": {
  5870. "php": ">=7.1",
  5871. "psr/http-message": "^1.0 || ^2.0"
  5872. },
  5873. "type": "library",
  5874. "extra": {
  5875. "branch-alias": {
  5876. "dev-master": "1.0.x-dev"
  5877. }
  5878. },
  5879. "autoload": {
  5880. "psr-4": {
  5881. "Psr\\Http\\Message\\": "src/"
  5882. }
  5883. },
  5884. "notification-url": "https://packagist.org/downloads/",
  5885. "license": [
  5886. "MIT"
  5887. ],
  5888. "authors": [
  5889. {
  5890. "name": "PHP-FIG",
  5891. "homepage": "https://www.php-fig.org/"
  5892. }
  5893. ],
  5894. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5895. "keywords": [
  5896. "factory",
  5897. "http",
  5898. "message",
  5899. "psr",
  5900. "psr-17",
  5901. "psr-7",
  5902. "request",
  5903. "response"
  5904. ],
  5905. "support": {
  5906. "source": "https://github.com/php-fig/http-factory"
  5907. },
  5908. "time": "2024-04-15T12:06:14+00:00"
  5909. },
  5910. {
  5911. "name": "psr/http-message",
  5912. "version": "2.0",
  5913. "source": {
  5914. "type": "git",
  5915. "url": "https://github.com/php-fig/http-message.git",
  5916. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5917. },
  5918. "dist": {
  5919. "type": "zip",
  5920. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5921. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5922. "shasum": ""
  5923. },
  5924. "require": {
  5925. "php": "^7.2 || ^8.0"
  5926. },
  5927. "type": "library",
  5928. "extra": {
  5929. "branch-alias": {
  5930. "dev-master": "2.0.x-dev"
  5931. }
  5932. },
  5933. "autoload": {
  5934. "psr-4": {
  5935. "Psr\\Http\\Message\\": "src/"
  5936. }
  5937. },
  5938. "notification-url": "https://packagist.org/downloads/",
  5939. "license": [
  5940. "MIT"
  5941. ],
  5942. "authors": [
  5943. {
  5944. "name": "PHP-FIG",
  5945. "homepage": "https://www.php-fig.org/"
  5946. }
  5947. ],
  5948. "description": "Common interface for HTTP messages",
  5949. "homepage": "https://github.com/php-fig/http-message",
  5950. "keywords": [
  5951. "http",
  5952. "http-message",
  5953. "psr",
  5954. "psr-7",
  5955. "request",
  5956. "response"
  5957. ],
  5958. "support": {
  5959. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5960. },
  5961. "time": "2023-04-04T09:54:51+00:00"
  5962. },
  5963. {
  5964. "name": "psr/log",
  5965. "version": "3.0.2",
  5966. "source": {
  5967. "type": "git",
  5968. "url": "https://github.com/php-fig/log.git",
  5969. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5970. },
  5971. "dist": {
  5972. "type": "zip",
  5973. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5974. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5975. "shasum": ""
  5976. },
  5977. "require": {
  5978. "php": ">=8.0.0"
  5979. },
  5980. "type": "library",
  5981. "extra": {
  5982. "branch-alias": {
  5983. "dev-master": "3.x-dev"
  5984. }
  5985. },
  5986. "autoload": {
  5987. "psr-4": {
  5988. "Psr\\Log\\": "src"
  5989. }
  5990. },
  5991. "notification-url": "https://packagist.org/downloads/",
  5992. "license": [
  5993. "MIT"
  5994. ],
  5995. "authors": [
  5996. {
  5997. "name": "PHP-FIG",
  5998. "homepage": "https://www.php-fig.org/"
  5999. }
  6000. ],
  6001. "description": "Common interface for logging libraries",
  6002. "homepage": "https://github.com/php-fig/log",
  6003. "keywords": [
  6004. "log",
  6005. "psr",
  6006. "psr-3"
  6007. ],
  6008. "support": {
  6009. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6010. },
  6011. "time": "2024-09-11T13:17:53+00:00"
  6012. },
  6013. {
  6014. "name": "psr/simple-cache",
  6015. "version": "3.0.0",
  6016. "source": {
  6017. "type": "git",
  6018. "url": "https://github.com/php-fig/simple-cache.git",
  6019. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6020. },
  6021. "dist": {
  6022. "type": "zip",
  6023. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6024. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6025. "shasum": ""
  6026. },
  6027. "require": {
  6028. "php": ">=8.0.0"
  6029. },
  6030. "type": "library",
  6031. "extra": {
  6032. "branch-alias": {
  6033. "dev-master": "3.0.x-dev"
  6034. }
  6035. },
  6036. "autoload": {
  6037. "psr-4": {
  6038. "Psr\\SimpleCache\\": "src/"
  6039. }
  6040. },
  6041. "notification-url": "https://packagist.org/downloads/",
  6042. "license": [
  6043. "MIT"
  6044. ],
  6045. "authors": [
  6046. {
  6047. "name": "PHP-FIG",
  6048. "homepage": "https://www.php-fig.org/"
  6049. }
  6050. ],
  6051. "description": "Common interfaces for simple caching",
  6052. "keywords": [
  6053. "cache",
  6054. "caching",
  6055. "psr",
  6056. "psr-16",
  6057. "simple-cache"
  6058. ],
  6059. "support": {
  6060. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6061. },
  6062. "time": "2021-10-29T13:26:27+00:00"
  6063. },
  6064. {
  6065. "name": "psy/psysh",
  6066. "version": "v0.12.8",
  6067. "source": {
  6068. "type": "git",
  6069. "url": "https://github.com/bobthecow/psysh.git",
  6070. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625"
  6071. },
  6072. "dist": {
  6073. "type": "zip",
  6074. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  6075. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  6076. "shasum": ""
  6077. },
  6078. "require": {
  6079. "ext-json": "*",
  6080. "ext-tokenizer": "*",
  6081. "nikic/php-parser": "^5.0 || ^4.0",
  6082. "php": "^8.0 || ^7.4",
  6083. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6084. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6085. },
  6086. "conflict": {
  6087. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6088. },
  6089. "require-dev": {
  6090. "bamarni/composer-bin-plugin": "^1.2"
  6091. },
  6092. "suggest": {
  6093. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6094. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6095. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6096. },
  6097. "bin": [
  6098. "bin/psysh"
  6099. ],
  6100. "type": "library",
  6101. "extra": {
  6102. "bamarni-bin": {
  6103. "bin-links": false,
  6104. "forward-command": false
  6105. },
  6106. "branch-alias": {
  6107. "dev-main": "0.12.x-dev"
  6108. }
  6109. },
  6110. "autoload": {
  6111. "files": [
  6112. "src/functions.php"
  6113. ],
  6114. "psr-4": {
  6115. "Psy\\": "src/"
  6116. }
  6117. },
  6118. "notification-url": "https://packagist.org/downloads/",
  6119. "license": [
  6120. "MIT"
  6121. ],
  6122. "authors": [
  6123. {
  6124. "name": "Justin Hileman",
  6125. "email": "justin@justinhileman.info",
  6126. "homepage": "http://justinhileman.com"
  6127. }
  6128. ],
  6129. "description": "An interactive shell for modern PHP.",
  6130. "homepage": "http://psysh.org",
  6131. "keywords": [
  6132. "REPL",
  6133. "console",
  6134. "interactive",
  6135. "shell"
  6136. ],
  6137. "support": {
  6138. "issues": "https://github.com/bobthecow/psysh/issues",
  6139. "source": "https://github.com/bobthecow/psysh/tree/v0.12.8"
  6140. },
  6141. "time": "2025-03-16T03:05:19+00:00"
  6142. },
  6143. {
  6144. "name": "ralouphie/getallheaders",
  6145. "version": "3.0.3",
  6146. "source": {
  6147. "type": "git",
  6148. "url": "https://github.com/ralouphie/getallheaders.git",
  6149. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6150. },
  6151. "dist": {
  6152. "type": "zip",
  6153. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6154. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6155. "shasum": ""
  6156. },
  6157. "require": {
  6158. "php": ">=5.6"
  6159. },
  6160. "require-dev": {
  6161. "php-coveralls/php-coveralls": "^2.1",
  6162. "phpunit/phpunit": "^5 || ^6.5"
  6163. },
  6164. "type": "library",
  6165. "autoload": {
  6166. "files": [
  6167. "src/getallheaders.php"
  6168. ]
  6169. },
  6170. "notification-url": "https://packagist.org/downloads/",
  6171. "license": [
  6172. "MIT"
  6173. ],
  6174. "authors": [
  6175. {
  6176. "name": "Ralph Khattar",
  6177. "email": "ralph.khattar@gmail.com"
  6178. }
  6179. ],
  6180. "description": "A polyfill for getallheaders.",
  6181. "support": {
  6182. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6183. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6184. },
  6185. "time": "2019-03-08T08:55:37+00:00"
  6186. },
  6187. {
  6188. "name": "ramsey/collection",
  6189. "version": "2.1.1",
  6190. "source": {
  6191. "type": "git",
  6192. "url": "https://github.com/ramsey/collection.git",
  6193. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  6194. },
  6195. "dist": {
  6196. "type": "zip",
  6197. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  6198. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  6199. "shasum": ""
  6200. },
  6201. "require": {
  6202. "php": "^8.1"
  6203. },
  6204. "require-dev": {
  6205. "captainhook/plugin-composer": "^5.3",
  6206. "ergebnis/composer-normalize": "^2.45",
  6207. "fakerphp/faker": "^1.24",
  6208. "hamcrest/hamcrest-php": "^2.0",
  6209. "jangregor/phpstan-prophecy": "^2.1",
  6210. "mockery/mockery": "^1.6",
  6211. "php-parallel-lint/php-console-highlighter": "^1.0",
  6212. "php-parallel-lint/php-parallel-lint": "^1.4",
  6213. "phpspec/prophecy-phpunit": "^2.3",
  6214. "phpstan/extension-installer": "^1.4",
  6215. "phpstan/phpstan": "^2.1",
  6216. "phpstan/phpstan-mockery": "^2.0",
  6217. "phpstan/phpstan-phpunit": "^2.0",
  6218. "phpunit/phpunit": "^10.5",
  6219. "ramsey/coding-standard": "^2.3",
  6220. "ramsey/conventional-commits": "^1.6",
  6221. "roave/security-advisories": "dev-latest"
  6222. },
  6223. "type": "library",
  6224. "extra": {
  6225. "captainhook": {
  6226. "force-install": true
  6227. },
  6228. "ramsey/conventional-commits": {
  6229. "configFile": "conventional-commits.json"
  6230. }
  6231. },
  6232. "autoload": {
  6233. "psr-4": {
  6234. "Ramsey\\Collection\\": "src/"
  6235. }
  6236. },
  6237. "notification-url": "https://packagist.org/downloads/",
  6238. "license": [
  6239. "MIT"
  6240. ],
  6241. "authors": [
  6242. {
  6243. "name": "Ben Ramsey",
  6244. "email": "ben@benramsey.com",
  6245. "homepage": "https://benramsey.com"
  6246. }
  6247. ],
  6248. "description": "A PHP library for representing and manipulating collections.",
  6249. "keywords": [
  6250. "array",
  6251. "collection",
  6252. "hash",
  6253. "map",
  6254. "queue",
  6255. "set"
  6256. ],
  6257. "support": {
  6258. "issues": "https://github.com/ramsey/collection/issues",
  6259. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  6260. },
  6261. "time": "2025-03-22T05:38:12+00:00"
  6262. },
  6263. {
  6264. "name": "ramsey/uuid",
  6265. "version": "4.8.1",
  6266. "source": {
  6267. "type": "git",
  6268. "url": "https://github.com/ramsey/uuid.git",
  6269. "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28"
  6270. },
  6271. "dist": {
  6272. "type": "zip",
  6273. "url": "https://api.github.com/repos/ramsey/uuid/zipball/fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28",
  6274. "reference": "fdf4dd4e2ff1813111bd0ad58d7a1ddbb5b56c28",
  6275. "shasum": ""
  6276. },
  6277. "require": {
  6278. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13",
  6279. "ext-json": "*",
  6280. "php": "^8.0",
  6281. "ramsey/collection": "^1.2 || ^2.0"
  6282. },
  6283. "replace": {
  6284. "rhumsaa/uuid": "self.version"
  6285. },
  6286. "require-dev": {
  6287. "captainhook/captainhook": "^5.25",
  6288. "captainhook/plugin-composer": "^5.3",
  6289. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  6290. "ergebnis/composer-normalize": "^2.47",
  6291. "mockery/mockery": "^1.6",
  6292. "paragonie/random-lib": "^2",
  6293. "php-mock/php-mock": "^2.6",
  6294. "php-mock/php-mock-mockery": "^1.5",
  6295. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  6296. "phpbench/phpbench": "^1.2.14",
  6297. "phpstan/extension-installer": "^1.4",
  6298. "phpstan/phpstan": "^2.1",
  6299. "phpstan/phpstan-mockery": "^2.0",
  6300. "phpstan/phpstan-phpunit": "^2.0",
  6301. "phpunit/phpunit": "^9.6",
  6302. "slevomat/coding-standard": "^8.18",
  6303. "squizlabs/php_codesniffer": "^3.13"
  6304. },
  6305. "suggest": {
  6306. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6307. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6308. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6309. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6310. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6311. },
  6312. "type": "library",
  6313. "extra": {
  6314. "captainhook": {
  6315. "force-install": true
  6316. }
  6317. },
  6318. "autoload": {
  6319. "files": [
  6320. "src/functions.php"
  6321. ],
  6322. "psr-4": {
  6323. "Ramsey\\Uuid\\": "src/"
  6324. }
  6325. },
  6326. "notification-url": "https://packagist.org/downloads/",
  6327. "license": [
  6328. "MIT"
  6329. ],
  6330. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6331. "keywords": [
  6332. "guid",
  6333. "identifier",
  6334. "uuid"
  6335. ],
  6336. "support": {
  6337. "issues": "https://github.com/ramsey/uuid/issues",
  6338. "source": "https://github.com/ramsey/uuid/tree/4.8.1"
  6339. },
  6340. "time": "2025-06-01T06:28:46+00:00"
  6341. },
  6342. {
  6343. "name": "ryangjchandler/blade-capture-directive",
  6344. "version": "v1.1.0",
  6345. "source": {
  6346. "type": "git",
  6347. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6348. "reference": "bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d"
  6349. },
  6350. "dist": {
  6351. "type": "zip",
  6352. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d",
  6353. "reference": "bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d",
  6354. "shasum": ""
  6355. },
  6356. "require": {
  6357. "illuminate/contracts": "^10.0|^11.0|^12.0",
  6358. "php": "^8.1",
  6359. "spatie/laravel-package-tools": "^1.9.2"
  6360. },
  6361. "require-dev": {
  6362. "nunomaduro/collision": "^7.0|^8.0",
  6363. "nunomaduro/larastan": "^2.0|^3.0",
  6364. "orchestra/testbench": "^8.0|^9.0|^10.0",
  6365. "pestphp/pest": "^2.0|^3.7",
  6366. "pestphp/pest-plugin-laravel": "^2.0|^3.1",
  6367. "phpstan/extension-installer": "^1.1",
  6368. "phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
  6369. "phpstan/phpstan-phpunit": "^1.0|^2.0",
  6370. "phpunit/phpunit": "^10.0|^11.5.3",
  6371. "spatie/laravel-ray": "^1.26"
  6372. },
  6373. "type": "library",
  6374. "extra": {
  6375. "laravel": {
  6376. "aliases": {
  6377. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6378. },
  6379. "providers": [
  6380. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6381. ]
  6382. }
  6383. },
  6384. "autoload": {
  6385. "psr-4": {
  6386. "RyanChandler\\BladeCaptureDirective\\": "src",
  6387. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6388. }
  6389. },
  6390. "notification-url": "https://packagist.org/downloads/",
  6391. "license": [
  6392. "MIT"
  6393. ],
  6394. "authors": [
  6395. {
  6396. "name": "Ryan Chandler",
  6397. "email": "support@ryangjchandler.co.uk",
  6398. "role": "Developer"
  6399. }
  6400. ],
  6401. "description": "Create inline partials in your Blade templates with ease.",
  6402. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6403. "keywords": [
  6404. "blade-capture-directive",
  6405. "laravel",
  6406. "ryangjchandler"
  6407. ],
  6408. "support": {
  6409. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6410. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.1.0"
  6411. },
  6412. "funding": [
  6413. {
  6414. "url": "https://github.com/ryangjchandler",
  6415. "type": "github"
  6416. }
  6417. ],
  6418. "time": "2025-02-25T09:09:36+00:00"
  6419. },
  6420. {
  6421. "name": "spatie/color",
  6422. "version": "1.8.0",
  6423. "source": {
  6424. "type": "git",
  6425. "url": "https://github.com/spatie/color.git",
  6426. "reference": "142af7fec069a420babea80a5412eb2f646dcd8c"
  6427. },
  6428. "dist": {
  6429. "type": "zip",
  6430. "url": "https://api.github.com/repos/spatie/color/zipball/142af7fec069a420babea80a5412eb2f646dcd8c",
  6431. "reference": "142af7fec069a420babea80a5412eb2f646dcd8c",
  6432. "shasum": ""
  6433. },
  6434. "require": {
  6435. "php": "^7.3|^8.0"
  6436. },
  6437. "require-dev": {
  6438. "pestphp/pest": "^1.22",
  6439. "phpunit/phpunit": "^6.5||^9.0"
  6440. },
  6441. "type": "library",
  6442. "autoload": {
  6443. "psr-4": {
  6444. "Spatie\\Color\\": "src"
  6445. }
  6446. },
  6447. "notification-url": "https://packagist.org/downloads/",
  6448. "license": [
  6449. "MIT"
  6450. ],
  6451. "authors": [
  6452. {
  6453. "name": "Sebastian De Deyne",
  6454. "email": "sebastian@spatie.be",
  6455. "homepage": "https://spatie.be",
  6456. "role": "Developer"
  6457. }
  6458. ],
  6459. "description": "A little library to handle color conversions",
  6460. "homepage": "https://github.com/spatie/color",
  6461. "keywords": [
  6462. "color",
  6463. "conversion",
  6464. "rgb",
  6465. "spatie"
  6466. ],
  6467. "support": {
  6468. "issues": "https://github.com/spatie/color/issues",
  6469. "source": "https://github.com/spatie/color/tree/1.8.0"
  6470. },
  6471. "funding": [
  6472. {
  6473. "url": "https://github.com/spatie",
  6474. "type": "github"
  6475. }
  6476. ],
  6477. "time": "2025-02-10T09:22:41+00:00"
  6478. },
  6479. {
  6480. "name": "spatie/invade",
  6481. "version": "2.1.0",
  6482. "source": {
  6483. "type": "git",
  6484. "url": "https://github.com/spatie/invade.git",
  6485. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  6486. },
  6487. "dist": {
  6488. "type": "zip",
  6489. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6490. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6491. "shasum": ""
  6492. },
  6493. "require": {
  6494. "php": "^8.0"
  6495. },
  6496. "require-dev": {
  6497. "pestphp/pest": "^1.20",
  6498. "phpstan/phpstan": "^1.4",
  6499. "spatie/ray": "^1.28"
  6500. },
  6501. "type": "library",
  6502. "autoload": {
  6503. "files": [
  6504. "src/functions.php"
  6505. ],
  6506. "psr-4": {
  6507. "Spatie\\Invade\\": "src"
  6508. }
  6509. },
  6510. "notification-url": "https://packagist.org/downloads/",
  6511. "license": [
  6512. "MIT"
  6513. ],
  6514. "authors": [
  6515. {
  6516. "name": "Freek Van der Herten",
  6517. "email": "freek@spatie.be",
  6518. "role": "Developer"
  6519. }
  6520. ],
  6521. "description": "A PHP function to work with private properties and methods",
  6522. "homepage": "https://github.com/spatie/invade",
  6523. "keywords": [
  6524. "invade",
  6525. "spatie"
  6526. ],
  6527. "support": {
  6528. "source": "https://github.com/spatie/invade/tree/2.1.0"
  6529. },
  6530. "funding": [
  6531. {
  6532. "url": "https://github.com/spatie",
  6533. "type": "github"
  6534. }
  6535. ],
  6536. "time": "2024-05-17T09:06:10+00:00"
  6537. },
  6538. {
  6539. "name": "spatie/laravel-package-tools",
  6540. "version": "1.92.4",
  6541. "source": {
  6542. "type": "git",
  6543. "url": "https://github.com/spatie/laravel-package-tools.git",
  6544. "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c"
  6545. },
  6546. "dist": {
  6547. "type": "zip",
  6548. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/d20b1969f836d210459b78683d85c9cd5c5f508c",
  6549. "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c",
  6550. "shasum": ""
  6551. },
  6552. "require": {
  6553. "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
  6554. "php": "^8.0"
  6555. },
  6556. "require-dev": {
  6557. "mockery/mockery": "^1.5",
  6558. "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
  6559. "pestphp/pest": "^1.23|^2.1|^3.1",
  6560. "phpunit/php-code-coverage": "^9.0|^10.0|^11.0",
  6561. "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
  6562. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  6563. },
  6564. "type": "library",
  6565. "autoload": {
  6566. "psr-4": {
  6567. "Spatie\\LaravelPackageTools\\": "src"
  6568. }
  6569. },
  6570. "notification-url": "https://packagist.org/downloads/",
  6571. "license": [
  6572. "MIT"
  6573. ],
  6574. "authors": [
  6575. {
  6576. "name": "Freek Van der Herten",
  6577. "email": "freek@spatie.be",
  6578. "role": "Developer"
  6579. }
  6580. ],
  6581. "description": "Tools for creating Laravel packages",
  6582. "homepage": "https://github.com/spatie/laravel-package-tools",
  6583. "keywords": [
  6584. "laravel-package-tools",
  6585. "spatie"
  6586. ],
  6587. "support": {
  6588. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6589. "source": "https://github.com/spatie/laravel-package-tools/tree/1.92.4"
  6590. },
  6591. "funding": [
  6592. {
  6593. "url": "https://github.com/spatie",
  6594. "type": "github"
  6595. }
  6596. ],
  6597. "time": "2025-04-11T15:27:14+00:00"
  6598. },
  6599. {
  6600. "name": "squirephp/model",
  6601. "version": "v3.9.0",
  6602. "source": {
  6603. "type": "git",
  6604. "url": "https://github.com/squirephp/model.git",
  6605. "reference": "cdfb6eafff8ed8d7810aff7826623a9a0196a680"
  6606. },
  6607. "dist": {
  6608. "type": "zip",
  6609. "url": "https://api.github.com/repos/squirephp/model/zipball/cdfb6eafff8ed8d7810aff7826623a9a0196a680",
  6610. "reference": "cdfb6eafff8ed8d7810aff7826623a9a0196a680",
  6611. "shasum": ""
  6612. },
  6613. "require": {
  6614. "ext-pdo_sqlite": "*",
  6615. "illuminate/database": "^8.40|^9.0|^10.0|^11.0|^12.0",
  6616. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  6617. "php": "^8.0"
  6618. },
  6619. "type": "library",
  6620. "extra": {
  6621. "laravel": {
  6622. "providers": [
  6623. "Squire\\ModelServiceProvider"
  6624. ]
  6625. }
  6626. },
  6627. "autoload": {
  6628. "psr-4": {
  6629. "Squire\\": "src"
  6630. }
  6631. },
  6632. "notification-url": "https://packagist.org/downloads/",
  6633. "license": [
  6634. "MIT"
  6635. ],
  6636. "authors": [
  6637. {
  6638. "name": "Dan Harrin",
  6639. "email": "dan@danharrin.com"
  6640. }
  6641. ],
  6642. "description": "A library containing the base Squire model class.",
  6643. "homepage": "https://github.com/squirephp",
  6644. "keywords": [
  6645. "squire"
  6646. ],
  6647. "support": {
  6648. "issues": "https://github.com/squirephp/squire/issues",
  6649. "source": "https://github.com/squirephp/squire"
  6650. },
  6651. "time": "2025-02-25T08:15:59+00:00"
  6652. },
  6653. {
  6654. "name": "squirephp/repository",
  6655. "version": "v3.9.0",
  6656. "source": {
  6657. "type": "git",
  6658. "url": "https://github.com/squirephp/repository.git",
  6659. "reference": "6bbd33c1148949c2bb2f6499ce9897c874d0860c"
  6660. },
  6661. "dist": {
  6662. "type": "zip",
  6663. "url": "https://api.github.com/repos/squirephp/repository/zipball/6bbd33c1148949c2bb2f6499ce9897c874d0860c",
  6664. "reference": "6bbd33c1148949c2bb2f6499ce9897c874d0860c",
  6665. "shasum": ""
  6666. },
  6667. "require": {
  6668. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  6669. "php": "^8.0"
  6670. },
  6671. "type": "library",
  6672. "extra": {
  6673. "laravel": {
  6674. "aliases": {
  6675. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6676. },
  6677. "providers": [
  6678. "Squire\\RepositoryServiceProvider"
  6679. ]
  6680. }
  6681. },
  6682. "autoload": {
  6683. "psr-4": {
  6684. "Squire\\": "src"
  6685. }
  6686. },
  6687. "notification-url": "https://packagist.org/downloads/",
  6688. "license": [
  6689. "MIT"
  6690. ],
  6691. "authors": [
  6692. {
  6693. "name": "Dan Harrin",
  6694. "email": "dan@danharrin.com"
  6695. }
  6696. ],
  6697. "description": "A library containing the Squire repository.",
  6698. "homepage": "https://github.com/squirephp",
  6699. "keywords": [
  6700. "squire"
  6701. ],
  6702. "support": {
  6703. "issues": "https://github.com/squirephp/squire/issues",
  6704. "source": "https://github.com/squirephp/squire"
  6705. },
  6706. "time": "2025-02-25T08:16:09+00:00"
  6707. },
  6708. {
  6709. "name": "symfony/clock",
  6710. "version": "v7.3.0",
  6711. "source": {
  6712. "type": "git",
  6713. "url": "https://github.com/symfony/clock.git",
  6714. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  6715. },
  6716. "dist": {
  6717. "type": "zip",
  6718. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6719. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6720. "shasum": ""
  6721. },
  6722. "require": {
  6723. "php": ">=8.2",
  6724. "psr/clock": "^1.0",
  6725. "symfony/polyfill-php83": "^1.28"
  6726. },
  6727. "provide": {
  6728. "psr/clock-implementation": "1.0"
  6729. },
  6730. "type": "library",
  6731. "autoload": {
  6732. "files": [
  6733. "Resources/now.php"
  6734. ],
  6735. "psr-4": {
  6736. "Symfony\\Component\\Clock\\": ""
  6737. },
  6738. "exclude-from-classmap": [
  6739. "/Tests/"
  6740. ]
  6741. },
  6742. "notification-url": "https://packagist.org/downloads/",
  6743. "license": [
  6744. "MIT"
  6745. ],
  6746. "authors": [
  6747. {
  6748. "name": "Nicolas Grekas",
  6749. "email": "p@tchwork.com"
  6750. },
  6751. {
  6752. "name": "Symfony Community",
  6753. "homepage": "https://symfony.com/contributors"
  6754. }
  6755. ],
  6756. "description": "Decouples applications from the system clock",
  6757. "homepage": "https://symfony.com",
  6758. "keywords": [
  6759. "clock",
  6760. "psr20",
  6761. "time"
  6762. ],
  6763. "support": {
  6764. "source": "https://github.com/symfony/clock/tree/v7.3.0"
  6765. },
  6766. "funding": [
  6767. {
  6768. "url": "https://symfony.com/sponsor",
  6769. "type": "custom"
  6770. },
  6771. {
  6772. "url": "https://github.com/fabpot",
  6773. "type": "github"
  6774. },
  6775. {
  6776. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6777. "type": "tidelift"
  6778. }
  6779. ],
  6780. "time": "2024-09-25T14:21:43+00:00"
  6781. },
  6782. {
  6783. "name": "symfony/console",
  6784. "version": "v7.3.0",
  6785. "source": {
  6786. "type": "git",
  6787. "url": "https://github.com/symfony/console.git",
  6788. "reference": "66c1440edf6f339fd82ed6c7caa76cb006211b44"
  6789. },
  6790. "dist": {
  6791. "type": "zip",
  6792. "url": "https://api.github.com/repos/symfony/console/zipball/66c1440edf6f339fd82ed6c7caa76cb006211b44",
  6793. "reference": "66c1440edf6f339fd82ed6c7caa76cb006211b44",
  6794. "shasum": ""
  6795. },
  6796. "require": {
  6797. "php": ">=8.2",
  6798. "symfony/deprecation-contracts": "^2.5|^3",
  6799. "symfony/polyfill-mbstring": "~1.0",
  6800. "symfony/service-contracts": "^2.5|^3",
  6801. "symfony/string": "^7.2"
  6802. },
  6803. "conflict": {
  6804. "symfony/dependency-injection": "<6.4",
  6805. "symfony/dotenv": "<6.4",
  6806. "symfony/event-dispatcher": "<6.4",
  6807. "symfony/lock": "<6.4",
  6808. "symfony/process": "<6.4"
  6809. },
  6810. "provide": {
  6811. "psr/log-implementation": "1.0|2.0|3.0"
  6812. },
  6813. "require-dev": {
  6814. "psr/log": "^1|^2|^3",
  6815. "symfony/config": "^6.4|^7.0",
  6816. "symfony/dependency-injection": "^6.4|^7.0",
  6817. "symfony/event-dispatcher": "^6.4|^7.0",
  6818. "symfony/http-foundation": "^6.4|^7.0",
  6819. "symfony/http-kernel": "^6.4|^7.0",
  6820. "symfony/lock": "^6.4|^7.0",
  6821. "symfony/messenger": "^6.4|^7.0",
  6822. "symfony/process": "^6.4|^7.0",
  6823. "symfony/stopwatch": "^6.4|^7.0",
  6824. "symfony/var-dumper": "^6.4|^7.0"
  6825. },
  6826. "type": "library",
  6827. "autoload": {
  6828. "psr-4": {
  6829. "Symfony\\Component\\Console\\": ""
  6830. },
  6831. "exclude-from-classmap": [
  6832. "/Tests/"
  6833. ]
  6834. },
  6835. "notification-url": "https://packagist.org/downloads/",
  6836. "license": [
  6837. "MIT"
  6838. ],
  6839. "authors": [
  6840. {
  6841. "name": "Fabien Potencier",
  6842. "email": "fabien@symfony.com"
  6843. },
  6844. {
  6845. "name": "Symfony Community",
  6846. "homepage": "https://symfony.com/contributors"
  6847. }
  6848. ],
  6849. "description": "Eases the creation of beautiful and testable command line interfaces",
  6850. "homepage": "https://symfony.com",
  6851. "keywords": [
  6852. "cli",
  6853. "command-line",
  6854. "console",
  6855. "terminal"
  6856. ],
  6857. "support": {
  6858. "source": "https://github.com/symfony/console/tree/v7.3.0"
  6859. },
  6860. "funding": [
  6861. {
  6862. "url": "https://symfony.com/sponsor",
  6863. "type": "custom"
  6864. },
  6865. {
  6866. "url": "https://github.com/fabpot",
  6867. "type": "github"
  6868. },
  6869. {
  6870. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6871. "type": "tidelift"
  6872. }
  6873. ],
  6874. "time": "2025-05-24T10:34:04+00:00"
  6875. },
  6876. {
  6877. "name": "symfony/css-selector",
  6878. "version": "v7.3.0",
  6879. "source": {
  6880. "type": "git",
  6881. "url": "https://github.com/symfony/css-selector.git",
  6882. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  6883. },
  6884. "dist": {
  6885. "type": "zip",
  6886. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6887. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6888. "shasum": ""
  6889. },
  6890. "require": {
  6891. "php": ">=8.2"
  6892. },
  6893. "type": "library",
  6894. "autoload": {
  6895. "psr-4": {
  6896. "Symfony\\Component\\CssSelector\\": ""
  6897. },
  6898. "exclude-from-classmap": [
  6899. "/Tests/"
  6900. ]
  6901. },
  6902. "notification-url": "https://packagist.org/downloads/",
  6903. "license": [
  6904. "MIT"
  6905. ],
  6906. "authors": [
  6907. {
  6908. "name": "Fabien Potencier",
  6909. "email": "fabien@symfony.com"
  6910. },
  6911. {
  6912. "name": "Jean-François Simon",
  6913. "email": "jeanfrancois.simon@sensiolabs.com"
  6914. },
  6915. {
  6916. "name": "Symfony Community",
  6917. "homepage": "https://symfony.com/contributors"
  6918. }
  6919. ],
  6920. "description": "Converts CSS selectors to XPath expressions",
  6921. "homepage": "https://symfony.com",
  6922. "support": {
  6923. "source": "https://github.com/symfony/css-selector/tree/v7.3.0"
  6924. },
  6925. "funding": [
  6926. {
  6927. "url": "https://symfony.com/sponsor",
  6928. "type": "custom"
  6929. },
  6930. {
  6931. "url": "https://github.com/fabpot",
  6932. "type": "github"
  6933. },
  6934. {
  6935. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6936. "type": "tidelift"
  6937. }
  6938. ],
  6939. "time": "2024-09-25T14:21:43+00:00"
  6940. },
  6941. {
  6942. "name": "symfony/deprecation-contracts",
  6943. "version": "v3.6.0",
  6944. "source": {
  6945. "type": "git",
  6946. "url": "https://github.com/symfony/deprecation-contracts.git",
  6947. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  6948. },
  6949. "dist": {
  6950. "type": "zip",
  6951. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6952. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  6953. "shasum": ""
  6954. },
  6955. "require": {
  6956. "php": ">=8.1"
  6957. },
  6958. "type": "library",
  6959. "extra": {
  6960. "thanks": {
  6961. "url": "https://github.com/symfony/contracts",
  6962. "name": "symfony/contracts"
  6963. },
  6964. "branch-alias": {
  6965. "dev-main": "3.6-dev"
  6966. }
  6967. },
  6968. "autoload": {
  6969. "files": [
  6970. "function.php"
  6971. ]
  6972. },
  6973. "notification-url": "https://packagist.org/downloads/",
  6974. "license": [
  6975. "MIT"
  6976. ],
  6977. "authors": [
  6978. {
  6979. "name": "Nicolas Grekas",
  6980. "email": "p@tchwork.com"
  6981. },
  6982. {
  6983. "name": "Symfony Community",
  6984. "homepage": "https://symfony.com/contributors"
  6985. }
  6986. ],
  6987. "description": "A generic function and convention to trigger deprecation notices",
  6988. "homepage": "https://symfony.com",
  6989. "support": {
  6990. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  6991. },
  6992. "funding": [
  6993. {
  6994. "url": "https://symfony.com/sponsor",
  6995. "type": "custom"
  6996. },
  6997. {
  6998. "url": "https://github.com/fabpot",
  6999. "type": "github"
  7000. },
  7001. {
  7002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7003. "type": "tidelift"
  7004. }
  7005. ],
  7006. "time": "2024-09-25T14:21:43+00:00"
  7007. },
  7008. {
  7009. "name": "symfony/error-handler",
  7010. "version": "v7.3.0",
  7011. "source": {
  7012. "type": "git",
  7013. "url": "https://github.com/symfony/error-handler.git",
  7014. "reference": "cf68d225bc43629de4ff54778029aee6dc191b83"
  7015. },
  7016. "dist": {
  7017. "type": "zip",
  7018. "url": "https://api.github.com/repos/symfony/error-handler/zipball/cf68d225bc43629de4ff54778029aee6dc191b83",
  7019. "reference": "cf68d225bc43629de4ff54778029aee6dc191b83",
  7020. "shasum": ""
  7021. },
  7022. "require": {
  7023. "php": ">=8.2",
  7024. "psr/log": "^1|^2|^3",
  7025. "symfony/var-dumper": "^6.4|^7.0"
  7026. },
  7027. "conflict": {
  7028. "symfony/deprecation-contracts": "<2.5",
  7029. "symfony/http-kernel": "<6.4"
  7030. },
  7031. "require-dev": {
  7032. "symfony/console": "^6.4|^7.0",
  7033. "symfony/deprecation-contracts": "^2.5|^3",
  7034. "symfony/http-kernel": "^6.4|^7.0",
  7035. "symfony/serializer": "^6.4|^7.0",
  7036. "symfony/webpack-encore-bundle": "^1.0|^2.0"
  7037. },
  7038. "bin": [
  7039. "Resources/bin/patch-type-declarations"
  7040. ],
  7041. "type": "library",
  7042. "autoload": {
  7043. "psr-4": {
  7044. "Symfony\\Component\\ErrorHandler\\": ""
  7045. },
  7046. "exclude-from-classmap": [
  7047. "/Tests/"
  7048. ]
  7049. },
  7050. "notification-url": "https://packagist.org/downloads/",
  7051. "license": [
  7052. "MIT"
  7053. ],
  7054. "authors": [
  7055. {
  7056. "name": "Fabien Potencier",
  7057. "email": "fabien@symfony.com"
  7058. },
  7059. {
  7060. "name": "Symfony Community",
  7061. "homepage": "https://symfony.com/contributors"
  7062. }
  7063. ],
  7064. "description": "Provides tools to manage errors and ease debugging PHP code",
  7065. "homepage": "https://symfony.com",
  7066. "support": {
  7067. "source": "https://github.com/symfony/error-handler/tree/v7.3.0"
  7068. },
  7069. "funding": [
  7070. {
  7071. "url": "https://symfony.com/sponsor",
  7072. "type": "custom"
  7073. },
  7074. {
  7075. "url": "https://github.com/fabpot",
  7076. "type": "github"
  7077. },
  7078. {
  7079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7080. "type": "tidelift"
  7081. }
  7082. ],
  7083. "time": "2025-05-29T07:19:49+00:00"
  7084. },
  7085. {
  7086. "name": "symfony/event-dispatcher",
  7087. "version": "v7.3.0",
  7088. "source": {
  7089. "type": "git",
  7090. "url": "https://github.com/symfony/event-dispatcher.git",
  7091. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d"
  7092. },
  7093. "dist": {
  7094. "type": "zip",
  7095. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/497f73ac996a598c92409b44ac43b6690c4f666d",
  7096. "reference": "497f73ac996a598c92409b44ac43b6690c4f666d",
  7097. "shasum": ""
  7098. },
  7099. "require": {
  7100. "php": ">=8.2",
  7101. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7102. },
  7103. "conflict": {
  7104. "symfony/dependency-injection": "<6.4",
  7105. "symfony/service-contracts": "<2.5"
  7106. },
  7107. "provide": {
  7108. "psr/event-dispatcher-implementation": "1.0",
  7109. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7110. },
  7111. "require-dev": {
  7112. "psr/log": "^1|^2|^3",
  7113. "symfony/config": "^6.4|^7.0",
  7114. "symfony/dependency-injection": "^6.4|^7.0",
  7115. "symfony/error-handler": "^6.4|^7.0",
  7116. "symfony/expression-language": "^6.4|^7.0",
  7117. "symfony/http-foundation": "^6.4|^7.0",
  7118. "symfony/service-contracts": "^2.5|^3",
  7119. "symfony/stopwatch": "^6.4|^7.0"
  7120. },
  7121. "type": "library",
  7122. "autoload": {
  7123. "psr-4": {
  7124. "Symfony\\Component\\EventDispatcher\\": ""
  7125. },
  7126. "exclude-from-classmap": [
  7127. "/Tests/"
  7128. ]
  7129. },
  7130. "notification-url": "https://packagist.org/downloads/",
  7131. "license": [
  7132. "MIT"
  7133. ],
  7134. "authors": [
  7135. {
  7136. "name": "Fabien Potencier",
  7137. "email": "fabien@symfony.com"
  7138. },
  7139. {
  7140. "name": "Symfony Community",
  7141. "homepage": "https://symfony.com/contributors"
  7142. }
  7143. ],
  7144. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7145. "homepage": "https://symfony.com",
  7146. "support": {
  7147. "source": "https://github.com/symfony/event-dispatcher/tree/v7.3.0"
  7148. },
  7149. "funding": [
  7150. {
  7151. "url": "https://symfony.com/sponsor",
  7152. "type": "custom"
  7153. },
  7154. {
  7155. "url": "https://github.com/fabpot",
  7156. "type": "github"
  7157. },
  7158. {
  7159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7160. "type": "tidelift"
  7161. }
  7162. ],
  7163. "time": "2025-04-22T09:11:45+00:00"
  7164. },
  7165. {
  7166. "name": "symfony/event-dispatcher-contracts",
  7167. "version": "v3.6.0",
  7168. "source": {
  7169. "type": "git",
  7170. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7171. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  7172. },
  7173. "dist": {
  7174. "type": "zip",
  7175. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  7176. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  7177. "shasum": ""
  7178. },
  7179. "require": {
  7180. "php": ">=8.1",
  7181. "psr/event-dispatcher": "^1"
  7182. },
  7183. "type": "library",
  7184. "extra": {
  7185. "thanks": {
  7186. "url": "https://github.com/symfony/contracts",
  7187. "name": "symfony/contracts"
  7188. },
  7189. "branch-alias": {
  7190. "dev-main": "3.6-dev"
  7191. }
  7192. },
  7193. "autoload": {
  7194. "psr-4": {
  7195. "Symfony\\Contracts\\EventDispatcher\\": ""
  7196. }
  7197. },
  7198. "notification-url": "https://packagist.org/downloads/",
  7199. "license": [
  7200. "MIT"
  7201. ],
  7202. "authors": [
  7203. {
  7204. "name": "Nicolas Grekas",
  7205. "email": "p@tchwork.com"
  7206. },
  7207. {
  7208. "name": "Symfony Community",
  7209. "homepage": "https://symfony.com/contributors"
  7210. }
  7211. ],
  7212. "description": "Generic abstractions related to dispatching event",
  7213. "homepage": "https://symfony.com",
  7214. "keywords": [
  7215. "abstractions",
  7216. "contracts",
  7217. "decoupling",
  7218. "interfaces",
  7219. "interoperability",
  7220. "standards"
  7221. ],
  7222. "support": {
  7223. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  7224. },
  7225. "funding": [
  7226. {
  7227. "url": "https://symfony.com/sponsor",
  7228. "type": "custom"
  7229. },
  7230. {
  7231. "url": "https://github.com/fabpot",
  7232. "type": "github"
  7233. },
  7234. {
  7235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7236. "type": "tidelift"
  7237. }
  7238. ],
  7239. "time": "2024-09-25T14:21:43+00:00"
  7240. },
  7241. {
  7242. "name": "symfony/finder",
  7243. "version": "v7.3.0",
  7244. "source": {
  7245. "type": "git",
  7246. "url": "https://github.com/symfony/finder.git",
  7247. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d"
  7248. },
  7249. "dist": {
  7250. "type": "zip",
  7251. "url": "https://api.github.com/repos/symfony/finder/zipball/ec2344cf77a48253bbca6939aa3d2477773ea63d",
  7252. "reference": "ec2344cf77a48253bbca6939aa3d2477773ea63d",
  7253. "shasum": ""
  7254. },
  7255. "require": {
  7256. "php": ">=8.2"
  7257. },
  7258. "require-dev": {
  7259. "symfony/filesystem": "^6.4|^7.0"
  7260. },
  7261. "type": "library",
  7262. "autoload": {
  7263. "psr-4": {
  7264. "Symfony\\Component\\Finder\\": ""
  7265. },
  7266. "exclude-from-classmap": [
  7267. "/Tests/"
  7268. ]
  7269. },
  7270. "notification-url": "https://packagist.org/downloads/",
  7271. "license": [
  7272. "MIT"
  7273. ],
  7274. "authors": [
  7275. {
  7276. "name": "Fabien Potencier",
  7277. "email": "fabien@symfony.com"
  7278. },
  7279. {
  7280. "name": "Symfony Community",
  7281. "homepage": "https://symfony.com/contributors"
  7282. }
  7283. ],
  7284. "description": "Finds files and directories via an intuitive fluent interface",
  7285. "homepage": "https://symfony.com",
  7286. "support": {
  7287. "source": "https://github.com/symfony/finder/tree/v7.3.0"
  7288. },
  7289. "funding": [
  7290. {
  7291. "url": "https://symfony.com/sponsor",
  7292. "type": "custom"
  7293. },
  7294. {
  7295. "url": "https://github.com/fabpot",
  7296. "type": "github"
  7297. },
  7298. {
  7299. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7300. "type": "tidelift"
  7301. }
  7302. ],
  7303. "time": "2024-12-30T19:00:26+00:00"
  7304. },
  7305. {
  7306. "name": "symfony/html-sanitizer",
  7307. "version": "v7.3.0",
  7308. "source": {
  7309. "type": "git",
  7310. "url": "https://github.com/symfony/html-sanitizer.git",
  7311. "reference": "cf21254e982b12276329940ca4af5e623ee06c58"
  7312. },
  7313. "dist": {
  7314. "type": "zip",
  7315. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/cf21254e982b12276329940ca4af5e623ee06c58",
  7316. "reference": "cf21254e982b12276329940ca4af5e623ee06c58",
  7317. "shasum": ""
  7318. },
  7319. "require": {
  7320. "ext-dom": "*",
  7321. "league/uri": "^6.5|^7.0",
  7322. "masterminds/html5": "^2.7.2",
  7323. "php": ">=8.2"
  7324. },
  7325. "type": "library",
  7326. "autoload": {
  7327. "psr-4": {
  7328. "Symfony\\Component\\HtmlSanitizer\\": ""
  7329. },
  7330. "exclude-from-classmap": [
  7331. "/Tests/"
  7332. ]
  7333. },
  7334. "notification-url": "https://packagist.org/downloads/",
  7335. "license": [
  7336. "MIT"
  7337. ],
  7338. "authors": [
  7339. {
  7340. "name": "Titouan Galopin",
  7341. "email": "galopintitouan@gmail.com"
  7342. },
  7343. {
  7344. "name": "Symfony Community",
  7345. "homepage": "https://symfony.com/contributors"
  7346. }
  7347. ],
  7348. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7349. "homepage": "https://symfony.com",
  7350. "keywords": [
  7351. "Purifier",
  7352. "html",
  7353. "sanitizer"
  7354. ],
  7355. "support": {
  7356. "source": "https://github.com/symfony/html-sanitizer/tree/v7.3.0"
  7357. },
  7358. "funding": [
  7359. {
  7360. "url": "https://symfony.com/sponsor",
  7361. "type": "custom"
  7362. },
  7363. {
  7364. "url": "https://github.com/fabpot",
  7365. "type": "github"
  7366. },
  7367. {
  7368. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7369. "type": "tidelift"
  7370. }
  7371. ],
  7372. "time": "2025-03-31T08:49:55+00:00"
  7373. },
  7374. {
  7375. "name": "symfony/http-foundation",
  7376. "version": "v7.3.0",
  7377. "source": {
  7378. "type": "git",
  7379. "url": "https://github.com/symfony/http-foundation.git",
  7380. "reference": "4236baf01609667d53b20371486228231eb135fd"
  7381. },
  7382. "dist": {
  7383. "type": "zip",
  7384. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/4236baf01609667d53b20371486228231eb135fd",
  7385. "reference": "4236baf01609667d53b20371486228231eb135fd",
  7386. "shasum": ""
  7387. },
  7388. "require": {
  7389. "php": ">=8.2",
  7390. "symfony/deprecation-contracts": "^2.5|^3.0",
  7391. "symfony/polyfill-mbstring": "~1.1",
  7392. "symfony/polyfill-php83": "^1.27"
  7393. },
  7394. "conflict": {
  7395. "doctrine/dbal": "<3.6",
  7396. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  7397. },
  7398. "require-dev": {
  7399. "doctrine/dbal": "^3.6|^4",
  7400. "predis/predis": "^1.1|^2.0",
  7401. "symfony/cache": "^6.4.12|^7.1.5",
  7402. "symfony/clock": "^6.4|^7.0",
  7403. "symfony/dependency-injection": "^6.4|^7.0",
  7404. "symfony/expression-language": "^6.4|^7.0",
  7405. "symfony/http-kernel": "^6.4|^7.0",
  7406. "symfony/mime": "^6.4|^7.0",
  7407. "symfony/rate-limiter": "^6.4|^7.0"
  7408. },
  7409. "type": "library",
  7410. "autoload": {
  7411. "psr-4": {
  7412. "Symfony\\Component\\HttpFoundation\\": ""
  7413. },
  7414. "exclude-from-classmap": [
  7415. "/Tests/"
  7416. ]
  7417. },
  7418. "notification-url": "https://packagist.org/downloads/",
  7419. "license": [
  7420. "MIT"
  7421. ],
  7422. "authors": [
  7423. {
  7424. "name": "Fabien Potencier",
  7425. "email": "fabien@symfony.com"
  7426. },
  7427. {
  7428. "name": "Symfony Community",
  7429. "homepage": "https://symfony.com/contributors"
  7430. }
  7431. ],
  7432. "description": "Defines an object-oriented layer for the HTTP specification",
  7433. "homepage": "https://symfony.com",
  7434. "support": {
  7435. "source": "https://github.com/symfony/http-foundation/tree/v7.3.0"
  7436. },
  7437. "funding": [
  7438. {
  7439. "url": "https://symfony.com/sponsor",
  7440. "type": "custom"
  7441. },
  7442. {
  7443. "url": "https://github.com/fabpot",
  7444. "type": "github"
  7445. },
  7446. {
  7447. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7448. "type": "tidelift"
  7449. }
  7450. ],
  7451. "time": "2025-05-12T14:48:23+00:00"
  7452. },
  7453. {
  7454. "name": "symfony/http-kernel",
  7455. "version": "v7.3.0",
  7456. "source": {
  7457. "type": "git",
  7458. "url": "https://github.com/symfony/http-kernel.git",
  7459. "reference": "ac7b8e163e8c83dce3abcc055a502d4486051a9f"
  7460. },
  7461. "dist": {
  7462. "type": "zip",
  7463. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/ac7b8e163e8c83dce3abcc055a502d4486051a9f",
  7464. "reference": "ac7b8e163e8c83dce3abcc055a502d4486051a9f",
  7465. "shasum": ""
  7466. },
  7467. "require": {
  7468. "php": ">=8.2",
  7469. "psr/log": "^1|^2|^3",
  7470. "symfony/deprecation-contracts": "^2.5|^3",
  7471. "symfony/error-handler": "^6.4|^7.0",
  7472. "symfony/event-dispatcher": "^7.3",
  7473. "symfony/http-foundation": "^7.3",
  7474. "symfony/polyfill-ctype": "^1.8"
  7475. },
  7476. "conflict": {
  7477. "symfony/browser-kit": "<6.4",
  7478. "symfony/cache": "<6.4",
  7479. "symfony/config": "<6.4",
  7480. "symfony/console": "<6.4",
  7481. "symfony/dependency-injection": "<6.4",
  7482. "symfony/doctrine-bridge": "<6.4",
  7483. "symfony/form": "<6.4",
  7484. "symfony/http-client": "<6.4",
  7485. "symfony/http-client-contracts": "<2.5",
  7486. "symfony/mailer": "<6.4",
  7487. "symfony/messenger": "<6.4",
  7488. "symfony/translation": "<6.4",
  7489. "symfony/translation-contracts": "<2.5",
  7490. "symfony/twig-bridge": "<6.4",
  7491. "symfony/validator": "<6.4",
  7492. "symfony/var-dumper": "<6.4",
  7493. "twig/twig": "<3.12"
  7494. },
  7495. "provide": {
  7496. "psr/log-implementation": "1.0|2.0|3.0"
  7497. },
  7498. "require-dev": {
  7499. "psr/cache": "^1.0|^2.0|^3.0",
  7500. "symfony/browser-kit": "^6.4|^7.0",
  7501. "symfony/clock": "^6.4|^7.0",
  7502. "symfony/config": "^6.4|^7.0",
  7503. "symfony/console": "^6.4|^7.0",
  7504. "symfony/css-selector": "^6.4|^7.0",
  7505. "symfony/dependency-injection": "^6.4|^7.0",
  7506. "symfony/dom-crawler": "^6.4|^7.0",
  7507. "symfony/expression-language": "^6.4|^7.0",
  7508. "symfony/finder": "^6.4|^7.0",
  7509. "symfony/http-client-contracts": "^2.5|^3",
  7510. "symfony/process": "^6.4|^7.0",
  7511. "symfony/property-access": "^7.1",
  7512. "symfony/routing": "^6.4|^7.0",
  7513. "symfony/serializer": "^7.1",
  7514. "symfony/stopwatch": "^6.4|^7.0",
  7515. "symfony/translation": "^6.4|^7.0",
  7516. "symfony/translation-contracts": "^2.5|^3",
  7517. "symfony/uid": "^6.4|^7.0",
  7518. "symfony/validator": "^6.4|^7.0",
  7519. "symfony/var-dumper": "^6.4|^7.0",
  7520. "symfony/var-exporter": "^6.4|^7.0",
  7521. "twig/twig": "^3.12"
  7522. },
  7523. "type": "library",
  7524. "autoload": {
  7525. "psr-4": {
  7526. "Symfony\\Component\\HttpKernel\\": ""
  7527. },
  7528. "exclude-from-classmap": [
  7529. "/Tests/"
  7530. ]
  7531. },
  7532. "notification-url": "https://packagist.org/downloads/",
  7533. "license": [
  7534. "MIT"
  7535. ],
  7536. "authors": [
  7537. {
  7538. "name": "Fabien Potencier",
  7539. "email": "fabien@symfony.com"
  7540. },
  7541. {
  7542. "name": "Symfony Community",
  7543. "homepage": "https://symfony.com/contributors"
  7544. }
  7545. ],
  7546. "description": "Provides a structured process for converting a Request into a Response",
  7547. "homepage": "https://symfony.com",
  7548. "support": {
  7549. "source": "https://github.com/symfony/http-kernel/tree/v7.3.0"
  7550. },
  7551. "funding": [
  7552. {
  7553. "url": "https://symfony.com/sponsor",
  7554. "type": "custom"
  7555. },
  7556. {
  7557. "url": "https://github.com/fabpot",
  7558. "type": "github"
  7559. },
  7560. {
  7561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7562. "type": "tidelift"
  7563. }
  7564. ],
  7565. "time": "2025-05-29T07:47:32+00:00"
  7566. },
  7567. {
  7568. "name": "symfony/intl",
  7569. "version": "v6.4.22",
  7570. "source": {
  7571. "type": "git",
  7572. "url": "https://github.com/symfony/intl.git",
  7573. "reference": "aaecb52f18a6f95766a239ca0a6cc0df983d92cc"
  7574. },
  7575. "dist": {
  7576. "type": "zip",
  7577. "url": "https://api.github.com/repos/symfony/intl/zipball/aaecb52f18a6f95766a239ca0a6cc0df983d92cc",
  7578. "reference": "aaecb52f18a6f95766a239ca0a6cc0df983d92cc",
  7579. "shasum": ""
  7580. },
  7581. "require": {
  7582. "php": ">=8.1"
  7583. },
  7584. "require-dev": {
  7585. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7586. "symfony/finder": "^5.4|^6.0|^7.0",
  7587. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7588. },
  7589. "type": "library",
  7590. "autoload": {
  7591. "psr-4": {
  7592. "Symfony\\Component\\Intl\\": ""
  7593. },
  7594. "exclude-from-classmap": [
  7595. "/Tests/",
  7596. "/Resources/data/"
  7597. ]
  7598. },
  7599. "notification-url": "https://packagist.org/downloads/",
  7600. "license": [
  7601. "MIT"
  7602. ],
  7603. "authors": [
  7604. {
  7605. "name": "Bernhard Schussek",
  7606. "email": "bschussek@gmail.com"
  7607. },
  7608. {
  7609. "name": "Eriksen Costa",
  7610. "email": "eriksen.costa@infranology.com.br"
  7611. },
  7612. {
  7613. "name": "Igor Wiedler",
  7614. "email": "igor@wiedler.ch"
  7615. },
  7616. {
  7617. "name": "Symfony Community",
  7618. "homepage": "https://symfony.com/contributors"
  7619. }
  7620. ],
  7621. "description": "Provides access to the localization data of the ICU library",
  7622. "homepage": "https://symfony.com",
  7623. "keywords": [
  7624. "i18n",
  7625. "icu",
  7626. "internationalization",
  7627. "intl",
  7628. "l10n",
  7629. "localization"
  7630. ],
  7631. "support": {
  7632. "source": "https://github.com/symfony/intl/tree/v6.4.22"
  7633. },
  7634. "funding": [
  7635. {
  7636. "url": "https://symfony.com/sponsor",
  7637. "type": "custom"
  7638. },
  7639. {
  7640. "url": "https://github.com/fabpot",
  7641. "type": "github"
  7642. },
  7643. {
  7644. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7645. "type": "tidelift"
  7646. }
  7647. ],
  7648. "time": "2025-05-04T12:02:38+00:00"
  7649. },
  7650. {
  7651. "name": "symfony/mailer",
  7652. "version": "v7.3.0",
  7653. "source": {
  7654. "type": "git",
  7655. "url": "https://github.com/symfony/mailer.git",
  7656. "reference": "0f375bbbde96ae8c78e4aa3e63aabd486e33364c"
  7657. },
  7658. "dist": {
  7659. "type": "zip",
  7660. "url": "https://api.github.com/repos/symfony/mailer/zipball/0f375bbbde96ae8c78e4aa3e63aabd486e33364c",
  7661. "reference": "0f375bbbde96ae8c78e4aa3e63aabd486e33364c",
  7662. "shasum": ""
  7663. },
  7664. "require": {
  7665. "egulias/email-validator": "^2.1.10|^3|^4",
  7666. "php": ">=8.2",
  7667. "psr/event-dispatcher": "^1",
  7668. "psr/log": "^1|^2|^3",
  7669. "symfony/event-dispatcher": "^6.4|^7.0",
  7670. "symfony/mime": "^7.2",
  7671. "symfony/service-contracts": "^2.5|^3"
  7672. },
  7673. "conflict": {
  7674. "symfony/http-client-contracts": "<2.5",
  7675. "symfony/http-kernel": "<6.4",
  7676. "symfony/messenger": "<6.4",
  7677. "symfony/mime": "<6.4",
  7678. "symfony/twig-bridge": "<6.4"
  7679. },
  7680. "require-dev": {
  7681. "symfony/console": "^6.4|^7.0",
  7682. "symfony/http-client": "^6.4|^7.0",
  7683. "symfony/messenger": "^6.4|^7.0",
  7684. "symfony/twig-bridge": "^6.4|^7.0"
  7685. },
  7686. "type": "library",
  7687. "autoload": {
  7688. "psr-4": {
  7689. "Symfony\\Component\\Mailer\\": ""
  7690. },
  7691. "exclude-from-classmap": [
  7692. "/Tests/"
  7693. ]
  7694. },
  7695. "notification-url": "https://packagist.org/downloads/",
  7696. "license": [
  7697. "MIT"
  7698. ],
  7699. "authors": [
  7700. {
  7701. "name": "Fabien Potencier",
  7702. "email": "fabien@symfony.com"
  7703. },
  7704. {
  7705. "name": "Symfony Community",
  7706. "homepage": "https://symfony.com/contributors"
  7707. }
  7708. ],
  7709. "description": "Helps sending emails",
  7710. "homepage": "https://symfony.com",
  7711. "support": {
  7712. "source": "https://github.com/symfony/mailer/tree/v7.3.0"
  7713. },
  7714. "funding": [
  7715. {
  7716. "url": "https://symfony.com/sponsor",
  7717. "type": "custom"
  7718. },
  7719. {
  7720. "url": "https://github.com/fabpot",
  7721. "type": "github"
  7722. },
  7723. {
  7724. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7725. "type": "tidelift"
  7726. }
  7727. ],
  7728. "time": "2025-04-04T09:51:09+00:00"
  7729. },
  7730. {
  7731. "name": "symfony/mime",
  7732. "version": "v7.3.0",
  7733. "source": {
  7734. "type": "git",
  7735. "url": "https://github.com/symfony/mime.git",
  7736. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9"
  7737. },
  7738. "dist": {
  7739. "type": "zip",
  7740. "url": "https://api.github.com/repos/symfony/mime/zipball/0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  7741. "reference": "0e7b19b2f399c31df0cdbe5d8cbf53f02f6cfcd9",
  7742. "shasum": ""
  7743. },
  7744. "require": {
  7745. "php": ">=8.2",
  7746. "symfony/polyfill-intl-idn": "^1.10",
  7747. "symfony/polyfill-mbstring": "^1.0"
  7748. },
  7749. "conflict": {
  7750. "egulias/email-validator": "~3.0.0",
  7751. "phpdocumentor/reflection-docblock": "<3.2.2",
  7752. "phpdocumentor/type-resolver": "<1.4.0",
  7753. "symfony/mailer": "<6.4",
  7754. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7755. },
  7756. "require-dev": {
  7757. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7758. "league/html-to-markdown": "^5.0",
  7759. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7760. "symfony/dependency-injection": "^6.4|^7.0",
  7761. "symfony/process": "^6.4|^7.0",
  7762. "symfony/property-access": "^6.4|^7.0",
  7763. "symfony/property-info": "^6.4|^7.0",
  7764. "symfony/serializer": "^6.4.3|^7.0.3"
  7765. },
  7766. "type": "library",
  7767. "autoload": {
  7768. "psr-4": {
  7769. "Symfony\\Component\\Mime\\": ""
  7770. },
  7771. "exclude-from-classmap": [
  7772. "/Tests/"
  7773. ]
  7774. },
  7775. "notification-url": "https://packagist.org/downloads/",
  7776. "license": [
  7777. "MIT"
  7778. ],
  7779. "authors": [
  7780. {
  7781. "name": "Fabien Potencier",
  7782. "email": "fabien@symfony.com"
  7783. },
  7784. {
  7785. "name": "Symfony Community",
  7786. "homepage": "https://symfony.com/contributors"
  7787. }
  7788. ],
  7789. "description": "Allows manipulating MIME messages",
  7790. "homepage": "https://symfony.com",
  7791. "keywords": [
  7792. "mime",
  7793. "mime-type"
  7794. ],
  7795. "support": {
  7796. "source": "https://github.com/symfony/mime/tree/v7.3.0"
  7797. },
  7798. "funding": [
  7799. {
  7800. "url": "https://symfony.com/sponsor",
  7801. "type": "custom"
  7802. },
  7803. {
  7804. "url": "https://github.com/fabpot",
  7805. "type": "github"
  7806. },
  7807. {
  7808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7809. "type": "tidelift"
  7810. }
  7811. ],
  7812. "time": "2025-02-19T08:51:26+00:00"
  7813. },
  7814. {
  7815. "name": "symfony/polyfill-ctype",
  7816. "version": "v1.32.0",
  7817. "source": {
  7818. "type": "git",
  7819. "url": "https://github.com/symfony/polyfill-ctype.git",
  7820. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7821. },
  7822. "dist": {
  7823. "type": "zip",
  7824. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7825. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7826. "shasum": ""
  7827. },
  7828. "require": {
  7829. "php": ">=7.2"
  7830. },
  7831. "provide": {
  7832. "ext-ctype": "*"
  7833. },
  7834. "suggest": {
  7835. "ext-ctype": "For best performance"
  7836. },
  7837. "type": "library",
  7838. "extra": {
  7839. "thanks": {
  7840. "url": "https://github.com/symfony/polyfill",
  7841. "name": "symfony/polyfill"
  7842. }
  7843. },
  7844. "autoload": {
  7845. "files": [
  7846. "bootstrap.php"
  7847. ],
  7848. "psr-4": {
  7849. "Symfony\\Polyfill\\Ctype\\": ""
  7850. }
  7851. },
  7852. "notification-url": "https://packagist.org/downloads/",
  7853. "license": [
  7854. "MIT"
  7855. ],
  7856. "authors": [
  7857. {
  7858. "name": "Gert de Pagter",
  7859. "email": "BackEndTea@gmail.com"
  7860. },
  7861. {
  7862. "name": "Symfony Community",
  7863. "homepage": "https://symfony.com/contributors"
  7864. }
  7865. ],
  7866. "description": "Symfony polyfill for ctype functions",
  7867. "homepage": "https://symfony.com",
  7868. "keywords": [
  7869. "compatibility",
  7870. "ctype",
  7871. "polyfill",
  7872. "portable"
  7873. ],
  7874. "support": {
  7875. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.32.0"
  7876. },
  7877. "funding": [
  7878. {
  7879. "url": "https://symfony.com/sponsor",
  7880. "type": "custom"
  7881. },
  7882. {
  7883. "url": "https://github.com/fabpot",
  7884. "type": "github"
  7885. },
  7886. {
  7887. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7888. "type": "tidelift"
  7889. }
  7890. ],
  7891. "time": "2024-09-09T11:45:10+00:00"
  7892. },
  7893. {
  7894. "name": "symfony/polyfill-intl-grapheme",
  7895. "version": "v1.32.0",
  7896. "source": {
  7897. "type": "git",
  7898. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7899. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7900. },
  7901. "dist": {
  7902. "type": "zip",
  7903. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7904. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7905. "shasum": ""
  7906. },
  7907. "require": {
  7908. "php": ">=7.2"
  7909. },
  7910. "suggest": {
  7911. "ext-intl": "For best performance"
  7912. },
  7913. "type": "library",
  7914. "extra": {
  7915. "thanks": {
  7916. "url": "https://github.com/symfony/polyfill",
  7917. "name": "symfony/polyfill"
  7918. }
  7919. },
  7920. "autoload": {
  7921. "files": [
  7922. "bootstrap.php"
  7923. ],
  7924. "psr-4": {
  7925. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7926. }
  7927. },
  7928. "notification-url": "https://packagist.org/downloads/",
  7929. "license": [
  7930. "MIT"
  7931. ],
  7932. "authors": [
  7933. {
  7934. "name": "Nicolas Grekas",
  7935. "email": "p@tchwork.com"
  7936. },
  7937. {
  7938. "name": "Symfony Community",
  7939. "homepage": "https://symfony.com/contributors"
  7940. }
  7941. ],
  7942. "description": "Symfony polyfill for intl's grapheme_* functions",
  7943. "homepage": "https://symfony.com",
  7944. "keywords": [
  7945. "compatibility",
  7946. "grapheme",
  7947. "intl",
  7948. "polyfill",
  7949. "portable",
  7950. "shim"
  7951. ],
  7952. "support": {
  7953. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.32.0"
  7954. },
  7955. "funding": [
  7956. {
  7957. "url": "https://symfony.com/sponsor",
  7958. "type": "custom"
  7959. },
  7960. {
  7961. "url": "https://github.com/fabpot",
  7962. "type": "github"
  7963. },
  7964. {
  7965. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7966. "type": "tidelift"
  7967. }
  7968. ],
  7969. "time": "2024-09-09T11:45:10+00:00"
  7970. },
  7971. {
  7972. "name": "symfony/polyfill-intl-idn",
  7973. "version": "v1.32.0",
  7974. "source": {
  7975. "type": "git",
  7976. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7977. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  7978. },
  7979. "dist": {
  7980. "type": "zip",
  7981. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  7982. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  7983. "shasum": ""
  7984. },
  7985. "require": {
  7986. "php": ">=7.2",
  7987. "symfony/polyfill-intl-normalizer": "^1.10"
  7988. },
  7989. "suggest": {
  7990. "ext-intl": "For best performance"
  7991. },
  7992. "type": "library",
  7993. "extra": {
  7994. "thanks": {
  7995. "url": "https://github.com/symfony/polyfill",
  7996. "name": "symfony/polyfill"
  7997. }
  7998. },
  7999. "autoload": {
  8000. "files": [
  8001. "bootstrap.php"
  8002. ],
  8003. "psr-4": {
  8004. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8005. }
  8006. },
  8007. "notification-url": "https://packagist.org/downloads/",
  8008. "license": [
  8009. "MIT"
  8010. ],
  8011. "authors": [
  8012. {
  8013. "name": "Laurent Bassin",
  8014. "email": "laurent@bassin.info"
  8015. },
  8016. {
  8017. "name": "Trevor Rowbotham",
  8018. "email": "trevor.rowbotham@pm.me"
  8019. },
  8020. {
  8021. "name": "Symfony Community",
  8022. "homepage": "https://symfony.com/contributors"
  8023. }
  8024. ],
  8025. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8026. "homepage": "https://symfony.com",
  8027. "keywords": [
  8028. "compatibility",
  8029. "idn",
  8030. "intl",
  8031. "polyfill",
  8032. "portable",
  8033. "shim"
  8034. ],
  8035. "support": {
  8036. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.32.0"
  8037. },
  8038. "funding": [
  8039. {
  8040. "url": "https://symfony.com/sponsor",
  8041. "type": "custom"
  8042. },
  8043. {
  8044. "url": "https://github.com/fabpot",
  8045. "type": "github"
  8046. },
  8047. {
  8048. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8049. "type": "tidelift"
  8050. }
  8051. ],
  8052. "time": "2024-09-10T14:38:51+00:00"
  8053. },
  8054. {
  8055. "name": "symfony/polyfill-intl-normalizer",
  8056. "version": "v1.32.0",
  8057. "source": {
  8058. "type": "git",
  8059. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8060. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8061. },
  8062. "dist": {
  8063. "type": "zip",
  8064. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8065. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8066. "shasum": ""
  8067. },
  8068. "require": {
  8069. "php": ">=7.2"
  8070. },
  8071. "suggest": {
  8072. "ext-intl": "For best performance"
  8073. },
  8074. "type": "library",
  8075. "extra": {
  8076. "thanks": {
  8077. "url": "https://github.com/symfony/polyfill",
  8078. "name": "symfony/polyfill"
  8079. }
  8080. },
  8081. "autoload": {
  8082. "files": [
  8083. "bootstrap.php"
  8084. ],
  8085. "psr-4": {
  8086. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8087. },
  8088. "classmap": [
  8089. "Resources/stubs"
  8090. ]
  8091. },
  8092. "notification-url": "https://packagist.org/downloads/",
  8093. "license": [
  8094. "MIT"
  8095. ],
  8096. "authors": [
  8097. {
  8098. "name": "Nicolas Grekas",
  8099. "email": "p@tchwork.com"
  8100. },
  8101. {
  8102. "name": "Symfony Community",
  8103. "homepage": "https://symfony.com/contributors"
  8104. }
  8105. ],
  8106. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8107. "homepage": "https://symfony.com",
  8108. "keywords": [
  8109. "compatibility",
  8110. "intl",
  8111. "normalizer",
  8112. "polyfill",
  8113. "portable",
  8114. "shim"
  8115. ],
  8116. "support": {
  8117. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.32.0"
  8118. },
  8119. "funding": [
  8120. {
  8121. "url": "https://symfony.com/sponsor",
  8122. "type": "custom"
  8123. },
  8124. {
  8125. "url": "https://github.com/fabpot",
  8126. "type": "github"
  8127. },
  8128. {
  8129. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8130. "type": "tidelift"
  8131. }
  8132. ],
  8133. "time": "2024-09-09T11:45:10+00:00"
  8134. },
  8135. {
  8136. "name": "symfony/polyfill-mbstring",
  8137. "version": "v1.32.0",
  8138. "source": {
  8139. "type": "git",
  8140. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8141. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  8142. },
  8143. "dist": {
  8144. "type": "zip",
  8145. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8146. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  8147. "shasum": ""
  8148. },
  8149. "require": {
  8150. "ext-iconv": "*",
  8151. "php": ">=7.2"
  8152. },
  8153. "provide": {
  8154. "ext-mbstring": "*"
  8155. },
  8156. "suggest": {
  8157. "ext-mbstring": "For best performance"
  8158. },
  8159. "type": "library",
  8160. "extra": {
  8161. "thanks": {
  8162. "url": "https://github.com/symfony/polyfill",
  8163. "name": "symfony/polyfill"
  8164. }
  8165. },
  8166. "autoload": {
  8167. "files": [
  8168. "bootstrap.php"
  8169. ],
  8170. "psr-4": {
  8171. "Symfony\\Polyfill\\Mbstring\\": ""
  8172. }
  8173. },
  8174. "notification-url": "https://packagist.org/downloads/",
  8175. "license": [
  8176. "MIT"
  8177. ],
  8178. "authors": [
  8179. {
  8180. "name": "Nicolas Grekas",
  8181. "email": "p@tchwork.com"
  8182. },
  8183. {
  8184. "name": "Symfony Community",
  8185. "homepage": "https://symfony.com/contributors"
  8186. }
  8187. ],
  8188. "description": "Symfony polyfill for the Mbstring extension",
  8189. "homepage": "https://symfony.com",
  8190. "keywords": [
  8191. "compatibility",
  8192. "mbstring",
  8193. "polyfill",
  8194. "portable",
  8195. "shim"
  8196. ],
  8197. "support": {
  8198. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.32.0"
  8199. },
  8200. "funding": [
  8201. {
  8202. "url": "https://symfony.com/sponsor",
  8203. "type": "custom"
  8204. },
  8205. {
  8206. "url": "https://github.com/fabpot",
  8207. "type": "github"
  8208. },
  8209. {
  8210. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8211. "type": "tidelift"
  8212. }
  8213. ],
  8214. "time": "2024-12-23T08:48:59+00:00"
  8215. },
  8216. {
  8217. "name": "symfony/polyfill-php80",
  8218. "version": "v1.32.0",
  8219. "source": {
  8220. "type": "git",
  8221. "url": "https://github.com/symfony/polyfill-php80.git",
  8222. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  8223. },
  8224. "dist": {
  8225. "type": "zip",
  8226. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  8227. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  8228. "shasum": ""
  8229. },
  8230. "require": {
  8231. "php": ">=7.2"
  8232. },
  8233. "type": "library",
  8234. "extra": {
  8235. "thanks": {
  8236. "url": "https://github.com/symfony/polyfill",
  8237. "name": "symfony/polyfill"
  8238. }
  8239. },
  8240. "autoload": {
  8241. "files": [
  8242. "bootstrap.php"
  8243. ],
  8244. "psr-4": {
  8245. "Symfony\\Polyfill\\Php80\\": ""
  8246. },
  8247. "classmap": [
  8248. "Resources/stubs"
  8249. ]
  8250. },
  8251. "notification-url": "https://packagist.org/downloads/",
  8252. "license": [
  8253. "MIT"
  8254. ],
  8255. "authors": [
  8256. {
  8257. "name": "Ion Bazan",
  8258. "email": "ion.bazan@gmail.com"
  8259. },
  8260. {
  8261. "name": "Nicolas Grekas",
  8262. "email": "p@tchwork.com"
  8263. },
  8264. {
  8265. "name": "Symfony Community",
  8266. "homepage": "https://symfony.com/contributors"
  8267. }
  8268. ],
  8269. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8270. "homepage": "https://symfony.com",
  8271. "keywords": [
  8272. "compatibility",
  8273. "polyfill",
  8274. "portable",
  8275. "shim"
  8276. ],
  8277. "support": {
  8278. "source": "https://github.com/symfony/polyfill-php80/tree/v1.32.0"
  8279. },
  8280. "funding": [
  8281. {
  8282. "url": "https://symfony.com/sponsor",
  8283. "type": "custom"
  8284. },
  8285. {
  8286. "url": "https://github.com/fabpot",
  8287. "type": "github"
  8288. },
  8289. {
  8290. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8291. "type": "tidelift"
  8292. }
  8293. ],
  8294. "time": "2025-01-02T08:10:11+00:00"
  8295. },
  8296. {
  8297. "name": "symfony/polyfill-php83",
  8298. "version": "v1.32.0",
  8299. "source": {
  8300. "type": "git",
  8301. "url": "https://github.com/symfony/polyfill-php83.git",
  8302. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  8303. },
  8304. "dist": {
  8305. "type": "zip",
  8306. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  8307. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  8308. "shasum": ""
  8309. },
  8310. "require": {
  8311. "php": ">=7.2"
  8312. },
  8313. "type": "library",
  8314. "extra": {
  8315. "thanks": {
  8316. "url": "https://github.com/symfony/polyfill",
  8317. "name": "symfony/polyfill"
  8318. }
  8319. },
  8320. "autoload": {
  8321. "files": [
  8322. "bootstrap.php"
  8323. ],
  8324. "psr-4": {
  8325. "Symfony\\Polyfill\\Php83\\": ""
  8326. },
  8327. "classmap": [
  8328. "Resources/stubs"
  8329. ]
  8330. },
  8331. "notification-url": "https://packagist.org/downloads/",
  8332. "license": [
  8333. "MIT"
  8334. ],
  8335. "authors": [
  8336. {
  8337. "name": "Nicolas Grekas",
  8338. "email": "p@tchwork.com"
  8339. },
  8340. {
  8341. "name": "Symfony Community",
  8342. "homepage": "https://symfony.com/contributors"
  8343. }
  8344. ],
  8345. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8346. "homepage": "https://symfony.com",
  8347. "keywords": [
  8348. "compatibility",
  8349. "polyfill",
  8350. "portable",
  8351. "shim"
  8352. ],
  8353. "support": {
  8354. "source": "https://github.com/symfony/polyfill-php83/tree/v1.32.0"
  8355. },
  8356. "funding": [
  8357. {
  8358. "url": "https://symfony.com/sponsor",
  8359. "type": "custom"
  8360. },
  8361. {
  8362. "url": "https://github.com/fabpot",
  8363. "type": "github"
  8364. },
  8365. {
  8366. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8367. "type": "tidelift"
  8368. }
  8369. ],
  8370. "time": "2024-09-09T11:45:10+00:00"
  8371. },
  8372. {
  8373. "name": "symfony/polyfill-uuid",
  8374. "version": "v1.32.0",
  8375. "source": {
  8376. "type": "git",
  8377. "url": "https://github.com/symfony/polyfill-uuid.git",
  8378. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  8379. },
  8380. "dist": {
  8381. "type": "zip",
  8382. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8383. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8384. "shasum": ""
  8385. },
  8386. "require": {
  8387. "php": ">=7.2"
  8388. },
  8389. "provide": {
  8390. "ext-uuid": "*"
  8391. },
  8392. "suggest": {
  8393. "ext-uuid": "For best performance"
  8394. },
  8395. "type": "library",
  8396. "extra": {
  8397. "thanks": {
  8398. "url": "https://github.com/symfony/polyfill",
  8399. "name": "symfony/polyfill"
  8400. }
  8401. },
  8402. "autoload": {
  8403. "files": [
  8404. "bootstrap.php"
  8405. ],
  8406. "psr-4": {
  8407. "Symfony\\Polyfill\\Uuid\\": ""
  8408. }
  8409. },
  8410. "notification-url": "https://packagist.org/downloads/",
  8411. "license": [
  8412. "MIT"
  8413. ],
  8414. "authors": [
  8415. {
  8416. "name": "Grégoire Pineau",
  8417. "email": "lyrixx@lyrixx.info"
  8418. },
  8419. {
  8420. "name": "Symfony Community",
  8421. "homepage": "https://symfony.com/contributors"
  8422. }
  8423. ],
  8424. "description": "Symfony polyfill for uuid functions",
  8425. "homepage": "https://symfony.com",
  8426. "keywords": [
  8427. "compatibility",
  8428. "polyfill",
  8429. "portable",
  8430. "uuid"
  8431. ],
  8432. "support": {
  8433. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.32.0"
  8434. },
  8435. "funding": [
  8436. {
  8437. "url": "https://symfony.com/sponsor",
  8438. "type": "custom"
  8439. },
  8440. {
  8441. "url": "https://github.com/fabpot",
  8442. "type": "github"
  8443. },
  8444. {
  8445. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8446. "type": "tidelift"
  8447. }
  8448. ],
  8449. "time": "2024-09-09T11:45:10+00:00"
  8450. },
  8451. {
  8452. "name": "symfony/process",
  8453. "version": "v7.3.0",
  8454. "source": {
  8455. "type": "git",
  8456. "url": "https://github.com/symfony/process.git",
  8457. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af"
  8458. },
  8459. "dist": {
  8460. "type": "zip",
  8461. "url": "https://api.github.com/repos/symfony/process/zipball/40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  8462. "reference": "40c295f2deb408d5e9d2d32b8ba1dd61e36f05af",
  8463. "shasum": ""
  8464. },
  8465. "require": {
  8466. "php": ">=8.2"
  8467. },
  8468. "type": "library",
  8469. "autoload": {
  8470. "psr-4": {
  8471. "Symfony\\Component\\Process\\": ""
  8472. },
  8473. "exclude-from-classmap": [
  8474. "/Tests/"
  8475. ]
  8476. },
  8477. "notification-url": "https://packagist.org/downloads/",
  8478. "license": [
  8479. "MIT"
  8480. ],
  8481. "authors": [
  8482. {
  8483. "name": "Fabien Potencier",
  8484. "email": "fabien@symfony.com"
  8485. },
  8486. {
  8487. "name": "Symfony Community",
  8488. "homepage": "https://symfony.com/contributors"
  8489. }
  8490. ],
  8491. "description": "Executes commands in sub-processes",
  8492. "homepage": "https://symfony.com",
  8493. "support": {
  8494. "source": "https://github.com/symfony/process/tree/v7.3.0"
  8495. },
  8496. "funding": [
  8497. {
  8498. "url": "https://symfony.com/sponsor",
  8499. "type": "custom"
  8500. },
  8501. {
  8502. "url": "https://github.com/fabpot",
  8503. "type": "github"
  8504. },
  8505. {
  8506. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8507. "type": "tidelift"
  8508. }
  8509. ],
  8510. "time": "2025-04-17T09:11:12+00:00"
  8511. },
  8512. {
  8513. "name": "symfony/routing",
  8514. "version": "v7.3.0",
  8515. "source": {
  8516. "type": "git",
  8517. "url": "https://github.com/symfony/routing.git",
  8518. "reference": "8e213820c5fea844ecea29203d2a308019007c15"
  8519. },
  8520. "dist": {
  8521. "type": "zip",
  8522. "url": "https://api.github.com/repos/symfony/routing/zipball/8e213820c5fea844ecea29203d2a308019007c15",
  8523. "reference": "8e213820c5fea844ecea29203d2a308019007c15",
  8524. "shasum": ""
  8525. },
  8526. "require": {
  8527. "php": ">=8.2",
  8528. "symfony/deprecation-contracts": "^2.5|^3"
  8529. },
  8530. "conflict": {
  8531. "symfony/config": "<6.4",
  8532. "symfony/dependency-injection": "<6.4",
  8533. "symfony/yaml": "<6.4"
  8534. },
  8535. "require-dev": {
  8536. "psr/log": "^1|^2|^3",
  8537. "symfony/config": "^6.4|^7.0",
  8538. "symfony/dependency-injection": "^6.4|^7.0",
  8539. "symfony/expression-language": "^6.4|^7.0",
  8540. "symfony/http-foundation": "^6.4|^7.0",
  8541. "symfony/yaml": "^6.4|^7.0"
  8542. },
  8543. "type": "library",
  8544. "autoload": {
  8545. "psr-4": {
  8546. "Symfony\\Component\\Routing\\": ""
  8547. },
  8548. "exclude-from-classmap": [
  8549. "/Tests/"
  8550. ]
  8551. },
  8552. "notification-url": "https://packagist.org/downloads/",
  8553. "license": [
  8554. "MIT"
  8555. ],
  8556. "authors": [
  8557. {
  8558. "name": "Fabien Potencier",
  8559. "email": "fabien@symfony.com"
  8560. },
  8561. {
  8562. "name": "Symfony Community",
  8563. "homepage": "https://symfony.com/contributors"
  8564. }
  8565. ],
  8566. "description": "Maps an HTTP request to a set of configuration variables",
  8567. "homepage": "https://symfony.com",
  8568. "keywords": [
  8569. "router",
  8570. "routing",
  8571. "uri",
  8572. "url"
  8573. ],
  8574. "support": {
  8575. "source": "https://github.com/symfony/routing/tree/v7.3.0"
  8576. },
  8577. "funding": [
  8578. {
  8579. "url": "https://symfony.com/sponsor",
  8580. "type": "custom"
  8581. },
  8582. {
  8583. "url": "https://github.com/fabpot",
  8584. "type": "github"
  8585. },
  8586. {
  8587. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8588. "type": "tidelift"
  8589. }
  8590. ],
  8591. "time": "2025-05-24T20:43:28+00:00"
  8592. },
  8593. {
  8594. "name": "symfony/service-contracts",
  8595. "version": "v3.6.0",
  8596. "source": {
  8597. "type": "git",
  8598. "url": "https://github.com/symfony/service-contracts.git",
  8599. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4"
  8600. },
  8601. "dist": {
  8602. "type": "zip",
  8603. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  8604. "reference": "f021b05a130d35510bd6b25fe9053c2a8a15d5d4",
  8605. "shasum": ""
  8606. },
  8607. "require": {
  8608. "php": ">=8.1",
  8609. "psr/container": "^1.1|^2.0",
  8610. "symfony/deprecation-contracts": "^2.5|^3"
  8611. },
  8612. "conflict": {
  8613. "ext-psr": "<1.1|>=2"
  8614. },
  8615. "type": "library",
  8616. "extra": {
  8617. "thanks": {
  8618. "url": "https://github.com/symfony/contracts",
  8619. "name": "symfony/contracts"
  8620. },
  8621. "branch-alias": {
  8622. "dev-main": "3.6-dev"
  8623. }
  8624. },
  8625. "autoload": {
  8626. "psr-4": {
  8627. "Symfony\\Contracts\\Service\\": ""
  8628. },
  8629. "exclude-from-classmap": [
  8630. "/Test/"
  8631. ]
  8632. },
  8633. "notification-url": "https://packagist.org/downloads/",
  8634. "license": [
  8635. "MIT"
  8636. ],
  8637. "authors": [
  8638. {
  8639. "name": "Nicolas Grekas",
  8640. "email": "p@tchwork.com"
  8641. },
  8642. {
  8643. "name": "Symfony Community",
  8644. "homepage": "https://symfony.com/contributors"
  8645. }
  8646. ],
  8647. "description": "Generic abstractions related to writing services",
  8648. "homepage": "https://symfony.com",
  8649. "keywords": [
  8650. "abstractions",
  8651. "contracts",
  8652. "decoupling",
  8653. "interfaces",
  8654. "interoperability",
  8655. "standards"
  8656. ],
  8657. "support": {
  8658. "source": "https://github.com/symfony/service-contracts/tree/v3.6.0"
  8659. },
  8660. "funding": [
  8661. {
  8662. "url": "https://symfony.com/sponsor",
  8663. "type": "custom"
  8664. },
  8665. {
  8666. "url": "https://github.com/fabpot",
  8667. "type": "github"
  8668. },
  8669. {
  8670. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8671. "type": "tidelift"
  8672. }
  8673. ],
  8674. "time": "2025-04-25T09:37:31+00:00"
  8675. },
  8676. {
  8677. "name": "symfony/string",
  8678. "version": "v7.3.0",
  8679. "source": {
  8680. "type": "git",
  8681. "url": "https://github.com/symfony/string.git",
  8682. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125"
  8683. },
  8684. "dist": {
  8685. "type": "zip",
  8686. "url": "https://api.github.com/repos/symfony/string/zipball/f3570b8c61ca887a9e2938e85cb6458515d2b125",
  8687. "reference": "f3570b8c61ca887a9e2938e85cb6458515d2b125",
  8688. "shasum": ""
  8689. },
  8690. "require": {
  8691. "php": ">=8.2",
  8692. "symfony/polyfill-ctype": "~1.8",
  8693. "symfony/polyfill-intl-grapheme": "~1.0",
  8694. "symfony/polyfill-intl-normalizer": "~1.0",
  8695. "symfony/polyfill-mbstring": "~1.0"
  8696. },
  8697. "conflict": {
  8698. "symfony/translation-contracts": "<2.5"
  8699. },
  8700. "require-dev": {
  8701. "symfony/emoji": "^7.1",
  8702. "symfony/error-handler": "^6.4|^7.0",
  8703. "symfony/http-client": "^6.4|^7.0",
  8704. "symfony/intl": "^6.4|^7.0",
  8705. "symfony/translation-contracts": "^2.5|^3.0",
  8706. "symfony/var-exporter": "^6.4|^7.0"
  8707. },
  8708. "type": "library",
  8709. "autoload": {
  8710. "files": [
  8711. "Resources/functions.php"
  8712. ],
  8713. "psr-4": {
  8714. "Symfony\\Component\\String\\": ""
  8715. },
  8716. "exclude-from-classmap": [
  8717. "/Tests/"
  8718. ]
  8719. },
  8720. "notification-url": "https://packagist.org/downloads/",
  8721. "license": [
  8722. "MIT"
  8723. ],
  8724. "authors": [
  8725. {
  8726. "name": "Nicolas Grekas",
  8727. "email": "p@tchwork.com"
  8728. },
  8729. {
  8730. "name": "Symfony Community",
  8731. "homepage": "https://symfony.com/contributors"
  8732. }
  8733. ],
  8734. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8735. "homepage": "https://symfony.com",
  8736. "keywords": [
  8737. "grapheme",
  8738. "i18n",
  8739. "string",
  8740. "unicode",
  8741. "utf-8",
  8742. "utf8"
  8743. ],
  8744. "support": {
  8745. "source": "https://github.com/symfony/string/tree/v7.3.0"
  8746. },
  8747. "funding": [
  8748. {
  8749. "url": "https://symfony.com/sponsor",
  8750. "type": "custom"
  8751. },
  8752. {
  8753. "url": "https://github.com/fabpot",
  8754. "type": "github"
  8755. },
  8756. {
  8757. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8758. "type": "tidelift"
  8759. }
  8760. ],
  8761. "time": "2025-04-20T20:19:01+00:00"
  8762. },
  8763. {
  8764. "name": "symfony/translation",
  8765. "version": "v7.3.0",
  8766. "source": {
  8767. "type": "git",
  8768. "url": "https://github.com/symfony/translation.git",
  8769. "reference": "4aba29076a29a3aa667e09b791e5f868973a8667"
  8770. },
  8771. "dist": {
  8772. "type": "zip",
  8773. "url": "https://api.github.com/repos/symfony/translation/zipball/4aba29076a29a3aa667e09b791e5f868973a8667",
  8774. "reference": "4aba29076a29a3aa667e09b791e5f868973a8667",
  8775. "shasum": ""
  8776. },
  8777. "require": {
  8778. "php": ">=8.2",
  8779. "symfony/deprecation-contracts": "^2.5|^3",
  8780. "symfony/polyfill-mbstring": "~1.0",
  8781. "symfony/translation-contracts": "^2.5|^3.0"
  8782. },
  8783. "conflict": {
  8784. "nikic/php-parser": "<5.0",
  8785. "symfony/config": "<6.4",
  8786. "symfony/console": "<6.4",
  8787. "symfony/dependency-injection": "<6.4",
  8788. "symfony/http-client-contracts": "<2.5",
  8789. "symfony/http-kernel": "<6.4",
  8790. "symfony/service-contracts": "<2.5",
  8791. "symfony/twig-bundle": "<6.4",
  8792. "symfony/yaml": "<6.4"
  8793. },
  8794. "provide": {
  8795. "symfony/translation-implementation": "2.3|3.0"
  8796. },
  8797. "require-dev": {
  8798. "nikic/php-parser": "^5.0",
  8799. "psr/log": "^1|^2|^3",
  8800. "symfony/config": "^6.4|^7.0",
  8801. "symfony/console": "^6.4|^7.0",
  8802. "symfony/dependency-injection": "^6.4|^7.0",
  8803. "symfony/finder": "^6.4|^7.0",
  8804. "symfony/http-client-contracts": "^2.5|^3.0",
  8805. "symfony/http-kernel": "^6.4|^7.0",
  8806. "symfony/intl": "^6.4|^7.0",
  8807. "symfony/polyfill-intl-icu": "^1.21",
  8808. "symfony/routing": "^6.4|^7.0",
  8809. "symfony/service-contracts": "^2.5|^3",
  8810. "symfony/yaml": "^6.4|^7.0"
  8811. },
  8812. "type": "library",
  8813. "autoload": {
  8814. "files": [
  8815. "Resources/functions.php"
  8816. ],
  8817. "psr-4": {
  8818. "Symfony\\Component\\Translation\\": ""
  8819. },
  8820. "exclude-from-classmap": [
  8821. "/Tests/"
  8822. ]
  8823. },
  8824. "notification-url": "https://packagist.org/downloads/",
  8825. "license": [
  8826. "MIT"
  8827. ],
  8828. "authors": [
  8829. {
  8830. "name": "Fabien Potencier",
  8831. "email": "fabien@symfony.com"
  8832. },
  8833. {
  8834. "name": "Symfony Community",
  8835. "homepage": "https://symfony.com/contributors"
  8836. }
  8837. ],
  8838. "description": "Provides tools to internationalize your application",
  8839. "homepage": "https://symfony.com",
  8840. "support": {
  8841. "source": "https://github.com/symfony/translation/tree/v7.3.0"
  8842. },
  8843. "funding": [
  8844. {
  8845. "url": "https://symfony.com/sponsor",
  8846. "type": "custom"
  8847. },
  8848. {
  8849. "url": "https://github.com/fabpot",
  8850. "type": "github"
  8851. },
  8852. {
  8853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8854. "type": "tidelift"
  8855. }
  8856. ],
  8857. "time": "2025-05-29T07:19:49+00:00"
  8858. },
  8859. {
  8860. "name": "symfony/translation-contracts",
  8861. "version": "v3.6.0",
  8862. "source": {
  8863. "type": "git",
  8864. "url": "https://github.com/symfony/translation-contracts.git",
  8865. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d"
  8866. },
  8867. "dist": {
  8868. "type": "zip",
  8869. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  8870. "reference": "df210c7a2573f1913b2d17cc95f90f53a73d8f7d",
  8871. "shasum": ""
  8872. },
  8873. "require": {
  8874. "php": ">=8.1"
  8875. },
  8876. "type": "library",
  8877. "extra": {
  8878. "thanks": {
  8879. "url": "https://github.com/symfony/contracts",
  8880. "name": "symfony/contracts"
  8881. },
  8882. "branch-alias": {
  8883. "dev-main": "3.6-dev"
  8884. }
  8885. },
  8886. "autoload": {
  8887. "psr-4": {
  8888. "Symfony\\Contracts\\Translation\\": ""
  8889. },
  8890. "exclude-from-classmap": [
  8891. "/Test/"
  8892. ]
  8893. },
  8894. "notification-url": "https://packagist.org/downloads/",
  8895. "license": [
  8896. "MIT"
  8897. ],
  8898. "authors": [
  8899. {
  8900. "name": "Nicolas Grekas",
  8901. "email": "p@tchwork.com"
  8902. },
  8903. {
  8904. "name": "Symfony Community",
  8905. "homepage": "https://symfony.com/contributors"
  8906. }
  8907. ],
  8908. "description": "Generic abstractions related to translation",
  8909. "homepage": "https://symfony.com",
  8910. "keywords": [
  8911. "abstractions",
  8912. "contracts",
  8913. "decoupling",
  8914. "interfaces",
  8915. "interoperability",
  8916. "standards"
  8917. ],
  8918. "support": {
  8919. "source": "https://github.com/symfony/translation-contracts/tree/v3.6.0"
  8920. },
  8921. "funding": [
  8922. {
  8923. "url": "https://symfony.com/sponsor",
  8924. "type": "custom"
  8925. },
  8926. {
  8927. "url": "https://github.com/fabpot",
  8928. "type": "github"
  8929. },
  8930. {
  8931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8932. "type": "tidelift"
  8933. }
  8934. ],
  8935. "time": "2024-09-27T08:32:26+00:00"
  8936. },
  8937. {
  8938. "name": "symfony/uid",
  8939. "version": "v7.3.0",
  8940. "source": {
  8941. "type": "git",
  8942. "url": "https://github.com/symfony/uid.git",
  8943. "reference": "7beeb2b885cd584cd01e126c5777206ae4c3c6a3"
  8944. },
  8945. "dist": {
  8946. "type": "zip",
  8947. "url": "https://api.github.com/repos/symfony/uid/zipball/7beeb2b885cd584cd01e126c5777206ae4c3c6a3",
  8948. "reference": "7beeb2b885cd584cd01e126c5777206ae4c3c6a3",
  8949. "shasum": ""
  8950. },
  8951. "require": {
  8952. "php": ">=8.2",
  8953. "symfony/polyfill-uuid": "^1.15"
  8954. },
  8955. "require-dev": {
  8956. "symfony/console": "^6.4|^7.0"
  8957. },
  8958. "type": "library",
  8959. "autoload": {
  8960. "psr-4": {
  8961. "Symfony\\Component\\Uid\\": ""
  8962. },
  8963. "exclude-from-classmap": [
  8964. "/Tests/"
  8965. ]
  8966. },
  8967. "notification-url": "https://packagist.org/downloads/",
  8968. "license": [
  8969. "MIT"
  8970. ],
  8971. "authors": [
  8972. {
  8973. "name": "Grégoire Pineau",
  8974. "email": "lyrixx@lyrixx.info"
  8975. },
  8976. {
  8977. "name": "Nicolas Grekas",
  8978. "email": "p@tchwork.com"
  8979. },
  8980. {
  8981. "name": "Symfony Community",
  8982. "homepage": "https://symfony.com/contributors"
  8983. }
  8984. ],
  8985. "description": "Provides an object-oriented API to generate and represent UIDs",
  8986. "homepage": "https://symfony.com",
  8987. "keywords": [
  8988. "UID",
  8989. "ulid",
  8990. "uuid"
  8991. ],
  8992. "support": {
  8993. "source": "https://github.com/symfony/uid/tree/v7.3.0"
  8994. },
  8995. "funding": [
  8996. {
  8997. "url": "https://symfony.com/sponsor",
  8998. "type": "custom"
  8999. },
  9000. {
  9001. "url": "https://github.com/fabpot",
  9002. "type": "github"
  9003. },
  9004. {
  9005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9006. "type": "tidelift"
  9007. }
  9008. ],
  9009. "time": "2025-05-24T14:28:13+00:00"
  9010. },
  9011. {
  9012. "name": "symfony/var-dumper",
  9013. "version": "v7.3.0",
  9014. "source": {
  9015. "type": "git",
  9016. "url": "https://github.com/symfony/var-dumper.git",
  9017. "reference": "548f6760c54197b1084e1e5c71f6d9d523f2f78e"
  9018. },
  9019. "dist": {
  9020. "type": "zip",
  9021. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/548f6760c54197b1084e1e5c71f6d9d523f2f78e",
  9022. "reference": "548f6760c54197b1084e1e5c71f6d9d523f2f78e",
  9023. "shasum": ""
  9024. },
  9025. "require": {
  9026. "php": ">=8.2",
  9027. "symfony/deprecation-contracts": "^2.5|^3",
  9028. "symfony/polyfill-mbstring": "~1.0"
  9029. },
  9030. "conflict": {
  9031. "symfony/console": "<6.4"
  9032. },
  9033. "require-dev": {
  9034. "ext-iconv": "*",
  9035. "symfony/console": "^6.4|^7.0",
  9036. "symfony/http-kernel": "^6.4|^7.0",
  9037. "symfony/process": "^6.4|^7.0",
  9038. "symfony/uid": "^6.4|^7.0",
  9039. "twig/twig": "^3.12"
  9040. },
  9041. "bin": [
  9042. "Resources/bin/var-dump-server"
  9043. ],
  9044. "type": "library",
  9045. "autoload": {
  9046. "files": [
  9047. "Resources/functions/dump.php"
  9048. ],
  9049. "psr-4": {
  9050. "Symfony\\Component\\VarDumper\\": ""
  9051. },
  9052. "exclude-from-classmap": [
  9053. "/Tests/"
  9054. ]
  9055. },
  9056. "notification-url": "https://packagist.org/downloads/",
  9057. "license": [
  9058. "MIT"
  9059. ],
  9060. "authors": [
  9061. {
  9062. "name": "Nicolas Grekas",
  9063. "email": "p@tchwork.com"
  9064. },
  9065. {
  9066. "name": "Symfony Community",
  9067. "homepage": "https://symfony.com/contributors"
  9068. }
  9069. ],
  9070. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9071. "homepage": "https://symfony.com",
  9072. "keywords": [
  9073. "debug",
  9074. "dump"
  9075. ],
  9076. "support": {
  9077. "source": "https://github.com/symfony/var-dumper/tree/v7.3.0"
  9078. },
  9079. "funding": [
  9080. {
  9081. "url": "https://symfony.com/sponsor",
  9082. "type": "custom"
  9083. },
  9084. {
  9085. "url": "https://github.com/fabpot",
  9086. "type": "github"
  9087. },
  9088. {
  9089. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9090. "type": "tidelift"
  9091. }
  9092. ],
  9093. "time": "2025-04-27T18:39:23+00:00"
  9094. },
  9095. {
  9096. "name": "tijsverkoyen/css-to-inline-styles",
  9097. "version": "v2.3.0",
  9098. "source": {
  9099. "type": "git",
  9100. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9101. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  9102. },
  9103. "dist": {
  9104. "type": "zip",
  9105. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  9106. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  9107. "shasum": ""
  9108. },
  9109. "require": {
  9110. "ext-dom": "*",
  9111. "ext-libxml": "*",
  9112. "php": "^7.4 || ^8.0",
  9113. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  9114. },
  9115. "require-dev": {
  9116. "phpstan/phpstan": "^2.0",
  9117. "phpstan/phpstan-phpunit": "^2.0",
  9118. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  9119. },
  9120. "type": "library",
  9121. "extra": {
  9122. "branch-alias": {
  9123. "dev-master": "2.x-dev"
  9124. }
  9125. },
  9126. "autoload": {
  9127. "psr-4": {
  9128. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9129. }
  9130. },
  9131. "notification-url": "https://packagist.org/downloads/",
  9132. "license": [
  9133. "BSD-3-Clause"
  9134. ],
  9135. "authors": [
  9136. {
  9137. "name": "Tijs Verkoyen",
  9138. "email": "css_to_inline_styles@verkoyen.eu",
  9139. "role": "Developer"
  9140. }
  9141. ],
  9142. "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.",
  9143. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9144. "support": {
  9145. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9146. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  9147. },
  9148. "time": "2024-12-21T16:25:41+00:00"
  9149. },
  9150. {
  9151. "name": "vlucas/phpdotenv",
  9152. "version": "v5.6.2",
  9153. "source": {
  9154. "type": "git",
  9155. "url": "https://github.com/vlucas/phpdotenv.git",
  9156. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af"
  9157. },
  9158. "dist": {
  9159. "type": "zip",
  9160. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  9161. "reference": "24ac4c74f91ee2c193fa1aaa5c249cb0822809af",
  9162. "shasum": ""
  9163. },
  9164. "require": {
  9165. "ext-pcre": "*",
  9166. "graham-campbell/result-type": "^1.1.3",
  9167. "php": "^7.2.5 || ^8.0",
  9168. "phpoption/phpoption": "^1.9.3",
  9169. "symfony/polyfill-ctype": "^1.24",
  9170. "symfony/polyfill-mbstring": "^1.24",
  9171. "symfony/polyfill-php80": "^1.24"
  9172. },
  9173. "require-dev": {
  9174. "bamarni/composer-bin-plugin": "^1.8.2",
  9175. "ext-filter": "*",
  9176. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9177. },
  9178. "suggest": {
  9179. "ext-filter": "Required to use the boolean validator."
  9180. },
  9181. "type": "library",
  9182. "extra": {
  9183. "bamarni-bin": {
  9184. "bin-links": true,
  9185. "forward-command": false
  9186. },
  9187. "branch-alias": {
  9188. "dev-master": "5.6-dev"
  9189. }
  9190. },
  9191. "autoload": {
  9192. "psr-4": {
  9193. "Dotenv\\": "src/"
  9194. }
  9195. },
  9196. "notification-url": "https://packagist.org/downloads/",
  9197. "license": [
  9198. "BSD-3-Clause"
  9199. ],
  9200. "authors": [
  9201. {
  9202. "name": "Graham Campbell",
  9203. "email": "hello@gjcampbell.co.uk",
  9204. "homepage": "https://github.com/GrahamCampbell"
  9205. },
  9206. {
  9207. "name": "Vance Lucas",
  9208. "email": "vance@vancelucas.com",
  9209. "homepage": "https://github.com/vlucas"
  9210. }
  9211. ],
  9212. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9213. "keywords": [
  9214. "dotenv",
  9215. "env",
  9216. "environment"
  9217. ],
  9218. "support": {
  9219. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9220. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.2"
  9221. },
  9222. "funding": [
  9223. {
  9224. "url": "https://github.com/GrahamCampbell",
  9225. "type": "github"
  9226. },
  9227. {
  9228. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9229. "type": "tidelift"
  9230. }
  9231. ],
  9232. "time": "2025-04-30T23:37:27+00:00"
  9233. },
  9234. {
  9235. "name": "voku/portable-ascii",
  9236. "version": "2.0.3",
  9237. "source": {
  9238. "type": "git",
  9239. "url": "https://github.com/voku/portable-ascii.git",
  9240. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  9241. },
  9242. "dist": {
  9243. "type": "zip",
  9244. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9245. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9246. "shasum": ""
  9247. },
  9248. "require": {
  9249. "php": ">=7.0.0"
  9250. },
  9251. "require-dev": {
  9252. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9253. },
  9254. "suggest": {
  9255. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9256. },
  9257. "type": "library",
  9258. "autoload": {
  9259. "psr-4": {
  9260. "voku\\": "src/voku/"
  9261. }
  9262. },
  9263. "notification-url": "https://packagist.org/downloads/",
  9264. "license": [
  9265. "MIT"
  9266. ],
  9267. "authors": [
  9268. {
  9269. "name": "Lars Moelleken",
  9270. "homepage": "https://www.moelleken.org/"
  9271. }
  9272. ],
  9273. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9274. "homepage": "https://github.com/voku/portable-ascii",
  9275. "keywords": [
  9276. "ascii",
  9277. "clean",
  9278. "php"
  9279. ],
  9280. "support": {
  9281. "issues": "https://github.com/voku/portable-ascii/issues",
  9282. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  9283. },
  9284. "funding": [
  9285. {
  9286. "url": "https://www.paypal.me/moelleken",
  9287. "type": "custom"
  9288. },
  9289. {
  9290. "url": "https://github.com/voku",
  9291. "type": "github"
  9292. },
  9293. {
  9294. "url": "https://opencollective.com/portable-ascii",
  9295. "type": "open_collective"
  9296. },
  9297. {
  9298. "url": "https://www.patreon.com/voku",
  9299. "type": "patreon"
  9300. },
  9301. {
  9302. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9303. "type": "tidelift"
  9304. }
  9305. ],
  9306. "time": "2024-11-21T01:49:47+00:00"
  9307. },
  9308. {
  9309. "name": "webmozart/assert",
  9310. "version": "1.11.0",
  9311. "source": {
  9312. "type": "git",
  9313. "url": "https://github.com/webmozarts/assert.git",
  9314. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9315. },
  9316. "dist": {
  9317. "type": "zip",
  9318. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9319. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9320. "shasum": ""
  9321. },
  9322. "require": {
  9323. "ext-ctype": "*",
  9324. "php": "^7.2 || ^8.0"
  9325. },
  9326. "conflict": {
  9327. "phpstan/phpstan": "<0.12.20",
  9328. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9329. },
  9330. "require-dev": {
  9331. "phpunit/phpunit": "^8.5.13"
  9332. },
  9333. "type": "library",
  9334. "extra": {
  9335. "branch-alias": {
  9336. "dev-master": "1.10-dev"
  9337. }
  9338. },
  9339. "autoload": {
  9340. "psr-4": {
  9341. "Webmozart\\Assert\\": "src/"
  9342. }
  9343. },
  9344. "notification-url": "https://packagist.org/downloads/",
  9345. "license": [
  9346. "MIT"
  9347. ],
  9348. "authors": [
  9349. {
  9350. "name": "Bernhard Schussek",
  9351. "email": "bschussek@gmail.com"
  9352. }
  9353. ],
  9354. "description": "Assertions to validate method input/output with nice error messages.",
  9355. "keywords": [
  9356. "assert",
  9357. "check",
  9358. "validate"
  9359. ],
  9360. "support": {
  9361. "issues": "https://github.com/webmozarts/assert/issues",
  9362. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9363. },
  9364. "time": "2022-06-03T18:03:27+00:00"
  9365. }
  9366. ],
  9367. "packages-dev": [
  9368. {
  9369. "name": "barryvdh/laravel-debugbar",
  9370. "version": "v3.15.4",
  9371. "source": {
  9372. "type": "git",
  9373. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  9374. "reference": "c0667ea91f7185f1e074402c5788195e96bf8106"
  9375. },
  9376. "dist": {
  9377. "type": "zip",
  9378. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/c0667ea91f7185f1e074402c5788195e96bf8106",
  9379. "reference": "c0667ea91f7185f1e074402c5788195e96bf8106",
  9380. "shasum": ""
  9381. },
  9382. "require": {
  9383. "illuminate/routing": "^9|^10|^11|^12",
  9384. "illuminate/session": "^9|^10|^11|^12",
  9385. "illuminate/support": "^9|^10|^11|^12",
  9386. "php": "^8.1",
  9387. "php-debugbar/php-debugbar": "~2.1.1",
  9388. "symfony/finder": "^6|^7"
  9389. },
  9390. "require-dev": {
  9391. "mockery/mockery": "^1.3.3",
  9392. "orchestra/testbench-dusk": "^7|^8|^9|^10",
  9393. "phpunit/phpunit": "^9.5.10|^10|^11",
  9394. "squizlabs/php_codesniffer": "^3.5"
  9395. },
  9396. "type": "library",
  9397. "extra": {
  9398. "laravel": {
  9399. "aliases": {
  9400. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  9401. },
  9402. "providers": [
  9403. "Barryvdh\\Debugbar\\ServiceProvider"
  9404. ]
  9405. },
  9406. "branch-alias": {
  9407. "dev-master": "3.15-dev"
  9408. }
  9409. },
  9410. "autoload": {
  9411. "files": [
  9412. "src/helpers.php"
  9413. ],
  9414. "psr-4": {
  9415. "Barryvdh\\Debugbar\\": "src/"
  9416. }
  9417. },
  9418. "notification-url": "https://packagist.org/downloads/",
  9419. "license": [
  9420. "MIT"
  9421. ],
  9422. "authors": [
  9423. {
  9424. "name": "Barry vd. Heuvel",
  9425. "email": "barryvdh@gmail.com"
  9426. }
  9427. ],
  9428. "description": "PHP Debugbar integration for Laravel",
  9429. "keywords": [
  9430. "debug",
  9431. "debugbar",
  9432. "dev",
  9433. "laravel",
  9434. "profiler",
  9435. "webprofiler"
  9436. ],
  9437. "support": {
  9438. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  9439. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.15.4"
  9440. },
  9441. "funding": [
  9442. {
  9443. "url": "https://fruitcake.nl",
  9444. "type": "custom"
  9445. },
  9446. {
  9447. "url": "https://github.com/barryvdh",
  9448. "type": "github"
  9449. }
  9450. ],
  9451. "time": "2025-04-16T06:32:06+00:00"
  9452. },
  9453. {
  9454. "name": "brianium/paratest",
  9455. "version": "v7.8.3",
  9456. "source": {
  9457. "type": "git",
  9458. "url": "https://github.com/paratestphp/paratest.git",
  9459. "reference": "a585c346ddf1bec22e51e20b5387607905604a71"
  9460. },
  9461. "dist": {
  9462. "type": "zip",
  9463. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/a585c346ddf1bec22e51e20b5387607905604a71",
  9464. "reference": "a585c346ddf1bec22e51e20b5387607905604a71",
  9465. "shasum": ""
  9466. },
  9467. "require": {
  9468. "ext-dom": "*",
  9469. "ext-pcre": "*",
  9470. "ext-reflection": "*",
  9471. "ext-simplexml": "*",
  9472. "fidry/cpu-core-counter": "^1.2.0",
  9473. "jean85/pretty-package-versions": "^2.1.0",
  9474. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  9475. "phpunit/php-code-coverage": "^11.0.9 || ^12.0.4",
  9476. "phpunit/php-file-iterator": "^5.1.0 || ^6",
  9477. "phpunit/php-timer": "^7.0.1 || ^8",
  9478. "phpunit/phpunit": "^11.5.11 || ^12.0.6",
  9479. "sebastian/environment": "^7.2.0 || ^8",
  9480. "symfony/console": "^6.4.17 || ^7.2.1",
  9481. "symfony/process": "^6.4.19 || ^7.2.4"
  9482. },
  9483. "require-dev": {
  9484. "doctrine/coding-standard": "^12.0.0",
  9485. "ext-pcov": "*",
  9486. "ext-posix": "*",
  9487. "phpstan/phpstan": "^2.1.6",
  9488. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  9489. "phpstan/phpstan-phpunit": "^2.0.4",
  9490. "phpstan/phpstan-strict-rules": "^2.0.3",
  9491. "squizlabs/php_codesniffer": "^3.11.3",
  9492. "symfony/filesystem": "^6.4.13 || ^7.2.0"
  9493. },
  9494. "bin": [
  9495. "bin/paratest",
  9496. "bin/paratest_for_phpstorm"
  9497. ],
  9498. "type": "library",
  9499. "autoload": {
  9500. "psr-4": {
  9501. "ParaTest\\": [
  9502. "src/"
  9503. ]
  9504. }
  9505. },
  9506. "notification-url": "https://packagist.org/downloads/",
  9507. "license": [
  9508. "MIT"
  9509. ],
  9510. "authors": [
  9511. {
  9512. "name": "Brian Scaturro",
  9513. "email": "scaturrob@gmail.com",
  9514. "role": "Developer"
  9515. },
  9516. {
  9517. "name": "Filippo Tessarotto",
  9518. "email": "zoeslam@gmail.com",
  9519. "role": "Developer"
  9520. }
  9521. ],
  9522. "description": "Parallel testing for PHP",
  9523. "homepage": "https://github.com/paratestphp/paratest",
  9524. "keywords": [
  9525. "concurrent",
  9526. "parallel",
  9527. "phpunit",
  9528. "testing"
  9529. ],
  9530. "support": {
  9531. "issues": "https://github.com/paratestphp/paratest/issues",
  9532. "source": "https://github.com/paratestphp/paratest/tree/v7.8.3"
  9533. },
  9534. "funding": [
  9535. {
  9536. "url": "https://github.com/sponsors/Slamdunk",
  9537. "type": "github"
  9538. },
  9539. {
  9540. "url": "https://paypal.me/filippotessarotto",
  9541. "type": "paypal"
  9542. }
  9543. ],
  9544. "time": "2025-03-05T08:29:11+00:00"
  9545. },
  9546. {
  9547. "name": "fidry/cpu-core-counter",
  9548. "version": "1.2.0",
  9549. "source": {
  9550. "type": "git",
  9551. "url": "https://github.com/theofidry/cpu-core-counter.git",
  9552. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  9553. },
  9554. "dist": {
  9555. "type": "zip",
  9556. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  9557. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  9558. "shasum": ""
  9559. },
  9560. "require": {
  9561. "php": "^7.2 || ^8.0"
  9562. },
  9563. "require-dev": {
  9564. "fidry/makefile": "^0.2.0",
  9565. "fidry/php-cs-fixer-config": "^1.1.2",
  9566. "phpstan/extension-installer": "^1.2.0",
  9567. "phpstan/phpstan": "^1.9.2",
  9568. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  9569. "phpstan/phpstan-phpunit": "^1.2.2",
  9570. "phpstan/phpstan-strict-rules": "^1.4.4",
  9571. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  9572. "webmozarts/strict-phpunit": "^7.5"
  9573. },
  9574. "type": "library",
  9575. "autoload": {
  9576. "psr-4": {
  9577. "Fidry\\CpuCoreCounter\\": "src/"
  9578. }
  9579. },
  9580. "notification-url": "https://packagist.org/downloads/",
  9581. "license": [
  9582. "MIT"
  9583. ],
  9584. "authors": [
  9585. {
  9586. "name": "Théo FIDRY",
  9587. "email": "theo.fidry@gmail.com"
  9588. }
  9589. ],
  9590. "description": "Tiny utility to get the number of CPU cores.",
  9591. "keywords": [
  9592. "CPU",
  9593. "core"
  9594. ],
  9595. "support": {
  9596. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  9597. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  9598. },
  9599. "funding": [
  9600. {
  9601. "url": "https://github.com/theofidry",
  9602. "type": "github"
  9603. }
  9604. ],
  9605. "time": "2024-08-06T10:04:20+00:00"
  9606. },
  9607. {
  9608. "name": "filp/whoops",
  9609. "version": "2.18.1",
  9610. "source": {
  9611. "type": "git",
  9612. "url": "https://github.com/filp/whoops.git",
  9613. "reference": "8fcc6a862f2e7b94eb4221fd0819ddba3d30ab26"
  9614. },
  9615. "dist": {
  9616. "type": "zip",
  9617. "url": "https://api.github.com/repos/filp/whoops/zipball/8fcc6a862f2e7b94eb4221fd0819ddba3d30ab26",
  9618. "reference": "8fcc6a862f2e7b94eb4221fd0819ddba3d30ab26",
  9619. "shasum": ""
  9620. },
  9621. "require": {
  9622. "php": "^7.1 || ^8.0",
  9623. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9624. },
  9625. "require-dev": {
  9626. "mockery/mockery": "^1.0",
  9627. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  9628. "symfony/var-dumper": "^4.0 || ^5.0"
  9629. },
  9630. "suggest": {
  9631. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9632. "whoops/soap": "Formats errors as SOAP responses"
  9633. },
  9634. "type": "library",
  9635. "extra": {
  9636. "branch-alias": {
  9637. "dev-master": "2.7-dev"
  9638. }
  9639. },
  9640. "autoload": {
  9641. "psr-4": {
  9642. "Whoops\\": "src/Whoops/"
  9643. }
  9644. },
  9645. "notification-url": "https://packagist.org/downloads/",
  9646. "license": [
  9647. "MIT"
  9648. ],
  9649. "authors": [
  9650. {
  9651. "name": "Filipe Dobreira",
  9652. "homepage": "https://github.com/filp",
  9653. "role": "Developer"
  9654. }
  9655. ],
  9656. "description": "php error handling for cool kids",
  9657. "homepage": "https://filp.github.io/whoops/",
  9658. "keywords": [
  9659. "error",
  9660. "exception",
  9661. "handling",
  9662. "library",
  9663. "throwable",
  9664. "whoops"
  9665. ],
  9666. "support": {
  9667. "issues": "https://github.com/filp/whoops/issues",
  9668. "source": "https://github.com/filp/whoops/tree/2.18.1"
  9669. },
  9670. "funding": [
  9671. {
  9672. "url": "https://github.com/denis-sokolov",
  9673. "type": "github"
  9674. }
  9675. ],
  9676. "time": "2025-06-03T18:56:14+00:00"
  9677. },
  9678. {
  9679. "name": "hamcrest/hamcrest-php",
  9680. "version": "v2.1.1",
  9681. "source": {
  9682. "type": "git",
  9683. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9684. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487"
  9685. },
  9686. "dist": {
  9687. "type": "zip",
  9688. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  9689. "reference": "f8b1c0173b22fa6ec77a81fe63e5b01eba7e6487",
  9690. "shasum": ""
  9691. },
  9692. "require": {
  9693. "php": "^7.4|^8.0"
  9694. },
  9695. "replace": {
  9696. "cordoval/hamcrest-php": "*",
  9697. "davedevelopment/hamcrest-php": "*",
  9698. "kodova/hamcrest-php": "*"
  9699. },
  9700. "require-dev": {
  9701. "phpunit/php-file-iterator": "^1.4 || ^2.0 || ^3.0",
  9702. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0 || ^8.0 || ^9.0"
  9703. },
  9704. "type": "library",
  9705. "extra": {
  9706. "branch-alias": {
  9707. "dev-master": "2.1-dev"
  9708. }
  9709. },
  9710. "autoload": {
  9711. "classmap": [
  9712. "hamcrest"
  9713. ]
  9714. },
  9715. "notification-url": "https://packagist.org/downloads/",
  9716. "license": [
  9717. "BSD-3-Clause"
  9718. ],
  9719. "description": "This is the PHP port of Hamcrest Matchers",
  9720. "keywords": [
  9721. "test"
  9722. ],
  9723. "support": {
  9724. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9725. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.1.1"
  9726. },
  9727. "time": "2025-04-30T06:54:44+00:00"
  9728. },
  9729. {
  9730. "name": "jean85/pretty-package-versions",
  9731. "version": "2.1.1",
  9732. "source": {
  9733. "type": "git",
  9734. "url": "https://github.com/Jean85/pretty-package-versions.git",
  9735. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a"
  9736. },
  9737. "dist": {
  9738. "type": "zip",
  9739. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a",
  9740. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a",
  9741. "shasum": ""
  9742. },
  9743. "require": {
  9744. "composer-runtime-api": "^2.1.0",
  9745. "php": "^7.4|^8.0"
  9746. },
  9747. "require-dev": {
  9748. "friendsofphp/php-cs-fixer": "^3.2",
  9749. "jean85/composer-provided-replaced-stub-package": "^1.0",
  9750. "phpstan/phpstan": "^2.0",
  9751. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  9752. "rector/rector": "^2.0",
  9753. "vimeo/psalm": "^4.3 || ^5.0"
  9754. },
  9755. "type": "library",
  9756. "extra": {
  9757. "branch-alias": {
  9758. "dev-master": "1.x-dev"
  9759. }
  9760. },
  9761. "autoload": {
  9762. "psr-4": {
  9763. "Jean85\\": "src/"
  9764. }
  9765. },
  9766. "notification-url": "https://packagist.org/downloads/",
  9767. "license": [
  9768. "MIT"
  9769. ],
  9770. "authors": [
  9771. {
  9772. "name": "Alessandro Lai",
  9773. "email": "alessandro.lai85@gmail.com"
  9774. }
  9775. ],
  9776. "description": "A library to get pretty versions strings of installed dependencies",
  9777. "keywords": [
  9778. "composer",
  9779. "package",
  9780. "release",
  9781. "versions"
  9782. ],
  9783. "support": {
  9784. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  9785. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1"
  9786. },
  9787. "time": "2025-03-19T14:43:43+00:00"
  9788. },
  9789. {
  9790. "name": "laravel/pint",
  9791. "version": "v1.22.1",
  9792. "source": {
  9793. "type": "git",
  9794. "url": "https://github.com/laravel/pint.git",
  9795. "reference": "941d1927c5ca420c22710e98420287169c7bcaf7"
  9796. },
  9797. "dist": {
  9798. "type": "zip",
  9799. "url": "https://api.github.com/repos/laravel/pint/zipball/941d1927c5ca420c22710e98420287169c7bcaf7",
  9800. "reference": "941d1927c5ca420c22710e98420287169c7bcaf7",
  9801. "shasum": ""
  9802. },
  9803. "require": {
  9804. "ext-json": "*",
  9805. "ext-mbstring": "*",
  9806. "ext-tokenizer": "*",
  9807. "ext-xml": "*",
  9808. "php": "^8.2.0"
  9809. },
  9810. "require-dev": {
  9811. "friendsofphp/php-cs-fixer": "^3.75.0",
  9812. "illuminate/view": "^11.44.7",
  9813. "larastan/larastan": "^3.4.0",
  9814. "laravel-zero/framework": "^11.36.1",
  9815. "mockery/mockery": "^1.6.12",
  9816. "nunomaduro/termwind": "^2.3.1",
  9817. "pestphp/pest": "^2.36.0"
  9818. },
  9819. "bin": [
  9820. "builds/pint"
  9821. ],
  9822. "type": "project",
  9823. "autoload": {
  9824. "psr-4": {
  9825. "App\\": "app/",
  9826. "Database\\Seeders\\": "database/seeders/",
  9827. "Database\\Factories\\": "database/factories/"
  9828. }
  9829. },
  9830. "notification-url": "https://packagist.org/downloads/",
  9831. "license": [
  9832. "MIT"
  9833. ],
  9834. "authors": [
  9835. {
  9836. "name": "Nuno Maduro",
  9837. "email": "enunomaduro@gmail.com"
  9838. }
  9839. ],
  9840. "description": "An opinionated code formatter for PHP.",
  9841. "homepage": "https://laravel.com",
  9842. "keywords": [
  9843. "format",
  9844. "formatter",
  9845. "lint",
  9846. "linter",
  9847. "php"
  9848. ],
  9849. "support": {
  9850. "issues": "https://github.com/laravel/pint/issues",
  9851. "source": "https://github.com/laravel/pint"
  9852. },
  9853. "time": "2025-05-08T08:38:12+00:00"
  9854. },
  9855. {
  9856. "name": "laravel/sail",
  9857. "version": "v1.43.1",
  9858. "source": {
  9859. "type": "git",
  9860. "url": "https://github.com/laravel/sail.git",
  9861. "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72"
  9862. },
  9863. "dist": {
  9864. "type": "zip",
  9865. "url": "https://api.github.com/repos/laravel/sail/zipball/3e7d899232a8c5e3ea4fc6dee7525ad583887e72",
  9866. "reference": "3e7d899232a8c5e3ea4fc6dee7525ad583887e72",
  9867. "shasum": ""
  9868. },
  9869. "require": {
  9870. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  9871. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  9872. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  9873. "php": "^8.0",
  9874. "symfony/console": "^6.0|^7.0",
  9875. "symfony/yaml": "^6.0|^7.0"
  9876. },
  9877. "require-dev": {
  9878. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  9879. "phpstan/phpstan": "^1.10"
  9880. },
  9881. "bin": [
  9882. "bin/sail"
  9883. ],
  9884. "type": "library",
  9885. "extra": {
  9886. "laravel": {
  9887. "providers": [
  9888. "Laravel\\Sail\\SailServiceProvider"
  9889. ]
  9890. }
  9891. },
  9892. "autoload": {
  9893. "psr-4": {
  9894. "Laravel\\Sail\\": "src/"
  9895. }
  9896. },
  9897. "notification-url": "https://packagist.org/downloads/",
  9898. "license": [
  9899. "MIT"
  9900. ],
  9901. "authors": [
  9902. {
  9903. "name": "Taylor Otwell",
  9904. "email": "taylor@laravel.com"
  9905. }
  9906. ],
  9907. "description": "Docker files for running a basic Laravel application.",
  9908. "keywords": [
  9909. "docker",
  9910. "laravel"
  9911. ],
  9912. "support": {
  9913. "issues": "https://github.com/laravel/sail/issues",
  9914. "source": "https://github.com/laravel/sail"
  9915. },
  9916. "time": "2025-05-19T13:19:21+00:00"
  9917. },
  9918. {
  9919. "name": "mockery/mockery",
  9920. "version": "1.6.12",
  9921. "source": {
  9922. "type": "git",
  9923. "url": "https://github.com/mockery/mockery.git",
  9924. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9925. },
  9926. "dist": {
  9927. "type": "zip",
  9928. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9929. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9930. "shasum": ""
  9931. },
  9932. "require": {
  9933. "hamcrest/hamcrest-php": "^2.0.1",
  9934. "lib-pcre": ">=7.0",
  9935. "php": ">=7.3"
  9936. },
  9937. "conflict": {
  9938. "phpunit/phpunit": "<8.0"
  9939. },
  9940. "require-dev": {
  9941. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9942. "symplify/easy-coding-standard": "^12.1.14"
  9943. },
  9944. "type": "library",
  9945. "autoload": {
  9946. "files": [
  9947. "library/helpers.php",
  9948. "library/Mockery.php"
  9949. ],
  9950. "psr-4": {
  9951. "Mockery\\": "library/Mockery"
  9952. }
  9953. },
  9954. "notification-url": "https://packagist.org/downloads/",
  9955. "license": [
  9956. "BSD-3-Clause"
  9957. ],
  9958. "authors": [
  9959. {
  9960. "name": "Pádraic Brady",
  9961. "email": "padraic.brady@gmail.com",
  9962. "homepage": "https://github.com/padraic",
  9963. "role": "Author"
  9964. },
  9965. {
  9966. "name": "Dave Marshall",
  9967. "email": "dave.marshall@atstsolutions.co.uk",
  9968. "homepage": "https://davedevelopment.co.uk",
  9969. "role": "Developer"
  9970. },
  9971. {
  9972. "name": "Nathanael Esayeas",
  9973. "email": "nathanael.esayeas@protonmail.com",
  9974. "homepage": "https://github.com/ghostwriter",
  9975. "role": "Lead Developer"
  9976. }
  9977. ],
  9978. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9979. "homepage": "https://github.com/mockery/mockery",
  9980. "keywords": [
  9981. "BDD",
  9982. "TDD",
  9983. "library",
  9984. "mock",
  9985. "mock objects",
  9986. "mockery",
  9987. "stub",
  9988. "test",
  9989. "test double",
  9990. "testing"
  9991. ],
  9992. "support": {
  9993. "docs": "https://docs.mockery.io/",
  9994. "issues": "https://github.com/mockery/mockery/issues",
  9995. "rss": "https://github.com/mockery/mockery/releases.atom",
  9996. "security": "https://github.com/mockery/mockery/security/advisories",
  9997. "source": "https://github.com/mockery/mockery"
  9998. },
  9999. "time": "2024-05-16T03:13:13+00:00"
  10000. },
  10001. {
  10002. "name": "myclabs/deep-copy",
  10003. "version": "1.13.1",
  10004. "source": {
  10005. "type": "git",
  10006. "url": "https://github.com/myclabs/DeepCopy.git",
  10007. "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c"
  10008. },
  10009. "dist": {
  10010. "type": "zip",
  10011. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/1720ddd719e16cf0db4eb1c6eca108031636d46c",
  10012. "reference": "1720ddd719e16cf0db4eb1c6eca108031636d46c",
  10013. "shasum": ""
  10014. },
  10015. "require": {
  10016. "php": "^7.1 || ^8.0"
  10017. },
  10018. "conflict": {
  10019. "doctrine/collections": "<1.6.8",
  10020. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  10021. },
  10022. "require-dev": {
  10023. "doctrine/collections": "^1.6.8",
  10024. "doctrine/common": "^2.13.3 || ^3.2.2",
  10025. "phpspec/prophecy": "^1.10",
  10026. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10027. },
  10028. "type": "library",
  10029. "autoload": {
  10030. "files": [
  10031. "src/DeepCopy/deep_copy.php"
  10032. ],
  10033. "psr-4": {
  10034. "DeepCopy\\": "src/DeepCopy/"
  10035. }
  10036. },
  10037. "notification-url": "https://packagist.org/downloads/",
  10038. "license": [
  10039. "MIT"
  10040. ],
  10041. "description": "Create deep copies (clones) of your objects",
  10042. "keywords": [
  10043. "clone",
  10044. "copy",
  10045. "duplicate",
  10046. "object",
  10047. "object graph"
  10048. ],
  10049. "support": {
  10050. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10051. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.1"
  10052. },
  10053. "funding": [
  10054. {
  10055. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10056. "type": "tidelift"
  10057. }
  10058. ],
  10059. "time": "2025-04-29T12:36:36+00:00"
  10060. },
  10061. {
  10062. "name": "nunomaduro/collision",
  10063. "version": "v8.8.0",
  10064. "source": {
  10065. "type": "git",
  10066. "url": "https://github.com/nunomaduro/collision.git",
  10067. "reference": "4cf9f3b47afff38b139fb79ce54fc71799022ce8"
  10068. },
  10069. "dist": {
  10070. "type": "zip",
  10071. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/4cf9f3b47afff38b139fb79ce54fc71799022ce8",
  10072. "reference": "4cf9f3b47afff38b139fb79ce54fc71799022ce8",
  10073. "shasum": ""
  10074. },
  10075. "require": {
  10076. "filp/whoops": "^2.18.0",
  10077. "nunomaduro/termwind": "^2.3.0",
  10078. "php": "^8.2.0",
  10079. "symfony/console": "^7.2.5"
  10080. },
  10081. "conflict": {
  10082. "laravel/framework": "<11.44.2 || >=13.0.0",
  10083. "phpunit/phpunit": "<11.5.15 || >=13.0.0"
  10084. },
  10085. "require-dev": {
  10086. "brianium/paratest": "^7.8.3",
  10087. "larastan/larastan": "^3.2",
  10088. "laravel/framework": "^11.44.2 || ^12.6",
  10089. "laravel/pint": "^1.21.2",
  10090. "laravel/sail": "^1.41.0",
  10091. "laravel/sanctum": "^4.0.8",
  10092. "laravel/tinker": "^2.10.1",
  10093. "orchestra/testbench-core": "^9.12.0 || ^10.1",
  10094. "pestphp/pest": "^3.8.0",
  10095. "sebastian/environment": "^7.2.0 || ^8.0"
  10096. },
  10097. "type": "library",
  10098. "extra": {
  10099. "laravel": {
  10100. "providers": [
  10101. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10102. ]
  10103. },
  10104. "branch-alias": {
  10105. "dev-8.x": "8.x-dev"
  10106. }
  10107. },
  10108. "autoload": {
  10109. "files": [
  10110. "./src/Adapters/Phpunit/Autoload.php"
  10111. ],
  10112. "psr-4": {
  10113. "NunoMaduro\\Collision\\": "src/"
  10114. }
  10115. },
  10116. "notification-url": "https://packagist.org/downloads/",
  10117. "license": [
  10118. "MIT"
  10119. ],
  10120. "authors": [
  10121. {
  10122. "name": "Nuno Maduro",
  10123. "email": "enunomaduro@gmail.com"
  10124. }
  10125. ],
  10126. "description": "Cli error handling for console/command-line PHP applications.",
  10127. "keywords": [
  10128. "artisan",
  10129. "cli",
  10130. "command-line",
  10131. "console",
  10132. "dev",
  10133. "error",
  10134. "handling",
  10135. "laravel",
  10136. "laravel-zero",
  10137. "php",
  10138. "symfony"
  10139. ],
  10140. "support": {
  10141. "issues": "https://github.com/nunomaduro/collision/issues",
  10142. "source": "https://github.com/nunomaduro/collision"
  10143. },
  10144. "funding": [
  10145. {
  10146. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10147. "type": "custom"
  10148. },
  10149. {
  10150. "url": "https://github.com/nunomaduro",
  10151. "type": "github"
  10152. },
  10153. {
  10154. "url": "https://www.patreon.com/nunomaduro",
  10155. "type": "patreon"
  10156. }
  10157. ],
  10158. "time": "2025-04-03T14:33:09+00:00"
  10159. },
  10160. {
  10161. "name": "pestphp/pest",
  10162. "version": "v3.8.2",
  10163. "source": {
  10164. "type": "git",
  10165. "url": "https://github.com/pestphp/pest.git",
  10166. "reference": "c6244a8712968dbac88eb998e7ff3b5caa556b0d"
  10167. },
  10168. "dist": {
  10169. "type": "zip",
  10170. "url": "https://api.github.com/repos/pestphp/pest/zipball/c6244a8712968dbac88eb998e7ff3b5caa556b0d",
  10171. "reference": "c6244a8712968dbac88eb998e7ff3b5caa556b0d",
  10172. "shasum": ""
  10173. },
  10174. "require": {
  10175. "brianium/paratest": "^7.8.3",
  10176. "nunomaduro/collision": "^8.8.0",
  10177. "nunomaduro/termwind": "^2.3.0",
  10178. "pestphp/pest-plugin": "^3.0.0",
  10179. "pestphp/pest-plugin-arch": "^3.1.0",
  10180. "pestphp/pest-plugin-mutate": "^3.0.5",
  10181. "php": "^8.2.0",
  10182. "phpunit/phpunit": "^11.5.15"
  10183. },
  10184. "conflict": {
  10185. "filp/whoops": "<2.16.0",
  10186. "phpunit/phpunit": ">11.5.15",
  10187. "sebastian/exporter": "<6.0.0",
  10188. "webmozart/assert": "<1.11.0"
  10189. },
  10190. "require-dev": {
  10191. "pestphp/pest-dev-tools": "^3.4.0",
  10192. "pestphp/pest-plugin-type-coverage": "^3.5.0",
  10193. "symfony/process": "^7.2.5"
  10194. },
  10195. "bin": [
  10196. "bin/pest"
  10197. ],
  10198. "type": "library",
  10199. "extra": {
  10200. "pest": {
  10201. "plugins": [
  10202. "Pest\\Mutate\\Plugins\\Mutate",
  10203. "Pest\\Plugins\\Configuration",
  10204. "Pest\\Plugins\\Bail",
  10205. "Pest\\Plugins\\Cache",
  10206. "Pest\\Plugins\\Coverage",
  10207. "Pest\\Plugins\\Init",
  10208. "Pest\\Plugins\\Environment",
  10209. "Pest\\Plugins\\Help",
  10210. "Pest\\Plugins\\Memory",
  10211. "Pest\\Plugins\\Only",
  10212. "Pest\\Plugins\\Printer",
  10213. "Pest\\Plugins\\ProcessIsolation",
  10214. "Pest\\Plugins\\Profile",
  10215. "Pest\\Plugins\\Retry",
  10216. "Pest\\Plugins\\Snapshot",
  10217. "Pest\\Plugins\\Verbose",
  10218. "Pest\\Plugins\\Version",
  10219. "Pest\\Plugins\\Parallel"
  10220. ]
  10221. },
  10222. "phpstan": {
  10223. "includes": [
  10224. "extension.neon"
  10225. ]
  10226. }
  10227. },
  10228. "autoload": {
  10229. "files": [
  10230. "src/Functions.php",
  10231. "src/Pest.php"
  10232. ],
  10233. "psr-4": {
  10234. "Pest\\": "src/"
  10235. }
  10236. },
  10237. "notification-url": "https://packagist.org/downloads/",
  10238. "license": [
  10239. "MIT"
  10240. ],
  10241. "authors": [
  10242. {
  10243. "name": "Nuno Maduro",
  10244. "email": "enunomaduro@gmail.com"
  10245. }
  10246. ],
  10247. "description": "The elegant PHP Testing Framework.",
  10248. "keywords": [
  10249. "framework",
  10250. "pest",
  10251. "php",
  10252. "test",
  10253. "testing",
  10254. "unit"
  10255. ],
  10256. "support": {
  10257. "issues": "https://github.com/pestphp/pest/issues",
  10258. "source": "https://github.com/pestphp/pest/tree/v3.8.2"
  10259. },
  10260. "funding": [
  10261. {
  10262. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10263. "type": "custom"
  10264. },
  10265. {
  10266. "url": "https://github.com/nunomaduro",
  10267. "type": "github"
  10268. }
  10269. ],
  10270. "time": "2025-04-17T10:53:02+00:00"
  10271. },
  10272. {
  10273. "name": "pestphp/pest-plugin",
  10274. "version": "v3.0.0",
  10275. "source": {
  10276. "type": "git",
  10277. "url": "https://github.com/pestphp/pest-plugin.git",
  10278. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  10279. },
  10280. "dist": {
  10281. "type": "zip",
  10282. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10283. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10284. "shasum": ""
  10285. },
  10286. "require": {
  10287. "composer-plugin-api": "^2.0.0",
  10288. "composer-runtime-api": "^2.2.2",
  10289. "php": "^8.2"
  10290. },
  10291. "conflict": {
  10292. "pestphp/pest": "<3.0.0"
  10293. },
  10294. "require-dev": {
  10295. "composer/composer": "^2.7.9",
  10296. "pestphp/pest": "^3.0.0",
  10297. "pestphp/pest-dev-tools": "^3.0.0"
  10298. },
  10299. "type": "composer-plugin",
  10300. "extra": {
  10301. "class": "Pest\\Plugin\\Manager"
  10302. },
  10303. "autoload": {
  10304. "psr-4": {
  10305. "Pest\\Plugin\\": "src/"
  10306. }
  10307. },
  10308. "notification-url": "https://packagist.org/downloads/",
  10309. "license": [
  10310. "MIT"
  10311. ],
  10312. "description": "The Pest plugin manager",
  10313. "keywords": [
  10314. "framework",
  10315. "manager",
  10316. "pest",
  10317. "php",
  10318. "plugin",
  10319. "test",
  10320. "testing",
  10321. "unit"
  10322. ],
  10323. "support": {
  10324. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  10325. },
  10326. "funding": [
  10327. {
  10328. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10329. "type": "custom"
  10330. },
  10331. {
  10332. "url": "https://github.com/nunomaduro",
  10333. "type": "github"
  10334. },
  10335. {
  10336. "url": "https://www.patreon.com/nunomaduro",
  10337. "type": "patreon"
  10338. }
  10339. ],
  10340. "time": "2024-09-08T23:21:41+00:00"
  10341. },
  10342. {
  10343. "name": "pestphp/pest-plugin-arch",
  10344. "version": "v3.1.1",
  10345. "source": {
  10346. "type": "git",
  10347. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  10348. "reference": "db7bd9cb1612b223e16618d85475c6f63b9c8daa"
  10349. },
  10350. "dist": {
  10351. "type": "zip",
  10352. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/db7bd9cb1612b223e16618d85475c6f63b9c8daa",
  10353. "reference": "db7bd9cb1612b223e16618d85475c6f63b9c8daa",
  10354. "shasum": ""
  10355. },
  10356. "require": {
  10357. "pestphp/pest-plugin": "^3.0.0",
  10358. "php": "^8.2",
  10359. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  10360. },
  10361. "require-dev": {
  10362. "pestphp/pest": "^3.8.1",
  10363. "pestphp/pest-dev-tools": "^3.4.0"
  10364. },
  10365. "type": "library",
  10366. "extra": {
  10367. "pest": {
  10368. "plugins": [
  10369. "Pest\\Arch\\Plugin"
  10370. ]
  10371. }
  10372. },
  10373. "autoload": {
  10374. "files": [
  10375. "src/Autoload.php"
  10376. ],
  10377. "psr-4": {
  10378. "Pest\\Arch\\": "src/"
  10379. }
  10380. },
  10381. "notification-url": "https://packagist.org/downloads/",
  10382. "license": [
  10383. "MIT"
  10384. ],
  10385. "description": "The Arch plugin for Pest PHP.",
  10386. "keywords": [
  10387. "arch",
  10388. "architecture",
  10389. "framework",
  10390. "pest",
  10391. "php",
  10392. "plugin",
  10393. "test",
  10394. "testing",
  10395. "unit"
  10396. ],
  10397. "support": {
  10398. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.1.1"
  10399. },
  10400. "funding": [
  10401. {
  10402. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10403. "type": "custom"
  10404. },
  10405. {
  10406. "url": "https://github.com/nunomaduro",
  10407. "type": "github"
  10408. }
  10409. ],
  10410. "time": "2025-04-16T22:59:48+00:00"
  10411. },
  10412. {
  10413. "name": "pestphp/pest-plugin-livewire",
  10414. "version": "v3.0.0",
  10415. "source": {
  10416. "type": "git",
  10417. "url": "https://github.com/pestphp/pest-plugin-livewire.git",
  10418. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89"
  10419. },
  10420. "dist": {
  10421. "type": "zip",
  10422. "url": "https://api.github.com/repos/pestphp/pest-plugin-livewire/zipball/e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10423. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10424. "shasum": ""
  10425. },
  10426. "require": {
  10427. "livewire/livewire": "^3.5.6",
  10428. "pestphp/pest": "^3.0.0",
  10429. "php": "^8.1"
  10430. },
  10431. "require-dev": {
  10432. "orchestra/testbench": "^9.4.0",
  10433. "pestphp/pest-dev-tools": "^3.0.0"
  10434. },
  10435. "type": "library",
  10436. "autoload": {
  10437. "files": [
  10438. "src/Autoload.php"
  10439. ],
  10440. "psr-4": {
  10441. "Pest\\Livewire\\": "src/"
  10442. }
  10443. },
  10444. "notification-url": "https://packagist.org/downloads/",
  10445. "license": [
  10446. "MIT"
  10447. ],
  10448. "description": "The Pest Livewire Plugin",
  10449. "keywords": [
  10450. "framework",
  10451. "livewire",
  10452. "pest",
  10453. "php",
  10454. "plugin",
  10455. "test",
  10456. "testing",
  10457. "unit"
  10458. ],
  10459. "support": {
  10460. "source": "https://github.com/pestphp/pest-plugin-livewire/tree/v3.0.0"
  10461. },
  10462. "funding": [
  10463. {
  10464. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10465. "type": "custom"
  10466. },
  10467. {
  10468. "url": "https://github.com/nunomaduro",
  10469. "type": "github"
  10470. },
  10471. {
  10472. "url": "https://www.patreon.com/nunomaduro",
  10473. "type": "patreon"
  10474. }
  10475. ],
  10476. "time": "2024-09-09T00:05:59+00:00"
  10477. },
  10478. {
  10479. "name": "pestphp/pest-plugin-mutate",
  10480. "version": "v3.0.5",
  10481. "source": {
  10482. "type": "git",
  10483. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  10484. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  10485. },
  10486. "dist": {
  10487. "type": "zip",
  10488. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10489. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10490. "shasum": ""
  10491. },
  10492. "require": {
  10493. "nikic/php-parser": "^5.2.0",
  10494. "pestphp/pest-plugin": "^3.0.0",
  10495. "php": "^8.2",
  10496. "psr/simple-cache": "^3.0.0"
  10497. },
  10498. "require-dev": {
  10499. "pestphp/pest": "^3.0.8",
  10500. "pestphp/pest-dev-tools": "^3.0.0",
  10501. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  10502. },
  10503. "type": "library",
  10504. "autoload": {
  10505. "psr-4": {
  10506. "Pest\\Mutate\\": "src/"
  10507. }
  10508. },
  10509. "notification-url": "https://packagist.org/downloads/",
  10510. "license": [
  10511. "MIT"
  10512. ],
  10513. "authors": [
  10514. {
  10515. "name": "Sandro Gehri",
  10516. "email": "sandrogehri@gmail.com"
  10517. }
  10518. ],
  10519. "description": "Mutates your code to find untested cases",
  10520. "keywords": [
  10521. "framework",
  10522. "mutate",
  10523. "mutation",
  10524. "pest",
  10525. "php",
  10526. "plugin",
  10527. "test",
  10528. "testing",
  10529. "unit"
  10530. ],
  10531. "support": {
  10532. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  10533. },
  10534. "funding": [
  10535. {
  10536. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10537. "type": "custom"
  10538. },
  10539. {
  10540. "url": "https://github.com/gehrisandro",
  10541. "type": "github"
  10542. },
  10543. {
  10544. "url": "https://github.com/nunomaduro",
  10545. "type": "github"
  10546. }
  10547. ],
  10548. "time": "2024-09-22T07:54:40+00:00"
  10549. },
  10550. {
  10551. "name": "phar-io/manifest",
  10552. "version": "2.0.4",
  10553. "source": {
  10554. "type": "git",
  10555. "url": "https://github.com/phar-io/manifest.git",
  10556. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10557. },
  10558. "dist": {
  10559. "type": "zip",
  10560. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10561. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10562. "shasum": ""
  10563. },
  10564. "require": {
  10565. "ext-dom": "*",
  10566. "ext-libxml": "*",
  10567. "ext-phar": "*",
  10568. "ext-xmlwriter": "*",
  10569. "phar-io/version": "^3.0.1",
  10570. "php": "^7.2 || ^8.0"
  10571. },
  10572. "type": "library",
  10573. "extra": {
  10574. "branch-alias": {
  10575. "dev-master": "2.0.x-dev"
  10576. }
  10577. },
  10578. "autoload": {
  10579. "classmap": [
  10580. "src/"
  10581. ]
  10582. },
  10583. "notification-url": "https://packagist.org/downloads/",
  10584. "license": [
  10585. "BSD-3-Clause"
  10586. ],
  10587. "authors": [
  10588. {
  10589. "name": "Arne Blankerts",
  10590. "email": "arne@blankerts.de",
  10591. "role": "Developer"
  10592. },
  10593. {
  10594. "name": "Sebastian Heuer",
  10595. "email": "sebastian@phpeople.de",
  10596. "role": "Developer"
  10597. },
  10598. {
  10599. "name": "Sebastian Bergmann",
  10600. "email": "sebastian@phpunit.de",
  10601. "role": "Developer"
  10602. }
  10603. ],
  10604. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10605. "support": {
  10606. "issues": "https://github.com/phar-io/manifest/issues",
  10607. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10608. },
  10609. "funding": [
  10610. {
  10611. "url": "https://github.com/theseer",
  10612. "type": "github"
  10613. }
  10614. ],
  10615. "time": "2024-03-03T12:33:53+00:00"
  10616. },
  10617. {
  10618. "name": "phar-io/version",
  10619. "version": "3.2.1",
  10620. "source": {
  10621. "type": "git",
  10622. "url": "https://github.com/phar-io/version.git",
  10623. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10624. },
  10625. "dist": {
  10626. "type": "zip",
  10627. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10628. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10629. "shasum": ""
  10630. },
  10631. "require": {
  10632. "php": "^7.2 || ^8.0"
  10633. },
  10634. "type": "library",
  10635. "autoload": {
  10636. "classmap": [
  10637. "src/"
  10638. ]
  10639. },
  10640. "notification-url": "https://packagist.org/downloads/",
  10641. "license": [
  10642. "BSD-3-Clause"
  10643. ],
  10644. "authors": [
  10645. {
  10646. "name": "Arne Blankerts",
  10647. "email": "arne@blankerts.de",
  10648. "role": "Developer"
  10649. },
  10650. {
  10651. "name": "Sebastian Heuer",
  10652. "email": "sebastian@phpeople.de",
  10653. "role": "Developer"
  10654. },
  10655. {
  10656. "name": "Sebastian Bergmann",
  10657. "email": "sebastian@phpunit.de",
  10658. "role": "Developer"
  10659. }
  10660. ],
  10661. "description": "Library for handling version information and constraints",
  10662. "support": {
  10663. "issues": "https://github.com/phar-io/version/issues",
  10664. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10665. },
  10666. "time": "2022-02-21T01:04:05+00:00"
  10667. },
  10668. {
  10669. "name": "php-debugbar/php-debugbar",
  10670. "version": "v2.1.6",
  10671. "source": {
  10672. "type": "git",
  10673. "url": "https://github.com/php-debugbar/php-debugbar.git",
  10674. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0"
  10675. },
  10676. "dist": {
  10677. "type": "zip",
  10678. "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/16fa68da5617220594aa5e33fa9de415f94784a0",
  10679. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0",
  10680. "shasum": ""
  10681. },
  10682. "require": {
  10683. "php": "^8",
  10684. "psr/log": "^1|^2|^3",
  10685. "symfony/var-dumper": "^4|^5|^6|^7"
  10686. },
  10687. "require-dev": {
  10688. "dbrekelmans/bdi": "^1",
  10689. "phpunit/phpunit": "^8|^9",
  10690. "symfony/panther": "^1|^2.1",
  10691. "twig/twig": "^1.38|^2.7|^3.0"
  10692. },
  10693. "suggest": {
  10694. "kriswallsmith/assetic": "The best way to manage assets",
  10695. "monolog/monolog": "Log using Monolog",
  10696. "predis/predis": "Redis storage"
  10697. },
  10698. "type": "library",
  10699. "extra": {
  10700. "branch-alias": {
  10701. "dev-master": "2.0-dev"
  10702. }
  10703. },
  10704. "autoload": {
  10705. "psr-4": {
  10706. "DebugBar\\": "src/DebugBar/"
  10707. }
  10708. },
  10709. "notification-url": "https://packagist.org/downloads/",
  10710. "license": [
  10711. "MIT"
  10712. ],
  10713. "authors": [
  10714. {
  10715. "name": "Maxime Bouroumeau-Fuseau",
  10716. "email": "maxime.bouroumeau@gmail.com",
  10717. "homepage": "http://maximebf.com"
  10718. },
  10719. {
  10720. "name": "Barry vd. Heuvel",
  10721. "email": "barryvdh@gmail.com"
  10722. }
  10723. ],
  10724. "description": "Debug bar in the browser for php application",
  10725. "homepage": "https://github.com/php-debugbar/php-debugbar",
  10726. "keywords": [
  10727. "debug",
  10728. "debug bar",
  10729. "debugbar",
  10730. "dev"
  10731. ],
  10732. "support": {
  10733. "issues": "https://github.com/php-debugbar/php-debugbar/issues",
  10734. "source": "https://github.com/php-debugbar/php-debugbar/tree/v2.1.6"
  10735. },
  10736. "time": "2025-02-21T17:47:03+00:00"
  10737. },
  10738. {
  10739. "name": "php-di/invoker",
  10740. "version": "2.3.6",
  10741. "source": {
  10742. "type": "git",
  10743. "url": "https://github.com/PHP-DI/Invoker.git",
  10744. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576"
  10745. },
  10746. "dist": {
  10747. "type": "zip",
  10748. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/59f15608528d8a8838d69b422a919fd6b16aa576",
  10749. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576",
  10750. "shasum": ""
  10751. },
  10752. "require": {
  10753. "php": ">=7.3",
  10754. "psr/container": "^1.0|^2.0"
  10755. },
  10756. "require-dev": {
  10757. "athletic/athletic": "~0.1.8",
  10758. "mnapoli/hard-mode": "~0.3.0",
  10759. "phpunit/phpunit": "^9.0"
  10760. },
  10761. "type": "library",
  10762. "autoload": {
  10763. "psr-4": {
  10764. "Invoker\\": "src/"
  10765. }
  10766. },
  10767. "notification-url": "https://packagist.org/downloads/",
  10768. "license": [
  10769. "MIT"
  10770. ],
  10771. "description": "Generic and extensible callable invoker",
  10772. "homepage": "https://github.com/PHP-DI/Invoker",
  10773. "keywords": [
  10774. "callable",
  10775. "dependency",
  10776. "dependency-injection",
  10777. "injection",
  10778. "invoke",
  10779. "invoker"
  10780. ],
  10781. "support": {
  10782. "issues": "https://github.com/PHP-DI/Invoker/issues",
  10783. "source": "https://github.com/PHP-DI/Invoker/tree/2.3.6"
  10784. },
  10785. "funding": [
  10786. {
  10787. "url": "https://github.com/mnapoli",
  10788. "type": "github"
  10789. }
  10790. ],
  10791. "time": "2025-01-17T12:49:27+00:00"
  10792. },
  10793. {
  10794. "name": "php-di/php-di",
  10795. "version": "7.0.11",
  10796. "source": {
  10797. "type": "git",
  10798. "url": "https://github.com/PHP-DI/PHP-DI.git",
  10799. "reference": "32f111a6d214564520a57831d397263e8946c1d2"
  10800. },
  10801. "dist": {
  10802. "type": "zip",
  10803. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/32f111a6d214564520a57831d397263e8946c1d2",
  10804. "reference": "32f111a6d214564520a57831d397263e8946c1d2",
  10805. "shasum": ""
  10806. },
  10807. "require": {
  10808. "laravel/serializable-closure": "^1.0 || ^2.0",
  10809. "php": ">=8.0",
  10810. "php-di/invoker": "^2.0",
  10811. "psr/container": "^1.1 || ^2.0"
  10812. },
  10813. "provide": {
  10814. "psr/container-implementation": "^1.0"
  10815. },
  10816. "require-dev": {
  10817. "friendsofphp/php-cs-fixer": "^3",
  10818. "friendsofphp/proxy-manager-lts": "^1",
  10819. "mnapoli/phpunit-easymock": "^1.3",
  10820. "phpunit/phpunit": "^9.6 || ^10 || ^11",
  10821. "vimeo/psalm": "^5|^6"
  10822. },
  10823. "suggest": {
  10824. "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)"
  10825. },
  10826. "type": "library",
  10827. "autoload": {
  10828. "files": [
  10829. "src/functions.php"
  10830. ],
  10831. "psr-4": {
  10832. "DI\\": "src/"
  10833. }
  10834. },
  10835. "notification-url": "https://packagist.org/downloads/",
  10836. "license": [
  10837. "MIT"
  10838. ],
  10839. "description": "The dependency injection container for humans",
  10840. "homepage": "https://php-di.org/",
  10841. "keywords": [
  10842. "PSR-11",
  10843. "container",
  10844. "container-interop",
  10845. "dependency injection",
  10846. "di",
  10847. "ioc",
  10848. "psr11"
  10849. ],
  10850. "support": {
  10851. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  10852. "source": "https://github.com/PHP-DI/PHP-DI/tree/7.0.11"
  10853. },
  10854. "funding": [
  10855. {
  10856. "url": "https://github.com/mnapoli",
  10857. "type": "github"
  10858. },
  10859. {
  10860. "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
  10861. "type": "tidelift"
  10862. }
  10863. ],
  10864. "time": "2025-06-03T07:45:57+00:00"
  10865. },
  10866. {
  10867. "name": "phpdocumentor/reflection-common",
  10868. "version": "2.2.0",
  10869. "source": {
  10870. "type": "git",
  10871. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10872. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  10873. },
  10874. "dist": {
  10875. "type": "zip",
  10876. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10877. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10878. "shasum": ""
  10879. },
  10880. "require": {
  10881. "php": "^7.2 || ^8.0"
  10882. },
  10883. "type": "library",
  10884. "extra": {
  10885. "branch-alias": {
  10886. "dev-2.x": "2.x-dev"
  10887. }
  10888. },
  10889. "autoload": {
  10890. "psr-4": {
  10891. "phpDocumentor\\Reflection\\": "src/"
  10892. }
  10893. },
  10894. "notification-url": "https://packagist.org/downloads/",
  10895. "license": [
  10896. "MIT"
  10897. ],
  10898. "authors": [
  10899. {
  10900. "name": "Jaap van Otterdijk",
  10901. "email": "opensource@ijaap.nl"
  10902. }
  10903. ],
  10904. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10905. "homepage": "http://www.phpdoc.org",
  10906. "keywords": [
  10907. "FQSEN",
  10908. "phpDocumentor",
  10909. "phpdoc",
  10910. "reflection",
  10911. "static analysis"
  10912. ],
  10913. "support": {
  10914. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  10915. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  10916. },
  10917. "time": "2020-06-27T09:03:43+00:00"
  10918. },
  10919. {
  10920. "name": "phpdocumentor/reflection-docblock",
  10921. "version": "5.6.2",
  10922. "source": {
  10923. "type": "git",
  10924. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  10925. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62"
  10926. },
  10927. "dist": {
  10928. "type": "zip",
  10929. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/92dde6a5919e34835c506ac8c523ef095a95ed62",
  10930. "reference": "92dde6a5919e34835c506ac8c523ef095a95ed62",
  10931. "shasum": ""
  10932. },
  10933. "require": {
  10934. "doctrine/deprecations": "^1.1",
  10935. "ext-filter": "*",
  10936. "php": "^7.4 || ^8.0",
  10937. "phpdocumentor/reflection-common": "^2.2",
  10938. "phpdocumentor/type-resolver": "^1.7",
  10939. "phpstan/phpdoc-parser": "^1.7|^2.0",
  10940. "webmozart/assert": "^1.9.1"
  10941. },
  10942. "require-dev": {
  10943. "mockery/mockery": "~1.3.5 || ~1.6.0",
  10944. "phpstan/extension-installer": "^1.1",
  10945. "phpstan/phpstan": "^1.8",
  10946. "phpstan/phpstan-mockery": "^1.1",
  10947. "phpstan/phpstan-webmozart-assert": "^1.2",
  10948. "phpunit/phpunit": "^9.5",
  10949. "psalm/phar": "^5.26"
  10950. },
  10951. "type": "library",
  10952. "extra": {
  10953. "branch-alias": {
  10954. "dev-master": "5.x-dev"
  10955. }
  10956. },
  10957. "autoload": {
  10958. "psr-4": {
  10959. "phpDocumentor\\Reflection\\": "src"
  10960. }
  10961. },
  10962. "notification-url": "https://packagist.org/downloads/",
  10963. "license": [
  10964. "MIT"
  10965. ],
  10966. "authors": [
  10967. {
  10968. "name": "Mike van Riel",
  10969. "email": "me@mikevanriel.com"
  10970. },
  10971. {
  10972. "name": "Jaap van Otterdijk",
  10973. "email": "opensource@ijaap.nl"
  10974. }
  10975. ],
  10976. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  10977. "support": {
  10978. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  10979. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.2"
  10980. },
  10981. "time": "2025-04-13T19:20:35+00:00"
  10982. },
  10983. {
  10984. "name": "phpdocumentor/type-resolver",
  10985. "version": "1.10.0",
  10986. "source": {
  10987. "type": "git",
  10988. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10989. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  10990. },
  10991. "dist": {
  10992. "type": "zip",
  10993. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10994. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10995. "shasum": ""
  10996. },
  10997. "require": {
  10998. "doctrine/deprecations": "^1.0",
  10999. "php": "^7.3 || ^8.0",
  11000. "phpdocumentor/reflection-common": "^2.0",
  11001. "phpstan/phpdoc-parser": "^1.18|^2.0"
  11002. },
  11003. "require-dev": {
  11004. "ext-tokenizer": "*",
  11005. "phpbench/phpbench": "^1.2",
  11006. "phpstan/extension-installer": "^1.1",
  11007. "phpstan/phpstan": "^1.8",
  11008. "phpstan/phpstan-phpunit": "^1.1",
  11009. "phpunit/phpunit": "^9.5",
  11010. "rector/rector": "^0.13.9",
  11011. "vimeo/psalm": "^4.25"
  11012. },
  11013. "type": "library",
  11014. "extra": {
  11015. "branch-alias": {
  11016. "dev-1.x": "1.x-dev"
  11017. }
  11018. },
  11019. "autoload": {
  11020. "psr-4": {
  11021. "phpDocumentor\\Reflection\\": "src"
  11022. }
  11023. },
  11024. "notification-url": "https://packagist.org/downloads/",
  11025. "license": [
  11026. "MIT"
  11027. ],
  11028. "authors": [
  11029. {
  11030. "name": "Mike van Riel",
  11031. "email": "me@mikevanriel.com"
  11032. }
  11033. ],
  11034. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  11035. "support": {
  11036. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  11037. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  11038. },
  11039. "time": "2024-11-09T15:12:26+00:00"
  11040. },
  11041. {
  11042. "name": "phpstan/phpdoc-parser",
  11043. "version": "2.1.0",
  11044. "source": {
  11045. "type": "git",
  11046. "url": "https://github.com/phpstan/phpdoc-parser.git",
  11047. "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68"
  11048. },
  11049. "dist": {
  11050. "type": "zip",
  11051. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/9b30d6fd026b2c132b3985ce6b23bec09ab3aa68",
  11052. "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68",
  11053. "shasum": ""
  11054. },
  11055. "require": {
  11056. "php": "^7.4 || ^8.0"
  11057. },
  11058. "require-dev": {
  11059. "doctrine/annotations": "^2.0",
  11060. "nikic/php-parser": "^5.3.0",
  11061. "php-parallel-lint/php-parallel-lint": "^1.2",
  11062. "phpstan/extension-installer": "^1.0",
  11063. "phpstan/phpstan": "^2.0",
  11064. "phpstan/phpstan-phpunit": "^2.0",
  11065. "phpstan/phpstan-strict-rules": "^2.0",
  11066. "phpunit/phpunit": "^9.6",
  11067. "symfony/process": "^5.2"
  11068. },
  11069. "type": "library",
  11070. "autoload": {
  11071. "psr-4": {
  11072. "PHPStan\\PhpDocParser\\": [
  11073. "src/"
  11074. ]
  11075. }
  11076. },
  11077. "notification-url": "https://packagist.org/downloads/",
  11078. "license": [
  11079. "MIT"
  11080. ],
  11081. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  11082. "support": {
  11083. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  11084. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.1.0"
  11085. },
  11086. "time": "2025-02-19T13:28:12+00:00"
  11087. },
  11088. {
  11089. "name": "phpunit/php-code-coverage",
  11090. "version": "11.0.9",
  11091. "source": {
  11092. "type": "git",
  11093. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11094. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7"
  11095. },
  11096. "dist": {
  11097. "type": "zip",
  11098. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  11099. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  11100. "shasum": ""
  11101. },
  11102. "require": {
  11103. "ext-dom": "*",
  11104. "ext-libxml": "*",
  11105. "ext-xmlwriter": "*",
  11106. "nikic/php-parser": "^5.4.0",
  11107. "php": ">=8.2",
  11108. "phpunit/php-file-iterator": "^5.1.0",
  11109. "phpunit/php-text-template": "^4.0.1",
  11110. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  11111. "sebastian/complexity": "^4.0.1",
  11112. "sebastian/environment": "^7.2.0",
  11113. "sebastian/lines-of-code": "^3.0.1",
  11114. "sebastian/version": "^5.0.2",
  11115. "theseer/tokenizer": "^1.2.3"
  11116. },
  11117. "require-dev": {
  11118. "phpunit/phpunit": "^11.5.2"
  11119. },
  11120. "suggest": {
  11121. "ext-pcov": "PHP extension that provides line coverage",
  11122. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  11123. },
  11124. "type": "library",
  11125. "extra": {
  11126. "branch-alias": {
  11127. "dev-main": "11.0.x-dev"
  11128. }
  11129. },
  11130. "autoload": {
  11131. "classmap": [
  11132. "src/"
  11133. ]
  11134. },
  11135. "notification-url": "https://packagist.org/downloads/",
  11136. "license": [
  11137. "BSD-3-Clause"
  11138. ],
  11139. "authors": [
  11140. {
  11141. "name": "Sebastian Bergmann",
  11142. "email": "sebastian@phpunit.de",
  11143. "role": "lead"
  11144. }
  11145. ],
  11146. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11147. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11148. "keywords": [
  11149. "coverage",
  11150. "testing",
  11151. "xunit"
  11152. ],
  11153. "support": {
  11154. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11155. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  11156. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.9"
  11157. },
  11158. "funding": [
  11159. {
  11160. "url": "https://github.com/sebastianbergmann",
  11161. "type": "github"
  11162. }
  11163. ],
  11164. "time": "2025-02-25T13:26:39+00:00"
  11165. },
  11166. {
  11167. "name": "phpunit/php-file-iterator",
  11168. "version": "5.1.0",
  11169. "source": {
  11170. "type": "git",
  11171. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11172. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  11173. },
  11174. "dist": {
  11175. "type": "zip",
  11176. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11177. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11178. "shasum": ""
  11179. },
  11180. "require": {
  11181. "php": ">=8.2"
  11182. },
  11183. "require-dev": {
  11184. "phpunit/phpunit": "^11.0"
  11185. },
  11186. "type": "library",
  11187. "extra": {
  11188. "branch-alias": {
  11189. "dev-main": "5.0-dev"
  11190. }
  11191. },
  11192. "autoload": {
  11193. "classmap": [
  11194. "src/"
  11195. ]
  11196. },
  11197. "notification-url": "https://packagist.org/downloads/",
  11198. "license": [
  11199. "BSD-3-Clause"
  11200. ],
  11201. "authors": [
  11202. {
  11203. "name": "Sebastian Bergmann",
  11204. "email": "sebastian@phpunit.de",
  11205. "role": "lead"
  11206. }
  11207. ],
  11208. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11209. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11210. "keywords": [
  11211. "filesystem",
  11212. "iterator"
  11213. ],
  11214. "support": {
  11215. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11216. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  11217. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  11218. },
  11219. "funding": [
  11220. {
  11221. "url": "https://github.com/sebastianbergmann",
  11222. "type": "github"
  11223. }
  11224. ],
  11225. "time": "2024-08-27T05:02:59+00:00"
  11226. },
  11227. {
  11228. "name": "phpunit/php-invoker",
  11229. "version": "5.0.1",
  11230. "source": {
  11231. "type": "git",
  11232. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11233. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  11234. },
  11235. "dist": {
  11236. "type": "zip",
  11237. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11238. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11239. "shasum": ""
  11240. },
  11241. "require": {
  11242. "php": ">=8.2"
  11243. },
  11244. "require-dev": {
  11245. "ext-pcntl": "*",
  11246. "phpunit/phpunit": "^11.0"
  11247. },
  11248. "suggest": {
  11249. "ext-pcntl": "*"
  11250. },
  11251. "type": "library",
  11252. "extra": {
  11253. "branch-alias": {
  11254. "dev-main": "5.0-dev"
  11255. }
  11256. },
  11257. "autoload": {
  11258. "classmap": [
  11259. "src/"
  11260. ]
  11261. },
  11262. "notification-url": "https://packagist.org/downloads/",
  11263. "license": [
  11264. "BSD-3-Clause"
  11265. ],
  11266. "authors": [
  11267. {
  11268. "name": "Sebastian Bergmann",
  11269. "email": "sebastian@phpunit.de",
  11270. "role": "lead"
  11271. }
  11272. ],
  11273. "description": "Invoke callables with a timeout",
  11274. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11275. "keywords": [
  11276. "process"
  11277. ],
  11278. "support": {
  11279. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11280. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  11281. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  11282. },
  11283. "funding": [
  11284. {
  11285. "url": "https://github.com/sebastianbergmann",
  11286. "type": "github"
  11287. }
  11288. ],
  11289. "time": "2024-07-03T05:07:44+00:00"
  11290. },
  11291. {
  11292. "name": "phpunit/php-text-template",
  11293. "version": "4.0.1",
  11294. "source": {
  11295. "type": "git",
  11296. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11297. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  11298. },
  11299. "dist": {
  11300. "type": "zip",
  11301. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11302. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11303. "shasum": ""
  11304. },
  11305. "require": {
  11306. "php": ">=8.2"
  11307. },
  11308. "require-dev": {
  11309. "phpunit/phpunit": "^11.0"
  11310. },
  11311. "type": "library",
  11312. "extra": {
  11313. "branch-alias": {
  11314. "dev-main": "4.0-dev"
  11315. }
  11316. },
  11317. "autoload": {
  11318. "classmap": [
  11319. "src/"
  11320. ]
  11321. },
  11322. "notification-url": "https://packagist.org/downloads/",
  11323. "license": [
  11324. "BSD-3-Clause"
  11325. ],
  11326. "authors": [
  11327. {
  11328. "name": "Sebastian Bergmann",
  11329. "email": "sebastian@phpunit.de",
  11330. "role": "lead"
  11331. }
  11332. ],
  11333. "description": "Simple template engine.",
  11334. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11335. "keywords": [
  11336. "template"
  11337. ],
  11338. "support": {
  11339. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11340. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  11341. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  11342. },
  11343. "funding": [
  11344. {
  11345. "url": "https://github.com/sebastianbergmann",
  11346. "type": "github"
  11347. }
  11348. ],
  11349. "time": "2024-07-03T05:08:43+00:00"
  11350. },
  11351. {
  11352. "name": "phpunit/php-timer",
  11353. "version": "7.0.1",
  11354. "source": {
  11355. "type": "git",
  11356. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11357. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  11358. },
  11359. "dist": {
  11360. "type": "zip",
  11361. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11362. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11363. "shasum": ""
  11364. },
  11365. "require": {
  11366. "php": ">=8.2"
  11367. },
  11368. "require-dev": {
  11369. "phpunit/phpunit": "^11.0"
  11370. },
  11371. "type": "library",
  11372. "extra": {
  11373. "branch-alias": {
  11374. "dev-main": "7.0-dev"
  11375. }
  11376. },
  11377. "autoload": {
  11378. "classmap": [
  11379. "src/"
  11380. ]
  11381. },
  11382. "notification-url": "https://packagist.org/downloads/",
  11383. "license": [
  11384. "BSD-3-Clause"
  11385. ],
  11386. "authors": [
  11387. {
  11388. "name": "Sebastian Bergmann",
  11389. "email": "sebastian@phpunit.de",
  11390. "role": "lead"
  11391. }
  11392. ],
  11393. "description": "Utility class for timing",
  11394. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11395. "keywords": [
  11396. "timer"
  11397. ],
  11398. "support": {
  11399. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11400. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  11401. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  11402. },
  11403. "funding": [
  11404. {
  11405. "url": "https://github.com/sebastianbergmann",
  11406. "type": "github"
  11407. }
  11408. ],
  11409. "time": "2024-07-03T05:09:35+00:00"
  11410. },
  11411. {
  11412. "name": "phpunit/phpunit",
  11413. "version": "11.5.15",
  11414. "source": {
  11415. "type": "git",
  11416. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11417. "reference": "4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c"
  11418. },
  11419. "dist": {
  11420. "type": "zip",
  11421. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c",
  11422. "reference": "4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c",
  11423. "shasum": ""
  11424. },
  11425. "require": {
  11426. "ext-dom": "*",
  11427. "ext-json": "*",
  11428. "ext-libxml": "*",
  11429. "ext-mbstring": "*",
  11430. "ext-xml": "*",
  11431. "ext-xmlwriter": "*",
  11432. "myclabs/deep-copy": "^1.13.0",
  11433. "phar-io/manifest": "^2.0.4",
  11434. "phar-io/version": "^3.2.1",
  11435. "php": ">=8.2",
  11436. "phpunit/php-code-coverage": "^11.0.9",
  11437. "phpunit/php-file-iterator": "^5.1.0",
  11438. "phpunit/php-invoker": "^5.0.1",
  11439. "phpunit/php-text-template": "^4.0.1",
  11440. "phpunit/php-timer": "^7.0.1",
  11441. "sebastian/cli-parser": "^3.0.2",
  11442. "sebastian/code-unit": "^3.0.3",
  11443. "sebastian/comparator": "^6.3.1",
  11444. "sebastian/diff": "^6.0.2",
  11445. "sebastian/environment": "^7.2.0",
  11446. "sebastian/exporter": "^6.3.0",
  11447. "sebastian/global-state": "^7.0.2",
  11448. "sebastian/object-enumerator": "^6.0.1",
  11449. "sebastian/type": "^5.1.2",
  11450. "sebastian/version": "^5.0.2",
  11451. "staabm/side-effects-detector": "^1.0.5"
  11452. },
  11453. "suggest": {
  11454. "ext-soap": "To be able to generate mocks based on WSDL files"
  11455. },
  11456. "bin": [
  11457. "phpunit"
  11458. ],
  11459. "type": "library",
  11460. "extra": {
  11461. "branch-alias": {
  11462. "dev-main": "11.5-dev"
  11463. }
  11464. },
  11465. "autoload": {
  11466. "files": [
  11467. "src/Framework/Assert/Functions.php"
  11468. ],
  11469. "classmap": [
  11470. "src/"
  11471. ]
  11472. },
  11473. "notification-url": "https://packagist.org/downloads/",
  11474. "license": [
  11475. "BSD-3-Clause"
  11476. ],
  11477. "authors": [
  11478. {
  11479. "name": "Sebastian Bergmann",
  11480. "email": "sebastian@phpunit.de",
  11481. "role": "lead"
  11482. }
  11483. ],
  11484. "description": "The PHP Unit Testing framework.",
  11485. "homepage": "https://phpunit.de/",
  11486. "keywords": [
  11487. "phpunit",
  11488. "testing",
  11489. "xunit"
  11490. ],
  11491. "support": {
  11492. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11493. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11494. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.15"
  11495. },
  11496. "funding": [
  11497. {
  11498. "url": "https://phpunit.de/sponsors.html",
  11499. "type": "custom"
  11500. },
  11501. {
  11502. "url": "https://github.com/sebastianbergmann",
  11503. "type": "github"
  11504. },
  11505. {
  11506. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11507. "type": "tidelift"
  11508. }
  11509. ],
  11510. "time": "2025-03-23T16:02:11+00:00"
  11511. },
  11512. {
  11513. "name": "sebastian/cli-parser",
  11514. "version": "3.0.2",
  11515. "source": {
  11516. "type": "git",
  11517. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11518. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  11519. },
  11520. "dist": {
  11521. "type": "zip",
  11522. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11523. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11524. "shasum": ""
  11525. },
  11526. "require": {
  11527. "php": ">=8.2"
  11528. },
  11529. "require-dev": {
  11530. "phpunit/phpunit": "^11.0"
  11531. },
  11532. "type": "library",
  11533. "extra": {
  11534. "branch-alias": {
  11535. "dev-main": "3.0-dev"
  11536. }
  11537. },
  11538. "autoload": {
  11539. "classmap": [
  11540. "src/"
  11541. ]
  11542. },
  11543. "notification-url": "https://packagist.org/downloads/",
  11544. "license": [
  11545. "BSD-3-Clause"
  11546. ],
  11547. "authors": [
  11548. {
  11549. "name": "Sebastian Bergmann",
  11550. "email": "sebastian@phpunit.de",
  11551. "role": "lead"
  11552. }
  11553. ],
  11554. "description": "Library for parsing CLI options",
  11555. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11556. "support": {
  11557. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11558. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11559. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  11560. },
  11561. "funding": [
  11562. {
  11563. "url": "https://github.com/sebastianbergmann",
  11564. "type": "github"
  11565. }
  11566. ],
  11567. "time": "2024-07-03T04:41:36+00:00"
  11568. },
  11569. {
  11570. "name": "sebastian/code-unit",
  11571. "version": "3.0.3",
  11572. "source": {
  11573. "type": "git",
  11574. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11575. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  11576. },
  11577. "dist": {
  11578. "type": "zip",
  11579. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  11580. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  11581. "shasum": ""
  11582. },
  11583. "require": {
  11584. "php": ">=8.2"
  11585. },
  11586. "require-dev": {
  11587. "phpunit/phpunit": "^11.5"
  11588. },
  11589. "type": "library",
  11590. "extra": {
  11591. "branch-alias": {
  11592. "dev-main": "3.0-dev"
  11593. }
  11594. },
  11595. "autoload": {
  11596. "classmap": [
  11597. "src/"
  11598. ]
  11599. },
  11600. "notification-url": "https://packagist.org/downloads/",
  11601. "license": [
  11602. "BSD-3-Clause"
  11603. ],
  11604. "authors": [
  11605. {
  11606. "name": "Sebastian Bergmann",
  11607. "email": "sebastian@phpunit.de",
  11608. "role": "lead"
  11609. }
  11610. ],
  11611. "description": "Collection of value objects that represent the PHP code units",
  11612. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11613. "support": {
  11614. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11615. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  11616. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  11617. },
  11618. "funding": [
  11619. {
  11620. "url": "https://github.com/sebastianbergmann",
  11621. "type": "github"
  11622. }
  11623. ],
  11624. "time": "2025-03-19T07:56:08+00:00"
  11625. },
  11626. {
  11627. "name": "sebastian/code-unit-reverse-lookup",
  11628. "version": "4.0.1",
  11629. "source": {
  11630. "type": "git",
  11631. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11632. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  11633. },
  11634. "dist": {
  11635. "type": "zip",
  11636. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  11637. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  11638. "shasum": ""
  11639. },
  11640. "require": {
  11641. "php": ">=8.2"
  11642. },
  11643. "require-dev": {
  11644. "phpunit/phpunit": "^11.0"
  11645. },
  11646. "type": "library",
  11647. "extra": {
  11648. "branch-alias": {
  11649. "dev-main": "4.0-dev"
  11650. }
  11651. },
  11652. "autoload": {
  11653. "classmap": [
  11654. "src/"
  11655. ]
  11656. },
  11657. "notification-url": "https://packagist.org/downloads/",
  11658. "license": [
  11659. "BSD-3-Clause"
  11660. ],
  11661. "authors": [
  11662. {
  11663. "name": "Sebastian Bergmann",
  11664. "email": "sebastian@phpunit.de"
  11665. }
  11666. ],
  11667. "description": "Looks up which function or method a line of code belongs to",
  11668. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11669. "support": {
  11670. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11671. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  11672. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  11673. },
  11674. "funding": [
  11675. {
  11676. "url": "https://github.com/sebastianbergmann",
  11677. "type": "github"
  11678. }
  11679. ],
  11680. "time": "2024-07-03T04:45:54+00:00"
  11681. },
  11682. {
  11683. "name": "sebastian/comparator",
  11684. "version": "6.3.1",
  11685. "source": {
  11686. "type": "git",
  11687. "url": "https://github.com/sebastianbergmann/comparator.git",
  11688. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
  11689. },
  11690. "dist": {
  11691. "type": "zip",
  11692. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  11693. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  11694. "shasum": ""
  11695. },
  11696. "require": {
  11697. "ext-dom": "*",
  11698. "ext-mbstring": "*",
  11699. "php": ">=8.2",
  11700. "sebastian/diff": "^6.0",
  11701. "sebastian/exporter": "^6.0"
  11702. },
  11703. "require-dev": {
  11704. "phpunit/phpunit": "^11.4"
  11705. },
  11706. "suggest": {
  11707. "ext-bcmath": "For comparing BcMath\\Number objects"
  11708. },
  11709. "type": "library",
  11710. "extra": {
  11711. "branch-alias": {
  11712. "dev-main": "6.3-dev"
  11713. }
  11714. },
  11715. "autoload": {
  11716. "classmap": [
  11717. "src/"
  11718. ]
  11719. },
  11720. "notification-url": "https://packagist.org/downloads/",
  11721. "license": [
  11722. "BSD-3-Clause"
  11723. ],
  11724. "authors": [
  11725. {
  11726. "name": "Sebastian Bergmann",
  11727. "email": "sebastian@phpunit.de"
  11728. },
  11729. {
  11730. "name": "Jeff Welch",
  11731. "email": "whatthejeff@gmail.com"
  11732. },
  11733. {
  11734. "name": "Volker Dusch",
  11735. "email": "github@wallbash.com"
  11736. },
  11737. {
  11738. "name": "Bernhard Schussek",
  11739. "email": "bschussek@2bepublished.at"
  11740. }
  11741. ],
  11742. "description": "Provides the functionality to compare PHP values for equality",
  11743. "homepage": "https://github.com/sebastianbergmann/comparator",
  11744. "keywords": [
  11745. "comparator",
  11746. "compare",
  11747. "equality"
  11748. ],
  11749. "support": {
  11750. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11751. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11752. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
  11753. },
  11754. "funding": [
  11755. {
  11756. "url": "https://github.com/sebastianbergmann",
  11757. "type": "github"
  11758. }
  11759. ],
  11760. "time": "2025-03-07T06:57:01+00:00"
  11761. },
  11762. {
  11763. "name": "sebastian/complexity",
  11764. "version": "4.0.1",
  11765. "source": {
  11766. "type": "git",
  11767. "url": "https://github.com/sebastianbergmann/complexity.git",
  11768. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  11769. },
  11770. "dist": {
  11771. "type": "zip",
  11772. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  11773. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  11774. "shasum": ""
  11775. },
  11776. "require": {
  11777. "nikic/php-parser": "^5.0",
  11778. "php": ">=8.2"
  11779. },
  11780. "require-dev": {
  11781. "phpunit/phpunit": "^11.0"
  11782. },
  11783. "type": "library",
  11784. "extra": {
  11785. "branch-alias": {
  11786. "dev-main": "4.0-dev"
  11787. }
  11788. },
  11789. "autoload": {
  11790. "classmap": [
  11791. "src/"
  11792. ]
  11793. },
  11794. "notification-url": "https://packagist.org/downloads/",
  11795. "license": [
  11796. "BSD-3-Clause"
  11797. ],
  11798. "authors": [
  11799. {
  11800. "name": "Sebastian Bergmann",
  11801. "email": "sebastian@phpunit.de",
  11802. "role": "lead"
  11803. }
  11804. ],
  11805. "description": "Library for calculating the complexity of PHP code units",
  11806. "homepage": "https://github.com/sebastianbergmann/complexity",
  11807. "support": {
  11808. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11809. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11810. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  11811. },
  11812. "funding": [
  11813. {
  11814. "url": "https://github.com/sebastianbergmann",
  11815. "type": "github"
  11816. }
  11817. ],
  11818. "time": "2024-07-03T04:49:50+00:00"
  11819. },
  11820. {
  11821. "name": "sebastian/diff",
  11822. "version": "6.0.2",
  11823. "source": {
  11824. "type": "git",
  11825. "url": "https://github.com/sebastianbergmann/diff.git",
  11826. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  11827. },
  11828. "dist": {
  11829. "type": "zip",
  11830. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  11831. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  11832. "shasum": ""
  11833. },
  11834. "require": {
  11835. "php": ">=8.2"
  11836. },
  11837. "require-dev": {
  11838. "phpunit/phpunit": "^11.0",
  11839. "symfony/process": "^4.2 || ^5"
  11840. },
  11841. "type": "library",
  11842. "extra": {
  11843. "branch-alias": {
  11844. "dev-main": "6.0-dev"
  11845. }
  11846. },
  11847. "autoload": {
  11848. "classmap": [
  11849. "src/"
  11850. ]
  11851. },
  11852. "notification-url": "https://packagist.org/downloads/",
  11853. "license": [
  11854. "BSD-3-Clause"
  11855. ],
  11856. "authors": [
  11857. {
  11858. "name": "Sebastian Bergmann",
  11859. "email": "sebastian@phpunit.de"
  11860. },
  11861. {
  11862. "name": "Kore Nordmann",
  11863. "email": "mail@kore-nordmann.de"
  11864. }
  11865. ],
  11866. "description": "Diff implementation",
  11867. "homepage": "https://github.com/sebastianbergmann/diff",
  11868. "keywords": [
  11869. "diff",
  11870. "udiff",
  11871. "unidiff",
  11872. "unified diff"
  11873. ],
  11874. "support": {
  11875. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11876. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11877. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  11878. },
  11879. "funding": [
  11880. {
  11881. "url": "https://github.com/sebastianbergmann",
  11882. "type": "github"
  11883. }
  11884. ],
  11885. "time": "2024-07-03T04:53:05+00:00"
  11886. },
  11887. {
  11888. "name": "sebastian/environment",
  11889. "version": "7.2.1",
  11890. "source": {
  11891. "type": "git",
  11892. "url": "https://github.com/sebastianbergmann/environment.git",
  11893. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4"
  11894. },
  11895. "dist": {
  11896. "type": "zip",
  11897. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/a5c75038693ad2e8d4b6c15ba2403532647830c4",
  11898. "reference": "a5c75038693ad2e8d4b6c15ba2403532647830c4",
  11899. "shasum": ""
  11900. },
  11901. "require": {
  11902. "php": ">=8.2"
  11903. },
  11904. "require-dev": {
  11905. "phpunit/phpunit": "^11.3"
  11906. },
  11907. "suggest": {
  11908. "ext-posix": "*"
  11909. },
  11910. "type": "library",
  11911. "extra": {
  11912. "branch-alias": {
  11913. "dev-main": "7.2-dev"
  11914. }
  11915. },
  11916. "autoload": {
  11917. "classmap": [
  11918. "src/"
  11919. ]
  11920. },
  11921. "notification-url": "https://packagist.org/downloads/",
  11922. "license": [
  11923. "BSD-3-Clause"
  11924. ],
  11925. "authors": [
  11926. {
  11927. "name": "Sebastian Bergmann",
  11928. "email": "sebastian@phpunit.de"
  11929. }
  11930. ],
  11931. "description": "Provides functionality to handle HHVM/PHP environments",
  11932. "homepage": "https://github.com/sebastianbergmann/environment",
  11933. "keywords": [
  11934. "Xdebug",
  11935. "environment",
  11936. "hhvm"
  11937. ],
  11938. "support": {
  11939. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11940. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11941. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.1"
  11942. },
  11943. "funding": [
  11944. {
  11945. "url": "https://github.com/sebastianbergmann",
  11946. "type": "github"
  11947. },
  11948. {
  11949. "url": "https://liberapay.com/sebastianbergmann",
  11950. "type": "liberapay"
  11951. },
  11952. {
  11953. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  11954. "type": "thanks_dev"
  11955. },
  11956. {
  11957. "url": "https://tidelift.com/funding/github/packagist/sebastian/environment",
  11958. "type": "tidelift"
  11959. }
  11960. ],
  11961. "time": "2025-05-21T11:55:47+00:00"
  11962. },
  11963. {
  11964. "name": "sebastian/exporter",
  11965. "version": "6.3.0",
  11966. "source": {
  11967. "type": "git",
  11968. "url": "https://github.com/sebastianbergmann/exporter.git",
  11969. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  11970. },
  11971. "dist": {
  11972. "type": "zip",
  11973. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11974. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11975. "shasum": ""
  11976. },
  11977. "require": {
  11978. "ext-mbstring": "*",
  11979. "php": ">=8.2",
  11980. "sebastian/recursion-context": "^6.0"
  11981. },
  11982. "require-dev": {
  11983. "phpunit/phpunit": "^11.3"
  11984. },
  11985. "type": "library",
  11986. "extra": {
  11987. "branch-alias": {
  11988. "dev-main": "6.1-dev"
  11989. }
  11990. },
  11991. "autoload": {
  11992. "classmap": [
  11993. "src/"
  11994. ]
  11995. },
  11996. "notification-url": "https://packagist.org/downloads/",
  11997. "license": [
  11998. "BSD-3-Clause"
  11999. ],
  12000. "authors": [
  12001. {
  12002. "name": "Sebastian Bergmann",
  12003. "email": "sebastian@phpunit.de"
  12004. },
  12005. {
  12006. "name": "Jeff Welch",
  12007. "email": "whatthejeff@gmail.com"
  12008. },
  12009. {
  12010. "name": "Volker Dusch",
  12011. "email": "github@wallbash.com"
  12012. },
  12013. {
  12014. "name": "Adam Harvey",
  12015. "email": "aharvey@php.net"
  12016. },
  12017. {
  12018. "name": "Bernhard Schussek",
  12019. "email": "bschussek@gmail.com"
  12020. }
  12021. ],
  12022. "description": "Provides the functionality to export PHP variables for visualization",
  12023. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12024. "keywords": [
  12025. "export",
  12026. "exporter"
  12027. ],
  12028. "support": {
  12029. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12030. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  12031. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  12032. },
  12033. "funding": [
  12034. {
  12035. "url": "https://github.com/sebastianbergmann",
  12036. "type": "github"
  12037. }
  12038. ],
  12039. "time": "2024-12-05T09:17:50+00:00"
  12040. },
  12041. {
  12042. "name": "sebastian/global-state",
  12043. "version": "7.0.2",
  12044. "source": {
  12045. "type": "git",
  12046. "url": "https://github.com/sebastianbergmann/global-state.git",
  12047. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  12048. },
  12049. "dist": {
  12050. "type": "zip",
  12051. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  12052. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  12053. "shasum": ""
  12054. },
  12055. "require": {
  12056. "php": ">=8.2",
  12057. "sebastian/object-reflector": "^4.0",
  12058. "sebastian/recursion-context": "^6.0"
  12059. },
  12060. "require-dev": {
  12061. "ext-dom": "*",
  12062. "phpunit/phpunit": "^11.0"
  12063. },
  12064. "type": "library",
  12065. "extra": {
  12066. "branch-alias": {
  12067. "dev-main": "7.0-dev"
  12068. }
  12069. },
  12070. "autoload": {
  12071. "classmap": [
  12072. "src/"
  12073. ]
  12074. },
  12075. "notification-url": "https://packagist.org/downloads/",
  12076. "license": [
  12077. "BSD-3-Clause"
  12078. ],
  12079. "authors": [
  12080. {
  12081. "name": "Sebastian Bergmann",
  12082. "email": "sebastian@phpunit.de"
  12083. }
  12084. ],
  12085. "description": "Snapshotting of global state",
  12086. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  12087. "keywords": [
  12088. "global state"
  12089. ],
  12090. "support": {
  12091. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12092. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  12093. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  12094. },
  12095. "funding": [
  12096. {
  12097. "url": "https://github.com/sebastianbergmann",
  12098. "type": "github"
  12099. }
  12100. ],
  12101. "time": "2024-07-03T04:57:36+00:00"
  12102. },
  12103. {
  12104. "name": "sebastian/lines-of-code",
  12105. "version": "3.0.1",
  12106. "source": {
  12107. "type": "git",
  12108. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12109. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  12110. },
  12111. "dist": {
  12112. "type": "zip",
  12113. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12114. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12115. "shasum": ""
  12116. },
  12117. "require": {
  12118. "nikic/php-parser": "^5.0",
  12119. "php": ">=8.2"
  12120. },
  12121. "require-dev": {
  12122. "phpunit/phpunit": "^11.0"
  12123. },
  12124. "type": "library",
  12125. "extra": {
  12126. "branch-alias": {
  12127. "dev-main": "3.0-dev"
  12128. }
  12129. },
  12130. "autoload": {
  12131. "classmap": [
  12132. "src/"
  12133. ]
  12134. },
  12135. "notification-url": "https://packagist.org/downloads/",
  12136. "license": [
  12137. "BSD-3-Clause"
  12138. ],
  12139. "authors": [
  12140. {
  12141. "name": "Sebastian Bergmann",
  12142. "email": "sebastian@phpunit.de",
  12143. "role": "lead"
  12144. }
  12145. ],
  12146. "description": "Library for counting the lines of code in PHP source code",
  12147. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12148. "support": {
  12149. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12150. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  12151. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  12152. },
  12153. "funding": [
  12154. {
  12155. "url": "https://github.com/sebastianbergmann",
  12156. "type": "github"
  12157. }
  12158. ],
  12159. "time": "2024-07-03T04:58:38+00:00"
  12160. },
  12161. {
  12162. "name": "sebastian/object-enumerator",
  12163. "version": "6.0.1",
  12164. "source": {
  12165. "type": "git",
  12166. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12167. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  12168. },
  12169. "dist": {
  12170. "type": "zip",
  12171. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  12172. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  12173. "shasum": ""
  12174. },
  12175. "require": {
  12176. "php": ">=8.2",
  12177. "sebastian/object-reflector": "^4.0",
  12178. "sebastian/recursion-context": "^6.0"
  12179. },
  12180. "require-dev": {
  12181. "phpunit/phpunit": "^11.0"
  12182. },
  12183. "type": "library",
  12184. "extra": {
  12185. "branch-alias": {
  12186. "dev-main": "6.0-dev"
  12187. }
  12188. },
  12189. "autoload": {
  12190. "classmap": [
  12191. "src/"
  12192. ]
  12193. },
  12194. "notification-url": "https://packagist.org/downloads/",
  12195. "license": [
  12196. "BSD-3-Clause"
  12197. ],
  12198. "authors": [
  12199. {
  12200. "name": "Sebastian Bergmann",
  12201. "email": "sebastian@phpunit.de"
  12202. }
  12203. ],
  12204. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12205. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12206. "support": {
  12207. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12208. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  12209. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  12210. },
  12211. "funding": [
  12212. {
  12213. "url": "https://github.com/sebastianbergmann",
  12214. "type": "github"
  12215. }
  12216. ],
  12217. "time": "2024-07-03T05:00:13+00:00"
  12218. },
  12219. {
  12220. "name": "sebastian/object-reflector",
  12221. "version": "4.0.1",
  12222. "source": {
  12223. "type": "git",
  12224. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12225. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  12226. },
  12227. "dist": {
  12228. "type": "zip",
  12229. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12230. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12231. "shasum": ""
  12232. },
  12233. "require": {
  12234. "php": ">=8.2"
  12235. },
  12236. "require-dev": {
  12237. "phpunit/phpunit": "^11.0"
  12238. },
  12239. "type": "library",
  12240. "extra": {
  12241. "branch-alias": {
  12242. "dev-main": "4.0-dev"
  12243. }
  12244. },
  12245. "autoload": {
  12246. "classmap": [
  12247. "src/"
  12248. ]
  12249. },
  12250. "notification-url": "https://packagist.org/downloads/",
  12251. "license": [
  12252. "BSD-3-Clause"
  12253. ],
  12254. "authors": [
  12255. {
  12256. "name": "Sebastian Bergmann",
  12257. "email": "sebastian@phpunit.de"
  12258. }
  12259. ],
  12260. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12261. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12262. "support": {
  12263. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12264. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  12265. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  12266. },
  12267. "funding": [
  12268. {
  12269. "url": "https://github.com/sebastianbergmann",
  12270. "type": "github"
  12271. }
  12272. ],
  12273. "time": "2024-07-03T05:01:32+00:00"
  12274. },
  12275. {
  12276. "name": "sebastian/recursion-context",
  12277. "version": "6.0.2",
  12278. "source": {
  12279. "type": "git",
  12280. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12281. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  12282. },
  12283. "dist": {
  12284. "type": "zip",
  12285. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  12286. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  12287. "shasum": ""
  12288. },
  12289. "require": {
  12290. "php": ">=8.2"
  12291. },
  12292. "require-dev": {
  12293. "phpunit/phpunit": "^11.0"
  12294. },
  12295. "type": "library",
  12296. "extra": {
  12297. "branch-alias": {
  12298. "dev-main": "6.0-dev"
  12299. }
  12300. },
  12301. "autoload": {
  12302. "classmap": [
  12303. "src/"
  12304. ]
  12305. },
  12306. "notification-url": "https://packagist.org/downloads/",
  12307. "license": [
  12308. "BSD-3-Clause"
  12309. ],
  12310. "authors": [
  12311. {
  12312. "name": "Sebastian Bergmann",
  12313. "email": "sebastian@phpunit.de"
  12314. },
  12315. {
  12316. "name": "Jeff Welch",
  12317. "email": "whatthejeff@gmail.com"
  12318. },
  12319. {
  12320. "name": "Adam Harvey",
  12321. "email": "aharvey@php.net"
  12322. }
  12323. ],
  12324. "description": "Provides functionality to recursively process PHP variables",
  12325. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12326. "support": {
  12327. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12328. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  12329. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  12330. },
  12331. "funding": [
  12332. {
  12333. "url": "https://github.com/sebastianbergmann",
  12334. "type": "github"
  12335. }
  12336. ],
  12337. "time": "2024-07-03T05:10:34+00:00"
  12338. },
  12339. {
  12340. "name": "sebastian/type",
  12341. "version": "5.1.2",
  12342. "source": {
  12343. "type": "git",
  12344. "url": "https://github.com/sebastianbergmann/type.git",
  12345. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e"
  12346. },
  12347. "dist": {
  12348. "type": "zip",
  12349. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  12350. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  12351. "shasum": ""
  12352. },
  12353. "require": {
  12354. "php": ">=8.2"
  12355. },
  12356. "require-dev": {
  12357. "phpunit/phpunit": "^11.3"
  12358. },
  12359. "type": "library",
  12360. "extra": {
  12361. "branch-alias": {
  12362. "dev-main": "5.1-dev"
  12363. }
  12364. },
  12365. "autoload": {
  12366. "classmap": [
  12367. "src/"
  12368. ]
  12369. },
  12370. "notification-url": "https://packagist.org/downloads/",
  12371. "license": [
  12372. "BSD-3-Clause"
  12373. ],
  12374. "authors": [
  12375. {
  12376. "name": "Sebastian Bergmann",
  12377. "email": "sebastian@phpunit.de",
  12378. "role": "lead"
  12379. }
  12380. ],
  12381. "description": "Collection of value objects that represent the types of the PHP type system",
  12382. "homepage": "https://github.com/sebastianbergmann/type",
  12383. "support": {
  12384. "issues": "https://github.com/sebastianbergmann/type/issues",
  12385. "security": "https://github.com/sebastianbergmann/type/security/policy",
  12386. "source": "https://github.com/sebastianbergmann/type/tree/5.1.2"
  12387. },
  12388. "funding": [
  12389. {
  12390. "url": "https://github.com/sebastianbergmann",
  12391. "type": "github"
  12392. }
  12393. ],
  12394. "time": "2025-03-18T13:35:50+00:00"
  12395. },
  12396. {
  12397. "name": "sebastian/version",
  12398. "version": "5.0.2",
  12399. "source": {
  12400. "type": "git",
  12401. "url": "https://github.com/sebastianbergmann/version.git",
  12402. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  12403. },
  12404. "dist": {
  12405. "type": "zip",
  12406. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12407. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12408. "shasum": ""
  12409. },
  12410. "require": {
  12411. "php": ">=8.2"
  12412. },
  12413. "type": "library",
  12414. "extra": {
  12415. "branch-alias": {
  12416. "dev-main": "5.0-dev"
  12417. }
  12418. },
  12419. "autoload": {
  12420. "classmap": [
  12421. "src/"
  12422. ]
  12423. },
  12424. "notification-url": "https://packagist.org/downloads/",
  12425. "license": [
  12426. "BSD-3-Clause"
  12427. ],
  12428. "authors": [
  12429. {
  12430. "name": "Sebastian Bergmann",
  12431. "email": "sebastian@phpunit.de",
  12432. "role": "lead"
  12433. }
  12434. ],
  12435. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12436. "homepage": "https://github.com/sebastianbergmann/version",
  12437. "support": {
  12438. "issues": "https://github.com/sebastianbergmann/version/issues",
  12439. "security": "https://github.com/sebastianbergmann/version/security/policy",
  12440. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  12441. },
  12442. "funding": [
  12443. {
  12444. "url": "https://github.com/sebastianbergmann",
  12445. "type": "github"
  12446. }
  12447. ],
  12448. "time": "2024-10-09T05:16:32+00:00"
  12449. },
  12450. {
  12451. "name": "spatie/backtrace",
  12452. "version": "1.7.4",
  12453. "source": {
  12454. "type": "git",
  12455. "url": "https://github.com/spatie/backtrace.git",
  12456. "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe"
  12457. },
  12458. "dist": {
  12459. "type": "zip",
  12460. "url": "https://api.github.com/repos/spatie/backtrace/zipball/cd37a49fce7137359ac30ecc44ef3e16404cccbe",
  12461. "reference": "cd37a49fce7137359ac30ecc44ef3e16404cccbe",
  12462. "shasum": ""
  12463. },
  12464. "require": {
  12465. "php": "^7.3 || ^8.0"
  12466. },
  12467. "require-dev": {
  12468. "ext-json": "*",
  12469. "laravel/serializable-closure": "^1.3 || ^2.0",
  12470. "phpunit/phpunit": "^9.3 || ^11.4.3",
  12471. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6",
  12472. "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0"
  12473. },
  12474. "type": "library",
  12475. "autoload": {
  12476. "psr-4": {
  12477. "Spatie\\Backtrace\\": "src"
  12478. }
  12479. },
  12480. "notification-url": "https://packagist.org/downloads/",
  12481. "license": [
  12482. "MIT"
  12483. ],
  12484. "authors": [
  12485. {
  12486. "name": "Freek Van de Herten",
  12487. "email": "freek@spatie.be",
  12488. "homepage": "https://spatie.be",
  12489. "role": "Developer"
  12490. }
  12491. ],
  12492. "description": "A better backtrace",
  12493. "homepage": "https://github.com/spatie/backtrace",
  12494. "keywords": [
  12495. "Backtrace",
  12496. "spatie"
  12497. ],
  12498. "support": {
  12499. "source": "https://github.com/spatie/backtrace/tree/1.7.4"
  12500. },
  12501. "funding": [
  12502. {
  12503. "url": "https://github.com/sponsors/spatie",
  12504. "type": "github"
  12505. },
  12506. {
  12507. "url": "https://spatie.be/open-source/support-us",
  12508. "type": "other"
  12509. }
  12510. ],
  12511. "time": "2025-05-08T15:41:09+00:00"
  12512. },
  12513. {
  12514. "name": "spatie/error-solutions",
  12515. "version": "1.1.3",
  12516. "source": {
  12517. "type": "git",
  12518. "url": "https://github.com/spatie/error-solutions.git",
  12519. "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936"
  12520. },
  12521. "dist": {
  12522. "type": "zip",
  12523. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
  12524. "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
  12525. "shasum": ""
  12526. },
  12527. "require": {
  12528. "php": "^8.0"
  12529. },
  12530. "require-dev": {
  12531. "illuminate/broadcasting": "^10.0|^11.0|^12.0",
  12532. "illuminate/cache": "^10.0|^11.0|^12.0",
  12533. "illuminate/support": "^10.0|^11.0|^12.0",
  12534. "livewire/livewire": "^2.11|^3.5.20",
  12535. "openai-php/client": "^0.10.1",
  12536. "orchestra/testbench": "8.22.3|^9.0|^10.0",
  12537. "pestphp/pest": "^2.20|^3.0",
  12538. "phpstan/phpstan": "^2.1",
  12539. "psr/simple-cache": "^3.0",
  12540. "psr/simple-cache-implementation": "^3.0",
  12541. "spatie/ray": "^1.28",
  12542. "symfony/cache": "^5.4|^6.0|^7.0",
  12543. "symfony/process": "^5.4|^6.0|^7.0",
  12544. "vlucas/phpdotenv": "^5.5"
  12545. },
  12546. "suggest": {
  12547. "openai-php/client": "Require get solutions from OpenAI",
  12548. "simple-cache-implementation": "To cache solutions from OpenAI"
  12549. },
  12550. "type": "library",
  12551. "autoload": {
  12552. "psr-4": {
  12553. "Spatie\\Ignition\\": "legacy/ignition",
  12554. "Spatie\\ErrorSolutions\\": "src",
  12555. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  12556. }
  12557. },
  12558. "notification-url": "https://packagist.org/downloads/",
  12559. "license": [
  12560. "MIT"
  12561. ],
  12562. "authors": [
  12563. {
  12564. "name": "Ruben Van Assche",
  12565. "email": "ruben@spatie.be",
  12566. "role": "Developer"
  12567. }
  12568. ],
  12569. "description": "This is my package error-solutions",
  12570. "homepage": "https://github.com/spatie/error-solutions",
  12571. "keywords": [
  12572. "error-solutions",
  12573. "spatie"
  12574. ],
  12575. "support": {
  12576. "issues": "https://github.com/spatie/error-solutions/issues",
  12577. "source": "https://github.com/spatie/error-solutions/tree/1.1.3"
  12578. },
  12579. "funding": [
  12580. {
  12581. "url": "https://github.com/Spatie",
  12582. "type": "github"
  12583. }
  12584. ],
  12585. "time": "2025-02-14T12:29:50+00:00"
  12586. },
  12587. {
  12588. "name": "spatie/flare-client-php",
  12589. "version": "1.10.1",
  12590. "source": {
  12591. "type": "git",
  12592. "url": "https://github.com/spatie/flare-client-php.git",
  12593. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f"
  12594. },
  12595. "dist": {
  12596. "type": "zip",
  12597. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/bf1716eb98bd689451b071548ae9e70738dce62f",
  12598. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f",
  12599. "shasum": ""
  12600. },
  12601. "require": {
  12602. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0|^12.0",
  12603. "php": "^8.0",
  12604. "spatie/backtrace": "^1.6.1",
  12605. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  12606. "symfony/mime": "^5.2|^6.0|^7.0",
  12607. "symfony/process": "^5.2|^6.0|^7.0",
  12608. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  12609. },
  12610. "require-dev": {
  12611. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  12612. "pestphp/pest": "^1.20|^2.0",
  12613. "phpstan/extension-installer": "^1.1",
  12614. "phpstan/phpstan-deprecation-rules": "^1.0",
  12615. "phpstan/phpstan-phpunit": "^1.0",
  12616. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  12617. },
  12618. "type": "library",
  12619. "extra": {
  12620. "branch-alias": {
  12621. "dev-main": "1.3.x-dev"
  12622. }
  12623. },
  12624. "autoload": {
  12625. "files": [
  12626. "src/helpers.php"
  12627. ],
  12628. "psr-4": {
  12629. "Spatie\\FlareClient\\": "src"
  12630. }
  12631. },
  12632. "notification-url": "https://packagist.org/downloads/",
  12633. "license": [
  12634. "MIT"
  12635. ],
  12636. "description": "Send PHP errors to Flare",
  12637. "homepage": "https://github.com/spatie/flare-client-php",
  12638. "keywords": [
  12639. "exception",
  12640. "flare",
  12641. "reporting",
  12642. "spatie"
  12643. ],
  12644. "support": {
  12645. "issues": "https://github.com/spatie/flare-client-php/issues",
  12646. "source": "https://github.com/spatie/flare-client-php/tree/1.10.1"
  12647. },
  12648. "funding": [
  12649. {
  12650. "url": "https://github.com/spatie",
  12651. "type": "github"
  12652. }
  12653. ],
  12654. "time": "2025-02-14T13:42:06+00:00"
  12655. },
  12656. {
  12657. "name": "spatie/ignition",
  12658. "version": "1.15.1",
  12659. "source": {
  12660. "type": "git",
  12661. "url": "https://github.com/spatie/ignition.git",
  12662. "reference": "31f314153020aee5af3537e507fef892ffbf8c85"
  12663. },
  12664. "dist": {
  12665. "type": "zip",
  12666. "url": "https://api.github.com/repos/spatie/ignition/zipball/31f314153020aee5af3537e507fef892ffbf8c85",
  12667. "reference": "31f314153020aee5af3537e507fef892ffbf8c85",
  12668. "shasum": ""
  12669. },
  12670. "require": {
  12671. "ext-json": "*",
  12672. "ext-mbstring": "*",
  12673. "php": "^8.0",
  12674. "spatie/error-solutions": "^1.0",
  12675. "spatie/flare-client-php": "^1.7",
  12676. "symfony/console": "^5.4|^6.0|^7.0",
  12677. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  12678. },
  12679. "require-dev": {
  12680. "illuminate/cache": "^9.52|^10.0|^11.0|^12.0",
  12681. "mockery/mockery": "^1.4",
  12682. "pestphp/pest": "^1.20|^2.0",
  12683. "phpstan/extension-installer": "^1.1",
  12684. "phpstan/phpstan-deprecation-rules": "^1.0",
  12685. "phpstan/phpstan-phpunit": "^1.0",
  12686. "psr/simple-cache-implementation": "*",
  12687. "symfony/cache": "^5.4|^6.0|^7.0",
  12688. "symfony/process": "^5.4|^6.0|^7.0",
  12689. "vlucas/phpdotenv": "^5.5"
  12690. },
  12691. "suggest": {
  12692. "openai-php/client": "Require get solutions from OpenAI",
  12693. "simple-cache-implementation": "To cache solutions from OpenAI"
  12694. },
  12695. "type": "library",
  12696. "extra": {
  12697. "branch-alias": {
  12698. "dev-main": "1.5.x-dev"
  12699. }
  12700. },
  12701. "autoload": {
  12702. "psr-4": {
  12703. "Spatie\\Ignition\\": "src"
  12704. }
  12705. },
  12706. "notification-url": "https://packagist.org/downloads/",
  12707. "license": [
  12708. "MIT"
  12709. ],
  12710. "authors": [
  12711. {
  12712. "name": "Spatie",
  12713. "email": "info@spatie.be",
  12714. "role": "Developer"
  12715. }
  12716. ],
  12717. "description": "A beautiful error page for PHP applications.",
  12718. "homepage": "https://flareapp.io/ignition",
  12719. "keywords": [
  12720. "error",
  12721. "flare",
  12722. "laravel",
  12723. "page"
  12724. ],
  12725. "support": {
  12726. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12727. "forum": "https://twitter.com/flareappio",
  12728. "issues": "https://github.com/spatie/ignition/issues",
  12729. "source": "https://github.com/spatie/ignition"
  12730. },
  12731. "funding": [
  12732. {
  12733. "url": "https://github.com/spatie",
  12734. "type": "github"
  12735. }
  12736. ],
  12737. "time": "2025-02-21T14:31:39+00:00"
  12738. },
  12739. {
  12740. "name": "spatie/laravel-ignition",
  12741. "version": "2.9.1",
  12742. "source": {
  12743. "type": "git",
  12744. "url": "https://github.com/spatie/laravel-ignition.git",
  12745. "reference": "1baee07216d6748ebd3a65ba97381b051838707a"
  12746. },
  12747. "dist": {
  12748. "type": "zip",
  12749. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1baee07216d6748ebd3a65ba97381b051838707a",
  12750. "reference": "1baee07216d6748ebd3a65ba97381b051838707a",
  12751. "shasum": ""
  12752. },
  12753. "require": {
  12754. "ext-curl": "*",
  12755. "ext-json": "*",
  12756. "ext-mbstring": "*",
  12757. "illuminate/support": "^10.0|^11.0|^12.0",
  12758. "php": "^8.1",
  12759. "spatie/ignition": "^1.15",
  12760. "symfony/console": "^6.2.3|^7.0",
  12761. "symfony/var-dumper": "^6.2.3|^7.0"
  12762. },
  12763. "require-dev": {
  12764. "livewire/livewire": "^2.11|^3.3.5",
  12765. "mockery/mockery": "^1.5.1",
  12766. "openai-php/client": "^0.8.1|^0.10",
  12767. "orchestra/testbench": "8.22.3|^9.0|^10.0",
  12768. "pestphp/pest": "^2.34|^3.7",
  12769. "phpstan/extension-installer": "^1.3.1",
  12770. "phpstan/phpstan-deprecation-rules": "^1.1.1|^2.0",
  12771. "phpstan/phpstan-phpunit": "^1.3.16|^2.0",
  12772. "vlucas/phpdotenv": "^5.5"
  12773. },
  12774. "suggest": {
  12775. "openai-php/client": "Require get solutions from OpenAI",
  12776. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  12777. },
  12778. "type": "library",
  12779. "extra": {
  12780. "laravel": {
  12781. "aliases": {
  12782. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  12783. },
  12784. "providers": [
  12785. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  12786. ]
  12787. }
  12788. },
  12789. "autoload": {
  12790. "files": [
  12791. "src/helpers.php"
  12792. ],
  12793. "psr-4": {
  12794. "Spatie\\LaravelIgnition\\": "src"
  12795. }
  12796. },
  12797. "notification-url": "https://packagist.org/downloads/",
  12798. "license": [
  12799. "MIT"
  12800. ],
  12801. "authors": [
  12802. {
  12803. "name": "Spatie",
  12804. "email": "info@spatie.be",
  12805. "role": "Developer"
  12806. }
  12807. ],
  12808. "description": "A beautiful error page for Laravel applications.",
  12809. "homepage": "https://flareapp.io/ignition",
  12810. "keywords": [
  12811. "error",
  12812. "flare",
  12813. "laravel",
  12814. "page"
  12815. ],
  12816. "support": {
  12817. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12818. "forum": "https://twitter.com/flareappio",
  12819. "issues": "https://github.com/spatie/laravel-ignition/issues",
  12820. "source": "https://github.com/spatie/laravel-ignition"
  12821. },
  12822. "funding": [
  12823. {
  12824. "url": "https://github.com/spatie",
  12825. "type": "github"
  12826. }
  12827. ],
  12828. "time": "2025-02-20T13:13:55+00:00"
  12829. },
  12830. {
  12831. "name": "spatie/laravel-ray",
  12832. "version": "1.40.2",
  12833. "source": {
  12834. "type": "git",
  12835. "url": "https://github.com/spatie/laravel-ray.git",
  12836. "reference": "1d1b31eb83cb38b41975c37363c7461de6d86b25"
  12837. },
  12838. "dist": {
  12839. "type": "zip",
  12840. "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/1d1b31eb83cb38b41975c37363c7461de6d86b25",
  12841. "reference": "1d1b31eb83cb38b41975c37363c7461de6d86b25",
  12842. "shasum": ""
  12843. },
  12844. "require": {
  12845. "composer-runtime-api": "^2.2",
  12846. "ext-json": "*",
  12847. "illuminate/contracts": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12848. "illuminate/database": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12849. "illuminate/queue": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12850. "illuminate/support": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12851. "php": "^7.4 || ^8.0",
  12852. "spatie/backtrace": "^1.7.1",
  12853. "spatie/ray": "^1.41.3",
  12854. "symfony/stopwatch": "4.2 || ^5.1 || ^6.0 || ^7.0",
  12855. "zbateson/mail-mime-parser": "^1.3.1 || ^2.0 || ^3.0"
  12856. },
  12857. "require-dev": {
  12858. "guzzlehttp/guzzle": "^7.3",
  12859. "laravel/framework": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12860. "orchestra/testbench-core": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  12861. "pestphp/pest": "^1.22 || ^2.0 || ^3.0",
  12862. "phpstan/phpstan": "^1.10.57 || ^2.0.2",
  12863. "phpunit/phpunit": "^9.3 || ^10.1 || ^11.0.10",
  12864. "rector/rector": "^0.19.2 || ^1.0.1 || ^2.0.0",
  12865. "spatie/pest-plugin-snapshots": "^1.1 || ^2.0",
  12866. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12867. },
  12868. "type": "library",
  12869. "extra": {
  12870. "laravel": {
  12871. "providers": [
  12872. "Spatie\\LaravelRay\\RayServiceProvider"
  12873. ]
  12874. },
  12875. "branch-alias": {
  12876. "dev-main": "1.x-dev"
  12877. }
  12878. },
  12879. "autoload": {
  12880. "psr-4": {
  12881. "Spatie\\LaravelRay\\": "src"
  12882. }
  12883. },
  12884. "notification-url": "https://packagist.org/downloads/",
  12885. "license": [
  12886. "MIT"
  12887. ],
  12888. "authors": [
  12889. {
  12890. "name": "Freek Van der Herten",
  12891. "email": "freek@spatie.be",
  12892. "homepage": "https://spatie.be",
  12893. "role": "Developer"
  12894. }
  12895. ],
  12896. "description": "Easily debug Laravel apps",
  12897. "homepage": "https://github.com/spatie/laravel-ray",
  12898. "keywords": [
  12899. "laravel-ray",
  12900. "spatie"
  12901. ],
  12902. "support": {
  12903. "issues": "https://github.com/spatie/laravel-ray/issues",
  12904. "source": "https://github.com/spatie/laravel-ray/tree/1.40.2"
  12905. },
  12906. "funding": [
  12907. {
  12908. "url": "https://github.com/sponsors/spatie",
  12909. "type": "github"
  12910. },
  12911. {
  12912. "url": "https://spatie.be/open-source/support-us",
  12913. "type": "other"
  12914. }
  12915. ],
  12916. "time": "2025-03-27T08:26:55+00:00"
  12917. },
  12918. {
  12919. "name": "spatie/macroable",
  12920. "version": "2.0.0",
  12921. "source": {
  12922. "type": "git",
  12923. "url": "https://github.com/spatie/macroable.git",
  12924. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072"
  12925. },
  12926. "dist": {
  12927. "type": "zip",
  12928. "url": "https://api.github.com/repos/spatie/macroable/zipball/ec2c320f932e730607aff8052c44183cf3ecb072",
  12929. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072",
  12930. "shasum": ""
  12931. },
  12932. "require": {
  12933. "php": "^8.0"
  12934. },
  12935. "require-dev": {
  12936. "phpunit/phpunit": "^8.0|^9.3"
  12937. },
  12938. "type": "library",
  12939. "autoload": {
  12940. "psr-4": {
  12941. "Spatie\\Macroable\\": "src"
  12942. }
  12943. },
  12944. "notification-url": "https://packagist.org/downloads/",
  12945. "license": [
  12946. "MIT"
  12947. ],
  12948. "authors": [
  12949. {
  12950. "name": "Freek Van der Herten",
  12951. "email": "freek@spatie.be",
  12952. "homepage": "https://spatie.be",
  12953. "role": "Developer"
  12954. }
  12955. ],
  12956. "description": "A trait to dynamically add methods to a class",
  12957. "homepage": "https://github.com/spatie/macroable",
  12958. "keywords": [
  12959. "macroable",
  12960. "spatie"
  12961. ],
  12962. "support": {
  12963. "issues": "https://github.com/spatie/macroable/issues",
  12964. "source": "https://github.com/spatie/macroable/tree/2.0.0"
  12965. },
  12966. "time": "2021-03-26T22:39:02+00:00"
  12967. },
  12968. {
  12969. "name": "spatie/ray",
  12970. "version": "1.42.0",
  12971. "source": {
  12972. "type": "git",
  12973. "url": "https://github.com/spatie/ray.git",
  12974. "reference": "152250ce7c490bf830349fa30ba5200084e95860"
  12975. },
  12976. "dist": {
  12977. "type": "zip",
  12978. "url": "https://api.github.com/repos/spatie/ray/zipball/152250ce7c490bf830349fa30ba5200084e95860",
  12979. "reference": "152250ce7c490bf830349fa30ba5200084e95860",
  12980. "shasum": ""
  12981. },
  12982. "require": {
  12983. "ext-curl": "*",
  12984. "ext-json": "*",
  12985. "php": "^7.4 || ^8.0",
  12986. "ramsey/uuid": "^3.0 || ^4.1",
  12987. "spatie/backtrace": "^1.7.1",
  12988. "spatie/macroable": "^1.0 || ^2.0",
  12989. "symfony/stopwatch": "^4.2 || ^5.1 || ^6.0 || ^7.0",
  12990. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12991. },
  12992. "require-dev": {
  12993. "illuminate/support": "^7.20 || ^8.18 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12994. "nesbot/carbon": "^2.63 || ^3.8.4",
  12995. "pestphp/pest": "^1.22",
  12996. "phpstan/phpstan": "^1.10.57 || ^2.0.3",
  12997. "phpunit/phpunit": "^9.5",
  12998. "rector/rector": "^0.19.2 || ^1.0.1 || ^2.0.0",
  12999. "spatie/phpunit-snapshot-assertions": "^4.2",
  13000. "spatie/test-time": "^1.2"
  13001. },
  13002. "bin": [
  13003. "bin/remove-ray.sh"
  13004. ],
  13005. "type": "library",
  13006. "extra": {
  13007. "branch-alias": {
  13008. "dev-main": "1.x-dev"
  13009. }
  13010. },
  13011. "autoload": {
  13012. "files": [
  13013. "src/helpers.php"
  13014. ],
  13015. "psr-4": {
  13016. "Spatie\\Ray\\": "src"
  13017. }
  13018. },
  13019. "notification-url": "https://packagist.org/downloads/",
  13020. "license": [
  13021. "MIT"
  13022. ],
  13023. "authors": [
  13024. {
  13025. "name": "Freek Van der Herten",
  13026. "email": "freek@spatie.be",
  13027. "homepage": "https://spatie.be",
  13028. "role": "Developer"
  13029. }
  13030. ],
  13031. "description": "Debug with Ray to fix problems faster",
  13032. "homepage": "https://github.com/spatie/ray",
  13033. "keywords": [
  13034. "ray",
  13035. "spatie"
  13036. ],
  13037. "support": {
  13038. "issues": "https://github.com/spatie/ray/issues",
  13039. "source": "https://github.com/spatie/ray/tree/1.42.0"
  13040. },
  13041. "funding": [
  13042. {
  13043. "url": "https://github.com/sponsors/spatie",
  13044. "type": "github"
  13045. },
  13046. {
  13047. "url": "https://spatie.be/open-source/support-us",
  13048. "type": "other"
  13049. }
  13050. ],
  13051. "time": "2025-04-18T08:17:40+00:00"
  13052. },
  13053. {
  13054. "name": "staabm/side-effects-detector",
  13055. "version": "1.0.5",
  13056. "source": {
  13057. "type": "git",
  13058. "url": "https://github.com/staabm/side-effects-detector.git",
  13059. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  13060. },
  13061. "dist": {
  13062. "type": "zip",
  13063. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  13064. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  13065. "shasum": ""
  13066. },
  13067. "require": {
  13068. "ext-tokenizer": "*",
  13069. "php": "^7.4 || ^8.0"
  13070. },
  13071. "require-dev": {
  13072. "phpstan/extension-installer": "^1.4.3",
  13073. "phpstan/phpstan": "^1.12.6",
  13074. "phpunit/phpunit": "^9.6.21",
  13075. "symfony/var-dumper": "^5.4.43",
  13076. "tomasvotruba/type-coverage": "1.0.0",
  13077. "tomasvotruba/unused-public": "1.0.0"
  13078. },
  13079. "type": "library",
  13080. "autoload": {
  13081. "classmap": [
  13082. "lib/"
  13083. ]
  13084. },
  13085. "notification-url": "https://packagist.org/downloads/",
  13086. "license": [
  13087. "MIT"
  13088. ],
  13089. "description": "A static analysis tool to detect side effects in PHP code",
  13090. "keywords": [
  13091. "static analysis"
  13092. ],
  13093. "support": {
  13094. "issues": "https://github.com/staabm/side-effects-detector/issues",
  13095. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  13096. },
  13097. "funding": [
  13098. {
  13099. "url": "https://github.com/staabm",
  13100. "type": "github"
  13101. }
  13102. ],
  13103. "time": "2024-10-20T05:08:20+00:00"
  13104. },
  13105. {
  13106. "name": "symfony/polyfill-iconv",
  13107. "version": "v1.32.0",
  13108. "source": {
  13109. "type": "git",
  13110. "url": "https://github.com/symfony/polyfill-iconv.git",
  13111. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  13112. },
  13113. "dist": {
  13114. "type": "zip",
  13115. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  13116. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  13117. "shasum": ""
  13118. },
  13119. "require": {
  13120. "php": ">=7.2"
  13121. },
  13122. "provide": {
  13123. "ext-iconv": "*"
  13124. },
  13125. "suggest": {
  13126. "ext-iconv": "For best performance"
  13127. },
  13128. "type": "library",
  13129. "extra": {
  13130. "thanks": {
  13131. "url": "https://github.com/symfony/polyfill",
  13132. "name": "symfony/polyfill"
  13133. }
  13134. },
  13135. "autoload": {
  13136. "files": [
  13137. "bootstrap.php"
  13138. ],
  13139. "psr-4": {
  13140. "Symfony\\Polyfill\\Iconv\\": ""
  13141. }
  13142. },
  13143. "notification-url": "https://packagist.org/downloads/",
  13144. "license": [
  13145. "MIT"
  13146. ],
  13147. "authors": [
  13148. {
  13149. "name": "Nicolas Grekas",
  13150. "email": "p@tchwork.com"
  13151. },
  13152. {
  13153. "name": "Symfony Community",
  13154. "homepage": "https://symfony.com/contributors"
  13155. }
  13156. ],
  13157. "description": "Symfony polyfill for the Iconv extension",
  13158. "homepage": "https://symfony.com",
  13159. "keywords": [
  13160. "compatibility",
  13161. "iconv",
  13162. "polyfill",
  13163. "portable",
  13164. "shim"
  13165. ],
  13166. "support": {
  13167. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.32.0"
  13168. },
  13169. "funding": [
  13170. {
  13171. "url": "https://symfony.com/sponsor",
  13172. "type": "custom"
  13173. },
  13174. {
  13175. "url": "https://github.com/fabpot",
  13176. "type": "github"
  13177. },
  13178. {
  13179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13180. "type": "tidelift"
  13181. }
  13182. ],
  13183. "time": "2024-09-17T14:58:18+00:00"
  13184. },
  13185. {
  13186. "name": "symfony/stopwatch",
  13187. "version": "v7.3.0",
  13188. "source": {
  13189. "type": "git",
  13190. "url": "https://github.com/symfony/stopwatch.git",
  13191. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
  13192. },
  13193. "dist": {
  13194. "type": "zip",
  13195. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  13196. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  13197. "shasum": ""
  13198. },
  13199. "require": {
  13200. "php": ">=8.2",
  13201. "symfony/service-contracts": "^2.5|^3"
  13202. },
  13203. "type": "library",
  13204. "autoload": {
  13205. "psr-4": {
  13206. "Symfony\\Component\\Stopwatch\\": ""
  13207. },
  13208. "exclude-from-classmap": [
  13209. "/Tests/"
  13210. ]
  13211. },
  13212. "notification-url": "https://packagist.org/downloads/",
  13213. "license": [
  13214. "MIT"
  13215. ],
  13216. "authors": [
  13217. {
  13218. "name": "Fabien Potencier",
  13219. "email": "fabien@symfony.com"
  13220. },
  13221. {
  13222. "name": "Symfony Community",
  13223. "homepage": "https://symfony.com/contributors"
  13224. }
  13225. ],
  13226. "description": "Provides a way to profile code",
  13227. "homepage": "https://symfony.com",
  13228. "support": {
  13229. "source": "https://github.com/symfony/stopwatch/tree/v7.3.0"
  13230. },
  13231. "funding": [
  13232. {
  13233. "url": "https://symfony.com/sponsor",
  13234. "type": "custom"
  13235. },
  13236. {
  13237. "url": "https://github.com/fabpot",
  13238. "type": "github"
  13239. },
  13240. {
  13241. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13242. "type": "tidelift"
  13243. }
  13244. ],
  13245. "time": "2025-02-24T10:49:57+00:00"
  13246. },
  13247. {
  13248. "name": "symfony/yaml",
  13249. "version": "v7.3.0",
  13250. "source": {
  13251. "type": "git",
  13252. "url": "https://github.com/symfony/yaml.git",
  13253. "reference": "cea40a48279d58dc3efee8112634cb90141156c2"
  13254. },
  13255. "dist": {
  13256. "type": "zip",
  13257. "url": "https://api.github.com/repos/symfony/yaml/zipball/cea40a48279d58dc3efee8112634cb90141156c2",
  13258. "reference": "cea40a48279d58dc3efee8112634cb90141156c2",
  13259. "shasum": ""
  13260. },
  13261. "require": {
  13262. "php": ">=8.2",
  13263. "symfony/deprecation-contracts": "^2.5|^3.0",
  13264. "symfony/polyfill-ctype": "^1.8"
  13265. },
  13266. "conflict": {
  13267. "symfony/console": "<6.4"
  13268. },
  13269. "require-dev": {
  13270. "symfony/console": "^6.4|^7.0"
  13271. },
  13272. "bin": [
  13273. "Resources/bin/yaml-lint"
  13274. ],
  13275. "type": "library",
  13276. "autoload": {
  13277. "psr-4": {
  13278. "Symfony\\Component\\Yaml\\": ""
  13279. },
  13280. "exclude-from-classmap": [
  13281. "/Tests/"
  13282. ]
  13283. },
  13284. "notification-url": "https://packagist.org/downloads/",
  13285. "license": [
  13286. "MIT"
  13287. ],
  13288. "authors": [
  13289. {
  13290. "name": "Fabien Potencier",
  13291. "email": "fabien@symfony.com"
  13292. },
  13293. {
  13294. "name": "Symfony Community",
  13295. "homepage": "https://symfony.com/contributors"
  13296. }
  13297. ],
  13298. "description": "Loads and dumps YAML files",
  13299. "homepage": "https://symfony.com",
  13300. "support": {
  13301. "source": "https://github.com/symfony/yaml/tree/v7.3.0"
  13302. },
  13303. "funding": [
  13304. {
  13305. "url": "https://symfony.com/sponsor",
  13306. "type": "custom"
  13307. },
  13308. {
  13309. "url": "https://github.com/fabpot",
  13310. "type": "github"
  13311. },
  13312. {
  13313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13314. "type": "tidelift"
  13315. }
  13316. ],
  13317. "time": "2025-04-04T10:10:33+00:00"
  13318. },
  13319. {
  13320. "name": "ta-tikoma/phpunit-architecture-test",
  13321. "version": "0.8.5",
  13322. "source": {
  13323. "type": "git",
  13324. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  13325. "reference": "cf6fb197b676ba716837c886baca842e4db29005"
  13326. },
  13327. "dist": {
  13328. "type": "zip",
  13329. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/cf6fb197b676ba716837c886baca842e4db29005",
  13330. "reference": "cf6fb197b676ba716837c886baca842e4db29005",
  13331. "shasum": ""
  13332. },
  13333. "require": {
  13334. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  13335. "php": "^8.1.0",
  13336. "phpdocumentor/reflection-docblock": "^5.3.0",
  13337. "phpunit/phpunit": "^10.5.5 || ^11.0.0 || ^12.0.0",
  13338. "symfony/finder": "^6.4.0 || ^7.0.0"
  13339. },
  13340. "require-dev": {
  13341. "laravel/pint": "^1.13.7",
  13342. "phpstan/phpstan": "^1.10.52"
  13343. },
  13344. "type": "library",
  13345. "autoload": {
  13346. "psr-4": {
  13347. "PHPUnit\\Architecture\\": "src/"
  13348. }
  13349. },
  13350. "notification-url": "https://packagist.org/downloads/",
  13351. "license": [
  13352. "MIT"
  13353. ],
  13354. "authors": [
  13355. {
  13356. "name": "Ni Shi",
  13357. "email": "futik0ma011@gmail.com"
  13358. },
  13359. {
  13360. "name": "Nuno Maduro",
  13361. "email": "enunomaduro@gmail.com"
  13362. }
  13363. ],
  13364. "description": "Methods for testing application architecture",
  13365. "keywords": [
  13366. "architecture",
  13367. "phpunit",
  13368. "stucture",
  13369. "test",
  13370. "testing"
  13371. ],
  13372. "support": {
  13373. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  13374. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.5"
  13375. },
  13376. "time": "2025-04-20T20:23:40+00:00"
  13377. },
  13378. {
  13379. "name": "theseer/tokenizer",
  13380. "version": "1.2.3",
  13381. "source": {
  13382. "type": "git",
  13383. "url": "https://github.com/theseer/tokenizer.git",
  13384. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13385. },
  13386. "dist": {
  13387. "type": "zip",
  13388. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13389. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13390. "shasum": ""
  13391. },
  13392. "require": {
  13393. "ext-dom": "*",
  13394. "ext-tokenizer": "*",
  13395. "ext-xmlwriter": "*",
  13396. "php": "^7.2 || ^8.0"
  13397. },
  13398. "type": "library",
  13399. "autoload": {
  13400. "classmap": [
  13401. "src/"
  13402. ]
  13403. },
  13404. "notification-url": "https://packagist.org/downloads/",
  13405. "license": [
  13406. "BSD-3-Clause"
  13407. ],
  13408. "authors": [
  13409. {
  13410. "name": "Arne Blankerts",
  13411. "email": "arne@blankerts.de",
  13412. "role": "Developer"
  13413. }
  13414. ],
  13415. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13416. "support": {
  13417. "issues": "https://github.com/theseer/tokenizer/issues",
  13418. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13419. },
  13420. "funding": [
  13421. {
  13422. "url": "https://github.com/theseer",
  13423. "type": "github"
  13424. }
  13425. ],
  13426. "time": "2024-03-03T12:36:25+00:00"
  13427. },
  13428. {
  13429. "name": "zbateson/mail-mime-parser",
  13430. "version": "3.0.3",
  13431. "source": {
  13432. "type": "git",
  13433. "url": "https://github.com/zbateson/mail-mime-parser.git",
  13434. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19"
  13435. },
  13436. "dist": {
  13437. "type": "zip",
  13438. "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/e0d4423fe27850c9dd301190767dbc421acc2f19",
  13439. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19",
  13440. "shasum": ""
  13441. },
  13442. "require": {
  13443. "guzzlehttp/psr7": "^2.5",
  13444. "php": ">=8.0",
  13445. "php-di/php-di": "^6.0|^7.0",
  13446. "psr/log": "^1|^2|^3",
  13447. "zbateson/mb-wrapper": "^2.0",
  13448. "zbateson/stream-decorators": "^2.1"
  13449. },
  13450. "require-dev": {
  13451. "friendsofphp/php-cs-fixer": "*",
  13452. "monolog/monolog": "^2|^3",
  13453. "phpstan/phpstan": "*",
  13454. "phpunit/phpunit": "^9.6"
  13455. },
  13456. "suggest": {
  13457. "ext-iconv": "For best support/performance",
  13458. "ext-mbstring": "For best support/performance"
  13459. },
  13460. "type": "library",
  13461. "autoload": {
  13462. "psr-4": {
  13463. "ZBateson\\MailMimeParser\\": "src/"
  13464. }
  13465. },
  13466. "notification-url": "https://packagist.org/downloads/",
  13467. "license": [
  13468. "BSD-2-Clause"
  13469. ],
  13470. "authors": [
  13471. {
  13472. "name": "Zaahid Bateson"
  13473. },
  13474. {
  13475. "name": "Contributors",
  13476. "homepage": "https://github.com/zbateson/mail-mime-parser/graphs/contributors"
  13477. }
  13478. ],
  13479. "description": "MIME email message parser",
  13480. "homepage": "https://mail-mime-parser.org",
  13481. "keywords": [
  13482. "MimeMailParser",
  13483. "email",
  13484. "mail",
  13485. "mailparse",
  13486. "mime",
  13487. "mimeparse",
  13488. "parser",
  13489. "php-imap"
  13490. ],
  13491. "support": {
  13492. "docs": "https://mail-mime-parser.org/#usage-guide",
  13493. "issues": "https://github.com/zbateson/mail-mime-parser/issues",
  13494. "source": "https://github.com/zbateson/mail-mime-parser"
  13495. },
  13496. "funding": [
  13497. {
  13498. "url": "https://github.com/zbateson",
  13499. "type": "github"
  13500. }
  13501. ],
  13502. "time": "2024-08-10T18:44:09+00:00"
  13503. },
  13504. {
  13505. "name": "zbateson/mb-wrapper",
  13506. "version": "2.0.1",
  13507. "source": {
  13508. "type": "git",
  13509. "url": "https://github.com/zbateson/mb-wrapper.git",
  13510. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff"
  13511. },
  13512. "dist": {
  13513. "type": "zip",
  13514. "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13515. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13516. "shasum": ""
  13517. },
  13518. "require": {
  13519. "php": ">=8.0",
  13520. "symfony/polyfill-iconv": "^1.9",
  13521. "symfony/polyfill-mbstring": "^1.9"
  13522. },
  13523. "require-dev": {
  13524. "friendsofphp/php-cs-fixer": "*",
  13525. "phpstan/phpstan": "*",
  13526. "phpunit/phpunit": "^9.6|^10.0"
  13527. },
  13528. "suggest": {
  13529. "ext-iconv": "For best support/performance",
  13530. "ext-mbstring": "For best support/performance"
  13531. },
  13532. "type": "library",
  13533. "autoload": {
  13534. "psr-4": {
  13535. "ZBateson\\MbWrapper\\": "src/"
  13536. }
  13537. },
  13538. "notification-url": "https://packagist.org/downloads/",
  13539. "license": [
  13540. "BSD-2-Clause"
  13541. ],
  13542. "authors": [
  13543. {
  13544. "name": "Zaahid Bateson"
  13545. }
  13546. ],
  13547. "description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
  13548. "keywords": [
  13549. "charset",
  13550. "encoding",
  13551. "http",
  13552. "iconv",
  13553. "mail",
  13554. "mb",
  13555. "mb_convert_encoding",
  13556. "mbstring",
  13557. "mime",
  13558. "multibyte",
  13559. "string"
  13560. ],
  13561. "support": {
  13562. "issues": "https://github.com/zbateson/mb-wrapper/issues",
  13563. "source": "https://github.com/zbateson/mb-wrapper/tree/2.0.1"
  13564. },
  13565. "funding": [
  13566. {
  13567. "url": "https://github.com/zbateson",
  13568. "type": "github"
  13569. }
  13570. ],
  13571. "time": "2024-12-20T22:05:33+00:00"
  13572. },
  13573. {
  13574. "name": "zbateson/stream-decorators",
  13575. "version": "2.1.1",
  13576. "source": {
  13577. "type": "git",
  13578. "url": "https://github.com/zbateson/stream-decorators.git",
  13579. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5"
  13580. },
  13581. "dist": {
  13582. "type": "zip",
  13583. "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13584. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13585. "shasum": ""
  13586. },
  13587. "require": {
  13588. "guzzlehttp/psr7": "^2.5",
  13589. "php": ">=8.0",
  13590. "zbateson/mb-wrapper": "^2.0"
  13591. },
  13592. "require-dev": {
  13593. "friendsofphp/php-cs-fixer": "*",
  13594. "phpstan/phpstan": "*",
  13595. "phpunit/phpunit": "^9.6|^10.0"
  13596. },
  13597. "type": "library",
  13598. "autoload": {
  13599. "psr-4": {
  13600. "ZBateson\\StreamDecorators\\": "src/"
  13601. }
  13602. },
  13603. "notification-url": "https://packagist.org/downloads/",
  13604. "license": [
  13605. "BSD-2-Clause"
  13606. ],
  13607. "authors": [
  13608. {
  13609. "name": "Zaahid Bateson"
  13610. }
  13611. ],
  13612. "description": "PHP psr7 stream decorators for mime message part streams",
  13613. "keywords": [
  13614. "base64",
  13615. "charset",
  13616. "decorators",
  13617. "mail",
  13618. "mime",
  13619. "psr7",
  13620. "quoted-printable",
  13621. "stream",
  13622. "uuencode"
  13623. ],
  13624. "support": {
  13625. "issues": "https://github.com/zbateson/stream-decorators/issues",
  13626. "source": "https://github.com/zbateson/stream-decorators/tree/2.1.1"
  13627. },
  13628. "funding": [
  13629. {
  13630. "url": "https://github.com/zbateson",
  13631. "type": "github"
  13632. }
  13633. ],
  13634. "time": "2024-04-29T21:42:39+00:00"
  13635. }
  13636. ],
  13637. "aliases": [],
  13638. "minimum-stability": "stable",
  13639. "stability-flags": {},
  13640. "prefer-stable": true,
  13641. "prefer-lowest": false,
  13642. "platform": {
  13643. "php": "^8.2",
  13644. "ext-bcmath": "*",
  13645. "ext-intl": "*"
  13646. },
  13647. "platform-dev": {},
  13648. "plugin-api-version": "2.6.0"
  13649. }