選択できるのは25トピックまでです。 トピックは、先頭が英数字で、英数字とダッシュ('-')を使用した35文字以内のものにしてください。

composer.lock 493KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490134911349213493134941349513496134971349813499135001350113502135031350413505135061350713508135091351013511135121351313514135151351613517135181351913520135211352213523135241352513526135271352813529135301353113532135331353413535135361353713538135391354013541135421354313544135451354613547135481354913550135511355213553135541355513556135571355813559135601356113562135631356413565135661356713568135691357013571135721357313574135751357613577135781357913580135811358213583135841358513586135871358813589135901359113592135931359413595135961359713598135991360013601136021360313604136051360613607136081360913610136111361213613136141361513616136171361813619136201362113622136231362413625136261362713628136291363013631136321363313634136351363613637136381363913640136411364213643
  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.0",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "7e2a03b954600427f9ba76b8ecc9279d967a1c4c"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/7e2a03b954600427f9ba76b8ecc9279d967a1c4c",
  89. "reference": "7e2a03b954600427f9ba76b8ecc9279d967a1c4c",
  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.0"
  154. },
  155. "time": "2025-03-01T18:46:48+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.1",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  309. "reference": "060632195821e066de1fc0f869881dd585e2f299"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/060632195821e066de1fc0f869881dd585e2f299",
  314. "reference": "060632195821e066de1fc0f869881dd585e2f299",
  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.1"
  366. },
  367. "time": "2025-04-06T06:54:34+00:00"
  368. },
  369. {
  370. "name": "awcodes/filament-table-repeater",
  371. "version": "v3.1.1",
  372. "source": {
  373. "type": "git",
  374. "url": "https://github.com/awcodes/filament-table-repeater.git",
  375. "reference": "20f67f729a21a28963b0c07ffbb3ffc7a6fd88f0"
  376. },
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://api.github.com/repos/awcodes/filament-table-repeater/zipball/20f67f729a21a28963b0c07ffbb3ffc7a6fd88f0",
  380. "reference": "20f67f729a21a28963b0c07ffbb3ffc7a6fd88f0",
  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.1"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://github.com/awcodes",
  439. "type": "github"
  440. }
  441. ],
  442. "time": "2025-04-11T19:26:25+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.342.26",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "99f6f8521117534990e608e040b083015465c49c"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/99f6f8521117534990e608e040b083015465c49c",
  509. "reference": "99f6f8521117534990e608e040b083015465c49c",
  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.342.26"
  592. },
  593. "time": "2025-04-11T18:10: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/blade-ui-kit/blade-heroicons.git",
  757. "reference": "4553b2a1f6c76f0ac7f3bc0de4c0cfa06a097d19"
  758. },
  759. "dist": {
  760. "type": "zip",
  761. "url": "https://api.github.com/repos/blade-ui-kit/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/blade-ui-kit/blade-heroicons/issues",
  806. "source": "https://github.com/blade-ui-kit/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/blade-ui-kit/blade-icons.git",
  826. "reference": "7b743f27476acb2ed04cb518213d78abe096e814"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/blade-ui-kit/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.17",
  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.10",
  1803. "source": {
  1804. "type": "git",
  1805. "url": "https://github.com/filamentphp/actions.git",
  1806. "reference": "38e913c5f108a2ec96c99b7b670f05ed288191e6"
  1807. },
  1808. "dist": {
  1809. "type": "zip",
  1810. "url": "https://api.github.com/repos/filamentphp/actions/zipball/38e913c5f108a2ec96c99b7b670f05ed288191e6",
  1811. "reference": "38e913c5f108a2ec96c99b7b670f05ed288191e6",
  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-04-07T10:06:29+00:00"
  1852. },
  1853. {
  1854. "name": "filament/filament",
  1855. "version": "v3.3.10",
  1856. "source": {
  1857. "type": "git",
  1858. "url": "https://github.com/filamentphp/panels.git",
  1859. "reference": "6c8cb5f34f83fe44e767403a41745f7617f096c1"
  1860. },
  1861. "dist": {
  1862. "type": "zip",
  1863. "url": "https://api.github.com/repos/filamentphp/panels/zipball/6c8cb5f34f83fe44e767403a41745f7617f096c1",
  1864. "reference": "6c8cb5f34f83fe44e767403a41745f7617f096c1",
  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-04-07T10:06:14+00:00"
  1917. },
  1918. {
  1919. "name": "filament/forms",
  1920. "version": "v3.3.10",
  1921. "source": {
  1922. "type": "git",
  1923. "url": "https://github.com/filamentphp/forms.git",
  1924. "reference": "a3c9bbedfaa91b44b728365cf66f2adef7c346db"
  1925. },
  1926. "dist": {
  1927. "type": "zip",
  1928. "url": "https://api.github.com/repos/filamentphp/forms/zipball/a3c9bbedfaa91b44b728365cf66f2adef7c346db",
  1929. "reference": "a3c9bbedfaa91b44b728365cf66f2adef7c346db",
  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-04-07T10:06:19+00:00"
  1973. },
  1974. {
  1975. "name": "filament/infolists",
  1976. "version": "v3.3.10",
  1977. "source": {
  1978. "type": "git",
  1979. "url": "https://github.com/filamentphp/infolists.git",
  1980. "reference": "521db58c1555bcaefcdbf11789b949f6a2da18e5"
  1981. },
  1982. "dist": {
  1983. "type": "zip",
  1984. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/521db58c1555bcaefcdbf11789b949f6a2da18e5",
  1985. "reference": "521db58c1555bcaefcdbf11789b949f6a2da18e5",
  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-04-07T10:06:03+00:00"
  2024. },
  2025. {
  2026. "name": "filament/notifications",
  2027. "version": "v3.3.10",
  2028. "source": {
  2029. "type": "git",
  2030. "url": "https://github.com/filamentphp/notifications.git",
  2031. "reference": "d4bb90c77a3e88ab833cab71d36b185b3670a314"
  2032. },
  2033. "dist": {
  2034. "type": "zip",
  2035. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/d4bb90c77a3e88ab833cab71d36b185b3670a314",
  2036. "reference": "d4bb90c77a3e88ab833cab71d36b185b3670a314",
  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-04-02T09:55:26+00:00"
  2076. },
  2077. {
  2078. "name": "filament/support",
  2079. "version": "v3.3.10",
  2080. "source": {
  2081. "type": "git",
  2082. "url": "https://github.com/filamentphp/support.git",
  2083. "reference": "fbe203104322d83dedb7da0422db0779a063f165"
  2084. },
  2085. "dist": {
  2086. "type": "zip",
  2087. "url": "https://api.github.com/repos/filamentphp/support/zipball/fbe203104322d83dedb7da0422db0779a063f165",
  2088. "reference": "fbe203104322d83dedb7da0422db0779a063f165",
  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-04-07T10:58:23+00:00"
  2135. },
  2136. {
  2137. "name": "filament/tables",
  2138. "version": "v3.3.10",
  2139. "source": {
  2140. "type": "git",
  2141. "url": "https://github.com/filamentphp/tables.git",
  2142. "reference": "e668fea3f698019ff528d857c326620c2a71288b"
  2143. },
  2144. "dist": {
  2145. "type": "zip",
  2146. "url": "https://api.github.com/repos/filamentphp/tables/zipball/e668fea3f698019ff528d857c326620c2a71288b",
  2147. "reference": "e668fea3f698019ff528d857c326620c2a71288b",
  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-04-07T10:06:35+00:00"
  2187. },
  2188. {
  2189. "name": "filament/widgets",
  2190. "version": "v3.3.10",
  2191. "source": {
  2192. "type": "git",
  2193. "url": "https://github.com/filamentphp/widgets.git",
  2194. "reference": "2d91f0d509b4ef497678b919e471e9099451bd21"
  2195. },
  2196. "dist": {
  2197. "type": "zip",
  2198. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/2d91f0d509b4ef497678b919e471e9099451bd21",
  2199. "reference": "2d91f0d509b4ef497678b919e471e9099451bd21",
  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-03-11T16:33:32+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.3",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2994. "reference": "d04e06b12e5e7864c303b8a8c6045bfcd4e2c641"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/d04e06b12e5e7864c303b8a8c6045bfcd4e2c641",
  2999. "reference": "d04e06b12e5e7864c303b8a8c6045bfcd4e2c641",
  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.3"
  3048. },
  3049. "time": "2025-04-01T14:41:56+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.44.2",
  3121. "source": {
  3122. "type": "git",
  3123. "url": "https://github.com/laravel/framework.git",
  3124. "reference": "f85216c82cbd38b66d67ebd20ea762cb3751a4b4"
  3125. },
  3126. "dist": {
  3127. "type": "zip",
  3128. "url": "https://api.github.com/repos/laravel/framework/zipball/f85216c82cbd38b66d67ebd20ea762cb3751a4b4",
  3129. "reference": "f85216c82cbd38b66d67ebd20ea762cb3751a4b4",
  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.6",
  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.11.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-03-12T14:34:30+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.0.8",
  3395. "source": {
  3396. "type": "git",
  3397. "url": "https://github.com/laravel/sanctum.git",
  3398. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c"
  3399. },
  3400. "dist": {
  3401. "type": "zip",
  3402. "url": "https://api.github.com/repos/laravel/sanctum/zipball/ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  3403. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  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-01-26T19:34:36+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.19.0",
  3520. "source": {
  3521. "type": "git",
  3522. "url": "https://github.com/laravel/socialite.git",
  3523. "reference": "c40f843c5643fb6b089e46ce9794b8408bf08319"
  3524. },
  3525. "dist": {
  3526. "type": "zip",
  3527. "url": "https://api.github.com/repos/laravel/socialite/zipball/c40f843c5643fb6b089e46ce9794b8408bf08319",
  3528. "reference": "c40f843c5643fb6b089e46ce9794b8408bf08319",
  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-03-27T17:26:42+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.6.1",
  3658. "source": {
  3659. "type": "git",
  3660. "url": "https://github.com/thephpleague/commonmark.git",
  3661. "reference": "d990688c91cedfb69753ffc2512727ec646df2ad"
  3662. },
  3663. "dist": {
  3664. "type": "zip",
  3665. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d990688c91cedfb69753ffc2512727ec646df2ad",
  3666. "reference": "d990688c91cedfb69753ffc2512727ec646df2ad",
  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.7-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": "2024-12-29T14:10:59+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.2",
  4376. "source": {
  4377. "type": "git",
  4378. "url": "https://github.com/livewire/livewire.git",
  4379. "reference": "8f8914731f5eb43b6bb145d87c8d5a9edfc89313"
  4380. },
  4381. "dist": {
  4382. "type": "zip",
  4383. "url": "https://api.github.com/repos/livewire/livewire/zipball/8f8914731f5eb43b6bb145d87c8d5a9edfc89313",
  4384. "reference": "8f8914731f5eb43b6bb145d87c8d5a9edfc89313",
  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.2"
  4440. },
  4441. "funding": [
  4442. {
  4443. "url": "https://github.com/livewire",
  4444. "type": "github"
  4445. }
  4446. ],
  4447. "time": "2025-03-12T20:24:15+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.0",
  4812. "source": {
  4813. "type": "git",
  4814. "url": "https://github.com/CarbonPHP/carbon.git",
  4815. "reference": "6d16a8a015166fe54e22c042e0805c5363aef50d"
  4816. },
  4817. "dist": {
  4818. "type": "zip",
  4819. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/6d16a8a015166fe54e22c042e0805c5363aef50d",
  4820. "reference": "6d16a8a015166fe54e22c042e0805c5363aef50d",
  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-03-27T12:57:33+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.6",
  4980. "source": {
  4981. "type": "git",
  4982. "url": "https://github.com/nette/utils.git",
  4983. "reference": "ce708655043c7050eb050df361c5e313cf708309"
  4984. },
  4985. "dist": {
  4986. "type": "zip",
  4987. "url": "https://api.github.com/repos/nette/utils/zipball/ce708655043c7050eb050df361c5e313cf708309",
  4988. "reference": "ce708655043c7050eb050df361c5e313cf708309",
  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.6"
  5060. },
  5061. "time": "2025-03-30T21:06:30+00:00"
  5062. },
  5063. {
  5064. "name": "nikic/php-parser",
  5065. "version": "v5.4.0",
  5066. "source": {
  5067. "type": "git",
  5068. "url": "https://github.com/nikic/PHP-Parser.git",
  5069. "reference": "447a020a1f875a434d62f2a401f53b82a396e494"
  5070. },
  5071. "dist": {
  5072. "type": "zip",
  5073. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494",
  5074. "reference": "447a020a1f875a434d62f2a401f53b82a396e494",
  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.4.0"
  5118. },
  5119. "time": "2024-12-30T11:07:19+00:00"
  5120. },
  5121. {
  5122. "name": "nunomaduro/termwind",
  5123. "version": "v2.3.0",
  5124. "source": {
  5125. "type": "git",
  5126. "url": "https://github.com/nunomaduro/termwind.git",
  5127. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  5128. },
  5129. "dist": {
  5130. "type": "zip",
  5131. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  5132. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  5133. "shasum": ""
  5134. },
  5135. "require": {
  5136. "ext-mbstring": "*",
  5137. "php": "^8.2",
  5138. "symfony/console": "^7.1.8"
  5139. },
  5140. "require-dev": {
  5141. "illuminate/console": "^11.33.2",
  5142. "laravel/pint": "^1.18.2",
  5143. "mockery/mockery": "^1.6.12",
  5144. "pestphp/pest": "^2.36.0",
  5145. "phpstan/phpstan": "^1.12.11",
  5146. "phpstan/phpstan-strict-rules": "^1.6.1",
  5147. "symfony/var-dumper": "^7.1.8",
  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.0"
  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": "2024-11-21T10:39:51+00:00"
  5207. },
  5208. {
  5209. "name": "openspout/openspout",
  5210. "version": "v4.29.1",
  5211. "source": {
  5212. "type": "git",
  5213. "url": "https://github.com/openspout/openspout.git",
  5214. "reference": "ec83106bc3922fe94c9d37976ba6b7259511c4c5"
  5215. },
  5216. "dist": {
  5217. "type": "zip",
  5218. "url": "https://api.github.com/repos/openspout/openspout/zipball/ec83106bc3922fe94c9d37976ba6b7259511c4c5",
  5219. "reference": "ec83106bc3922fe94c9d37976ba6b7259511c4c5",
  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.71.0",
  5234. "infection/infection": "^0.29.14",
  5235. "phpbench/phpbench": "^1.4.0",
  5236. "phpstan/phpstan": "^2.1.8",
  5237. "phpstan/phpstan-phpunit": "^2.0.4",
  5238. "phpstan/phpstan-strict-rules": "^2.0.3",
  5239. "phpunit/phpunit": "^12.0.7"
  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.29.1"
  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-03-11T14:40:46+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.7.6",
  6266. "source": {
  6267. "type": "git",
  6268. "url": "https://github.com/ramsey/uuid.git",
  6269. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6270. },
  6271. "dist": {
  6272. "type": "zip",
  6273. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6274. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6275. "shasum": ""
  6276. },
  6277. "require": {
  6278. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  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.10",
  6288. "captainhook/plugin-composer": "^5.3",
  6289. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6290. "doctrine/annotations": "^1.8",
  6291. "ergebnis/composer-normalize": "^2.15",
  6292. "mockery/mockery": "^1.3",
  6293. "paragonie/random-lib": "^2",
  6294. "php-mock/php-mock": "^2.2",
  6295. "php-mock/php-mock-mockery": "^1.3",
  6296. "php-parallel-lint/php-parallel-lint": "^1.1",
  6297. "phpbench/phpbench": "^1.0",
  6298. "phpstan/extension-installer": "^1.1",
  6299. "phpstan/phpstan": "^1.8",
  6300. "phpstan/phpstan-mockery": "^1.1",
  6301. "phpstan/phpstan-phpunit": "^1.1",
  6302. "phpunit/phpunit": "^8.5 || ^9",
  6303. "ramsey/composer-repl": "^1.4",
  6304. "slevomat/coding-standard": "^8.4",
  6305. "squizlabs/php_codesniffer": "^3.5",
  6306. "vimeo/psalm": "^4.9"
  6307. },
  6308. "suggest": {
  6309. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6310. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6311. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6312. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6313. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6314. },
  6315. "type": "library",
  6316. "extra": {
  6317. "captainhook": {
  6318. "force-install": true
  6319. }
  6320. },
  6321. "autoload": {
  6322. "files": [
  6323. "src/functions.php"
  6324. ],
  6325. "psr-4": {
  6326. "Ramsey\\Uuid\\": "src/"
  6327. }
  6328. },
  6329. "notification-url": "https://packagist.org/downloads/",
  6330. "license": [
  6331. "MIT"
  6332. ],
  6333. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6334. "keywords": [
  6335. "guid",
  6336. "identifier",
  6337. "uuid"
  6338. ],
  6339. "support": {
  6340. "issues": "https://github.com/ramsey/uuid/issues",
  6341. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6342. },
  6343. "funding": [
  6344. {
  6345. "url": "https://github.com/ramsey",
  6346. "type": "github"
  6347. },
  6348. {
  6349. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6350. "type": "tidelift"
  6351. }
  6352. ],
  6353. "time": "2024-04-27T21:32:50+00:00"
  6354. },
  6355. {
  6356. "name": "ryangjchandler/blade-capture-directive",
  6357. "version": "v1.1.0",
  6358. "source": {
  6359. "type": "git",
  6360. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6361. "reference": "bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d"
  6362. },
  6363. "dist": {
  6364. "type": "zip",
  6365. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d",
  6366. "reference": "bbb1513dfd89eaec87a47fe0c449a7e3d4a1976d",
  6367. "shasum": ""
  6368. },
  6369. "require": {
  6370. "illuminate/contracts": "^10.0|^11.0|^12.0",
  6371. "php": "^8.1",
  6372. "spatie/laravel-package-tools": "^1.9.2"
  6373. },
  6374. "require-dev": {
  6375. "nunomaduro/collision": "^7.0|^8.0",
  6376. "nunomaduro/larastan": "^2.0|^3.0",
  6377. "orchestra/testbench": "^8.0|^9.0|^10.0",
  6378. "pestphp/pest": "^2.0|^3.7",
  6379. "pestphp/pest-plugin-laravel": "^2.0|^3.1",
  6380. "phpstan/extension-installer": "^1.1",
  6381. "phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
  6382. "phpstan/phpstan-phpunit": "^1.0|^2.0",
  6383. "phpunit/phpunit": "^10.0|^11.5.3",
  6384. "spatie/laravel-ray": "^1.26"
  6385. },
  6386. "type": "library",
  6387. "extra": {
  6388. "laravel": {
  6389. "aliases": {
  6390. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6391. },
  6392. "providers": [
  6393. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6394. ]
  6395. }
  6396. },
  6397. "autoload": {
  6398. "psr-4": {
  6399. "RyanChandler\\BladeCaptureDirective\\": "src",
  6400. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6401. }
  6402. },
  6403. "notification-url": "https://packagist.org/downloads/",
  6404. "license": [
  6405. "MIT"
  6406. ],
  6407. "authors": [
  6408. {
  6409. "name": "Ryan Chandler",
  6410. "email": "support@ryangjchandler.co.uk",
  6411. "role": "Developer"
  6412. }
  6413. ],
  6414. "description": "Create inline partials in your Blade templates with ease.",
  6415. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6416. "keywords": [
  6417. "blade-capture-directive",
  6418. "laravel",
  6419. "ryangjchandler"
  6420. ],
  6421. "support": {
  6422. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6423. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.1.0"
  6424. },
  6425. "funding": [
  6426. {
  6427. "url": "https://github.com/ryangjchandler",
  6428. "type": "github"
  6429. }
  6430. ],
  6431. "time": "2025-02-25T09:09:36+00:00"
  6432. },
  6433. {
  6434. "name": "spatie/color",
  6435. "version": "1.8.0",
  6436. "source": {
  6437. "type": "git",
  6438. "url": "https://github.com/spatie/color.git",
  6439. "reference": "142af7fec069a420babea80a5412eb2f646dcd8c"
  6440. },
  6441. "dist": {
  6442. "type": "zip",
  6443. "url": "https://api.github.com/repos/spatie/color/zipball/142af7fec069a420babea80a5412eb2f646dcd8c",
  6444. "reference": "142af7fec069a420babea80a5412eb2f646dcd8c",
  6445. "shasum": ""
  6446. },
  6447. "require": {
  6448. "php": "^7.3|^8.0"
  6449. },
  6450. "require-dev": {
  6451. "pestphp/pest": "^1.22",
  6452. "phpunit/phpunit": "^6.5||^9.0"
  6453. },
  6454. "type": "library",
  6455. "autoload": {
  6456. "psr-4": {
  6457. "Spatie\\Color\\": "src"
  6458. }
  6459. },
  6460. "notification-url": "https://packagist.org/downloads/",
  6461. "license": [
  6462. "MIT"
  6463. ],
  6464. "authors": [
  6465. {
  6466. "name": "Sebastian De Deyne",
  6467. "email": "sebastian@spatie.be",
  6468. "homepage": "https://spatie.be",
  6469. "role": "Developer"
  6470. }
  6471. ],
  6472. "description": "A little library to handle color conversions",
  6473. "homepage": "https://github.com/spatie/color",
  6474. "keywords": [
  6475. "color",
  6476. "conversion",
  6477. "rgb",
  6478. "spatie"
  6479. ],
  6480. "support": {
  6481. "issues": "https://github.com/spatie/color/issues",
  6482. "source": "https://github.com/spatie/color/tree/1.8.0"
  6483. },
  6484. "funding": [
  6485. {
  6486. "url": "https://github.com/spatie",
  6487. "type": "github"
  6488. }
  6489. ],
  6490. "time": "2025-02-10T09:22:41+00:00"
  6491. },
  6492. {
  6493. "name": "spatie/invade",
  6494. "version": "2.1.0",
  6495. "source": {
  6496. "type": "git",
  6497. "url": "https://github.com/spatie/invade.git",
  6498. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  6499. },
  6500. "dist": {
  6501. "type": "zip",
  6502. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6503. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6504. "shasum": ""
  6505. },
  6506. "require": {
  6507. "php": "^8.0"
  6508. },
  6509. "require-dev": {
  6510. "pestphp/pest": "^1.20",
  6511. "phpstan/phpstan": "^1.4",
  6512. "spatie/ray": "^1.28"
  6513. },
  6514. "type": "library",
  6515. "autoload": {
  6516. "files": [
  6517. "src/functions.php"
  6518. ],
  6519. "psr-4": {
  6520. "Spatie\\Invade\\": "src"
  6521. }
  6522. },
  6523. "notification-url": "https://packagist.org/downloads/",
  6524. "license": [
  6525. "MIT"
  6526. ],
  6527. "authors": [
  6528. {
  6529. "name": "Freek Van der Herten",
  6530. "email": "freek@spatie.be",
  6531. "role": "Developer"
  6532. }
  6533. ],
  6534. "description": "A PHP function to work with private properties and methods",
  6535. "homepage": "https://github.com/spatie/invade",
  6536. "keywords": [
  6537. "invade",
  6538. "spatie"
  6539. ],
  6540. "support": {
  6541. "source": "https://github.com/spatie/invade/tree/2.1.0"
  6542. },
  6543. "funding": [
  6544. {
  6545. "url": "https://github.com/spatie",
  6546. "type": "github"
  6547. }
  6548. ],
  6549. "time": "2024-05-17T09:06:10+00:00"
  6550. },
  6551. {
  6552. "name": "spatie/laravel-package-tools",
  6553. "version": "1.92.4",
  6554. "source": {
  6555. "type": "git",
  6556. "url": "https://github.com/spatie/laravel-package-tools.git",
  6557. "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c"
  6558. },
  6559. "dist": {
  6560. "type": "zip",
  6561. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/d20b1969f836d210459b78683d85c9cd5c5f508c",
  6562. "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c",
  6563. "shasum": ""
  6564. },
  6565. "require": {
  6566. "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
  6567. "php": "^8.0"
  6568. },
  6569. "require-dev": {
  6570. "mockery/mockery": "^1.5",
  6571. "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
  6572. "pestphp/pest": "^1.23|^2.1|^3.1",
  6573. "phpunit/php-code-coverage": "^9.0|^10.0|^11.0",
  6574. "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
  6575. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  6576. },
  6577. "type": "library",
  6578. "autoload": {
  6579. "psr-4": {
  6580. "Spatie\\LaravelPackageTools\\": "src"
  6581. }
  6582. },
  6583. "notification-url": "https://packagist.org/downloads/",
  6584. "license": [
  6585. "MIT"
  6586. ],
  6587. "authors": [
  6588. {
  6589. "name": "Freek Van der Herten",
  6590. "email": "freek@spatie.be",
  6591. "role": "Developer"
  6592. }
  6593. ],
  6594. "description": "Tools for creating Laravel packages",
  6595. "homepage": "https://github.com/spatie/laravel-package-tools",
  6596. "keywords": [
  6597. "laravel-package-tools",
  6598. "spatie"
  6599. ],
  6600. "support": {
  6601. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6602. "source": "https://github.com/spatie/laravel-package-tools/tree/1.92.4"
  6603. },
  6604. "funding": [
  6605. {
  6606. "url": "https://github.com/spatie",
  6607. "type": "github"
  6608. }
  6609. ],
  6610. "time": "2025-04-11T15:27:14+00:00"
  6611. },
  6612. {
  6613. "name": "squirephp/model",
  6614. "version": "v3.9.0",
  6615. "source": {
  6616. "type": "git",
  6617. "url": "https://github.com/squirephp/model.git",
  6618. "reference": "cdfb6eafff8ed8d7810aff7826623a9a0196a680"
  6619. },
  6620. "dist": {
  6621. "type": "zip",
  6622. "url": "https://api.github.com/repos/squirephp/model/zipball/cdfb6eafff8ed8d7810aff7826623a9a0196a680",
  6623. "reference": "cdfb6eafff8ed8d7810aff7826623a9a0196a680",
  6624. "shasum": ""
  6625. },
  6626. "require": {
  6627. "ext-pdo_sqlite": "*",
  6628. "illuminate/database": "^8.40|^9.0|^10.0|^11.0|^12.0",
  6629. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  6630. "php": "^8.0"
  6631. },
  6632. "type": "library",
  6633. "extra": {
  6634. "laravel": {
  6635. "providers": [
  6636. "Squire\\ModelServiceProvider"
  6637. ]
  6638. }
  6639. },
  6640. "autoload": {
  6641. "psr-4": {
  6642. "Squire\\": "src"
  6643. }
  6644. },
  6645. "notification-url": "https://packagist.org/downloads/",
  6646. "license": [
  6647. "MIT"
  6648. ],
  6649. "authors": [
  6650. {
  6651. "name": "Dan Harrin",
  6652. "email": "dan@danharrin.com"
  6653. }
  6654. ],
  6655. "description": "A library containing the base Squire model class.",
  6656. "homepage": "https://github.com/squirephp",
  6657. "keywords": [
  6658. "squire"
  6659. ],
  6660. "support": {
  6661. "issues": "https://github.com/squirephp/squire/issues",
  6662. "source": "https://github.com/squirephp/squire"
  6663. },
  6664. "time": "2025-02-25T08:15:59+00:00"
  6665. },
  6666. {
  6667. "name": "squirephp/repository",
  6668. "version": "v3.9.0",
  6669. "source": {
  6670. "type": "git",
  6671. "url": "https://github.com/squirephp/repository.git",
  6672. "reference": "6bbd33c1148949c2bb2f6499ce9897c874d0860c"
  6673. },
  6674. "dist": {
  6675. "type": "zip",
  6676. "url": "https://api.github.com/repos/squirephp/repository/zipball/6bbd33c1148949c2bb2f6499ce9897c874d0860c",
  6677. "reference": "6bbd33c1148949c2bb2f6499ce9897c874d0860c",
  6678. "shasum": ""
  6679. },
  6680. "require": {
  6681. "illuminate/support": "^8.0|^9.0|^10.0|^11.0|^12.0",
  6682. "php": "^8.0"
  6683. },
  6684. "type": "library",
  6685. "extra": {
  6686. "laravel": {
  6687. "aliases": {
  6688. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6689. },
  6690. "providers": [
  6691. "Squire\\RepositoryServiceProvider"
  6692. ]
  6693. }
  6694. },
  6695. "autoload": {
  6696. "psr-4": {
  6697. "Squire\\": "src"
  6698. }
  6699. },
  6700. "notification-url": "https://packagist.org/downloads/",
  6701. "license": [
  6702. "MIT"
  6703. ],
  6704. "authors": [
  6705. {
  6706. "name": "Dan Harrin",
  6707. "email": "dan@danharrin.com"
  6708. }
  6709. ],
  6710. "description": "A library containing the Squire repository.",
  6711. "homepage": "https://github.com/squirephp",
  6712. "keywords": [
  6713. "squire"
  6714. ],
  6715. "support": {
  6716. "issues": "https://github.com/squirephp/squire/issues",
  6717. "source": "https://github.com/squirephp/squire"
  6718. },
  6719. "time": "2025-02-25T08:16:09+00:00"
  6720. },
  6721. {
  6722. "name": "symfony/clock",
  6723. "version": "v7.2.0",
  6724. "source": {
  6725. "type": "git",
  6726. "url": "https://github.com/symfony/clock.git",
  6727. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  6728. },
  6729. "dist": {
  6730. "type": "zip",
  6731. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6732. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6733. "shasum": ""
  6734. },
  6735. "require": {
  6736. "php": ">=8.2",
  6737. "psr/clock": "^1.0",
  6738. "symfony/polyfill-php83": "^1.28"
  6739. },
  6740. "provide": {
  6741. "psr/clock-implementation": "1.0"
  6742. },
  6743. "type": "library",
  6744. "autoload": {
  6745. "files": [
  6746. "Resources/now.php"
  6747. ],
  6748. "psr-4": {
  6749. "Symfony\\Component\\Clock\\": ""
  6750. },
  6751. "exclude-from-classmap": [
  6752. "/Tests/"
  6753. ]
  6754. },
  6755. "notification-url": "https://packagist.org/downloads/",
  6756. "license": [
  6757. "MIT"
  6758. ],
  6759. "authors": [
  6760. {
  6761. "name": "Nicolas Grekas",
  6762. "email": "p@tchwork.com"
  6763. },
  6764. {
  6765. "name": "Symfony Community",
  6766. "homepage": "https://symfony.com/contributors"
  6767. }
  6768. ],
  6769. "description": "Decouples applications from the system clock",
  6770. "homepage": "https://symfony.com",
  6771. "keywords": [
  6772. "clock",
  6773. "psr20",
  6774. "time"
  6775. ],
  6776. "support": {
  6777. "source": "https://github.com/symfony/clock/tree/v7.2.0"
  6778. },
  6779. "funding": [
  6780. {
  6781. "url": "https://symfony.com/sponsor",
  6782. "type": "custom"
  6783. },
  6784. {
  6785. "url": "https://github.com/fabpot",
  6786. "type": "github"
  6787. },
  6788. {
  6789. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6790. "type": "tidelift"
  6791. }
  6792. ],
  6793. "time": "2024-09-25T14:21:43+00:00"
  6794. },
  6795. {
  6796. "name": "symfony/console",
  6797. "version": "v7.2.5",
  6798. "source": {
  6799. "type": "git",
  6800. "url": "https://github.com/symfony/console.git",
  6801. "reference": "e51498ea18570c062e7df29d05a7003585b19b88"
  6802. },
  6803. "dist": {
  6804. "type": "zip",
  6805. "url": "https://api.github.com/repos/symfony/console/zipball/e51498ea18570c062e7df29d05a7003585b19b88",
  6806. "reference": "e51498ea18570c062e7df29d05a7003585b19b88",
  6807. "shasum": ""
  6808. },
  6809. "require": {
  6810. "php": ">=8.2",
  6811. "symfony/polyfill-mbstring": "~1.0",
  6812. "symfony/service-contracts": "^2.5|^3",
  6813. "symfony/string": "^6.4|^7.0"
  6814. },
  6815. "conflict": {
  6816. "symfony/dependency-injection": "<6.4",
  6817. "symfony/dotenv": "<6.4",
  6818. "symfony/event-dispatcher": "<6.4",
  6819. "symfony/lock": "<6.4",
  6820. "symfony/process": "<6.4"
  6821. },
  6822. "provide": {
  6823. "psr/log-implementation": "1.0|2.0|3.0"
  6824. },
  6825. "require-dev": {
  6826. "psr/log": "^1|^2|^3",
  6827. "symfony/config": "^6.4|^7.0",
  6828. "symfony/dependency-injection": "^6.4|^7.0",
  6829. "symfony/event-dispatcher": "^6.4|^7.0",
  6830. "symfony/http-foundation": "^6.4|^7.0",
  6831. "symfony/http-kernel": "^6.4|^7.0",
  6832. "symfony/lock": "^6.4|^7.0",
  6833. "symfony/messenger": "^6.4|^7.0",
  6834. "symfony/process": "^6.4|^7.0",
  6835. "symfony/stopwatch": "^6.4|^7.0",
  6836. "symfony/var-dumper": "^6.4|^7.0"
  6837. },
  6838. "type": "library",
  6839. "autoload": {
  6840. "psr-4": {
  6841. "Symfony\\Component\\Console\\": ""
  6842. },
  6843. "exclude-from-classmap": [
  6844. "/Tests/"
  6845. ]
  6846. },
  6847. "notification-url": "https://packagist.org/downloads/",
  6848. "license": [
  6849. "MIT"
  6850. ],
  6851. "authors": [
  6852. {
  6853. "name": "Fabien Potencier",
  6854. "email": "fabien@symfony.com"
  6855. },
  6856. {
  6857. "name": "Symfony Community",
  6858. "homepage": "https://symfony.com/contributors"
  6859. }
  6860. ],
  6861. "description": "Eases the creation of beautiful and testable command line interfaces",
  6862. "homepage": "https://symfony.com",
  6863. "keywords": [
  6864. "cli",
  6865. "command-line",
  6866. "console",
  6867. "terminal"
  6868. ],
  6869. "support": {
  6870. "source": "https://github.com/symfony/console/tree/v7.2.5"
  6871. },
  6872. "funding": [
  6873. {
  6874. "url": "https://symfony.com/sponsor",
  6875. "type": "custom"
  6876. },
  6877. {
  6878. "url": "https://github.com/fabpot",
  6879. "type": "github"
  6880. },
  6881. {
  6882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6883. "type": "tidelift"
  6884. }
  6885. ],
  6886. "time": "2025-03-12T08:11:12+00:00"
  6887. },
  6888. {
  6889. "name": "symfony/css-selector",
  6890. "version": "v7.2.0",
  6891. "source": {
  6892. "type": "git",
  6893. "url": "https://github.com/symfony/css-selector.git",
  6894. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  6895. },
  6896. "dist": {
  6897. "type": "zip",
  6898. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6899. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6900. "shasum": ""
  6901. },
  6902. "require": {
  6903. "php": ">=8.2"
  6904. },
  6905. "type": "library",
  6906. "autoload": {
  6907. "psr-4": {
  6908. "Symfony\\Component\\CssSelector\\": ""
  6909. },
  6910. "exclude-from-classmap": [
  6911. "/Tests/"
  6912. ]
  6913. },
  6914. "notification-url": "https://packagist.org/downloads/",
  6915. "license": [
  6916. "MIT"
  6917. ],
  6918. "authors": [
  6919. {
  6920. "name": "Fabien Potencier",
  6921. "email": "fabien@symfony.com"
  6922. },
  6923. {
  6924. "name": "Jean-François Simon",
  6925. "email": "jeanfrancois.simon@sensiolabs.com"
  6926. },
  6927. {
  6928. "name": "Symfony Community",
  6929. "homepage": "https://symfony.com/contributors"
  6930. }
  6931. ],
  6932. "description": "Converts CSS selectors to XPath expressions",
  6933. "homepage": "https://symfony.com",
  6934. "support": {
  6935. "source": "https://github.com/symfony/css-selector/tree/v7.2.0"
  6936. },
  6937. "funding": [
  6938. {
  6939. "url": "https://symfony.com/sponsor",
  6940. "type": "custom"
  6941. },
  6942. {
  6943. "url": "https://github.com/fabpot",
  6944. "type": "github"
  6945. },
  6946. {
  6947. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6948. "type": "tidelift"
  6949. }
  6950. ],
  6951. "time": "2024-09-25T14:21:43+00:00"
  6952. },
  6953. {
  6954. "name": "symfony/deprecation-contracts",
  6955. "version": "v3.5.1",
  6956. "source": {
  6957. "type": "git",
  6958. "url": "https://github.com/symfony/deprecation-contracts.git",
  6959. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6960. },
  6961. "dist": {
  6962. "type": "zip",
  6963. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6964. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6965. "shasum": ""
  6966. },
  6967. "require": {
  6968. "php": ">=8.1"
  6969. },
  6970. "type": "library",
  6971. "extra": {
  6972. "thanks": {
  6973. "url": "https://github.com/symfony/contracts",
  6974. "name": "symfony/contracts"
  6975. },
  6976. "branch-alias": {
  6977. "dev-main": "3.5-dev"
  6978. }
  6979. },
  6980. "autoload": {
  6981. "files": [
  6982. "function.php"
  6983. ]
  6984. },
  6985. "notification-url": "https://packagist.org/downloads/",
  6986. "license": [
  6987. "MIT"
  6988. ],
  6989. "authors": [
  6990. {
  6991. "name": "Nicolas Grekas",
  6992. "email": "p@tchwork.com"
  6993. },
  6994. {
  6995. "name": "Symfony Community",
  6996. "homepage": "https://symfony.com/contributors"
  6997. }
  6998. ],
  6999. "description": "A generic function and convention to trigger deprecation notices",
  7000. "homepage": "https://symfony.com",
  7001. "support": {
  7002. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  7003. },
  7004. "funding": [
  7005. {
  7006. "url": "https://symfony.com/sponsor",
  7007. "type": "custom"
  7008. },
  7009. {
  7010. "url": "https://github.com/fabpot",
  7011. "type": "github"
  7012. },
  7013. {
  7014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7015. "type": "tidelift"
  7016. }
  7017. ],
  7018. "time": "2024-09-25T14:20:29+00:00"
  7019. },
  7020. {
  7021. "name": "symfony/error-handler",
  7022. "version": "v7.2.5",
  7023. "source": {
  7024. "type": "git",
  7025. "url": "https://github.com/symfony/error-handler.git",
  7026. "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b"
  7027. },
  7028. "dist": {
  7029. "type": "zip",
  7030. "url": "https://api.github.com/repos/symfony/error-handler/zipball/102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b",
  7031. "reference": "102be5e6a8e4f4f3eb3149bcbfa33a80d1ee374b",
  7032. "shasum": ""
  7033. },
  7034. "require": {
  7035. "php": ">=8.2",
  7036. "psr/log": "^1|^2|^3",
  7037. "symfony/var-dumper": "^6.4|^7.0"
  7038. },
  7039. "conflict": {
  7040. "symfony/deprecation-contracts": "<2.5",
  7041. "symfony/http-kernel": "<6.4"
  7042. },
  7043. "require-dev": {
  7044. "symfony/deprecation-contracts": "^2.5|^3",
  7045. "symfony/http-kernel": "^6.4|^7.0",
  7046. "symfony/serializer": "^6.4|^7.0"
  7047. },
  7048. "bin": [
  7049. "Resources/bin/patch-type-declarations"
  7050. ],
  7051. "type": "library",
  7052. "autoload": {
  7053. "psr-4": {
  7054. "Symfony\\Component\\ErrorHandler\\": ""
  7055. },
  7056. "exclude-from-classmap": [
  7057. "/Tests/"
  7058. ]
  7059. },
  7060. "notification-url": "https://packagist.org/downloads/",
  7061. "license": [
  7062. "MIT"
  7063. ],
  7064. "authors": [
  7065. {
  7066. "name": "Fabien Potencier",
  7067. "email": "fabien@symfony.com"
  7068. },
  7069. {
  7070. "name": "Symfony Community",
  7071. "homepage": "https://symfony.com/contributors"
  7072. }
  7073. ],
  7074. "description": "Provides tools to manage errors and ease debugging PHP code",
  7075. "homepage": "https://symfony.com",
  7076. "support": {
  7077. "source": "https://github.com/symfony/error-handler/tree/v7.2.5"
  7078. },
  7079. "funding": [
  7080. {
  7081. "url": "https://symfony.com/sponsor",
  7082. "type": "custom"
  7083. },
  7084. {
  7085. "url": "https://github.com/fabpot",
  7086. "type": "github"
  7087. },
  7088. {
  7089. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7090. "type": "tidelift"
  7091. }
  7092. ],
  7093. "time": "2025-03-03T07:12:39+00:00"
  7094. },
  7095. {
  7096. "name": "symfony/event-dispatcher",
  7097. "version": "v7.2.0",
  7098. "source": {
  7099. "type": "git",
  7100. "url": "https://github.com/symfony/event-dispatcher.git",
  7101. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
  7102. },
  7103. "dist": {
  7104. "type": "zip",
  7105. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
  7106. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
  7107. "shasum": ""
  7108. },
  7109. "require": {
  7110. "php": ">=8.2",
  7111. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7112. },
  7113. "conflict": {
  7114. "symfony/dependency-injection": "<6.4",
  7115. "symfony/service-contracts": "<2.5"
  7116. },
  7117. "provide": {
  7118. "psr/event-dispatcher-implementation": "1.0",
  7119. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7120. },
  7121. "require-dev": {
  7122. "psr/log": "^1|^2|^3",
  7123. "symfony/config": "^6.4|^7.0",
  7124. "symfony/dependency-injection": "^6.4|^7.0",
  7125. "symfony/error-handler": "^6.4|^7.0",
  7126. "symfony/expression-language": "^6.4|^7.0",
  7127. "symfony/http-foundation": "^6.4|^7.0",
  7128. "symfony/service-contracts": "^2.5|^3",
  7129. "symfony/stopwatch": "^6.4|^7.0"
  7130. },
  7131. "type": "library",
  7132. "autoload": {
  7133. "psr-4": {
  7134. "Symfony\\Component\\EventDispatcher\\": ""
  7135. },
  7136. "exclude-from-classmap": [
  7137. "/Tests/"
  7138. ]
  7139. },
  7140. "notification-url": "https://packagist.org/downloads/",
  7141. "license": [
  7142. "MIT"
  7143. ],
  7144. "authors": [
  7145. {
  7146. "name": "Fabien Potencier",
  7147. "email": "fabien@symfony.com"
  7148. },
  7149. {
  7150. "name": "Symfony Community",
  7151. "homepage": "https://symfony.com/contributors"
  7152. }
  7153. ],
  7154. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7155. "homepage": "https://symfony.com",
  7156. "support": {
  7157. "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0"
  7158. },
  7159. "funding": [
  7160. {
  7161. "url": "https://symfony.com/sponsor",
  7162. "type": "custom"
  7163. },
  7164. {
  7165. "url": "https://github.com/fabpot",
  7166. "type": "github"
  7167. },
  7168. {
  7169. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7170. "type": "tidelift"
  7171. }
  7172. ],
  7173. "time": "2024-09-25T14:21:43+00:00"
  7174. },
  7175. {
  7176. "name": "symfony/event-dispatcher-contracts",
  7177. "version": "v3.5.1",
  7178. "source": {
  7179. "type": "git",
  7180. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7181. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  7182. },
  7183. "dist": {
  7184. "type": "zip",
  7185. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7186. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7187. "shasum": ""
  7188. },
  7189. "require": {
  7190. "php": ">=8.1",
  7191. "psr/event-dispatcher": "^1"
  7192. },
  7193. "type": "library",
  7194. "extra": {
  7195. "thanks": {
  7196. "url": "https://github.com/symfony/contracts",
  7197. "name": "symfony/contracts"
  7198. },
  7199. "branch-alias": {
  7200. "dev-main": "3.5-dev"
  7201. }
  7202. },
  7203. "autoload": {
  7204. "psr-4": {
  7205. "Symfony\\Contracts\\EventDispatcher\\": ""
  7206. }
  7207. },
  7208. "notification-url": "https://packagist.org/downloads/",
  7209. "license": [
  7210. "MIT"
  7211. ],
  7212. "authors": [
  7213. {
  7214. "name": "Nicolas Grekas",
  7215. "email": "p@tchwork.com"
  7216. },
  7217. {
  7218. "name": "Symfony Community",
  7219. "homepage": "https://symfony.com/contributors"
  7220. }
  7221. ],
  7222. "description": "Generic abstractions related to dispatching event",
  7223. "homepage": "https://symfony.com",
  7224. "keywords": [
  7225. "abstractions",
  7226. "contracts",
  7227. "decoupling",
  7228. "interfaces",
  7229. "interoperability",
  7230. "standards"
  7231. ],
  7232. "support": {
  7233. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  7234. },
  7235. "funding": [
  7236. {
  7237. "url": "https://symfony.com/sponsor",
  7238. "type": "custom"
  7239. },
  7240. {
  7241. "url": "https://github.com/fabpot",
  7242. "type": "github"
  7243. },
  7244. {
  7245. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7246. "type": "tidelift"
  7247. }
  7248. ],
  7249. "time": "2024-09-25T14:20:29+00:00"
  7250. },
  7251. {
  7252. "name": "symfony/finder",
  7253. "version": "v7.2.2",
  7254. "source": {
  7255. "type": "git",
  7256. "url": "https://github.com/symfony/finder.git",
  7257. "reference": "87a71856f2f56e4100373e92529eed3171695cfb"
  7258. },
  7259. "dist": {
  7260. "type": "zip",
  7261. "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb",
  7262. "reference": "87a71856f2f56e4100373e92529eed3171695cfb",
  7263. "shasum": ""
  7264. },
  7265. "require": {
  7266. "php": ">=8.2"
  7267. },
  7268. "require-dev": {
  7269. "symfony/filesystem": "^6.4|^7.0"
  7270. },
  7271. "type": "library",
  7272. "autoload": {
  7273. "psr-4": {
  7274. "Symfony\\Component\\Finder\\": ""
  7275. },
  7276. "exclude-from-classmap": [
  7277. "/Tests/"
  7278. ]
  7279. },
  7280. "notification-url": "https://packagist.org/downloads/",
  7281. "license": [
  7282. "MIT"
  7283. ],
  7284. "authors": [
  7285. {
  7286. "name": "Fabien Potencier",
  7287. "email": "fabien@symfony.com"
  7288. },
  7289. {
  7290. "name": "Symfony Community",
  7291. "homepage": "https://symfony.com/contributors"
  7292. }
  7293. ],
  7294. "description": "Finds files and directories via an intuitive fluent interface",
  7295. "homepage": "https://symfony.com",
  7296. "support": {
  7297. "source": "https://github.com/symfony/finder/tree/v7.2.2"
  7298. },
  7299. "funding": [
  7300. {
  7301. "url": "https://symfony.com/sponsor",
  7302. "type": "custom"
  7303. },
  7304. {
  7305. "url": "https://github.com/fabpot",
  7306. "type": "github"
  7307. },
  7308. {
  7309. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7310. "type": "tidelift"
  7311. }
  7312. ],
  7313. "time": "2024-12-30T19:00:17+00:00"
  7314. },
  7315. {
  7316. "name": "symfony/html-sanitizer",
  7317. "version": "v7.2.3",
  7318. "source": {
  7319. "type": "git",
  7320. "url": "https://github.com/symfony/html-sanitizer.git",
  7321. "reference": "91443febe34cfa5e8e00425f892e6316db95bc23"
  7322. },
  7323. "dist": {
  7324. "type": "zip",
  7325. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/91443febe34cfa5e8e00425f892e6316db95bc23",
  7326. "reference": "91443febe34cfa5e8e00425f892e6316db95bc23",
  7327. "shasum": ""
  7328. },
  7329. "require": {
  7330. "ext-dom": "*",
  7331. "league/uri": "^6.5|^7.0",
  7332. "masterminds/html5": "^2.7.2",
  7333. "php": ">=8.2"
  7334. },
  7335. "type": "library",
  7336. "autoload": {
  7337. "psr-4": {
  7338. "Symfony\\Component\\HtmlSanitizer\\": ""
  7339. },
  7340. "exclude-from-classmap": [
  7341. "/Tests/"
  7342. ]
  7343. },
  7344. "notification-url": "https://packagist.org/downloads/",
  7345. "license": [
  7346. "MIT"
  7347. ],
  7348. "authors": [
  7349. {
  7350. "name": "Titouan Galopin",
  7351. "email": "galopintitouan@gmail.com"
  7352. },
  7353. {
  7354. "name": "Symfony Community",
  7355. "homepage": "https://symfony.com/contributors"
  7356. }
  7357. ],
  7358. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7359. "homepage": "https://symfony.com",
  7360. "keywords": [
  7361. "Purifier",
  7362. "html",
  7363. "sanitizer"
  7364. ],
  7365. "support": {
  7366. "source": "https://github.com/symfony/html-sanitizer/tree/v7.2.3"
  7367. },
  7368. "funding": [
  7369. {
  7370. "url": "https://symfony.com/sponsor",
  7371. "type": "custom"
  7372. },
  7373. {
  7374. "url": "https://github.com/fabpot",
  7375. "type": "github"
  7376. },
  7377. {
  7378. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7379. "type": "tidelift"
  7380. }
  7381. ],
  7382. "time": "2025-01-27T11:08:17+00:00"
  7383. },
  7384. {
  7385. "name": "symfony/http-foundation",
  7386. "version": "v7.2.5",
  7387. "source": {
  7388. "type": "git",
  7389. "url": "https://github.com/symfony/http-foundation.git",
  7390. "reference": "371272aeb6286f8135e028ca535f8e4d6f114126"
  7391. },
  7392. "dist": {
  7393. "type": "zip",
  7394. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/371272aeb6286f8135e028ca535f8e4d6f114126",
  7395. "reference": "371272aeb6286f8135e028ca535f8e4d6f114126",
  7396. "shasum": ""
  7397. },
  7398. "require": {
  7399. "php": ">=8.2",
  7400. "symfony/deprecation-contracts": "^2.5|^3.0",
  7401. "symfony/polyfill-mbstring": "~1.1",
  7402. "symfony/polyfill-php83": "^1.27"
  7403. },
  7404. "conflict": {
  7405. "doctrine/dbal": "<3.6",
  7406. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  7407. },
  7408. "require-dev": {
  7409. "doctrine/dbal": "^3.6|^4",
  7410. "predis/predis": "^1.1|^2.0",
  7411. "symfony/cache": "^6.4.12|^7.1.5",
  7412. "symfony/dependency-injection": "^6.4|^7.0",
  7413. "symfony/expression-language": "^6.4|^7.0",
  7414. "symfony/http-kernel": "^6.4|^7.0",
  7415. "symfony/mime": "^6.4|^7.0",
  7416. "symfony/rate-limiter": "^6.4|^7.0"
  7417. },
  7418. "type": "library",
  7419. "autoload": {
  7420. "psr-4": {
  7421. "Symfony\\Component\\HttpFoundation\\": ""
  7422. },
  7423. "exclude-from-classmap": [
  7424. "/Tests/"
  7425. ]
  7426. },
  7427. "notification-url": "https://packagist.org/downloads/",
  7428. "license": [
  7429. "MIT"
  7430. ],
  7431. "authors": [
  7432. {
  7433. "name": "Fabien Potencier",
  7434. "email": "fabien@symfony.com"
  7435. },
  7436. {
  7437. "name": "Symfony Community",
  7438. "homepage": "https://symfony.com/contributors"
  7439. }
  7440. ],
  7441. "description": "Defines an object-oriented layer for the HTTP specification",
  7442. "homepage": "https://symfony.com",
  7443. "support": {
  7444. "source": "https://github.com/symfony/http-foundation/tree/v7.2.5"
  7445. },
  7446. "funding": [
  7447. {
  7448. "url": "https://symfony.com/sponsor",
  7449. "type": "custom"
  7450. },
  7451. {
  7452. "url": "https://github.com/fabpot",
  7453. "type": "github"
  7454. },
  7455. {
  7456. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7457. "type": "tidelift"
  7458. }
  7459. ],
  7460. "time": "2025-03-25T15:54:33+00:00"
  7461. },
  7462. {
  7463. "name": "symfony/http-kernel",
  7464. "version": "v7.2.5",
  7465. "source": {
  7466. "type": "git",
  7467. "url": "https://github.com/symfony/http-kernel.git",
  7468. "reference": "b1fe91bc1fa454a806d3f98db4ba826eb9941a54"
  7469. },
  7470. "dist": {
  7471. "type": "zip",
  7472. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/b1fe91bc1fa454a806d3f98db4ba826eb9941a54",
  7473. "reference": "b1fe91bc1fa454a806d3f98db4ba826eb9941a54",
  7474. "shasum": ""
  7475. },
  7476. "require": {
  7477. "php": ">=8.2",
  7478. "psr/log": "^1|^2|^3",
  7479. "symfony/deprecation-contracts": "^2.5|^3",
  7480. "symfony/error-handler": "^6.4|^7.0",
  7481. "symfony/event-dispatcher": "^6.4|^7.0",
  7482. "symfony/http-foundation": "^6.4|^7.0",
  7483. "symfony/polyfill-ctype": "^1.8"
  7484. },
  7485. "conflict": {
  7486. "symfony/browser-kit": "<6.4",
  7487. "symfony/cache": "<6.4",
  7488. "symfony/config": "<6.4",
  7489. "symfony/console": "<6.4",
  7490. "symfony/dependency-injection": "<6.4",
  7491. "symfony/doctrine-bridge": "<6.4",
  7492. "symfony/form": "<6.4",
  7493. "symfony/http-client": "<6.4",
  7494. "symfony/http-client-contracts": "<2.5",
  7495. "symfony/mailer": "<6.4",
  7496. "symfony/messenger": "<6.4",
  7497. "symfony/translation": "<6.4",
  7498. "symfony/translation-contracts": "<2.5",
  7499. "symfony/twig-bridge": "<6.4",
  7500. "symfony/validator": "<6.4",
  7501. "symfony/var-dumper": "<6.4",
  7502. "twig/twig": "<3.12"
  7503. },
  7504. "provide": {
  7505. "psr/log-implementation": "1.0|2.0|3.0"
  7506. },
  7507. "require-dev": {
  7508. "psr/cache": "^1.0|^2.0|^3.0",
  7509. "symfony/browser-kit": "^6.4|^7.0",
  7510. "symfony/clock": "^6.4|^7.0",
  7511. "symfony/config": "^6.4|^7.0",
  7512. "symfony/console": "^6.4|^7.0",
  7513. "symfony/css-selector": "^6.4|^7.0",
  7514. "symfony/dependency-injection": "^6.4|^7.0",
  7515. "symfony/dom-crawler": "^6.4|^7.0",
  7516. "symfony/expression-language": "^6.4|^7.0",
  7517. "symfony/finder": "^6.4|^7.0",
  7518. "symfony/http-client-contracts": "^2.5|^3",
  7519. "symfony/process": "^6.4|^7.0",
  7520. "symfony/property-access": "^7.1",
  7521. "symfony/routing": "^6.4|^7.0",
  7522. "symfony/serializer": "^7.1",
  7523. "symfony/stopwatch": "^6.4|^7.0",
  7524. "symfony/translation": "^6.4|^7.0",
  7525. "symfony/translation-contracts": "^2.5|^3",
  7526. "symfony/uid": "^6.4|^7.0",
  7527. "symfony/validator": "^6.4|^7.0",
  7528. "symfony/var-dumper": "^6.4|^7.0",
  7529. "symfony/var-exporter": "^6.4|^7.0",
  7530. "twig/twig": "^3.12"
  7531. },
  7532. "type": "library",
  7533. "autoload": {
  7534. "psr-4": {
  7535. "Symfony\\Component\\HttpKernel\\": ""
  7536. },
  7537. "exclude-from-classmap": [
  7538. "/Tests/"
  7539. ]
  7540. },
  7541. "notification-url": "https://packagist.org/downloads/",
  7542. "license": [
  7543. "MIT"
  7544. ],
  7545. "authors": [
  7546. {
  7547. "name": "Fabien Potencier",
  7548. "email": "fabien@symfony.com"
  7549. },
  7550. {
  7551. "name": "Symfony Community",
  7552. "homepage": "https://symfony.com/contributors"
  7553. }
  7554. ],
  7555. "description": "Provides a structured process for converting a Request into a Response",
  7556. "homepage": "https://symfony.com",
  7557. "support": {
  7558. "source": "https://github.com/symfony/http-kernel/tree/v7.2.5"
  7559. },
  7560. "funding": [
  7561. {
  7562. "url": "https://symfony.com/sponsor",
  7563. "type": "custom"
  7564. },
  7565. {
  7566. "url": "https://github.com/fabpot",
  7567. "type": "github"
  7568. },
  7569. {
  7570. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7571. "type": "tidelift"
  7572. }
  7573. ],
  7574. "time": "2025-03-28T13:32:50+00:00"
  7575. },
  7576. {
  7577. "name": "symfony/intl",
  7578. "version": "v6.4.15",
  7579. "source": {
  7580. "type": "git",
  7581. "url": "https://github.com/symfony/intl.git",
  7582. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6"
  7583. },
  7584. "dist": {
  7585. "type": "zip",
  7586. "url": "https://api.github.com/repos/symfony/intl/zipball/b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  7587. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  7588. "shasum": ""
  7589. },
  7590. "require": {
  7591. "php": ">=8.1"
  7592. },
  7593. "require-dev": {
  7594. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7595. "symfony/finder": "^5.4|^6.0|^7.0",
  7596. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7597. },
  7598. "type": "library",
  7599. "autoload": {
  7600. "psr-4": {
  7601. "Symfony\\Component\\Intl\\": ""
  7602. },
  7603. "exclude-from-classmap": [
  7604. "/Tests/",
  7605. "/Resources/data/"
  7606. ]
  7607. },
  7608. "notification-url": "https://packagist.org/downloads/",
  7609. "license": [
  7610. "MIT"
  7611. ],
  7612. "authors": [
  7613. {
  7614. "name": "Bernhard Schussek",
  7615. "email": "bschussek@gmail.com"
  7616. },
  7617. {
  7618. "name": "Eriksen Costa",
  7619. "email": "eriksen.costa@infranology.com.br"
  7620. },
  7621. {
  7622. "name": "Igor Wiedler",
  7623. "email": "igor@wiedler.ch"
  7624. },
  7625. {
  7626. "name": "Symfony Community",
  7627. "homepage": "https://symfony.com/contributors"
  7628. }
  7629. ],
  7630. "description": "Provides access to the localization data of the ICU library",
  7631. "homepage": "https://symfony.com",
  7632. "keywords": [
  7633. "i18n",
  7634. "icu",
  7635. "internationalization",
  7636. "intl",
  7637. "l10n",
  7638. "localization"
  7639. ],
  7640. "support": {
  7641. "source": "https://github.com/symfony/intl/tree/v6.4.15"
  7642. },
  7643. "funding": [
  7644. {
  7645. "url": "https://symfony.com/sponsor",
  7646. "type": "custom"
  7647. },
  7648. {
  7649. "url": "https://github.com/fabpot",
  7650. "type": "github"
  7651. },
  7652. {
  7653. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7654. "type": "tidelift"
  7655. }
  7656. ],
  7657. "time": "2024-11-08T15:28:48+00:00"
  7658. },
  7659. {
  7660. "name": "symfony/mailer",
  7661. "version": "v7.2.3",
  7662. "source": {
  7663. "type": "git",
  7664. "url": "https://github.com/symfony/mailer.git",
  7665. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3"
  7666. },
  7667. "dist": {
  7668. "type": "zip",
  7669. "url": "https://api.github.com/repos/symfony/mailer/zipball/f3871b182c44997cf039f3b462af4a48fb85f9d3",
  7670. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3",
  7671. "shasum": ""
  7672. },
  7673. "require": {
  7674. "egulias/email-validator": "^2.1.10|^3|^4",
  7675. "php": ">=8.2",
  7676. "psr/event-dispatcher": "^1",
  7677. "psr/log": "^1|^2|^3",
  7678. "symfony/event-dispatcher": "^6.4|^7.0",
  7679. "symfony/mime": "^7.2",
  7680. "symfony/service-contracts": "^2.5|^3"
  7681. },
  7682. "conflict": {
  7683. "symfony/http-client-contracts": "<2.5",
  7684. "symfony/http-kernel": "<6.4",
  7685. "symfony/messenger": "<6.4",
  7686. "symfony/mime": "<6.4",
  7687. "symfony/twig-bridge": "<6.4"
  7688. },
  7689. "require-dev": {
  7690. "symfony/console": "^6.4|^7.0",
  7691. "symfony/http-client": "^6.4|^7.0",
  7692. "symfony/messenger": "^6.4|^7.0",
  7693. "symfony/twig-bridge": "^6.4|^7.0"
  7694. },
  7695. "type": "library",
  7696. "autoload": {
  7697. "psr-4": {
  7698. "Symfony\\Component\\Mailer\\": ""
  7699. },
  7700. "exclude-from-classmap": [
  7701. "/Tests/"
  7702. ]
  7703. },
  7704. "notification-url": "https://packagist.org/downloads/",
  7705. "license": [
  7706. "MIT"
  7707. ],
  7708. "authors": [
  7709. {
  7710. "name": "Fabien Potencier",
  7711. "email": "fabien@symfony.com"
  7712. },
  7713. {
  7714. "name": "Symfony Community",
  7715. "homepage": "https://symfony.com/contributors"
  7716. }
  7717. ],
  7718. "description": "Helps sending emails",
  7719. "homepage": "https://symfony.com",
  7720. "support": {
  7721. "source": "https://github.com/symfony/mailer/tree/v7.2.3"
  7722. },
  7723. "funding": [
  7724. {
  7725. "url": "https://symfony.com/sponsor",
  7726. "type": "custom"
  7727. },
  7728. {
  7729. "url": "https://github.com/fabpot",
  7730. "type": "github"
  7731. },
  7732. {
  7733. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7734. "type": "tidelift"
  7735. }
  7736. ],
  7737. "time": "2025-01-27T11:08:17+00:00"
  7738. },
  7739. {
  7740. "name": "symfony/mime",
  7741. "version": "v7.2.4",
  7742. "source": {
  7743. "type": "git",
  7744. "url": "https://github.com/symfony/mime.git",
  7745. "reference": "87ca22046b78c3feaff04b337f33b38510fd686b"
  7746. },
  7747. "dist": {
  7748. "type": "zip",
  7749. "url": "https://api.github.com/repos/symfony/mime/zipball/87ca22046b78c3feaff04b337f33b38510fd686b",
  7750. "reference": "87ca22046b78c3feaff04b337f33b38510fd686b",
  7751. "shasum": ""
  7752. },
  7753. "require": {
  7754. "php": ">=8.2",
  7755. "symfony/polyfill-intl-idn": "^1.10",
  7756. "symfony/polyfill-mbstring": "^1.0"
  7757. },
  7758. "conflict": {
  7759. "egulias/email-validator": "~3.0.0",
  7760. "phpdocumentor/reflection-docblock": "<3.2.2",
  7761. "phpdocumentor/type-resolver": "<1.4.0",
  7762. "symfony/mailer": "<6.4",
  7763. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7764. },
  7765. "require-dev": {
  7766. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7767. "league/html-to-markdown": "^5.0",
  7768. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7769. "symfony/dependency-injection": "^6.4|^7.0",
  7770. "symfony/process": "^6.4|^7.0",
  7771. "symfony/property-access": "^6.4|^7.0",
  7772. "symfony/property-info": "^6.4|^7.0",
  7773. "symfony/serializer": "^6.4.3|^7.0.3"
  7774. },
  7775. "type": "library",
  7776. "autoload": {
  7777. "psr-4": {
  7778. "Symfony\\Component\\Mime\\": ""
  7779. },
  7780. "exclude-from-classmap": [
  7781. "/Tests/"
  7782. ]
  7783. },
  7784. "notification-url": "https://packagist.org/downloads/",
  7785. "license": [
  7786. "MIT"
  7787. ],
  7788. "authors": [
  7789. {
  7790. "name": "Fabien Potencier",
  7791. "email": "fabien@symfony.com"
  7792. },
  7793. {
  7794. "name": "Symfony Community",
  7795. "homepage": "https://symfony.com/contributors"
  7796. }
  7797. ],
  7798. "description": "Allows manipulating MIME messages",
  7799. "homepage": "https://symfony.com",
  7800. "keywords": [
  7801. "mime",
  7802. "mime-type"
  7803. ],
  7804. "support": {
  7805. "source": "https://github.com/symfony/mime/tree/v7.2.4"
  7806. },
  7807. "funding": [
  7808. {
  7809. "url": "https://symfony.com/sponsor",
  7810. "type": "custom"
  7811. },
  7812. {
  7813. "url": "https://github.com/fabpot",
  7814. "type": "github"
  7815. },
  7816. {
  7817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7818. "type": "tidelift"
  7819. }
  7820. ],
  7821. "time": "2025-02-19T08:51:20+00:00"
  7822. },
  7823. {
  7824. "name": "symfony/polyfill-ctype",
  7825. "version": "v1.31.0",
  7826. "source": {
  7827. "type": "git",
  7828. "url": "https://github.com/symfony/polyfill-ctype.git",
  7829. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7830. },
  7831. "dist": {
  7832. "type": "zip",
  7833. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7834. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7835. "shasum": ""
  7836. },
  7837. "require": {
  7838. "php": ">=7.2"
  7839. },
  7840. "provide": {
  7841. "ext-ctype": "*"
  7842. },
  7843. "suggest": {
  7844. "ext-ctype": "For best performance"
  7845. },
  7846. "type": "library",
  7847. "extra": {
  7848. "thanks": {
  7849. "url": "https://github.com/symfony/polyfill",
  7850. "name": "symfony/polyfill"
  7851. }
  7852. },
  7853. "autoload": {
  7854. "files": [
  7855. "bootstrap.php"
  7856. ],
  7857. "psr-4": {
  7858. "Symfony\\Polyfill\\Ctype\\": ""
  7859. }
  7860. },
  7861. "notification-url": "https://packagist.org/downloads/",
  7862. "license": [
  7863. "MIT"
  7864. ],
  7865. "authors": [
  7866. {
  7867. "name": "Gert de Pagter",
  7868. "email": "BackEndTea@gmail.com"
  7869. },
  7870. {
  7871. "name": "Symfony Community",
  7872. "homepage": "https://symfony.com/contributors"
  7873. }
  7874. ],
  7875. "description": "Symfony polyfill for ctype functions",
  7876. "homepage": "https://symfony.com",
  7877. "keywords": [
  7878. "compatibility",
  7879. "ctype",
  7880. "polyfill",
  7881. "portable"
  7882. ],
  7883. "support": {
  7884. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7885. },
  7886. "funding": [
  7887. {
  7888. "url": "https://symfony.com/sponsor",
  7889. "type": "custom"
  7890. },
  7891. {
  7892. "url": "https://github.com/fabpot",
  7893. "type": "github"
  7894. },
  7895. {
  7896. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7897. "type": "tidelift"
  7898. }
  7899. ],
  7900. "time": "2024-09-09T11:45:10+00:00"
  7901. },
  7902. {
  7903. "name": "symfony/polyfill-intl-grapheme",
  7904. "version": "v1.31.0",
  7905. "source": {
  7906. "type": "git",
  7907. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7908. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7909. },
  7910. "dist": {
  7911. "type": "zip",
  7912. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7913. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7914. "shasum": ""
  7915. },
  7916. "require": {
  7917. "php": ">=7.2"
  7918. },
  7919. "suggest": {
  7920. "ext-intl": "For best performance"
  7921. },
  7922. "type": "library",
  7923. "extra": {
  7924. "thanks": {
  7925. "url": "https://github.com/symfony/polyfill",
  7926. "name": "symfony/polyfill"
  7927. }
  7928. },
  7929. "autoload": {
  7930. "files": [
  7931. "bootstrap.php"
  7932. ],
  7933. "psr-4": {
  7934. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7935. }
  7936. },
  7937. "notification-url": "https://packagist.org/downloads/",
  7938. "license": [
  7939. "MIT"
  7940. ],
  7941. "authors": [
  7942. {
  7943. "name": "Nicolas Grekas",
  7944. "email": "p@tchwork.com"
  7945. },
  7946. {
  7947. "name": "Symfony Community",
  7948. "homepage": "https://symfony.com/contributors"
  7949. }
  7950. ],
  7951. "description": "Symfony polyfill for intl's grapheme_* functions",
  7952. "homepage": "https://symfony.com",
  7953. "keywords": [
  7954. "compatibility",
  7955. "grapheme",
  7956. "intl",
  7957. "polyfill",
  7958. "portable",
  7959. "shim"
  7960. ],
  7961. "support": {
  7962. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7963. },
  7964. "funding": [
  7965. {
  7966. "url": "https://symfony.com/sponsor",
  7967. "type": "custom"
  7968. },
  7969. {
  7970. "url": "https://github.com/fabpot",
  7971. "type": "github"
  7972. },
  7973. {
  7974. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7975. "type": "tidelift"
  7976. }
  7977. ],
  7978. "time": "2024-09-09T11:45:10+00:00"
  7979. },
  7980. {
  7981. "name": "symfony/polyfill-intl-idn",
  7982. "version": "v1.31.0",
  7983. "source": {
  7984. "type": "git",
  7985. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7986. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7987. },
  7988. "dist": {
  7989. "type": "zip",
  7990. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7991. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7992. "shasum": ""
  7993. },
  7994. "require": {
  7995. "php": ">=7.2",
  7996. "symfony/polyfill-intl-normalizer": "^1.10"
  7997. },
  7998. "suggest": {
  7999. "ext-intl": "For best performance"
  8000. },
  8001. "type": "library",
  8002. "extra": {
  8003. "thanks": {
  8004. "url": "https://github.com/symfony/polyfill",
  8005. "name": "symfony/polyfill"
  8006. }
  8007. },
  8008. "autoload": {
  8009. "files": [
  8010. "bootstrap.php"
  8011. ],
  8012. "psr-4": {
  8013. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8014. }
  8015. },
  8016. "notification-url": "https://packagist.org/downloads/",
  8017. "license": [
  8018. "MIT"
  8019. ],
  8020. "authors": [
  8021. {
  8022. "name": "Laurent Bassin",
  8023. "email": "laurent@bassin.info"
  8024. },
  8025. {
  8026. "name": "Trevor Rowbotham",
  8027. "email": "trevor.rowbotham@pm.me"
  8028. },
  8029. {
  8030. "name": "Symfony Community",
  8031. "homepage": "https://symfony.com/contributors"
  8032. }
  8033. ],
  8034. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8035. "homepage": "https://symfony.com",
  8036. "keywords": [
  8037. "compatibility",
  8038. "idn",
  8039. "intl",
  8040. "polyfill",
  8041. "portable",
  8042. "shim"
  8043. ],
  8044. "support": {
  8045. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  8046. },
  8047. "funding": [
  8048. {
  8049. "url": "https://symfony.com/sponsor",
  8050. "type": "custom"
  8051. },
  8052. {
  8053. "url": "https://github.com/fabpot",
  8054. "type": "github"
  8055. },
  8056. {
  8057. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8058. "type": "tidelift"
  8059. }
  8060. ],
  8061. "time": "2024-09-09T11:45:10+00:00"
  8062. },
  8063. {
  8064. "name": "symfony/polyfill-intl-normalizer",
  8065. "version": "v1.31.0",
  8066. "source": {
  8067. "type": "git",
  8068. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8069. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8070. },
  8071. "dist": {
  8072. "type": "zip",
  8073. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8074. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8075. "shasum": ""
  8076. },
  8077. "require": {
  8078. "php": ">=7.2"
  8079. },
  8080. "suggest": {
  8081. "ext-intl": "For best performance"
  8082. },
  8083. "type": "library",
  8084. "extra": {
  8085. "thanks": {
  8086. "url": "https://github.com/symfony/polyfill",
  8087. "name": "symfony/polyfill"
  8088. }
  8089. },
  8090. "autoload": {
  8091. "files": [
  8092. "bootstrap.php"
  8093. ],
  8094. "psr-4": {
  8095. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8096. },
  8097. "classmap": [
  8098. "Resources/stubs"
  8099. ]
  8100. },
  8101. "notification-url": "https://packagist.org/downloads/",
  8102. "license": [
  8103. "MIT"
  8104. ],
  8105. "authors": [
  8106. {
  8107. "name": "Nicolas Grekas",
  8108. "email": "p@tchwork.com"
  8109. },
  8110. {
  8111. "name": "Symfony Community",
  8112. "homepage": "https://symfony.com/contributors"
  8113. }
  8114. ],
  8115. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8116. "homepage": "https://symfony.com",
  8117. "keywords": [
  8118. "compatibility",
  8119. "intl",
  8120. "normalizer",
  8121. "polyfill",
  8122. "portable",
  8123. "shim"
  8124. ],
  8125. "support": {
  8126. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  8127. },
  8128. "funding": [
  8129. {
  8130. "url": "https://symfony.com/sponsor",
  8131. "type": "custom"
  8132. },
  8133. {
  8134. "url": "https://github.com/fabpot",
  8135. "type": "github"
  8136. },
  8137. {
  8138. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8139. "type": "tidelift"
  8140. }
  8141. ],
  8142. "time": "2024-09-09T11:45:10+00:00"
  8143. },
  8144. {
  8145. "name": "symfony/polyfill-mbstring",
  8146. "version": "v1.31.0",
  8147. "source": {
  8148. "type": "git",
  8149. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8150. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  8151. },
  8152. "dist": {
  8153. "type": "zip",
  8154. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8155. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8156. "shasum": ""
  8157. },
  8158. "require": {
  8159. "php": ">=7.2"
  8160. },
  8161. "provide": {
  8162. "ext-mbstring": "*"
  8163. },
  8164. "suggest": {
  8165. "ext-mbstring": "For best performance"
  8166. },
  8167. "type": "library",
  8168. "extra": {
  8169. "thanks": {
  8170. "url": "https://github.com/symfony/polyfill",
  8171. "name": "symfony/polyfill"
  8172. }
  8173. },
  8174. "autoload": {
  8175. "files": [
  8176. "bootstrap.php"
  8177. ],
  8178. "psr-4": {
  8179. "Symfony\\Polyfill\\Mbstring\\": ""
  8180. }
  8181. },
  8182. "notification-url": "https://packagist.org/downloads/",
  8183. "license": [
  8184. "MIT"
  8185. ],
  8186. "authors": [
  8187. {
  8188. "name": "Nicolas Grekas",
  8189. "email": "p@tchwork.com"
  8190. },
  8191. {
  8192. "name": "Symfony Community",
  8193. "homepage": "https://symfony.com/contributors"
  8194. }
  8195. ],
  8196. "description": "Symfony polyfill for the Mbstring extension",
  8197. "homepage": "https://symfony.com",
  8198. "keywords": [
  8199. "compatibility",
  8200. "mbstring",
  8201. "polyfill",
  8202. "portable",
  8203. "shim"
  8204. ],
  8205. "support": {
  8206. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  8207. },
  8208. "funding": [
  8209. {
  8210. "url": "https://symfony.com/sponsor",
  8211. "type": "custom"
  8212. },
  8213. {
  8214. "url": "https://github.com/fabpot",
  8215. "type": "github"
  8216. },
  8217. {
  8218. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8219. "type": "tidelift"
  8220. }
  8221. ],
  8222. "time": "2024-09-09T11:45:10+00:00"
  8223. },
  8224. {
  8225. "name": "symfony/polyfill-php80",
  8226. "version": "v1.31.0",
  8227. "source": {
  8228. "type": "git",
  8229. "url": "https://github.com/symfony/polyfill-php80.git",
  8230. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8231. },
  8232. "dist": {
  8233. "type": "zip",
  8234. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8235. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8236. "shasum": ""
  8237. },
  8238. "require": {
  8239. "php": ">=7.2"
  8240. },
  8241. "type": "library",
  8242. "extra": {
  8243. "thanks": {
  8244. "url": "https://github.com/symfony/polyfill",
  8245. "name": "symfony/polyfill"
  8246. }
  8247. },
  8248. "autoload": {
  8249. "files": [
  8250. "bootstrap.php"
  8251. ],
  8252. "psr-4": {
  8253. "Symfony\\Polyfill\\Php80\\": ""
  8254. },
  8255. "classmap": [
  8256. "Resources/stubs"
  8257. ]
  8258. },
  8259. "notification-url": "https://packagist.org/downloads/",
  8260. "license": [
  8261. "MIT"
  8262. ],
  8263. "authors": [
  8264. {
  8265. "name": "Ion Bazan",
  8266. "email": "ion.bazan@gmail.com"
  8267. },
  8268. {
  8269. "name": "Nicolas Grekas",
  8270. "email": "p@tchwork.com"
  8271. },
  8272. {
  8273. "name": "Symfony Community",
  8274. "homepage": "https://symfony.com/contributors"
  8275. }
  8276. ],
  8277. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8278. "homepage": "https://symfony.com",
  8279. "keywords": [
  8280. "compatibility",
  8281. "polyfill",
  8282. "portable",
  8283. "shim"
  8284. ],
  8285. "support": {
  8286. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8287. },
  8288. "funding": [
  8289. {
  8290. "url": "https://symfony.com/sponsor",
  8291. "type": "custom"
  8292. },
  8293. {
  8294. "url": "https://github.com/fabpot",
  8295. "type": "github"
  8296. },
  8297. {
  8298. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8299. "type": "tidelift"
  8300. }
  8301. ],
  8302. "time": "2024-09-09T11:45:10+00:00"
  8303. },
  8304. {
  8305. "name": "symfony/polyfill-php83",
  8306. "version": "v1.31.0",
  8307. "source": {
  8308. "type": "git",
  8309. "url": "https://github.com/symfony/polyfill-php83.git",
  8310. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  8311. },
  8312. "dist": {
  8313. "type": "zip",
  8314. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  8315. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  8316. "shasum": ""
  8317. },
  8318. "require": {
  8319. "php": ">=7.2"
  8320. },
  8321. "type": "library",
  8322. "extra": {
  8323. "thanks": {
  8324. "url": "https://github.com/symfony/polyfill",
  8325. "name": "symfony/polyfill"
  8326. }
  8327. },
  8328. "autoload": {
  8329. "files": [
  8330. "bootstrap.php"
  8331. ],
  8332. "psr-4": {
  8333. "Symfony\\Polyfill\\Php83\\": ""
  8334. },
  8335. "classmap": [
  8336. "Resources/stubs"
  8337. ]
  8338. },
  8339. "notification-url": "https://packagist.org/downloads/",
  8340. "license": [
  8341. "MIT"
  8342. ],
  8343. "authors": [
  8344. {
  8345. "name": "Nicolas Grekas",
  8346. "email": "p@tchwork.com"
  8347. },
  8348. {
  8349. "name": "Symfony Community",
  8350. "homepage": "https://symfony.com/contributors"
  8351. }
  8352. ],
  8353. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8354. "homepage": "https://symfony.com",
  8355. "keywords": [
  8356. "compatibility",
  8357. "polyfill",
  8358. "portable",
  8359. "shim"
  8360. ],
  8361. "support": {
  8362. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  8363. },
  8364. "funding": [
  8365. {
  8366. "url": "https://symfony.com/sponsor",
  8367. "type": "custom"
  8368. },
  8369. {
  8370. "url": "https://github.com/fabpot",
  8371. "type": "github"
  8372. },
  8373. {
  8374. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8375. "type": "tidelift"
  8376. }
  8377. ],
  8378. "time": "2024-09-09T11:45:10+00:00"
  8379. },
  8380. {
  8381. "name": "symfony/polyfill-uuid",
  8382. "version": "v1.31.0",
  8383. "source": {
  8384. "type": "git",
  8385. "url": "https://github.com/symfony/polyfill-uuid.git",
  8386. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  8387. },
  8388. "dist": {
  8389. "type": "zip",
  8390. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8391. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8392. "shasum": ""
  8393. },
  8394. "require": {
  8395. "php": ">=7.2"
  8396. },
  8397. "provide": {
  8398. "ext-uuid": "*"
  8399. },
  8400. "suggest": {
  8401. "ext-uuid": "For best performance"
  8402. },
  8403. "type": "library",
  8404. "extra": {
  8405. "thanks": {
  8406. "url": "https://github.com/symfony/polyfill",
  8407. "name": "symfony/polyfill"
  8408. }
  8409. },
  8410. "autoload": {
  8411. "files": [
  8412. "bootstrap.php"
  8413. ],
  8414. "psr-4": {
  8415. "Symfony\\Polyfill\\Uuid\\": ""
  8416. }
  8417. },
  8418. "notification-url": "https://packagist.org/downloads/",
  8419. "license": [
  8420. "MIT"
  8421. ],
  8422. "authors": [
  8423. {
  8424. "name": "Grégoire Pineau",
  8425. "email": "lyrixx@lyrixx.info"
  8426. },
  8427. {
  8428. "name": "Symfony Community",
  8429. "homepage": "https://symfony.com/contributors"
  8430. }
  8431. ],
  8432. "description": "Symfony polyfill for uuid functions",
  8433. "homepage": "https://symfony.com",
  8434. "keywords": [
  8435. "compatibility",
  8436. "polyfill",
  8437. "portable",
  8438. "uuid"
  8439. ],
  8440. "support": {
  8441. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  8442. },
  8443. "funding": [
  8444. {
  8445. "url": "https://symfony.com/sponsor",
  8446. "type": "custom"
  8447. },
  8448. {
  8449. "url": "https://github.com/fabpot",
  8450. "type": "github"
  8451. },
  8452. {
  8453. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8454. "type": "tidelift"
  8455. }
  8456. ],
  8457. "time": "2024-09-09T11:45:10+00:00"
  8458. },
  8459. {
  8460. "name": "symfony/process",
  8461. "version": "v7.2.5",
  8462. "source": {
  8463. "type": "git",
  8464. "url": "https://github.com/symfony/process.git",
  8465. "reference": "87b7c93e57df9d8e39a093d32587702380ff045d"
  8466. },
  8467. "dist": {
  8468. "type": "zip",
  8469. "url": "https://api.github.com/repos/symfony/process/zipball/87b7c93e57df9d8e39a093d32587702380ff045d",
  8470. "reference": "87b7c93e57df9d8e39a093d32587702380ff045d",
  8471. "shasum": ""
  8472. },
  8473. "require": {
  8474. "php": ">=8.2"
  8475. },
  8476. "type": "library",
  8477. "autoload": {
  8478. "psr-4": {
  8479. "Symfony\\Component\\Process\\": ""
  8480. },
  8481. "exclude-from-classmap": [
  8482. "/Tests/"
  8483. ]
  8484. },
  8485. "notification-url": "https://packagist.org/downloads/",
  8486. "license": [
  8487. "MIT"
  8488. ],
  8489. "authors": [
  8490. {
  8491. "name": "Fabien Potencier",
  8492. "email": "fabien@symfony.com"
  8493. },
  8494. {
  8495. "name": "Symfony Community",
  8496. "homepage": "https://symfony.com/contributors"
  8497. }
  8498. ],
  8499. "description": "Executes commands in sub-processes",
  8500. "homepage": "https://symfony.com",
  8501. "support": {
  8502. "source": "https://github.com/symfony/process/tree/v7.2.5"
  8503. },
  8504. "funding": [
  8505. {
  8506. "url": "https://symfony.com/sponsor",
  8507. "type": "custom"
  8508. },
  8509. {
  8510. "url": "https://github.com/fabpot",
  8511. "type": "github"
  8512. },
  8513. {
  8514. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8515. "type": "tidelift"
  8516. }
  8517. ],
  8518. "time": "2025-03-13T12:21:46+00:00"
  8519. },
  8520. {
  8521. "name": "symfony/routing",
  8522. "version": "v7.2.3",
  8523. "source": {
  8524. "type": "git",
  8525. "url": "https://github.com/symfony/routing.git",
  8526. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996"
  8527. },
  8528. "dist": {
  8529. "type": "zip",
  8530. "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996",
  8531. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996",
  8532. "shasum": ""
  8533. },
  8534. "require": {
  8535. "php": ">=8.2",
  8536. "symfony/deprecation-contracts": "^2.5|^3"
  8537. },
  8538. "conflict": {
  8539. "symfony/config": "<6.4",
  8540. "symfony/dependency-injection": "<6.4",
  8541. "symfony/yaml": "<6.4"
  8542. },
  8543. "require-dev": {
  8544. "psr/log": "^1|^2|^3",
  8545. "symfony/config": "^6.4|^7.0",
  8546. "symfony/dependency-injection": "^6.4|^7.0",
  8547. "symfony/expression-language": "^6.4|^7.0",
  8548. "symfony/http-foundation": "^6.4|^7.0",
  8549. "symfony/yaml": "^6.4|^7.0"
  8550. },
  8551. "type": "library",
  8552. "autoload": {
  8553. "psr-4": {
  8554. "Symfony\\Component\\Routing\\": ""
  8555. },
  8556. "exclude-from-classmap": [
  8557. "/Tests/"
  8558. ]
  8559. },
  8560. "notification-url": "https://packagist.org/downloads/",
  8561. "license": [
  8562. "MIT"
  8563. ],
  8564. "authors": [
  8565. {
  8566. "name": "Fabien Potencier",
  8567. "email": "fabien@symfony.com"
  8568. },
  8569. {
  8570. "name": "Symfony Community",
  8571. "homepage": "https://symfony.com/contributors"
  8572. }
  8573. ],
  8574. "description": "Maps an HTTP request to a set of configuration variables",
  8575. "homepage": "https://symfony.com",
  8576. "keywords": [
  8577. "router",
  8578. "routing",
  8579. "uri",
  8580. "url"
  8581. ],
  8582. "support": {
  8583. "source": "https://github.com/symfony/routing/tree/v7.2.3"
  8584. },
  8585. "funding": [
  8586. {
  8587. "url": "https://symfony.com/sponsor",
  8588. "type": "custom"
  8589. },
  8590. {
  8591. "url": "https://github.com/fabpot",
  8592. "type": "github"
  8593. },
  8594. {
  8595. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8596. "type": "tidelift"
  8597. }
  8598. ],
  8599. "time": "2025-01-17T10:56:55+00:00"
  8600. },
  8601. {
  8602. "name": "symfony/service-contracts",
  8603. "version": "v3.5.1",
  8604. "source": {
  8605. "type": "git",
  8606. "url": "https://github.com/symfony/service-contracts.git",
  8607. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  8608. },
  8609. "dist": {
  8610. "type": "zip",
  8611. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8612. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8613. "shasum": ""
  8614. },
  8615. "require": {
  8616. "php": ">=8.1",
  8617. "psr/container": "^1.1|^2.0",
  8618. "symfony/deprecation-contracts": "^2.5|^3"
  8619. },
  8620. "conflict": {
  8621. "ext-psr": "<1.1|>=2"
  8622. },
  8623. "type": "library",
  8624. "extra": {
  8625. "thanks": {
  8626. "url": "https://github.com/symfony/contracts",
  8627. "name": "symfony/contracts"
  8628. },
  8629. "branch-alias": {
  8630. "dev-main": "3.5-dev"
  8631. }
  8632. },
  8633. "autoload": {
  8634. "psr-4": {
  8635. "Symfony\\Contracts\\Service\\": ""
  8636. },
  8637. "exclude-from-classmap": [
  8638. "/Test/"
  8639. ]
  8640. },
  8641. "notification-url": "https://packagist.org/downloads/",
  8642. "license": [
  8643. "MIT"
  8644. ],
  8645. "authors": [
  8646. {
  8647. "name": "Nicolas Grekas",
  8648. "email": "p@tchwork.com"
  8649. },
  8650. {
  8651. "name": "Symfony Community",
  8652. "homepage": "https://symfony.com/contributors"
  8653. }
  8654. ],
  8655. "description": "Generic abstractions related to writing services",
  8656. "homepage": "https://symfony.com",
  8657. "keywords": [
  8658. "abstractions",
  8659. "contracts",
  8660. "decoupling",
  8661. "interfaces",
  8662. "interoperability",
  8663. "standards"
  8664. ],
  8665. "support": {
  8666. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  8667. },
  8668. "funding": [
  8669. {
  8670. "url": "https://symfony.com/sponsor",
  8671. "type": "custom"
  8672. },
  8673. {
  8674. "url": "https://github.com/fabpot",
  8675. "type": "github"
  8676. },
  8677. {
  8678. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8679. "type": "tidelift"
  8680. }
  8681. ],
  8682. "time": "2024-09-25T14:20:29+00:00"
  8683. },
  8684. {
  8685. "name": "symfony/string",
  8686. "version": "v7.2.0",
  8687. "source": {
  8688. "type": "git",
  8689. "url": "https://github.com/symfony/string.git",
  8690. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82"
  8691. },
  8692. "dist": {
  8693. "type": "zip",
  8694. "url": "https://api.github.com/repos/symfony/string/zipball/446e0d146f991dde3e73f45f2c97a9faad773c82",
  8695. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82",
  8696. "shasum": ""
  8697. },
  8698. "require": {
  8699. "php": ">=8.2",
  8700. "symfony/polyfill-ctype": "~1.8",
  8701. "symfony/polyfill-intl-grapheme": "~1.0",
  8702. "symfony/polyfill-intl-normalizer": "~1.0",
  8703. "symfony/polyfill-mbstring": "~1.0"
  8704. },
  8705. "conflict": {
  8706. "symfony/translation-contracts": "<2.5"
  8707. },
  8708. "require-dev": {
  8709. "symfony/emoji": "^7.1",
  8710. "symfony/error-handler": "^6.4|^7.0",
  8711. "symfony/http-client": "^6.4|^7.0",
  8712. "symfony/intl": "^6.4|^7.0",
  8713. "symfony/translation-contracts": "^2.5|^3.0",
  8714. "symfony/var-exporter": "^6.4|^7.0"
  8715. },
  8716. "type": "library",
  8717. "autoload": {
  8718. "files": [
  8719. "Resources/functions.php"
  8720. ],
  8721. "psr-4": {
  8722. "Symfony\\Component\\String\\": ""
  8723. },
  8724. "exclude-from-classmap": [
  8725. "/Tests/"
  8726. ]
  8727. },
  8728. "notification-url": "https://packagist.org/downloads/",
  8729. "license": [
  8730. "MIT"
  8731. ],
  8732. "authors": [
  8733. {
  8734. "name": "Nicolas Grekas",
  8735. "email": "p@tchwork.com"
  8736. },
  8737. {
  8738. "name": "Symfony Community",
  8739. "homepage": "https://symfony.com/contributors"
  8740. }
  8741. ],
  8742. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8743. "homepage": "https://symfony.com",
  8744. "keywords": [
  8745. "grapheme",
  8746. "i18n",
  8747. "string",
  8748. "unicode",
  8749. "utf-8",
  8750. "utf8"
  8751. ],
  8752. "support": {
  8753. "source": "https://github.com/symfony/string/tree/v7.2.0"
  8754. },
  8755. "funding": [
  8756. {
  8757. "url": "https://symfony.com/sponsor",
  8758. "type": "custom"
  8759. },
  8760. {
  8761. "url": "https://github.com/fabpot",
  8762. "type": "github"
  8763. },
  8764. {
  8765. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8766. "type": "tidelift"
  8767. }
  8768. ],
  8769. "time": "2024-11-13T13:31:26+00:00"
  8770. },
  8771. {
  8772. "name": "symfony/translation",
  8773. "version": "v7.2.4",
  8774. "source": {
  8775. "type": "git",
  8776. "url": "https://github.com/symfony/translation.git",
  8777. "reference": "283856e6981286cc0d800b53bd5703e8e363f05a"
  8778. },
  8779. "dist": {
  8780. "type": "zip",
  8781. "url": "https://api.github.com/repos/symfony/translation/zipball/283856e6981286cc0d800b53bd5703e8e363f05a",
  8782. "reference": "283856e6981286cc0d800b53bd5703e8e363f05a",
  8783. "shasum": ""
  8784. },
  8785. "require": {
  8786. "php": ">=8.2",
  8787. "symfony/deprecation-contracts": "^2.5|^3",
  8788. "symfony/polyfill-mbstring": "~1.0",
  8789. "symfony/translation-contracts": "^2.5|^3.0"
  8790. },
  8791. "conflict": {
  8792. "symfony/config": "<6.4",
  8793. "symfony/console": "<6.4",
  8794. "symfony/dependency-injection": "<6.4",
  8795. "symfony/http-client-contracts": "<2.5",
  8796. "symfony/http-kernel": "<6.4",
  8797. "symfony/service-contracts": "<2.5",
  8798. "symfony/twig-bundle": "<6.4",
  8799. "symfony/yaml": "<6.4"
  8800. },
  8801. "provide": {
  8802. "symfony/translation-implementation": "2.3|3.0"
  8803. },
  8804. "require-dev": {
  8805. "nikic/php-parser": "^4.18|^5.0",
  8806. "psr/log": "^1|^2|^3",
  8807. "symfony/config": "^6.4|^7.0",
  8808. "symfony/console": "^6.4|^7.0",
  8809. "symfony/dependency-injection": "^6.4|^7.0",
  8810. "symfony/finder": "^6.4|^7.0",
  8811. "symfony/http-client-contracts": "^2.5|^3.0",
  8812. "symfony/http-kernel": "^6.4|^7.0",
  8813. "symfony/intl": "^6.4|^7.0",
  8814. "symfony/polyfill-intl-icu": "^1.21",
  8815. "symfony/routing": "^6.4|^7.0",
  8816. "symfony/service-contracts": "^2.5|^3",
  8817. "symfony/yaml": "^6.4|^7.0"
  8818. },
  8819. "type": "library",
  8820. "autoload": {
  8821. "files": [
  8822. "Resources/functions.php"
  8823. ],
  8824. "psr-4": {
  8825. "Symfony\\Component\\Translation\\": ""
  8826. },
  8827. "exclude-from-classmap": [
  8828. "/Tests/"
  8829. ]
  8830. },
  8831. "notification-url": "https://packagist.org/downloads/",
  8832. "license": [
  8833. "MIT"
  8834. ],
  8835. "authors": [
  8836. {
  8837. "name": "Fabien Potencier",
  8838. "email": "fabien@symfony.com"
  8839. },
  8840. {
  8841. "name": "Symfony Community",
  8842. "homepage": "https://symfony.com/contributors"
  8843. }
  8844. ],
  8845. "description": "Provides tools to internationalize your application",
  8846. "homepage": "https://symfony.com",
  8847. "support": {
  8848. "source": "https://github.com/symfony/translation/tree/v7.2.4"
  8849. },
  8850. "funding": [
  8851. {
  8852. "url": "https://symfony.com/sponsor",
  8853. "type": "custom"
  8854. },
  8855. {
  8856. "url": "https://github.com/fabpot",
  8857. "type": "github"
  8858. },
  8859. {
  8860. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8861. "type": "tidelift"
  8862. }
  8863. ],
  8864. "time": "2025-02-13T10:27:23+00:00"
  8865. },
  8866. {
  8867. "name": "symfony/translation-contracts",
  8868. "version": "v3.5.1",
  8869. "source": {
  8870. "type": "git",
  8871. "url": "https://github.com/symfony/translation-contracts.git",
  8872. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  8873. },
  8874. "dist": {
  8875. "type": "zip",
  8876. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  8877. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  8878. "shasum": ""
  8879. },
  8880. "require": {
  8881. "php": ">=8.1"
  8882. },
  8883. "type": "library",
  8884. "extra": {
  8885. "thanks": {
  8886. "url": "https://github.com/symfony/contracts",
  8887. "name": "symfony/contracts"
  8888. },
  8889. "branch-alias": {
  8890. "dev-main": "3.5-dev"
  8891. }
  8892. },
  8893. "autoload": {
  8894. "psr-4": {
  8895. "Symfony\\Contracts\\Translation\\": ""
  8896. },
  8897. "exclude-from-classmap": [
  8898. "/Test/"
  8899. ]
  8900. },
  8901. "notification-url": "https://packagist.org/downloads/",
  8902. "license": [
  8903. "MIT"
  8904. ],
  8905. "authors": [
  8906. {
  8907. "name": "Nicolas Grekas",
  8908. "email": "p@tchwork.com"
  8909. },
  8910. {
  8911. "name": "Symfony Community",
  8912. "homepage": "https://symfony.com/contributors"
  8913. }
  8914. ],
  8915. "description": "Generic abstractions related to translation",
  8916. "homepage": "https://symfony.com",
  8917. "keywords": [
  8918. "abstractions",
  8919. "contracts",
  8920. "decoupling",
  8921. "interfaces",
  8922. "interoperability",
  8923. "standards"
  8924. ],
  8925. "support": {
  8926. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  8927. },
  8928. "funding": [
  8929. {
  8930. "url": "https://symfony.com/sponsor",
  8931. "type": "custom"
  8932. },
  8933. {
  8934. "url": "https://github.com/fabpot",
  8935. "type": "github"
  8936. },
  8937. {
  8938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8939. "type": "tidelift"
  8940. }
  8941. ],
  8942. "time": "2024-09-25T14:20:29+00:00"
  8943. },
  8944. {
  8945. "name": "symfony/uid",
  8946. "version": "v7.2.0",
  8947. "source": {
  8948. "type": "git",
  8949. "url": "https://github.com/symfony/uid.git",
  8950. "reference": "2d294d0c48df244c71c105a169d0190bfb080426"
  8951. },
  8952. "dist": {
  8953. "type": "zip",
  8954. "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426",
  8955. "reference": "2d294d0c48df244c71c105a169d0190bfb080426",
  8956. "shasum": ""
  8957. },
  8958. "require": {
  8959. "php": ">=8.2",
  8960. "symfony/polyfill-uuid": "^1.15"
  8961. },
  8962. "require-dev": {
  8963. "symfony/console": "^6.4|^7.0"
  8964. },
  8965. "type": "library",
  8966. "autoload": {
  8967. "psr-4": {
  8968. "Symfony\\Component\\Uid\\": ""
  8969. },
  8970. "exclude-from-classmap": [
  8971. "/Tests/"
  8972. ]
  8973. },
  8974. "notification-url": "https://packagist.org/downloads/",
  8975. "license": [
  8976. "MIT"
  8977. ],
  8978. "authors": [
  8979. {
  8980. "name": "Grégoire Pineau",
  8981. "email": "lyrixx@lyrixx.info"
  8982. },
  8983. {
  8984. "name": "Nicolas Grekas",
  8985. "email": "p@tchwork.com"
  8986. },
  8987. {
  8988. "name": "Symfony Community",
  8989. "homepage": "https://symfony.com/contributors"
  8990. }
  8991. ],
  8992. "description": "Provides an object-oriented API to generate and represent UIDs",
  8993. "homepage": "https://symfony.com",
  8994. "keywords": [
  8995. "UID",
  8996. "ulid",
  8997. "uuid"
  8998. ],
  8999. "support": {
  9000. "source": "https://github.com/symfony/uid/tree/v7.2.0"
  9001. },
  9002. "funding": [
  9003. {
  9004. "url": "https://symfony.com/sponsor",
  9005. "type": "custom"
  9006. },
  9007. {
  9008. "url": "https://github.com/fabpot",
  9009. "type": "github"
  9010. },
  9011. {
  9012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9013. "type": "tidelift"
  9014. }
  9015. ],
  9016. "time": "2024-09-25T14:21:43+00:00"
  9017. },
  9018. {
  9019. "name": "symfony/var-dumper",
  9020. "version": "v7.2.3",
  9021. "source": {
  9022. "type": "git",
  9023. "url": "https://github.com/symfony/var-dumper.git",
  9024. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a"
  9025. },
  9026. "dist": {
  9027. "type": "zip",
  9028. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82b478c69745d8878eb60f9a049a4d584996f73a",
  9029. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a",
  9030. "shasum": ""
  9031. },
  9032. "require": {
  9033. "php": ">=8.2",
  9034. "symfony/polyfill-mbstring": "~1.0"
  9035. },
  9036. "conflict": {
  9037. "symfony/console": "<6.4"
  9038. },
  9039. "require-dev": {
  9040. "ext-iconv": "*",
  9041. "symfony/console": "^6.4|^7.0",
  9042. "symfony/http-kernel": "^6.4|^7.0",
  9043. "symfony/process": "^6.4|^7.0",
  9044. "symfony/uid": "^6.4|^7.0",
  9045. "twig/twig": "^3.12"
  9046. },
  9047. "bin": [
  9048. "Resources/bin/var-dump-server"
  9049. ],
  9050. "type": "library",
  9051. "autoload": {
  9052. "files": [
  9053. "Resources/functions/dump.php"
  9054. ],
  9055. "psr-4": {
  9056. "Symfony\\Component\\VarDumper\\": ""
  9057. },
  9058. "exclude-from-classmap": [
  9059. "/Tests/"
  9060. ]
  9061. },
  9062. "notification-url": "https://packagist.org/downloads/",
  9063. "license": [
  9064. "MIT"
  9065. ],
  9066. "authors": [
  9067. {
  9068. "name": "Nicolas Grekas",
  9069. "email": "p@tchwork.com"
  9070. },
  9071. {
  9072. "name": "Symfony Community",
  9073. "homepage": "https://symfony.com/contributors"
  9074. }
  9075. ],
  9076. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9077. "homepage": "https://symfony.com",
  9078. "keywords": [
  9079. "debug",
  9080. "dump"
  9081. ],
  9082. "support": {
  9083. "source": "https://github.com/symfony/var-dumper/tree/v7.2.3"
  9084. },
  9085. "funding": [
  9086. {
  9087. "url": "https://symfony.com/sponsor",
  9088. "type": "custom"
  9089. },
  9090. {
  9091. "url": "https://github.com/fabpot",
  9092. "type": "github"
  9093. },
  9094. {
  9095. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9096. "type": "tidelift"
  9097. }
  9098. ],
  9099. "time": "2025-01-17T11:39:41+00:00"
  9100. },
  9101. {
  9102. "name": "tijsverkoyen/css-to-inline-styles",
  9103. "version": "v2.3.0",
  9104. "source": {
  9105. "type": "git",
  9106. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9107. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  9108. },
  9109. "dist": {
  9110. "type": "zip",
  9111. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  9112. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  9113. "shasum": ""
  9114. },
  9115. "require": {
  9116. "ext-dom": "*",
  9117. "ext-libxml": "*",
  9118. "php": "^7.4 || ^8.0",
  9119. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  9120. },
  9121. "require-dev": {
  9122. "phpstan/phpstan": "^2.0",
  9123. "phpstan/phpstan-phpunit": "^2.0",
  9124. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  9125. },
  9126. "type": "library",
  9127. "extra": {
  9128. "branch-alias": {
  9129. "dev-master": "2.x-dev"
  9130. }
  9131. },
  9132. "autoload": {
  9133. "psr-4": {
  9134. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9135. }
  9136. },
  9137. "notification-url": "https://packagist.org/downloads/",
  9138. "license": [
  9139. "BSD-3-Clause"
  9140. ],
  9141. "authors": [
  9142. {
  9143. "name": "Tijs Verkoyen",
  9144. "email": "css_to_inline_styles@verkoyen.eu",
  9145. "role": "Developer"
  9146. }
  9147. ],
  9148. "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.",
  9149. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9150. "support": {
  9151. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9152. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  9153. },
  9154. "time": "2024-12-21T16:25:41+00:00"
  9155. },
  9156. {
  9157. "name": "vlucas/phpdotenv",
  9158. "version": "v5.6.1",
  9159. "source": {
  9160. "type": "git",
  9161. "url": "https://github.com/vlucas/phpdotenv.git",
  9162. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  9163. },
  9164. "dist": {
  9165. "type": "zip",
  9166. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9167. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9168. "shasum": ""
  9169. },
  9170. "require": {
  9171. "ext-pcre": "*",
  9172. "graham-campbell/result-type": "^1.1.3",
  9173. "php": "^7.2.5 || ^8.0",
  9174. "phpoption/phpoption": "^1.9.3",
  9175. "symfony/polyfill-ctype": "^1.24",
  9176. "symfony/polyfill-mbstring": "^1.24",
  9177. "symfony/polyfill-php80": "^1.24"
  9178. },
  9179. "require-dev": {
  9180. "bamarni/composer-bin-plugin": "^1.8.2",
  9181. "ext-filter": "*",
  9182. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9183. },
  9184. "suggest": {
  9185. "ext-filter": "Required to use the boolean validator."
  9186. },
  9187. "type": "library",
  9188. "extra": {
  9189. "bamarni-bin": {
  9190. "bin-links": true,
  9191. "forward-command": false
  9192. },
  9193. "branch-alias": {
  9194. "dev-master": "5.6-dev"
  9195. }
  9196. },
  9197. "autoload": {
  9198. "psr-4": {
  9199. "Dotenv\\": "src/"
  9200. }
  9201. },
  9202. "notification-url": "https://packagist.org/downloads/",
  9203. "license": [
  9204. "BSD-3-Clause"
  9205. ],
  9206. "authors": [
  9207. {
  9208. "name": "Graham Campbell",
  9209. "email": "hello@gjcampbell.co.uk",
  9210. "homepage": "https://github.com/GrahamCampbell"
  9211. },
  9212. {
  9213. "name": "Vance Lucas",
  9214. "email": "vance@vancelucas.com",
  9215. "homepage": "https://github.com/vlucas"
  9216. }
  9217. ],
  9218. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9219. "keywords": [
  9220. "dotenv",
  9221. "env",
  9222. "environment"
  9223. ],
  9224. "support": {
  9225. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9226. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  9227. },
  9228. "funding": [
  9229. {
  9230. "url": "https://github.com/GrahamCampbell",
  9231. "type": "github"
  9232. },
  9233. {
  9234. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9235. "type": "tidelift"
  9236. }
  9237. ],
  9238. "time": "2024-07-20T21:52:34+00:00"
  9239. },
  9240. {
  9241. "name": "voku/portable-ascii",
  9242. "version": "2.0.3",
  9243. "source": {
  9244. "type": "git",
  9245. "url": "https://github.com/voku/portable-ascii.git",
  9246. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  9247. },
  9248. "dist": {
  9249. "type": "zip",
  9250. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9251. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9252. "shasum": ""
  9253. },
  9254. "require": {
  9255. "php": ">=7.0.0"
  9256. },
  9257. "require-dev": {
  9258. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9259. },
  9260. "suggest": {
  9261. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9262. },
  9263. "type": "library",
  9264. "autoload": {
  9265. "psr-4": {
  9266. "voku\\": "src/voku/"
  9267. }
  9268. },
  9269. "notification-url": "https://packagist.org/downloads/",
  9270. "license": [
  9271. "MIT"
  9272. ],
  9273. "authors": [
  9274. {
  9275. "name": "Lars Moelleken",
  9276. "homepage": "https://www.moelleken.org/"
  9277. }
  9278. ],
  9279. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9280. "homepage": "https://github.com/voku/portable-ascii",
  9281. "keywords": [
  9282. "ascii",
  9283. "clean",
  9284. "php"
  9285. ],
  9286. "support": {
  9287. "issues": "https://github.com/voku/portable-ascii/issues",
  9288. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  9289. },
  9290. "funding": [
  9291. {
  9292. "url": "https://www.paypal.me/moelleken",
  9293. "type": "custom"
  9294. },
  9295. {
  9296. "url": "https://github.com/voku",
  9297. "type": "github"
  9298. },
  9299. {
  9300. "url": "https://opencollective.com/portable-ascii",
  9301. "type": "open_collective"
  9302. },
  9303. {
  9304. "url": "https://www.patreon.com/voku",
  9305. "type": "patreon"
  9306. },
  9307. {
  9308. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9309. "type": "tidelift"
  9310. }
  9311. ],
  9312. "time": "2024-11-21T01:49:47+00:00"
  9313. },
  9314. {
  9315. "name": "webmozart/assert",
  9316. "version": "1.11.0",
  9317. "source": {
  9318. "type": "git",
  9319. "url": "https://github.com/webmozarts/assert.git",
  9320. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9321. },
  9322. "dist": {
  9323. "type": "zip",
  9324. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9325. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9326. "shasum": ""
  9327. },
  9328. "require": {
  9329. "ext-ctype": "*",
  9330. "php": "^7.2 || ^8.0"
  9331. },
  9332. "conflict": {
  9333. "phpstan/phpstan": "<0.12.20",
  9334. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9335. },
  9336. "require-dev": {
  9337. "phpunit/phpunit": "^8.5.13"
  9338. },
  9339. "type": "library",
  9340. "extra": {
  9341. "branch-alias": {
  9342. "dev-master": "1.10-dev"
  9343. }
  9344. },
  9345. "autoload": {
  9346. "psr-4": {
  9347. "Webmozart\\Assert\\": "src/"
  9348. }
  9349. },
  9350. "notification-url": "https://packagist.org/downloads/",
  9351. "license": [
  9352. "MIT"
  9353. ],
  9354. "authors": [
  9355. {
  9356. "name": "Bernhard Schussek",
  9357. "email": "bschussek@gmail.com"
  9358. }
  9359. ],
  9360. "description": "Assertions to validate method input/output with nice error messages.",
  9361. "keywords": [
  9362. "assert",
  9363. "check",
  9364. "validate"
  9365. ],
  9366. "support": {
  9367. "issues": "https://github.com/webmozarts/assert/issues",
  9368. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9369. },
  9370. "time": "2022-06-03T18:03:27+00:00"
  9371. }
  9372. ],
  9373. "packages-dev": [
  9374. {
  9375. "name": "barryvdh/laravel-debugbar",
  9376. "version": "v3.15.3",
  9377. "source": {
  9378. "type": "git",
  9379. "url": "https://github.com/barryvdh/laravel-debugbar.git",
  9380. "reference": "4ccab20844d18c5af08b68d310e7151a791c3037"
  9381. },
  9382. "dist": {
  9383. "type": "zip",
  9384. "url": "https://api.github.com/repos/barryvdh/laravel-debugbar/zipball/4ccab20844d18c5af08b68d310e7151a791c3037",
  9385. "reference": "4ccab20844d18c5af08b68d310e7151a791c3037",
  9386. "shasum": ""
  9387. },
  9388. "require": {
  9389. "illuminate/routing": "^9|^10|^11|^12",
  9390. "illuminate/session": "^9|^10|^11|^12",
  9391. "illuminate/support": "^9|^10|^11|^12",
  9392. "php": "^8.1",
  9393. "php-debugbar/php-debugbar": "~2.1.1",
  9394. "symfony/finder": "^6|^7"
  9395. },
  9396. "require-dev": {
  9397. "mockery/mockery": "^1.3.3",
  9398. "orchestra/testbench-dusk": "^7|^8|^9|^10",
  9399. "phpunit/phpunit": "^9.5.10|^10|^11",
  9400. "squizlabs/php_codesniffer": "^3.5"
  9401. },
  9402. "type": "library",
  9403. "extra": {
  9404. "laravel": {
  9405. "aliases": {
  9406. "Debugbar": "Barryvdh\\Debugbar\\Facades\\Debugbar"
  9407. },
  9408. "providers": [
  9409. "Barryvdh\\Debugbar\\ServiceProvider"
  9410. ]
  9411. },
  9412. "branch-alias": {
  9413. "dev-master": "3.15-dev"
  9414. }
  9415. },
  9416. "autoload": {
  9417. "files": [
  9418. "src/helpers.php"
  9419. ],
  9420. "psr-4": {
  9421. "Barryvdh\\Debugbar\\": "src/"
  9422. }
  9423. },
  9424. "notification-url": "https://packagist.org/downloads/",
  9425. "license": [
  9426. "MIT"
  9427. ],
  9428. "authors": [
  9429. {
  9430. "name": "Barry vd. Heuvel",
  9431. "email": "barryvdh@gmail.com"
  9432. }
  9433. ],
  9434. "description": "PHP Debugbar integration for Laravel",
  9435. "keywords": [
  9436. "debug",
  9437. "debugbar",
  9438. "dev",
  9439. "laravel",
  9440. "profiler",
  9441. "webprofiler"
  9442. ],
  9443. "support": {
  9444. "issues": "https://github.com/barryvdh/laravel-debugbar/issues",
  9445. "source": "https://github.com/barryvdh/laravel-debugbar/tree/v3.15.3"
  9446. },
  9447. "funding": [
  9448. {
  9449. "url": "https://fruitcake.nl",
  9450. "type": "custom"
  9451. },
  9452. {
  9453. "url": "https://github.com/barryvdh",
  9454. "type": "github"
  9455. }
  9456. ],
  9457. "time": "2025-04-08T15:11:06+00:00"
  9458. },
  9459. {
  9460. "name": "brianium/paratest",
  9461. "version": "v7.8.3",
  9462. "source": {
  9463. "type": "git",
  9464. "url": "https://github.com/paratestphp/paratest.git",
  9465. "reference": "a585c346ddf1bec22e51e20b5387607905604a71"
  9466. },
  9467. "dist": {
  9468. "type": "zip",
  9469. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/a585c346ddf1bec22e51e20b5387607905604a71",
  9470. "reference": "a585c346ddf1bec22e51e20b5387607905604a71",
  9471. "shasum": ""
  9472. },
  9473. "require": {
  9474. "ext-dom": "*",
  9475. "ext-pcre": "*",
  9476. "ext-reflection": "*",
  9477. "ext-simplexml": "*",
  9478. "fidry/cpu-core-counter": "^1.2.0",
  9479. "jean85/pretty-package-versions": "^2.1.0",
  9480. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  9481. "phpunit/php-code-coverage": "^11.0.9 || ^12.0.4",
  9482. "phpunit/php-file-iterator": "^5.1.0 || ^6",
  9483. "phpunit/php-timer": "^7.0.1 || ^8",
  9484. "phpunit/phpunit": "^11.5.11 || ^12.0.6",
  9485. "sebastian/environment": "^7.2.0 || ^8",
  9486. "symfony/console": "^6.4.17 || ^7.2.1",
  9487. "symfony/process": "^6.4.19 || ^7.2.4"
  9488. },
  9489. "require-dev": {
  9490. "doctrine/coding-standard": "^12.0.0",
  9491. "ext-pcov": "*",
  9492. "ext-posix": "*",
  9493. "phpstan/phpstan": "^2.1.6",
  9494. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  9495. "phpstan/phpstan-phpunit": "^2.0.4",
  9496. "phpstan/phpstan-strict-rules": "^2.0.3",
  9497. "squizlabs/php_codesniffer": "^3.11.3",
  9498. "symfony/filesystem": "^6.4.13 || ^7.2.0"
  9499. },
  9500. "bin": [
  9501. "bin/paratest",
  9502. "bin/paratest_for_phpstorm"
  9503. ],
  9504. "type": "library",
  9505. "autoload": {
  9506. "psr-4": {
  9507. "ParaTest\\": [
  9508. "src/"
  9509. ]
  9510. }
  9511. },
  9512. "notification-url": "https://packagist.org/downloads/",
  9513. "license": [
  9514. "MIT"
  9515. ],
  9516. "authors": [
  9517. {
  9518. "name": "Brian Scaturro",
  9519. "email": "scaturrob@gmail.com",
  9520. "role": "Developer"
  9521. },
  9522. {
  9523. "name": "Filippo Tessarotto",
  9524. "email": "zoeslam@gmail.com",
  9525. "role": "Developer"
  9526. }
  9527. ],
  9528. "description": "Parallel testing for PHP",
  9529. "homepage": "https://github.com/paratestphp/paratest",
  9530. "keywords": [
  9531. "concurrent",
  9532. "parallel",
  9533. "phpunit",
  9534. "testing"
  9535. ],
  9536. "support": {
  9537. "issues": "https://github.com/paratestphp/paratest/issues",
  9538. "source": "https://github.com/paratestphp/paratest/tree/v7.8.3"
  9539. },
  9540. "funding": [
  9541. {
  9542. "url": "https://github.com/sponsors/Slamdunk",
  9543. "type": "github"
  9544. },
  9545. {
  9546. "url": "https://paypal.me/filippotessarotto",
  9547. "type": "paypal"
  9548. }
  9549. ],
  9550. "time": "2025-03-05T08:29:11+00:00"
  9551. },
  9552. {
  9553. "name": "fidry/cpu-core-counter",
  9554. "version": "1.2.0",
  9555. "source": {
  9556. "type": "git",
  9557. "url": "https://github.com/theofidry/cpu-core-counter.git",
  9558. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  9559. },
  9560. "dist": {
  9561. "type": "zip",
  9562. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  9563. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  9564. "shasum": ""
  9565. },
  9566. "require": {
  9567. "php": "^7.2 || ^8.0"
  9568. },
  9569. "require-dev": {
  9570. "fidry/makefile": "^0.2.0",
  9571. "fidry/php-cs-fixer-config": "^1.1.2",
  9572. "phpstan/extension-installer": "^1.2.0",
  9573. "phpstan/phpstan": "^1.9.2",
  9574. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  9575. "phpstan/phpstan-phpunit": "^1.2.2",
  9576. "phpstan/phpstan-strict-rules": "^1.4.4",
  9577. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  9578. "webmozarts/strict-phpunit": "^7.5"
  9579. },
  9580. "type": "library",
  9581. "autoload": {
  9582. "psr-4": {
  9583. "Fidry\\CpuCoreCounter\\": "src/"
  9584. }
  9585. },
  9586. "notification-url": "https://packagist.org/downloads/",
  9587. "license": [
  9588. "MIT"
  9589. ],
  9590. "authors": [
  9591. {
  9592. "name": "Théo FIDRY",
  9593. "email": "theo.fidry@gmail.com"
  9594. }
  9595. ],
  9596. "description": "Tiny utility to get the number of CPU cores.",
  9597. "keywords": [
  9598. "CPU",
  9599. "core"
  9600. ],
  9601. "support": {
  9602. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  9603. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  9604. },
  9605. "funding": [
  9606. {
  9607. "url": "https://github.com/theofidry",
  9608. "type": "github"
  9609. }
  9610. ],
  9611. "time": "2024-08-06T10:04:20+00:00"
  9612. },
  9613. {
  9614. "name": "filp/whoops",
  9615. "version": "2.18.0",
  9616. "source": {
  9617. "type": "git",
  9618. "url": "https://github.com/filp/whoops.git",
  9619. "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e"
  9620. },
  9621. "dist": {
  9622. "type": "zip",
  9623. "url": "https://api.github.com/repos/filp/whoops/zipball/a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
  9624. "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
  9625. "shasum": ""
  9626. },
  9627. "require": {
  9628. "php": "^7.1 || ^8.0",
  9629. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9630. },
  9631. "require-dev": {
  9632. "mockery/mockery": "^1.0",
  9633. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  9634. "symfony/var-dumper": "^4.0 || ^5.0"
  9635. },
  9636. "suggest": {
  9637. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9638. "whoops/soap": "Formats errors as SOAP responses"
  9639. },
  9640. "type": "library",
  9641. "extra": {
  9642. "branch-alias": {
  9643. "dev-master": "2.7-dev"
  9644. }
  9645. },
  9646. "autoload": {
  9647. "psr-4": {
  9648. "Whoops\\": "src/Whoops/"
  9649. }
  9650. },
  9651. "notification-url": "https://packagist.org/downloads/",
  9652. "license": [
  9653. "MIT"
  9654. ],
  9655. "authors": [
  9656. {
  9657. "name": "Filipe Dobreira",
  9658. "homepage": "https://github.com/filp",
  9659. "role": "Developer"
  9660. }
  9661. ],
  9662. "description": "php error handling for cool kids",
  9663. "homepage": "https://filp.github.io/whoops/",
  9664. "keywords": [
  9665. "error",
  9666. "exception",
  9667. "handling",
  9668. "library",
  9669. "throwable",
  9670. "whoops"
  9671. ],
  9672. "support": {
  9673. "issues": "https://github.com/filp/whoops/issues",
  9674. "source": "https://github.com/filp/whoops/tree/2.18.0"
  9675. },
  9676. "funding": [
  9677. {
  9678. "url": "https://github.com/denis-sokolov",
  9679. "type": "github"
  9680. }
  9681. ],
  9682. "time": "2025-03-15T12:00:00+00:00"
  9683. },
  9684. {
  9685. "name": "hamcrest/hamcrest-php",
  9686. "version": "v2.0.1",
  9687. "source": {
  9688. "type": "git",
  9689. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9690. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9691. },
  9692. "dist": {
  9693. "type": "zip",
  9694. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9695. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9696. "shasum": ""
  9697. },
  9698. "require": {
  9699. "php": "^5.3|^7.0|^8.0"
  9700. },
  9701. "replace": {
  9702. "cordoval/hamcrest-php": "*",
  9703. "davedevelopment/hamcrest-php": "*",
  9704. "kodova/hamcrest-php": "*"
  9705. },
  9706. "require-dev": {
  9707. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9708. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9709. },
  9710. "type": "library",
  9711. "extra": {
  9712. "branch-alias": {
  9713. "dev-master": "2.1-dev"
  9714. }
  9715. },
  9716. "autoload": {
  9717. "classmap": [
  9718. "hamcrest"
  9719. ]
  9720. },
  9721. "notification-url": "https://packagist.org/downloads/",
  9722. "license": [
  9723. "BSD-3-Clause"
  9724. ],
  9725. "description": "This is the PHP port of Hamcrest Matchers",
  9726. "keywords": [
  9727. "test"
  9728. ],
  9729. "support": {
  9730. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9731. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9732. },
  9733. "time": "2020-07-09T08:09:16+00:00"
  9734. },
  9735. {
  9736. "name": "jean85/pretty-package-versions",
  9737. "version": "2.1.1",
  9738. "source": {
  9739. "type": "git",
  9740. "url": "https://github.com/Jean85/pretty-package-versions.git",
  9741. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a"
  9742. },
  9743. "dist": {
  9744. "type": "zip",
  9745. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/4d7aa5dab42e2a76d99559706022885de0e18e1a",
  9746. "reference": "4d7aa5dab42e2a76d99559706022885de0e18e1a",
  9747. "shasum": ""
  9748. },
  9749. "require": {
  9750. "composer-runtime-api": "^2.1.0",
  9751. "php": "^7.4|^8.0"
  9752. },
  9753. "require-dev": {
  9754. "friendsofphp/php-cs-fixer": "^3.2",
  9755. "jean85/composer-provided-replaced-stub-package": "^1.0",
  9756. "phpstan/phpstan": "^2.0",
  9757. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  9758. "rector/rector": "^2.0",
  9759. "vimeo/psalm": "^4.3 || ^5.0"
  9760. },
  9761. "type": "library",
  9762. "extra": {
  9763. "branch-alias": {
  9764. "dev-master": "1.x-dev"
  9765. }
  9766. },
  9767. "autoload": {
  9768. "psr-4": {
  9769. "Jean85\\": "src/"
  9770. }
  9771. },
  9772. "notification-url": "https://packagist.org/downloads/",
  9773. "license": [
  9774. "MIT"
  9775. ],
  9776. "authors": [
  9777. {
  9778. "name": "Alessandro Lai",
  9779. "email": "alessandro.lai85@gmail.com"
  9780. }
  9781. ],
  9782. "description": "A library to get pretty versions strings of installed dependencies",
  9783. "keywords": [
  9784. "composer",
  9785. "package",
  9786. "release",
  9787. "versions"
  9788. ],
  9789. "support": {
  9790. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  9791. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.1"
  9792. },
  9793. "time": "2025-03-19T14:43:43+00:00"
  9794. },
  9795. {
  9796. "name": "laravel/pint",
  9797. "version": "v1.22.0",
  9798. "source": {
  9799. "type": "git",
  9800. "url": "https://github.com/laravel/pint.git",
  9801. "reference": "7ddfaa6523a675fae5c4123ee38fc6bfb8ee4f36"
  9802. },
  9803. "dist": {
  9804. "type": "zip",
  9805. "url": "https://api.github.com/repos/laravel/pint/zipball/7ddfaa6523a675fae5c4123ee38fc6bfb8ee4f36",
  9806. "reference": "7ddfaa6523a675fae5c4123ee38fc6bfb8ee4f36",
  9807. "shasum": ""
  9808. },
  9809. "require": {
  9810. "ext-json": "*",
  9811. "ext-mbstring": "*",
  9812. "ext-tokenizer": "*",
  9813. "ext-xml": "*",
  9814. "php": "^8.2.0"
  9815. },
  9816. "require-dev": {
  9817. "friendsofphp/php-cs-fixer": "^3.75.0",
  9818. "illuminate/view": "^11.44.2",
  9819. "larastan/larastan": "^3.3.1",
  9820. "laravel-zero/framework": "^11.36.1",
  9821. "mockery/mockery": "^1.6.12",
  9822. "nunomaduro/termwind": "^2.3",
  9823. "pestphp/pest": "^2.36.0"
  9824. },
  9825. "bin": [
  9826. "builds/pint"
  9827. ],
  9828. "type": "project",
  9829. "autoload": {
  9830. "psr-4": {
  9831. "App\\": "app/",
  9832. "Database\\Seeders\\": "database/seeders/",
  9833. "Database\\Factories\\": "database/factories/"
  9834. }
  9835. },
  9836. "notification-url": "https://packagist.org/downloads/",
  9837. "license": [
  9838. "MIT"
  9839. ],
  9840. "authors": [
  9841. {
  9842. "name": "Nuno Maduro",
  9843. "email": "enunomaduro@gmail.com"
  9844. }
  9845. ],
  9846. "description": "An opinionated code formatter for PHP.",
  9847. "homepage": "https://laravel.com",
  9848. "keywords": [
  9849. "format",
  9850. "formatter",
  9851. "lint",
  9852. "linter",
  9853. "php"
  9854. ],
  9855. "support": {
  9856. "issues": "https://github.com/laravel/pint/issues",
  9857. "source": "https://github.com/laravel/pint"
  9858. },
  9859. "time": "2025-04-08T22:11:45+00:00"
  9860. },
  9861. {
  9862. "name": "laravel/sail",
  9863. "version": "v1.41.0",
  9864. "source": {
  9865. "type": "git",
  9866. "url": "https://github.com/laravel/sail.git",
  9867. "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec"
  9868. },
  9869. "dist": {
  9870. "type": "zip",
  9871. "url": "https://api.github.com/repos/laravel/sail/zipball/fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec",
  9872. "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec",
  9873. "shasum": ""
  9874. },
  9875. "require": {
  9876. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  9877. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  9878. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  9879. "php": "^8.0",
  9880. "symfony/console": "^6.0|^7.0",
  9881. "symfony/yaml": "^6.0|^7.0"
  9882. },
  9883. "require-dev": {
  9884. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  9885. "phpstan/phpstan": "^1.10"
  9886. },
  9887. "bin": [
  9888. "bin/sail"
  9889. ],
  9890. "type": "library",
  9891. "extra": {
  9892. "laravel": {
  9893. "providers": [
  9894. "Laravel\\Sail\\SailServiceProvider"
  9895. ]
  9896. }
  9897. },
  9898. "autoload": {
  9899. "psr-4": {
  9900. "Laravel\\Sail\\": "src/"
  9901. }
  9902. },
  9903. "notification-url": "https://packagist.org/downloads/",
  9904. "license": [
  9905. "MIT"
  9906. ],
  9907. "authors": [
  9908. {
  9909. "name": "Taylor Otwell",
  9910. "email": "taylor@laravel.com"
  9911. }
  9912. ],
  9913. "description": "Docker files for running a basic Laravel application.",
  9914. "keywords": [
  9915. "docker",
  9916. "laravel"
  9917. ],
  9918. "support": {
  9919. "issues": "https://github.com/laravel/sail/issues",
  9920. "source": "https://github.com/laravel/sail"
  9921. },
  9922. "time": "2025-01-24T15:45:36+00:00"
  9923. },
  9924. {
  9925. "name": "mockery/mockery",
  9926. "version": "1.6.12",
  9927. "source": {
  9928. "type": "git",
  9929. "url": "https://github.com/mockery/mockery.git",
  9930. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9931. },
  9932. "dist": {
  9933. "type": "zip",
  9934. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9935. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9936. "shasum": ""
  9937. },
  9938. "require": {
  9939. "hamcrest/hamcrest-php": "^2.0.1",
  9940. "lib-pcre": ">=7.0",
  9941. "php": ">=7.3"
  9942. },
  9943. "conflict": {
  9944. "phpunit/phpunit": "<8.0"
  9945. },
  9946. "require-dev": {
  9947. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9948. "symplify/easy-coding-standard": "^12.1.14"
  9949. },
  9950. "type": "library",
  9951. "autoload": {
  9952. "files": [
  9953. "library/helpers.php",
  9954. "library/Mockery.php"
  9955. ],
  9956. "psr-4": {
  9957. "Mockery\\": "library/Mockery"
  9958. }
  9959. },
  9960. "notification-url": "https://packagist.org/downloads/",
  9961. "license": [
  9962. "BSD-3-Clause"
  9963. ],
  9964. "authors": [
  9965. {
  9966. "name": "Pádraic Brady",
  9967. "email": "padraic.brady@gmail.com",
  9968. "homepage": "https://github.com/padraic",
  9969. "role": "Author"
  9970. },
  9971. {
  9972. "name": "Dave Marshall",
  9973. "email": "dave.marshall@atstsolutions.co.uk",
  9974. "homepage": "https://davedevelopment.co.uk",
  9975. "role": "Developer"
  9976. },
  9977. {
  9978. "name": "Nathanael Esayeas",
  9979. "email": "nathanael.esayeas@protonmail.com",
  9980. "homepage": "https://github.com/ghostwriter",
  9981. "role": "Lead Developer"
  9982. }
  9983. ],
  9984. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9985. "homepage": "https://github.com/mockery/mockery",
  9986. "keywords": [
  9987. "BDD",
  9988. "TDD",
  9989. "library",
  9990. "mock",
  9991. "mock objects",
  9992. "mockery",
  9993. "stub",
  9994. "test",
  9995. "test double",
  9996. "testing"
  9997. ],
  9998. "support": {
  9999. "docs": "https://docs.mockery.io/",
  10000. "issues": "https://github.com/mockery/mockery/issues",
  10001. "rss": "https://github.com/mockery/mockery/releases.atom",
  10002. "security": "https://github.com/mockery/mockery/security/advisories",
  10003. "source": "https://github.com/mockery/mockery"
  10004. },
  10005. "time": "2024-05-16T03:13:13+00:00"
  10006. },
  10007. {
  10008. "name": "myclabs/deep-copy",
  10009. "version": "1.13.0",
  10010. "source": {
  10011. "type": "git",
  10012. "url": "https://github.com/myclabs/DeepCopy.git",
  10013. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  10014. },
  10015. "dist": {
  10016. "type": "zip",
  10017. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  10018. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  10019. "shasum": ""
  10020. },
  10021. "require": {
  10022. "php": "^7.1 || ^8.0"
  10023. },
  10024. "conflict": {
  10025. "doctrine/collections": "<1.6.8",
  10026. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  10027. },
  10028. "require-dev": {
  10029. "doctrine/collections": "^1.6.8",
  10030. "doctrine/common": "^2.13.3 || ^3.2.2",
  10031. "phpspec/prophecy": "^1.10",
  10032. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10033. },
  10034. "type": "library",
  10035. "autoload": {
  10036. "files": [
  10037. "src/DeepCopy/deep_copy.php"
  10038. ],
  10039. "psr-4": {
  10040. "DeepCopy\\": "src/DeepCopy/"
  10041. }
  10042. },
  10043. "notification-url": "https://packagist.org/downloads/",
  10044. "license": [
  10045. "MIT"
  10046. ],
  10047. "description": "Create deep copies (clones) of your objects",
  10048. "keywords": [
  10049. "clone",
  10050. "copy",
  10051. "duplicate",
  10052. "object",
  10053. "object graph"
  10054. ],
  10055. "support": {
  10056. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10057. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  10058. },
  10059. "funding": [
  10060. {
  10061. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10062. "type": "tidelift"
  10063. }
  10064. ],
  10065. "time": "2025-02-12T12:17:51+00:00"
  10066. },
  10067. {
  10068. "name": "nunomaduro/collision",
  10069. "version": "v8.8.0",
  10070. "source": {
  10071. "type": "git",
  10072. "url": "https://github.com/nunomaduro/collision.git",
  10073. "reference": "4cf9f3b47afff38b139fb79ce54fc71799022ce8"
  10074. },
  10075. "dist": {
  10076. "type": "zip",
  10077. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/4cf9f3b47afff38b139fb79ce54fc71799022ce8",
  10078. "reference": "4cf9f3b47afff38b139fb79ce54fc71799022ce8",
  10079. "shasum": ""
  10080. },
  10081. "require": {
  10082. "filp/whoops": "^2.18.0",
  10083. "nunomaduro/termwind": "^2.3.0",
  10084. "php": "^8.2.0",
  10085. "symfony/console": "^7.2.5"
  10086. },
  10087. "conflict": {
  10088. "laravel/framework": "<11.44.2 || >=13.0.0",
  10089. "phpunit/phpunit": "<11.5.15 || >=13.0.0"
  10090. },
  10091. "require-dev": {
  10092. "brianium/paratest": "^7.8.3",
  10093. "larastan/larastan": "^3.2",
  10094. "laravel/framework": "^11.44.2 || ^12.6",
  10095. "laravel/pint": "^1.21.2",
  10096. "laravel/sail": "^1.41.0",
  10097. "laravel/sanctum": "^4.0.8",
  10098. "laravel/tinker": "^2.10.1",
  10099. "orchestra/testbench-core": "^9.12.0 || ^10.1",
  10100. "pestphp/pest": "^3.8.0",
  10101. "sebastian/environment": "^7.2.0 || ^8.0"
  10102. },
  10103. "type": "library",
  10104. "extra": {
  10105. "laravel": {
  10106. "providers": [
  10107. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10108. ]
  10109. },
  10110. "branch-alias": {
  10111. "dev-8.x": "8.x-dev"
  10112. }
  10113. },
  10114. "autoload": {
  10115. "files": [
  10116. "./src/Adapters/Phpunit/Autoload.php"
  10117. ],
  10118. "psr-4": {
  10119. "NunoMaduro\\Collision\\": "src/"
  10120. }
  10121. },
  10122. "notification-url": "https://packagist.org/downloads/",
  10123. "license": [
  10124. "MIT"
  10125. ],
  10126. "authors": [
  10127. {
  10128. "name": "Nuno Maduro",
  10129. "email": "enunomaduro@gmail.com"
  10130. }
  10131. ],
  10132. "description": "Cli error handling for console/command-line PHP applications.",
  10133. "keywords": [
  10134. "artisan",
  10135. "cli",
  10136. "command-line",
  10137. "console",
  10138. "dev",
  10139. "error",
  10140. "handling",
  10141. "laravel",
  10142. "laravel-zero",
  10143. "php",
  10144. "symfony"
  10145. ],
  10146. "support": {
  10147. "issues": "https://github.com/nunomaduro/collision/issues",
  10148. "source": "https://github.com/nunomaduro/collision"
  10149. },
  10150. "funding": [
  10151. {
  10152. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10153. "type": "custom"
  10154. },
  10155. {
  10156. "url": "https://github.com/nunomaduro",
  10157. "type": "github"
  10158. },
  10159. {
  10160. "url": "https://www.patreon.com/nunomaduro",
  10161. "type": "patreon"
  10162. }
  10163. ],
  10164. "time": "2025-04-03T14:33:09+00:00"
  10165. },
  10166. {
  10167. "name": "pestphp/pest",
  10168. "version": "v3.8.1",
  10169. "source": {
  10170. "type": "git",
  10171. "url": "https://github.com/pestphp/pest.git",
  10172. "reference": "6080f51a0b0830715c48ba0e7458b06907febfe5"
  10173. },
  10174. "dist": {
  10175. "type": "zip",
  10176. "url": "https://api.github.com/repos/pestphp/pest/zipball/6080f51a0b0830715c48ba0e7458b06907febfe5",
  10177. "reference": "6080f51a0b0830715c48ba0e7458b06907febfe5",
  10178. "shasum": ""
  10179. },
  10180. "require": {
  10181. "brianium/paratest": "^7.8.3",
  10182. "nunomaduro/collision": "^8.8.0",
  10183. "nunomaduro/termwind": "^2.3.0",
  10184. "pestphp/pest-plugin": "^3.0.0",
  10185. "pestphp/pest-plugin-arch": "^3.1.0",
  10186. "pestphp/pest-plugin-mutate": "^3.0.5",
  10187. "php": "^8.2.0",
  10188. "phpunit/phpunit": "^11.5.15"
  10189. },
  10190. "conflict": {
  10191. "filp/whoops": "<2.16.0",
  10192. "phpunit/phpunit": ">11.5.15",
  10193. "sebastian/exporter": "<6.0.0",
  10194. "webmozart/assert": "<1.11.0"
  10195. },
  10196. "require-dev": {
  10197. "pestphp/pest-dev-tools": "^3.4.0",
  10198. "pestphp/pest-plugin-type-coverage": "^3.5.0",
  10199. "symfony/process": "^7.2.5"
  10200. },
  10201. "bin": [
  10202. "bin/pest"
  10203. ],
  10204. "type": "library",
  10205. "extra": {
  10206. "pest": {
  10207. "plugins": [
  10208. "Pest\\Mutate\\Plugins\\Mutate",
  10209. "Pest\\Plugins\\Configuration",
  10210. "Pest\\Plugins\\Bail",
  10211. "Pest\\Plugins\\Cache",
  10212. "Pest\\Plugins\\Coverage",
  10213. "Pest\\Plugins\\Init",
  10214. "Pest\\Plugins\\Environment",
  10215. "Pest\\Plugins\\Help",
  10216. "Pest\\Plugins\\Memory",
  10217. "Pest\\Plugins\\Only",
  10218. "Pest\\Plugins\\Printer",
  10219. "Pest\\Plugins\\ProcessIsolation",
  10220. "Pest\\Plugins\\Profile",
  10221. "Pest\\Plugins\\Retry",
  10222. "Pest\\Plugins\\Snapshot",
  10223. "Pest\\Plugins\\Verbose",
  10224. "Pest\\Plugins\\Version",
  10225. "Pest\\Plugins\\Parallel"
  10226. ]
  10227. },
  10228. "phpstan": {
  10229. "includes": [
  10230. "extension.neon"
  10231. ]
  10232. }
  10233. },
  10234. "autoload": {
  10235. "files": [
  10236. "src/Functions.php",
  10237. "src/Pest.php"
  10238. ],
  10239. "psr-4": {
  10240. "Pest\\": "src/"
  10241. }
  10242. },
  10243. "notification-url": "https://packagist.org/downloads/",
  10244. "license": [
  10245. "MIT"
  10246. ],
  10247. "authors": [
  10248. {
  10249. "name": "Nuno Maduro",
  10250. "email": "enunomaduro@gmail.com"
  10251. }
  10252. ],
  10253. "description": "The elegant PHP Testing Framework.",
  10254. "keywords": [
  10255. "framework",
  10256. "pest",
  10257. "php",
  10258. "test",
  10259. "testing",
  10260. "unit"
  10261. ],
  10262. "support": {
  10263. "issues": "https://github.com/pestphp/pest/issues",
  10264. "source": "https://github.com/pestphp/pest/tree/v3.8.1"
  10265. },
  10266. "funding": [
  10267. {
  10268. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10269. "type": "custom"
  10270. },
  10271. {
  10272. "url": "https://github.com/nunomaduro",
  10273. "type": "github"
  10274. }
  10275. ],
  10276. "time": "2025-04-03T16:35:58+00:00"
  10277. },
  10278. {
  10279. "name": "pestphp/pest-plugin",
  10280. "version": "v3.0.0",
  10281. "source": {
  10282. "type": "git",
  10283. "url": "https://github.com/pestphp/pest-plugin.git",
  10284. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  10285. },
  10286. "dist": {
  10287. "type": "zip",
  10288. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10289. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10290. "shasum": ""
  10291. },
  10292. "require": {
  10293. "composer-plugin-api": "^2.0.0",
  10294. "composer-runtime-api": "^2.2.2",
  10295. "php": "^8.2"
  10296. },
  10297. "conflict": {
  10298. "pestphp/pest": "<3.0.0"
  10299. },
  10300. "require-dev": {
  10301. "composer/composer": "^2.7.9",
  10302. "pestphp/pest": "^3.0.0",
  10303. "pestphp/pest-dev-tools": "^3.0.0"
  10304. },
  10305. "type": "composer-plugin",
  10306. "extra": {
  10307. "class": "Pest\\Plugin\\Manager"
  10308. },
  10309. "autoload": {
  10310. "psr-4": {
  10311. "Pest\\Plugin\\": "src/"
  10312. }
  10313. },
  10314. "notification-url": "https://packagist.org/downloads/",
  10315. "license": [
  10316. "MIT"
  10317. ],
  10318. "description": "The Pest plugin manager",
  10319. "keywords": [
  10320. "framework",
  10321. "manager",
  10322. "pest",
  10323. "php",
  10324. "plugin",
  10325. "test",
  10326. "testing",
  10327. "unit"
  10328. ],
  10329. "support": {
  10330. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  10331. },
  10332. "funding": [
  10333. {
  10334. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10335. "type": "custom"
  10336. },
  10337. {
  10338. "url": "https://github.com/nunomaduro",
  10339. "type": "github"
  10340. },
  10341. {
  10342. "url": "https://www.patreon.com/nunomaduro",
  10343. "type": "patreon"
  10344. }
  10345. ],
  10346. "time": "2024-09-08T23:21:41+00:00"
  10347. },
  10348. {
  10349. "name": "pestphp/pest-plugin-arch",
  10350. "version": "v3.1.0",
  10351. "source": {
  10352. "type": "git",
  10353. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  10354. "reference": "ebec636b97ee73936ee8485e15a59c3f5a4c21b2"
  10355. },
  10356. "dist": {
  10357. "type": "zip",
  10358. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/ebec636b97ee73936ee8485e15a59c3f5a4c21b2",
  10359. "reference": "ebec636b97ee73936ee8485e15a59c3f5a4c21b2",
  10360. "shasum": ""
  10361. },
  10362. "require": {
  10363. "pestphp/pest-plugin": "^3.0.0",
  10364. "php": "^8.2",
  10365. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  10366. },
  10367. "require-dev": {
  10368. "pestphp/pest": "^3.7.5",
  10369. "pestphp/pest-dev-tools": "^3.4.0"
  10370. },
  10371. "type": "library",
  10372. "extra": {
  10373. "pest": {
  10374. "plugins": [
  10375. "Pest\\Arch\\Plugin"
  10376. ]
  10377. }
  10378. },
  10379. "autoload": {
  10380. "files": [
  10381. "src/Autoload.php"
  10382. ],
  10383. "psr-4": {
  10384. "Pest\\Arch\\": "src/"
  10385. }
  10386. },
  10387. "notification-url": "https://packagist.org/downloads/",
  10388. "license": [
  10389. "MIT"
  10390. ],
  10391. "description": "The Arch plugin for Pest PHP.",
  10392. "keywords": [
  10393. "arch",
  10394. "architecture",
  10395. "framework",
  10396. "pest",
  10397. "php",
  10398. "plugin",
  10399. "test",
  10400. "testing",
  10401. "unit"
  10402. ],
  10403. "support": {
  10404. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.1.0"
  10405. },
  10406. "funding": [
  10407. {
  10408. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10409. "type": "custom"
  10410. },
  10411. {
  10412. "url": "https://github.com/nunomaduro",
  10413. "type": "github"
  10414. }
  10415. ],
  10416. "time": "2025-03-30T17:28:50+00:00"
  10417. },
  10418. {
  10419. "name": "pestphp/pest-plugin-livewire",
  10420. "version": "v3.0.0",
  10421. "source": {
  10422. "type": "git",
  10423. "url": "https://github.com/pestphp/pest-plugin-livewire.git",
  10424. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89"
  10425. },
  10426. "dist": {
  10427. "type": "zip",
  10428. "url": "https://api.github.com/repos/pestphp/pest-plugin-livewire/zipball/e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10429. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10430. "shasum": ""
  10431. },
  10432. "require": {
  10433. "livewire/livewire": "^3.5.6",
  10434. "pestphp/pest": "^3.0.0",
  10435. "php": "^8.1"
  10436. },
  10437. "require-dev": {
  10438. "orchestra/testbench": "^9.4.0",
  10439. "pestphp/pest-dev-tools": "^3.0.0"
  10440. },
  10441. "type": "library",
  10442. "autoload": {
  10443. "files": [
  10444. "src/Autoload.php"
  10445. ],
  10446. "psr-4": {
  10447. "Pest\\Livewire\\": "src/"
  10448. }
  10449. },
  10450. "notification-url": "https://packagist.org/downloads/",
  10451. "license": [
  10452. "MIT"
  10453. ],
  10454. "description": "The Pest Livewire Plugin",
  10455. "keywords": [
  10456. "framework",
  10457. "livewire",
  10458. "pest",
  10459. "php",
  10460. "plugin",
  10461. "test",
  10462. "testing",
  10463. "unit"
  10464. ],
  10465. "support": {
  10466. "source": "https://github.com/pestphp/pest-plugin-livewire/tree/v3.0.0"
  10467. },
  10468. "funding": [
  10469. {
  10470. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10471. "type": "custom"
  10472. },
  10473. {
  10474. "url": "https://github.com/nunomaduro",
  10475. "type": "github"
  10476. },
  10477. {
  10478. "url": "https://www.patreon.com/nunomaduro",
  10479. "type": "patreon"
  10480. }
  10481. ],
  10482. "time": "2024-09-09T00:05:59+00:00"
  10483. },
  10484. {
  10485. "name": "pestphp/pest-plugin-mutate",
  10486. "version": "v3.0.5",
  10487. "source": {
  10488. "type": "git",
  10489. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  10490. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  10491. },
  10492. "dist": {
  10493. "type": "zip",
  10494. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10495. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10496. "shasum": ""
  10497. },
  10498. "require": {
  10499. "nikic/php-parser": "^5.2.0",
  10500. "pestphp/pest-plugin": "^3.0.0",
  10501. "php": "^8.2",
  10502. "psr/simple-cache": "^3.0.0"
  10503. },
  10504. "require-dev": {
  10505. "pestphp/pest": "^3.0.8",
  10506. "pestphp/pest-dev-tools": "^3.0.0",
  10507. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  10508. },
  10509. "type": "library",
  10510. "autoload": {
  10511. "psr-4": {
  10512. "Pest\\Mutate\\": "src/"
  10513. }
  10514. },
  10515. "notification-url": "https://packagist.org/downloads/",
  10516. "license": [
  10517. "MIT"
  10518. ],
  10519. "authors": [
  10520. {
  10521. "name": "Sandro Gehri",
  10522. "email": "sandrogehri@gmail.com"
  10523. }
  10524. ],
  10525. "description": "Mutates your code to find untested cases",
  10526. "keywords": [
  10527. "framework",
  10528. "mutate",
  10529. "mutation",
  10530. "pest",
  10531. "php",
  10532. "plugin",
  10533. "test",
  10534. "testing",
  10535. "unit"
  10536. ],
  10537. "support": {
  10538. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  10539. },
  10540. "funding": [
  10541. {
  10542. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10543. "type": "custom"
  10544. },
  10545. {
  10546. "url": "https://github.com/gehrisandro",
  10547. "type": "github"
  10548. },
  10549. {
  10550. "url": "https://github.com/nunomaduro",
  10551. "type": "github"
  10552. }
  10553. ],
  10554. "time": "2024-09-22T07:54:40+00:00"
  10555. },
  10556. {
  10557. "name": "phar-io/manifest",
  10558. "version": "2.0.4",
  10559. "source": {
  10560. "type": "git",
  10561. "url": "https://github.com/phar-io/manifest.git",
  10562. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10563. },
  10564. "dist": {
  10565. "type": "zip",
  10566. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10567. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10568. "shasum": ""
  10569. },
  10570. "require": {
  10571. "ext-dom": "*",
  10572. "ext-libxml": "*",
  10573. "ext-phar": "*",
  10574. "ext-xmlwriter": "*",
  10575. "phar-io/version": "^3.0.1",
  10576. "php": "^7.2 || ^8.0"
  10577. },
  10578. "type": "library",
  10579. "extra": {
  10580. "branch-alias": {
  10581. "dev-master": "2.0.x-dev"
  10582. }
  10583. },
  10584. "autoload": {
  10585. "classmap": [
  10586. "src/"
  10587. ]
  10588. },
  10589. "notification-url": "https://packagist.org/downloads/",
  10590. "license": [
  10591. "BSD-3-Clause"
  10592. ],
  10593. "authors": [
  10594. {
  10595. "name": "Arne Blankerts",
  10596. "email": "arne@blankerts.de",
  10597. "role": "Developer"
  10598. },
  10599. {
  10600. "name": "Sebastian Heuer",
  10601. "email": "sebastian@phpeople.de",
  10602. "role": "Developer"
  10603. },
  10604. {
  10605. "name": "Sebastian Bergmann",
  10606. "email": "sebastian@phpunit.de",
  10607. "role": "Developer"
  10608. }
  10609. ],
  10610. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10611. "support": {
  10612. "issues": "https://github.com/phar-io/manifest/issues",
  10613. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10614. },
  10615. "funding": [
  10616. {
  10617. "url": "https://github.com/theseer",
  10618. "type": "github"
  10619. }
  10620. ],
  10621. "time": "2024-03-03T12:33:53+00:00"
  10622. },
  10623. {
  10624. "name": "phar-io/version",
  10625. "version": "3.2.1",
  10626. "source": {
  10627. "type": "git",
  10628. "url": "https://github.com/phar-io/version.git",
  10629. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10630. },
  10631. "dist": {
  10632. "type": "zip",
  10633. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10634. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10635. "shasum": ""
  10636. },
  10637. "require": {
  10638. "php": "^7.2 || ^8.0"
  10639. },
  10640. "type": "library",
  10641. "autoload": {
  10642. "classmap": [
  10643. "src/"
  10644. ]
  10645. },
  10646. "notification-url": "https://packagist.org/downloads/",
  10647. "license": [
  10648. "BSD-3-Clause"
  10649. ],
  10650. "authors": [
  10651. {
  10652. "name": "Arne Blankerts",
  10653. "email": "arne@blankerts.de",
  10654. "role": "Developer"
  10655. },
  10656. {
  10657. "name": "Sebastian Heuer",
  10658. "email": "sebastian@phpeople.de",
  10659. "role": "Developer"
  10660. },
  10661. {
  10662. "name": "Sebastian Bergmann",
  10663. "email": "sebastian@phpunit.de",
  10664. "role": "Developer"
  10665. }
  10666. ],
  10667. "description": "Library for handling version information and constraints",
  10668. "support": {
  10669. "issues": "https://github.com/phar-io/version/issues",
  10670. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10671. },
  10672. "time": "2022-02-21T01:04:05+00:00"
  10673. },
  10674. {
  10675. "name": "php-debugbar/php-debugbar",
  10676. "version": "v2.1.6",
  10677. "source": {
  10678. "type": "git",
  10679. "url": "https://github.com/php-debugbar/php-debugbar.git",
  10680. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0"
  10681. },
  10682. "dist": {
  10683. "type": "zip",
  10684. "url": "https://api.github.com/repos/php-debugbar/php-debugbar/zipball/16fa68da5617220594aa5e33fa9de415f94784a0",
  10685. "reference": "16fa68da5617220594aa5e33fa9de415f94784a0",
  10686. "shasum": ""
  10687. },
  10688. "require": {
  10689. "php": "^8",
  10690. "psr/log": "^1|^2|^3",
  10691. "symfony/var-dumper": "^4|^5|^6|^7"
  10692. },
  10693. "require-dev": {
  10694. "dbrekelmans/bdi": "^1",
  10695. "phpunit/phpunit": "^8|^9",
  10696. "symfony/panther": "^1|^2.1",
  10697. "twig/twig": "^1.38|^2.7|^3.0"
  10698. },
  10699. "suggest": {
  10700. "kriswallsmith/assetic": "The best way to manage assets",
  10701. "monolog/monolog": "Log using Monolog",
  10702. "predis/predis": "Redis storage"
  10703. },
  10704. "type": "library",
  10705. "extra": {
  10706. "branch-alias": {
  10707. "dev-master": "2.0-dev"
  10708. }
  10709. },
  10710. "autoload": {
  10711. "psr-4": {
  10712. "DebugBar\\": "src/DebugBar/"
  10713. }
  10714. },
  10715. "notification-url": "https://packagist.org/downloads/",
  10716. "license": [
  10717. "MIT"
  10718. ],
  10719. "authors": [
  10720. {
  10721. "name": "Maxime Bouroumeau-Fuseau",
  10722. "email": "maxime.bouroumeau@gmail.com",
  10723. "homepage": "http://maximebf.com"
  10724. },
  10725. {
  10726. "name": "Barry vd. Heuvel",
  10727. "email": "barryvdh@gmail.com"
  10728. }
  10729. ],
  10730. "description": "Debug bar in the browser for php application",
  10731. "homepage": "https://github.com/php-debugbar/php-debugbar",
  10732. "keywords": [
  10733. "debug",
  10734. "debug bar",
  10735. "debugbar",
  10736. "dev"
  10737. ],
  10738. "support": {
  10739. "issues": "https://github.com/php-debugbar/php-debugbar/issues",
  10740. "source": "https://github.com/php-debugbar/php-debugbar/tree/v2.1.6"
  10741. },
  10742. "time": "2025-02-21T17:47:03+00:00"
  10743. },
  10744. {
  10745. "name": "php-di/invoker",
  10746. "version": "2.3.6",
  10747. "source": {
  10748. "type": "git",
  10749. "url": "https://github.com/PHP-DI/Invoker.git",
  10750. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576"
  10751. },
  10752. "dist": {
  10753. "type": "zip",
  10754. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/59f15608528d8a8838d69b422a919fd6b16aa576",
  10755. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576",
  10756. "shasum": ""
  10757. },
  10758. "require": {
  10759. "php": ">=7.3",
  10760. "psr/container": "^1.0|^2.0"
  10761. },
  10762. "require-dev": {
  10763. "athletic/athletic": "~0.1.8",
  10764. "mnapoli/hard-mode": "~0.3.0",
  10765. "phpunit/phpunit": "^9.0"
  10766. },
  10767. "type": "library",
  10768. "autoload": {
  10769. "psr-4": {
  10770. "Invoker\\": "src/"
  10771. }
  10772. },
  10773. "notification-url": "https://packagist.org/downloads/",
  10774. "license": [
  10775. "MIT"
  10776. ],
  10777. "description": "Generic and extensible callable invoker",
  10778. "homepage": "https://github.com/PHP-DI/Invoker",
  10779. "keywords": [
  10780. "callable",
  10781. "dependency",
  10782. "dependency-injection",
  10783. "injection",
  10784. "invoke",
  10785. "invoker"
  10786. ],
  10787. "support": {
  10788. "issues": "https://github.com/PHP-DI/Invoker/issues",
  10789. "source": "https://github.com/PHP-DI/Invoker/tree/2.3.6"
  10790. },
  10791. "funding": [
  10792. {
  10793. "url": "https://github.com/mnapoli",
  10794. "type": "github"
  10795. }
  10796. ],
  10797. "time": "2025-01-17T12:49:27+00:00"
  10798. },
  10799. {
  10800. "name": "php-di/php-di",
  10801. "version": "7.0.9",
  10802. "source": {
  10803. "type": "git",
  10804. "url": "https://github.com/PHP-DI/PHP-DI.git",
  10805. "reference": "d8480267f5cf239650debba704f3ecd15b638cde"
  10806. },
  10807. "dist": {
  10808. "type": "zip",
  10809. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/d8480267f5cf239650debba704f3ecd15b638cde",
  10810. "reference": "d8480267f5cf239650debba704f3ecd15b638cde",
  10811. "shasum": ""
  10812. },
  10813. "require": {
  10814. "laravel/serializable-closure": "^1.0 || ^2.0",
  10815. "php": ">=8.0",
  10816. "php-di/invoker": "^2.0",
  10817. "psr/container": "^1.1 || ^2.0"
  10818. },
  10819. "provide": {
  10820. "psr/container-implementation": "^1.0"
  10821. },
  10822. "require-dev": {
  10823. "friendsofphp/php-cs-fixer": "^3",
  10824. "friendsofphp/proxy-manager-lts": "^1",
  10825. "mnapoli/phpunit-easymock": "^1.3",
  10826. "phpunit/phpunit": "^9.6",
  10827. "vimeo/psalm": "^5|^6"
  10828. },
  10829. "suggest": {
  10830. "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)"
  10831. },
  10832. "type": "library",
  10833. "autoload": {
  10834. "files": [
  10835. "src/functions.php"
  10836. ],
  10837. "psr-4": {
  10838. "DI\\": "src/"
  10839. }
  10840. },
  10841. "notification-url": "https://packagist.org/downloads/",
  10842. "license": [
  10843. "MIT"
  10844. ],
  10845. "description": "The dependency injection container for humans",
  10846. "homepage": "https://php-di.org/",
  10847. "keywords": [
  10848. "PSR-11",
  10849. "container",
  10850. "container-interop",
  10851. "dependency injection",
  10852. "di",
  10853. "ioc",
  10854. "psr11"
  10855. ],
  10856. "support": {
  10857. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  10858. "source": "https://github.com/PHP-DI/PHP-DI/tree/7.0.9"
  10859. },
  10860. "funding": [
  10861. {
  10862. "url": "https://github.com/mnapoli",
  10863. "type": "github"
  10864. },
  10865. {
  10866. "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
  10867. "type": "tidelift"
  10868. }
  10869. ],
  10870. "time": "2025-02-28T12:46:35+00:00"
  10871. },
  10872. {
  10873. "name": "phpdocumentor/reflection-common",
  10874. "version": "2.2.0",
  10875. "source": {
  10876. "type": "git",
  10877. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10878. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  10879. },
  10880. "dist": {
  10881. "type": "zip",
  10882. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10883. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10884. "shasum": ""
  10885. },
  10886. "require": {
  10887. "php": "^7.2 || ^8.0"
  10888. },
  10889. "type": "library",
  10890. "extra": {
  10891. "branch-alias": {
  10892. "dev-2.x": "2.x-dev"
  10893. }
  10894. },
  10895. "autoload": {
  10896. "psr-4": {
  10897. "phpDocumentor\\Reflection\\": "src/"
  10898. }
  10899. },
  10900. "notification-url": "https://packagist.org/downloads/",
  10901. "license": [
  10902. "MIT"
  10903. ],
  10904. "authors": [
  10905. {
  10906. "name": "Jaap van Otterdijk",
  10907. "email": "opensource@ijaap.nl"
  10908. }
  10909. ],
  10910. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10911. "homepage": "http://www.phpdoc.org",
  10912. "keywords": [
  10913. "FQSEN",
  10914. "phpDocumentor",
  10915. "phpdoc",
  10916. "reflection",
  10917. "static analysis"
  10918. ],
  10919. "support": {
  10920. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  10921. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  10922. },
  10923. "time": "2020-06-27T09:03:43+00:00"
  10924. },
  10925. {
  10926. "name": "phpdocumentor/reflection-docblock",
  10927. "version": "5.6.1",
  10928. "source": {
  10929. "type": "git",
  10930. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  10931. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8"
  10932. },
  10933. "dist": {
  10934. "type": "zip",
  10935. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  10936. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  10937. "shasum": ""
  10938. },
  10939. "require": {
  10940. "doctrine/deprecations": "^1.1",
  10941. "ext-filter": "*",
  10942. "php": "^7.4 || ^8.0",
  10943. "phpdocumentor/reflection-common": "^2.2",
  10944. "phpdocumentor/type-resolver": "^1.7",
  10945. "phpstan/phpdoc-parser": "^1.7|^2.0",
  10946. "webmozart/assert": "^1.9.1"
  10947. },
  10948. "require-dev": {
  10949. "mockery/mockery": "~1.3.5 || ~1.6.0",
  10950. "phpstan/extension-installer": "^1.1",
  10951. "phpstan/phpstan": "^1.8",
  10952. "phpstan/phpstan-mockery": "^1.1",
  10953. "phpstan/phpstan-webmozart-assert": "^1.2",
  10954. "phpunit/phpunit": "^9.5",
  10955. "psalm/phar": "^5.26"
  10956. },
  10957. "type": "library",
  10958. "extra": {
  10959. "branch-alias": {
  10960. "dev-master": "5.x-dev"
  10961. }
  10962. },
  10963. "autoload": {
  10964. "psr-4": {
  10965. "phpDocumentor\\Reflection\\": "src"
  10966. }
  10967. },
  10968. "notification-url": "https://packagist.org/downloads/",
  10969. "license": [
  10970. "MIT"
  10971. ],
  10972. "authors": [
  10973. {
  10974. "name": "Mike van Riel",
  10975. "email": "me@mikevanriel.com"
  10976. },
  10977. {
  10978. "name": "Jaap van Otterdijk",
  10979. "email": "opensource@ijaap.nl"
  10980. }
  10981. ],
  10982. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  10983. "support": {
  10984. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  10985. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.1"
  10986. },
  10987. "time": "2024-12-07T09:39:29+00:00"
  10988. },
  10989. {
  10990. "name": "phpdocumentor/type-resolver",
  10991. "version": "1.10.0",
  10992. "source": {
  10993. "type": "git",
  10994. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10995. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  10996. },
  10997. "dist": {
  10998. "type": "zip",
  10999. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  11000. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  11001. "shasum": ""
  11002. },
  11003. "require": {
  11004. "doctrine/deprecations": "^1.0",
  11005. "php": "^7.3 || ^8.0",
  11006. "phpdocumentor/reflection-common": "^2.0",
  11007. "phpstan/phpdoc-parser": "^1.18|^2.0"
  11008. },
  11009. "require-dev": {
  11010. "ext-tokenizer": "*",
  11011. "phpbench/phpbench": "^1.2",
  11012. "phpstan/extension-installer": "^1.1",
  11013. "phpstan/phpstan": "^1.8",
  11014. "phpstan/phpstan-phpunit": "^1.1",
  11015. "phpunit/phpunit": "^9.5",
  11016. "rector/rector": "^0.13.9",
  11017. "vimeo/psalm": "^4.25"
  11018. },
  11019. "type": "library",
  11020. "extra": {
  11021. "branch-alias": {
  11022. "dev-1.x": "1.x-dev"
  11023. }
  11024. },
  11025. "autoload": {
  11026. "psr-4": {
  11027. "phpDocumentor\\Reflection\\": "src"
  11028. }
  11029. },
  11030. "notification-url": "https://packagist.org/downloads/",
  11031. "license": [
  11032. "MIT"
  11033. ],
  11034. "authors": [
  11035. {
  11036. "name": "Mike van Riel",
  11037. "email": "me@mikevanriel.com"
  11038. }
  11039. ],
  11040. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  11041. "support": {
  11042. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  11043. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  11044. },
  11045. "time": "2024-11-09T15:12:26+00:00"
  11046. },
  11047. {
  11048. "name": "phpstan/phpdoc-parser",
  11049. "version": "2.1.0",
  11050. "source": {
  11051. "type": "git",
  11052. "url": "https://github.com/phpstan/phpdoc-parser.git",
  11053. "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68"
  11054. },
  11055. "dist": {
  11056. "type": "zip",
  11057. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/9b30d6fd026b2c132b3985ce6b23bec09ab3aa68",
  11058. "reference": "9b30d6fd026b2c132b3985ce6b23bec09ab3aa68",
  11059. "shasum": ""
  11060. },
  11061. "require": {
  11062. "php": "^7.4 || ^8.0"
  11063. },
  11064. "require-dev": {
  11065. "doctrine/annotations": "^2.0",
  11066. "nikic/php-parser": "^5.3.0",
  11067. "php-parallel-lint/php-parallel-lint": "^1.2",
  11068. "phpstan/extension-installer": "^1.0",
  11069. "phpstan/phpstan": "^2.0",
  11070. "phpstan/phpstan-phpunit": "^2.0",
  11071. "phpstan/phpstan-strict-rules": "^2.0",
  11072. "phpunit/phpunit": "^9.6",
  11073. "symfony/process": "^5.2"
  11074. },
  11075. "type": "library",
  11076. "autoload": {
  11077. "psr-4": {
  11078. "PHPStan\\PhpDocParser\\": [
  11079. "src/"
  11080. ]
  11081. }
  11082. },
  11083. "notification-url": "https://packagist.org/downloads/",
  11084. "license": [
  11085. "MIT"
  11086. ],
  11087. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  11088. "support": {
  11089. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  11090. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.1.0"
  11091. },
  11092. "time": "2025-02-19T13:28:12+00:00"
  11093. },
  11094. {
  11095. "name": "phpunit/php-code-coverage",
  11096. "version": "11.0.9",
  11097. "source": {
  11098. "type": "git",
  11099. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11100. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7"
  11101. },
  11102. "dist": {
  11103. "type": "zip",
  11104. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  11105. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  11106. "shasum": ""
  11107. },
  11108. "require": {
  11109. "ext-dom": "*",
  11110. "ext-libxml": "*",
  11111. "ext-xmlwriter": "*",
  11112. "nikic/php-parser": "^5.4.0",
  11113. "php": ">=8.2",
  11114. "phpunit/php-file-iterator": "^5.1.0",
  11115. "phpunit/php-text-template": "^4.0.1",
  11116. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  11117. "sebastian/complexity": "^4.0.1",
  11118. "sebastian/environment": "^7.2.0",
  11119. "sebastian/lines-of-code": "^3.0.1",
  11120. "sebastian/version": "^5.0.2",
  11121. "theseer/tokenizer": "^1.2.3"
  11122. },
  11123. "require-dev": {
  11124. "phpunit/phpunit": "^11.5.2"
  11125. },
  11126. "suggest": {
  11127. "ext-pcov": "PHP extension that provides line coverage",
  11128. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  11129. },
  11130. "type": "library",
  11131. "extra": {
  11132. "branch-alias": {
  11133. "dev-main": "11.0.x-dev"
  11134. }
  11135. },
  11136. "autoload": {
  11137. "classmap": [
  11138. "src/"
  11139. ]
  11140. },
  11141. "notification-url": "https://packagist.org/downloads/",
  11142. "license": [
  11143. "BSD-3-Clause"
  11144. ],
  11145. "authors": [
  11146. {
  11147. "name": "Sebastian Bergmann",
  11148. "email": "sebastian@phpunit.de",
  11149. "role": "lead"
  11150. }
  11151. ],
  11152. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11153. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11154. "keywords": [
  11155. "coverage",
  11156. "testing",
  11157. "xunit"
  11158. ],
  11159. "support": {
  11160. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11161. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  11162. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.9"
  11163. },
  11164. "funding": [
  11165. {
  11166. "url": "https://github.com/sebastianbergmann",
  11167. "type": "github"
  11168. }
  11169. ],
  11170. "time": "2025-02-25T13:26:39+00:00"
  11171. },
  11172. {
  11173. "name": "phpunit/php-file-iterator",
  11174. "version": "5.1.0",
  11175. "source": {
  11176. "type": "git",
  11177. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11178. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  11179. },
  11180. "dist": {
  11181. "type": "zip",
  11182. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11183. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11184. "shasum": ""
  11185. },
  11186. "require": {
  11187. "php": ">=8.2"
  11188. },
  11189. "require-dev": {
  11190. "phpunit/phpunit": "^11.0"
  11191. },
  11192. "type": "library",
  11193. "extra": {
  11194. "branch-alias": {
  11195. "dev-main": "5.0-dev"
  11196. }
  11197. },
  11198. "autoload": {
  11199. "classmap": [
  11200. "src/"
  11201. ]
  11202. },
  11203. "notification-url": "https://packagist.org/downloads/",
  11204. "license": [
  11205. "BSD-3-Clause"
  11206. ],
  11207. "authors": [
  11208. {
  11209. "name": "Sebastian Bergmann",
  11210. "email": "sebastian@phpunit.de",
  11211. "role": "lead"
  11212. }
  11213. ],
  11214. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11215. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11216. "keywords": [
  11217. "filesystem",
  11218. "iterator"
  11219. ],
  11220. "support": {
  11221. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11222. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  11223. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  11224. },
  11225. "funding": [
  11226. {
  11227. "url": "https://github.com/sebastianbergmann",
  11228. "type": "github"
  11229. }
  11230. ],
  11231. "time": "2024-08-27T05:02:59+00:00"
  11232. },
  11233. {
  11234. "name": "phpunit/php-invoker",
  11235. "version": "5.0.1",
  11236. "source": {
  11237. "type": "git",
  11238. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11239. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  11240. },
  11241. "dist": {
  11242. "type": "zip",
  11243. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11244. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11245. "shasum": ""
  11246. },
  11247. "require": {
  11248. "php": ">=8.2"
  11249. },
  11250. "require-dev": {
  11251. "ext-pcntl": "*",
  11252. "phpunit/phpunit": "^11.0"
  11253. },
  11254. "suggest": {
  11255. "ext-pcntl": "*"
  11256. },
  11257. "type": "library",
  11258. "extra": {
  11259. "branch-alias": {
  11260. "dev-main": "5.0-dev"
  11261. }
  11262. },
  11263. "autoload": {
  11264. "classmap": [
  11265. "src/"
  11266. ]
  11267. },
  11268. "notification-url": "https://packagist.org/downloads/",
  11269. "license": [
  11270. "BSD-3-Clause"
  11271. ],
  11272. "authors": [
  11273. {
  11274. "name": "Sebastian Bergmann",
  11275. "email": "sebastian@phpunit.de",
  11276. "role": "lead"
  11277. }
  11278. ],
  11279. "description": "Invoke callables with a timeout",
  11280. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11281. "keywords": [
  11282. "process"
  11283. ],
  11284. "support": {
  11285. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11286. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  11287. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  11288. },
  11289. "funding": [
  11290. {
  11291. "url": "https://github.com/sebastianbergmann",
  11292. "type": "github"
  11293. }
  11294. ],
  11295. "time": "2024-07-03T05:07:44+00:00"
  11296. },
  11297. {
  11298. "name": "phpunit/php-text-template",
  11299. "version": "4.0.1",
  11300. "source": {
  11301. "type": "git",
  11302. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11303. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  11304. },
  11305. "dist": {
  11306. "type": "zip",
  11307. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11308. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11309. "shasum": ""
  11310. },
  11311. "require": {
  11312. "php": ">=8.2"
  11313. },
  11314. "require-dev": {
  11315. "phpunit/phpunit": "^11.0"
  11316. },
  11317. "type": "library",
  11318. "extra": {
  11319. "branch-alias": {
  11320. "dev-main": "4.0-dev"
  11321. }
  11322. },
  11323. "autoload": {
  11324. "classmap": [
  11325. "src/"
  11326. ]
  11327. },
  11328. "notification-url": "https://packagist.org/downloads/",
  11329. "license": [
  11330. "BSD-3-Clause"
  11331. ],
  11332. "authors": [
  11333. {
  11334. "name": "Sebastian Bergmann",
  11335. "email": "sebastian@phpunit.de",
  11336. "role": "lead"
  11337. }
  11338. ],
  11339. "description": "Simple template engine.",
  11340. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11341. "keywords": [
  11342. "template"
  11343. ],
  11344. "support": {
  11345. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11346. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  11347. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  11348. },
  11349. "funding": [
  11350. {
  11351. "url": "https://github.com/sebastianbergmann",
  11352. "type": "github"
  11353. }
  11354. ],
  11355. "time": "2024-07-03T05:08:43+00:00"
  11356. },
  11357. {
  11358. "name": "phpunit/php-timer",
  11359. "version": "7.0.1",
  11360. "source": {
  11361. "type": "git",
  11362. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11363. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  11364. },
  11365. "dist": {
  11366. "type": "zip",
  11367. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11368. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11369. "shasum": ""
  11370. },
  11371. "require": {
  11372. "php": ">=8.2"
  11373. },
  11374. "require-dev": {
  11375. "phpunit/phpunit": "^11.0"
  11376. },
  11377. "type": "library",
  11378. "extra": {
  11379. "branch-alias": {
  11380. "dev-main": "7.0-dev"
  11381. }
  11382. },
  11383. "autoload": {
  11384. "classmap": [
  11385. "src/"
  11386. ]
  11387. },
  11388. "notification-url": "https://packagist.org/downloads/",
  11389. "license": [
  11390. "BSD-3-Clause"
  11391. ],
  11392. "authors": [
  11393. {
  11394. "name": "Sebastian Bergmann",
  11395. "email": "sebastian@phpunit.de",
  11396. "role": "lead"
  11397. }
  11398. ],
  11399. "description": "Utility class for timing",
  11400. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11401. "keywords": [
  11402. "timer"
  11403. ],
  11404. "support": {
  11405. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11406. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  11407. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  11408. },
  11409. "funding": [
  11410. {
  11411. "url": "https://github.com/sebastianbergmann",
  11412. "type": "github"
  11413. }
  11414. ],
  11415. "time": "2024-07-03T05:09:35+00:00"
  11416. },
  11417. {
  11418. "name": "phpunit/phpunit",
  11419. "version": "11.5.15",
  11420. "source": {
  11421. "type": "git",
  11422. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11423. "reference": "4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c"
  11424. },
  11425. "dist": {
  11426. "type": "zip",
  11427. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c",
  11428. "reference": "4b6a4ee654e5e0c5e1f17e2f83c0f4c91dee1f9c",
  11429. "shasum": ""
  11430. },
  11431. "require": {
  11432. "ext-dom": "*",
  11433. "ext-json": "*",
  11434. "ext-libxml": "*",
  11435. "ext-mbstring": "*",
  11436. "ext-xml": "*",
  11437. "ext-xmlwriter": "*",
  11438. "myclabs/deep-copy": "^1.13.0",
  11439. "phar-io/manifest": "^2.0.4",
  11440. "phar-io/version": "^3.2.1",
  11441. "php": ">=8.2",
  11442. "phpunit/php-code-coverage": "^11.0.9",
  11443. "phpunit/php-file-iterator": "^5.1.0",
  11444. "phpunit/php-invoker": "^5.0.1",
  11445. "phpunit/php-text-template": "^4.0.1",
  11446. "phpunit/php-timer": "^7.0.1",
  11447. "sebastian/cli-parser": "^3.0.2",
  11448. "sebastian/code-unit": "^3.0.3",
  11449. "sebastian/comparator": "^6.3.1",
  11450. "sebastian/diff": "^6.0.2",
  11451. "sebastian/environment": "^7.2.0",
  11452. "sebastian/exporter": "^6.3.0",
  11453. "sebastian/global-state": "^7.0.2",
  11454. "sebastian/object-enumerator": "^6.0.1",
  11455. "sebastian/type": "^5.1.2",
  11456. "sebastian/version": "^5.0.2",
  11457. "staabm/side-effects-detector": "^1.0.5"
  11458. },
  11459. "suggest": {
  11460. "ext-soap": "To be able to generate mocks based on WSDL files"
  11461. },
  11462. "bin": [
  11463. "phpunit"
  11464. ],
  11465. "type": "library",
  11466. "extra": {
  11467. "branch-alias": {
  11468. "dev-main": "11.5-dev"
  11469. }
  11470. },
  11471. "autoload": {
  11472. "files": [
  11473. "src/Framework/Assert/Functions.php"
  11474. ],
  11475. "classmap": [
  11476. "src/"
  11477. ]
  11478. },
  11479. "notification-url": "https://packagist.org/downloads/",
  11480. "license": [
  11481. "BSD-3-Clause"
  11482. ],
  11483. "authors": [
  11484. {
  11485. "name": "Sebastian Bergmann",
  11486. "email": "sebastian@phpunit.de",
  11487. "role": "lead"
  11488. }
  11489. ],
  11490. "description": "The PHP Unit Testing framework.",
  11491. "homepage": "https://phpunit.de/",
  11492. "keywords": [
  11493. "phpunit",
  11494. "testing",
  11495. "xunit"
  11496. ],
  11497. "support": {
  11498. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11499. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11500. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.15"
  11501. },
  11502. "funding": [
  11503. {
  11504. "url": "https://phpunit.de/sponsors.html",
  11505. "type": "custom"
  11506. },
  11507. {
  11508. "url": "https://github.com/sebastianbergmann",
  11509. "type": "github"
  11510. },
  11511. {
  11512. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11513. "type": "tidelift"
  11514. }
  11515. ],
  11516. "time": "2025-03-23T16:02:11+00:00"
  11517. },
  11518. {
  11519. "name": "sebastian/cli-parser",
  11520. "version": "3.0.2",
  11521. "source": {
  11522. "type": "git",
  11523. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11524. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  11525. },
  11526. "dist": {
  11527. "type": "zip",
  11528. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11529. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11530. "shasum": ""
  11531. },
  11532. "require": {
  11533. "php": ">=8.2"
  11534. },
  11535. "require-dev": {
  11536. "phpunit/phpunit": "^11.0"
  11537. },
  11538. "type": "library",
  11539. "extra": {
  11540. "branch-alias": {
  11541. "dev-main": "3.0-dev"
  11542. }
  11543. },
  11544. "autoload": {
  11545. "classmap": [
  11546. "src/"
  11547. ]
  11548. },
  11549. "notification-url": "https://packagist.org/downloads/",
  11550. "license": [
  11551. "BSD-3-Clause"
  11552. ],
  11553. "authors": [
  11554. {
  11555. "name": "Sebastian Bergmann",
  11556. "email": "sebastian@phpunit.de",
  11557. "role": "lead"
  11558. }
  11559. ],
  11560. "description": "Library for parsing CLI options",
  11561. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11562. "support": {
  11563. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11564. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11565. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  11566. },
  11567. "funding": [
  11568. {
  11569. "url": "https://github.com/sebastianbergmann",
  11570. "type": "github"
  11571. }
  11572. ],
  11573. "time": "2024-07-03T04:41:36+00:00"
  11574. },
  11575. {
  11576. "name": "sebastian/code-unit",
  11577. "version": "3.0.3",
  11578. "source": {
  11579. "type": "git",
  11580. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11581. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64"
  11582. },
  11583. "dist": {
  11584. "type": "zip",
  11585. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  11586. "reference": "54391c61e4af8078e5b276ab082b6d3c54c9ad64",
  11587. "shasum": ""
  11588. },
  11589. "require": {
  11590. "php": ">=8.2"
  11591. },
  11592. "require-dev": {
  11593. "phpunit/phpunit": "^11.5"
  11594. },
  11595. "type": "library",
  11596. "extra": {
  11597. "branch-alias": {
  11598. "dev-main": "3.0-dev"
  11599. }
  11600. },
  11601. "autoload": {
  11602. "classmap": [
  11603. "src/"
  11604. ]
  11605. },
  11606. "notification-url": "https://packagist.org/downloads/",
  11607. "license": [
  11608. "BSD-3-Clause"
  11609. ],
  11610. "authors": [
  11611. {
  11612. "name": "Sebastian Bergmann",
  11613. "email": "sebastian@phpunit.de",
  11614. "role": "lead"
  11615. }
  11616. ],
  11617. "description": "Collection of value objects that represent the PHP code units",
  11618. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11619. "support": {
  11620. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11621. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  11622. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.3"
  11623. },
  11624. "funding": [
  11625. {
  11626. "url": "https://github.com/sebastianbergmann",
  11627. "type": "github"
  11628. }
  11629. ],
  11630. "time": "2025-03-19T07:56:08+00:00"
  11631. },
  11632. {
  11633. "name": "sebastian/code-unit-reverse-lookup",
  11634. "version": "4.0.1",
  11635. "source": {
  11636. "type": "git",
  11637. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11638. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  11639. },
  11640. "dist": {
  11641. "type": "zip",
  11642. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  11643. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  11644. "shasum": ""
  11645. },
  11646. "require": {
  11647. "php": ">=8.2"
  11648. },
  11649. "require-dev": {
  11650. "phpunit/phpunit": "^11.0"
  11651. },
  11652. "type": "library",
  11653. "extra": {
  11654. "branch-alias": {
  11655. "dev-main": "4.0-dev"
  11656. }
  11657. },
  11658. "autoload": {
  11659. "classmap": [
  11660. "src/"
  11661. ]
  11662. },
  11663. "notification-url": "https://packagist.org/downloads/",
  11664. "license": [
  11665. "BSD-3-Clause"
  11666. ],
  11667. "authors": [
  11668. {
  11669. "name": "Sebastian Bergmann",
  11670. "email": "sebastian@phpunit.de"
  11671. }
  11672. ],
  11673. "description": "Looks up which function or method a line of code belongs to",
  11674. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11675. "support": {
  11676. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11677. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  11678. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  11679. },
  11680. "funding": [
  11681. {
  11682. "url": "https://github.com/sebastianbergmann",
  11683. "type": "github"
  11684. }
  11685. ],
  11686. "time": "2024-07-03T04:45:54+00:00"
  11687. },
  11688. {
  11689. "name": "sebastian/comparator",
  11690. "version": "6.3.1",
  11691. "source": {
  11692. "type": "git",
  11693. "url": "https://github.com/sebastianbergmann/comparator.git",
  11694. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
  11695. },
  11696. "dist": {
  11697. "type": "zip",
  11698. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  11699. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  11700. "shasum": ""
  11701. },
  11702. "require": {
  11703. "ext-dom": "*",
  11704. "ext-mbstring": "*",
  11705. "php": ">=8.2",
  11706. "sebastian/diff": "^6.0",
  11707. "sebastian/exporter": "^6.0"
  11708. },
  11709. "require-dev": {
  11710. "phpunit/phpunit": "^11.4"
  11711. },
  11712. "suggest": {
  11713. "ext-bcmath": "For comparing BcMath\\Number objects"
  11714. },
  11715. "type": "library",
  11716. "extra": {
  11717. "branch-alias": {
  11718. "dev-main": "6.3-dev"
  11719. }
  11720. },
  11721. "autoload": {
  11722. "classmap": [
  11723. "src/"
  11724. ]
  11725. },
  11726. "notification-url": "https://packagist.org/downloads/",
  11727. "license": [
  11728. "BSD-3-Clause"
  11729. ],
  11730. "authors": [
  11731. {
  11732. "name": "Sebastian Bergmann",
  11733. "email": "sebastian@phpunit.de"
  11734. },
  11735. {
  11736. "name": "Jeff Welch",
  11737. "email": "whatthejeff@gmail.com"
  11738. },
  11739. {
  11740. "name": "Volker Dusch",
  11741. "email": "github@wallbash.com"
  11742. },
  11743. {
  11744. "name": "Bernhard Schussek",
  11745. "email": "bschussek@2bepublished.at"
  11746. }
  11747. ],
  11748. "description": "Provides the functionality to compare PHP values for equality",
  11749. "homepage": "https://github.com/sebastianbergmann/comparator",
  11750. "keywords": [
  11751. "comparator",
  11752. "compare",
  11753. "equality"
  11754. ],
  11755. "support": {
  11756. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11757. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11758. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
  11759. },
  11760. "funding": [
  11761. {
  11762. "url": "https://github.com/sebastianbergmann",
  11763. "type": "github"
  11764. }
  11765. ],
  11766. "time": "2025-03-07T06:57:01+00:00"
  11767. },
  11768. {
  11769. "name": "sebastian/complexity",
  11770. "version": "4.0.1",
  11771. "source": {
  11772. "type": "git",
  11773. "url": "https://github.com/sebastianbergmann/complexity.git",
  11774. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  11775. },
  11776. "dist": {
  11777. "type": "zip",
  11778. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  11779. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  11780. "shasum": ""
  11781. },
  11782. "require": {
  11783. "nikic/php-parser": "^5.0",
  11784. "php": ">=8.2"
  11785. },
  11786. "require-dev": {
  11787. "phpunit/phpunit": "^11.0"
  11788. },
  11789. "type": "library",
  11790. "extra": {
  11791. "branch-alias": {
  11792. "dev-main": "4.0-dev"
  11793. }
  11794. },
  11795. "autoload": {
  11796. "classmap": [
  11797. "src/"
  11798. ]
  11799. },
  11800. "notification-url": "https://packagist.org/downloads/",
  11801. "license": [
  11802. "BSD-3-Clause"
  11803. ],
  11804. "authors": [
  11805. {
  11806. "name": "Sebastian Bergmann",
  11807. "email": "sebastian@phpunit.de",
  11808. "role": "lead"
  11809. }
  11810. ],
  11811. "description": "Library for calculating the complexity of PHP code units",
  11812. "homepage": "https://github.com/sebastianbergmann/complexity",
  11813. "support": {
  11814. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11815. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11816. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  11817. },
  11818. "funding": [
  11819. {
  11820. "url": "https://github.com/sebastianbergmann",
  11821. "type": "github"
  11822. }
  11823. ],
  11824. "time": "2024-07-03T04:49:50+00:00"
  11825. },
  11826. {
  11827. "name": "sebastian/diff",
  11828. "version": "6.0.2",
  11829. "source": {
  11830. "type": "git",
  11831. "url": "https://github.com/sebastianbergmann/diff.git",
  11832. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  11833. },
  11834. "dist": {
  11835. "type": "zip",
  11836. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  11837. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  11838. "shasum": ""
  11839. },
  11840. "require": {
  11841. "php": ">=8.2"
  11842. },
  11843. "require-dev": {
  11844. "phpunit/phpunit": "^11.0",
  11845. "symfony/process": "^4.2 || ^5"
  11846. },
  11847. "type": "library",
  11848. "extra": {
  11849. "branch-alias": {
  11850. "dev-main": "6.0-dev"
  11851. }
  11852. },
  11853. "autoload": {
  11854. "classmap": [
  11855. "src/"
  11856. ]
  11857. },
  11858. "notification-url": "https://packagist.org/downloads/",
  11859. "license": [
  11860. "BSD-3-Clause"
  11861. ],
  11862. "authors": [
  11863. {
  11864. "name": "Sebastian Bergmann",
  11865. "email": "sebastian@phpunit.de"
  11866. },
  11867. {
  11868. "name": "Kore Nordmann",
  11869. "email": "mail@kore-nordmann.de"
  11870. }
  11871. ],
  11872. "description": "Diff implementation",
  11873. "homepage": "https://github.com/sebastianbergmann/diff",
  11874. "keywords": [
  11875. "diff",
  11876. "udiff",
  11877. "unidiff",
  11878. "unified diff"
  11879. ],
  11880. "support": {
  11881. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11882. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11883. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  11884. },
  11885. "funding": [
  11886. {
  11887. "url": "https://github.com/sebastianbergmann",
  11888. "type": "github"
  11889. }
  11890. ],
  11891. "time": "2024-07-03T04:53:05+00:00"
  11892. },
  11893. {
  11894. "name": "sebastian/environment",
  11895. "version": "7.2.0",
  11896. "source": {
  11897. "type": "git",
  11898. "url": "https://github.com/sebastianbergmann/environment.git",
  11899. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  11900. },
  11901. "dist": {
  11902. "type": "zip",
  11903. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11904. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11905. "shasum": ""
  11906. },
  11907. "require": {
  11908. "php": ">=8.2"
  11909. },
  11910. "require-dev": {
  11911. "phpunit/phpunit": "^11.0"
  11912. },
  11913. "suggest": {
  11914. "ext-posix": "*"
  11915. },
  11916. "type": "library",
  11917. "extra": {
  11918. "branch-alias": {
  11919. "dev-main": "7.2-dev"
  11920. }
  11921. },
  11922. "autoload": {
  11923. "classmap": [
  11924. "src/"
  11925. ]
  11926. },
  11927. "notification-url": "https://packagist.org/downloads/",
  11928. "license": [
  11929. "BSD-3-Clause"
  11930. ],
  11931. "authors": [
  11932. {
  11933. "name": "Sebastian Bergmann",
  11934. "email": "sebastian@phpunit.de"
  11935. }
  11936. ],
  11937. "description": "Provides functionality to handle HHVM/PHP environments",
  11938. "homepage": "https://github.com/sebastianbergmann/environment",
  11939. "keywords": [
  11940. "Xdebug",
  11941. "environment",
  11942. "hhvm"
  11943. ],
  11944. "support": {
  11945. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11946. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11947. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  11948. },
  11949. "funding": [
  11950. {
  11951. "url": "https://github.com/sebastianbergmann",
  11952. "type": "github"
  11953. }
  11954. ],
  11955. "time": "2024-07-03T04:54:44+00:00"
  11956. },
  11957. {
  11958. "name": "sebastian/exporter",
  11959. "version": "6.3.0",
  11960. "source": {
  11961. "type": "git",
  11962. "url": "https://github.com/sebastianbergmann/exporter.git",
  11963. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  11964. },
  11965. "dist": {
  11966. "type": "zip",
  11967. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11968. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11969. "shasum": ""
  11970. },
  11971. "require": {
  11972. "ext-mbstring": "*",
  11973. "php": ">=8.2",
  11974. "sebastian/recursion-context": "^6.0"
  11975. },
  11976. "require-dev": {
  11977. "phpunit/phpunit": "^11.3"
  11978. },
  11979. "type": "library",
  11980. "extra": {
  11981. "branch-alias": {
  11982. "dev-main": "6.1-dev"
  11983. }
  11984. },
  11985. "autoload": {
  11986. "classmap": [
  11987. "src/"
  11988. ]
  11989. },
  11990. "notification-url": "https://packagist.org/downloads/",
  11991. "license": [
  11992. "BSD-3-Clause"
  11993. ],
  11994. "authors": [
  11995. {
  11996. "name": "Sebastian Bergmann",
  11997. "email": "sebastian@phpunit.de"
  11998. },
  11999. {
  12000. "name": "Jeff Welch",
  12001. "email": "whatthejeff@gmail.com"
  12002. },
  12003. {
  12004. "name": "Volker Dusch",
  12005. "email": "github@wallbash.com"
  12006. },
  12007. {
  12008. "name": "Adam Harvey",
  12009. "email": "aharvey@php.net"
  12010. },
  12011. {
  12012. "name": "Bernhard Schussek",
  12013. "email": "bschussek@gmail.com"
  12014. }
  12015. ],
  12016. "description": "Provides the functionality to export PHP variables for visualization",
  12017. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12018. "keywords": [
  12019. "export",
  12020. "exporter"
  12021. ],
  12022. "support": {
  12023. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12024. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  12025. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  12026. },
  12027. "funding": [
  12028. {
  12029. "url": "https://github.com/sebastianbergmann",
  12030. "type": "github"
  12031. }
  12032. ],
  12033. "time": "2024-12-05T09:17:50+00:00"
  12034. },
  12035. {
  12036. "name": "sebastian/global-state",
  12037. "version": "7.0.2",
  12038. "source": {
  12039. "type": "git",
  12040. "url": "https://github.com/sebastianbergmann/global-state.git",
  12041. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  12042. },
  12043. "dist": {
  12044. "type": "zip",
  12045. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  12046. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  12047. "shasum": ""
  12048. },
  12049. "require": {
  12050. "php": ">=8.2",
  12051. "sebastian/object-reflector": "^4.0",
  12052. "sebastian/recursion-context": "^6.0"
  12053. },
  12054. "require-dev": {
  12055. "ext-dom": "*",
  12056. "phpunit/phpunit": "^11.0"
  12057. },
  12058. "type": "library",
  12059. "extra": {
  12060. "branch-alias": {
  12061. "dev-main": "7.0-dev"
  12062. }
  12063. },
  12064. "autoload": {
  12065. "classmap": [
  12066. "src/"
  12067. ]
  12068. },
  12069. "notification-url": "https://packagist.org/downloads/",
  12070. "license": [
  12071. "BSD-3-Clause"
  12072. ],
  12073. "authors": [
  12074. {
  12075. "name": "Sebastian Bergmann",
  12076. "email": "sebastian@phpunit.de"
  12077. }
  12078. ],
  12079. "description": "Snapshotting of global state",
  12080. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  12081. "keywords": [
  12082. "global state"
  12083. ],
  12084. "support": {
  12085. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12086. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  12087. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  12088. },
  12089. "funding": [
  12090. {
  12091. "url": "https://github.com/sebastianbergmann",
  12092. "type": "github"
  12093. }
  12094. ],
  12095. "time": "2024-07-03T04:57:36+00:00"
  12096. },
  12097. {
  12098. "name": "sebastian/lines-of-code",
  12099. "version": "3.0.1",
  12100. "source": {
  12101. "type": "git",
  12102. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12103. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  12104. },
  12105. "dist": {
  12106. "type": "zip",
  12107. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12108. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12109. "shasum": ""
  12110. },
  12111. "require": {
  12112. "nikic/php-parser": "^5.0",
  12113. "php": ">=8.2"
  12114. },
  12115. "require-dev": {
  12116. "phpunit/phpunit": "^11.0"
  12117. },
  12118. "type": "library",
  12119. "extra": {
  12120. "branch-alias": {
  12121. "dev-main": "3.0-dev"
  12122. }
  12123. },
  12124. "autoload": {
  12125. "classmap": [
  12126. "src/"
  12127. ]
  12128. },
  12129. "notification-url": "https://packagist.org/downloads/",
  12130. "license": [
  12131. "BSD-3-Clause"
  12132. ],
  12133. "authors": [
  12134. {
  12135. "name": "Sebastian Bergmann",
  12136. "email": "sebastian@phpunit.de",
  12137. "role": "lead"
  12138. }
  12139. ],
  12140. "description": "Library for counting the lines of code in PHP source code",
  12141. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12142. "support": {
  12143. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12144. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  12145. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  12146. },
  12147. "funding": [
  12148. {
  12149. "url": "https://github.com/sebastianbergmann",
  12150. "type": "github"
  12151. }
  12152. ],
  12153. "time": "2024-07-03T04:58:38+00:00"
  12154. },
  12155. {
  12156. "name": "sebastian/object-enumerator",
  12157. "version": "6.0.1",
  12158. "source": {
  12159. "type": "git",
  12160. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12161. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  12162. },
  12163. "dist": {
  12164. "type": "zip",
  12165. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  12166. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  12167. "shasum": ""
  12168. },
  12169. "require": {
  12170. "php": ">=8.2",
  12171. "sebastian/object-reflector": "^4.0",
  12172. "sebastian/recursion-context": "^6.0"
  12173. },
  12174. "require-dev": {
  12175. "phpunit/phpunit": "^11.0"
  12176. },
  12177. "type": "library",
  12178. "extra": {
  12179. "branch-alias": {
  12180. "dev-main": "6.0-dev"
  12181. }
  12182. },
  12183. "autoload": {
  12184. "classmap": [
  12185. "src/"
  12186. ]
  12187. },
  12188. "notification-url": "https://packagist.org/downloads/",
  12189. "license": [
  12190. "BSD-3-Clause"
  12191. ],
  12192. "authors": [
  12193. {
  12194. "name": "Sebastian Bergmann",
  12195. "email": "sebastian@phpunit.de"
  12196. }
  12197. ],
  12198. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12199. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12200. "support": {
  12201. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12202. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  12203. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  12204. },
  12205. "funding": [
  12206. {
  12207. "url": "https://github.com/sebastianbergmann",
  12208. "type": "github"
  12209. }
  12210. ],
  12211. "time": "2024-07-03T05:00:13+00:00"
  12212. },
  12213. {
  12214. "name": "sebastian/object-reflector",
  12215. "version": "4.0.1",
  12216. "source": {
  12217. "type": "git",
  12218. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12219. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  12220. },
  12221. "dist": {
  12222. "type": "zip",
  12223. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12224. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12225. "shasum": ""
  12226. },
  12227. "require": {
  12228. "php": ">=8.2"
  12229. },
  12230. "require-dev": {
  12231. "phpunit/phpunit": "^11.0"
  12232. },
  12233. "type": "library",
  12234. "extra": {
  12235. "branch-alias": {
  12236. "dev-main": "4.0-dev"
  12237. }
  12238. },
  12239. "autoload": {
  12240. "classmap": [
  12241. "src/"
  12242. ]
  12243. },
  12244. "notification-url": "https://packagist.org/downloads/",
  12245. "license": [
  12246. "BSD-3-Clause"
  12247. ],
  12248. "authors": [
  12249. {
  12250. "name": "Sebastian Bergmann",
  12251. "email": "sebastian@phpunit.de"
  12252. }
  12253. ],
  12254. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12255. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12256. "support": {
  12257. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12258. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  12259. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  12260. },
  12261. "funding": [
  12262. {
  12263. "url": "https://github.com/sebastianbergmann",
  12264. "type": "github"
  12265. }
  12266. ],
  12267. "time": "2024-07-03T05:01:32+00:00"
  12268. },
  12269. {
  12270. "name": "sebastian/recursion-context",
  12271. "version": "6.0.2",
  12272. "source": {
  12273. "type": "git",
  12274. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12275. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  12276. },
  12277. "dist": {
  12278. "type": "zip",
  12279. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  12280. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  12281. "shasum": ""
  12282. },
  12283. "require": {
  12284. "php": ">=8.2"
  12285. },
  12286. "require-dev": {
  12287. "phpunit/phpunit": "^11.0"
  12288. },
  12289. "type": "library",
  12290. "extra": {
  12291. "branch-alias": {
  12292. "dev-main": "6.0-dev"
  12293. }
  12294. },
  12295. "autoload": {
  12296. "classmap": [
  12297. "src/"
  12298. ]
  12299. },
  12300. "notification-url": "https://packagist.org/downloads/",
  12301. "license": [
  12302. "BSD-3-Clause"
  12303. ],
  12304. "authors": [
  12305. {
  12306. "name": "Sebastian Bergmann",
  12307. "email": "sebastian@phpunit.de"
  12308. },
  12309. {
  12310. "name": "Jeff Welch",
  12311. "email": "whatthejeff@gmail.com"
  12312. },
  12313. {
  12314. "name": "Adam Harvey",
  12315. "email": "aharvey@php.net"
  12316. }
  12317. ],
  12318. "description": "Provides functionality to recursively process PHP variables",
  12319. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12320. "support": {
  12321. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12322. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  12323. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  12324. },
  12325. "funding": [
  12326. {
  12327. "url": "https://github.com/sebastianbergmann",
  12328. "type": "github"
  12329. }
  12330. ],
  12331. "time": "2024-07-03T05:10:34+00:00"
  12332. },
  12333. {
  12334. "name": "sebastian/type",
  12335. "version": "5.1.2",
  12336. "source": {
  12337. "type": "git",
  12338. "url": "https://github.com/sebastianbergmann/type.git",
  12339. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e"
  12340. },
  12341. "dist": {
  12342. "type": "zip",
  12343. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  12344. "reference": "a8a7e30534b0eb0c77cd9d07e82de1a114389f5e",
  12345. "shasum": ""
  12346. },
  12347. "require": {
  12348. "php": ">=8.2"
  12349. },
  12350. "require-dev": {
  12351. "phpunit/phpunit": "^11.3"
  12352. },
  12353. "type": "library",
  12354. "extra": {
  12355. "branch-alias": {
  12356. "dev-main": "5.1-dev"
  12357. }
  12358. },
  12359. "autoload": {
  12360. "classmap": [
  12361. "src/"
  12362. ]
  12363. },
  12364. "notification-url": "https://packagist.org/downloads/",
  12365. "license": [
  12366. "BSD-3-Clause"
  12367. ],
  12368. "authors": [
  12369. {
  12370. "name": "Sebastian Bergmann",
  12371. "email": "sebastian@phpunit.de",
  12372. "role": "lead"
  12373. }
  12374. ],
  12375. "description": "Collection of value objects that represent the types of the PHP type system",
  12376. "homepage": "https://github.com/sebastianbergmann/type",
  12377. "support": {
  12378. "issues": "https://github.com/sebastianbergmann/type/issues",
  12379. "security": "https://github.com/sebastianbergmann/type/security/policy",
  12380. "source": "https://github.com/sebastianbergmann/type/tree/5.1.2"
  12381. },
  12382. "funding": [
  12383. {
  12384. "url": "https://github.com/sebastianbergmann",
  12385. "type": "github"
  12386. }
  12387. ],
  12388. "time": "2025-03-18T13:35:50+00:00"
  12389. },
  12390. {
  12391. "name": "sebastian/version",
  12392. "version": "5.0.2",
  12393. "source": {
  12394. "type": "git",
  12395. "url": "https://github.com/sebastianbergmann/version.git",
  12396. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  12397. },
  12398. "dist": {
  12399. "type": "zip",
  12400. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12401. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12402. "shasum": ""
  12403. },
  12404. "require": {
  12405. "php": ">=8.2"
  12406. },
  12407. "type": "library",
  12408. "extra": {
  12409. "branch-alias": {
  12410. "dev-main": "5.0-dev"
  12411. }
  12412. },
  12413. "autoload": {
  12414. "classmap": [
  12415. "src/"
  12416. ]
  12417. },
  12418. "notification-url": "https://packagist.org/downloads/",
  12419. "license": [
  12420. "BSD-3-Clause"
  12421. ],
  12422. "authors": [
  12423. {
  12424. "name": "Sebastian Bergmann",
  12425. "email": "sebastian@phpunit.de",
  12426. "role": "lead"
  12427. }
  12428. ],
  12429. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12430. "homepage": "https://github.com/sebastianbergmann/version",
  12431. "support": {
  12432. "issues": "https://github.com/sebastianbergmann/version/issues",
  12433. "security": "https://github.com/sebastianbergmann/version/security/policy",
  12434. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  12435. },
  12436. "funding": [
  12437. {
  12438. "url": "https://github.com/sebastianbergmann",
  12439. "type": "github"
  12440. }
  12441. ],
  12442. "time": "2024-10-09T05:16:32+00:00"
  12443. },
  12444. {
  12445. "name": "spatie/backtrace",
  12446. "version": "1.7.1",
  12447. "source": {
  12448. "type": "git",
  12449. "url": "https://github.com/spatie/backtrace.git",
  12450. "reference": "0f2477c520e3729de58e061b8192f161c99f770b"
  12451. },
  12452. "dist": {
  12453. "type": "zip",
  12454. "url": "https://api.github.com/repos/spatie/backtrace/zipball/0f2477c520e3729de58e061b8192f161c99f770b",
  12455. "reference": "0f2477c520e3729de58e061b8192f161c99f770b",
  12456. "shasum": ""
  12457. },
  12458. "require": {
  12459. "php": "^7.3 || ^8.0"
  12460. },
  12461. "require-dev": {
  12462. "ext-json": "*",
  12463. "laravel/serializable-closure": "^1.3 || ^2.0",
  12464. "phpunit/phpunit": "^9.3 || ^11.4.3",
  12465. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6",
  12466. "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0"
  12467. },
  12468. "type": "library",
  12469. "autoload": {
  12470. "psr-4": {
  12471. "Spatie\\Backtrace\\": "src"
  12472. }
  12473. },
  12474. "notification-url": "https://packagist.org/downloads/",
  12475. "license": [
  12476. "MIT"
  12477. ],
  12478. "authors": [
  12479. {
  12480. "name": "Freek Van de Herten",
  12481. "email": "freek@spatie.be",
  12482. "homepage": "https://spatie.be",
  12483. "role": "Developer"
  12484. }
  12485. ],
  12486. "description": "A better backtrace",
  12487. "homepage": "https://github.com/spatie/backtrace",
  12488. "keywords": [
  12489. "Backtrace",
  12490. "spatie"
  12491. ],
  12492. "support": {
  12493. "source": "https://github.com/spatie/backtrace/tree/1.7.1"
  12494. },
  12495. "funding": [
  12496. {
  12497. "url": "https://github.com/sponsors/spatie",
  12498. "type": "github"
  12499. },
  12500. {
  12501. "url": "https://spatie.be/open-source/support-us",
  12502. "type": "other"
  12503. }
  12504. ],
  12505. "time": "2024-12-02T13:28:15+00:00"
  12506. },
  12507. {
  12508. "name": "spatie/error-solutions",
  12509. "version": "1.1.3",
  12510. "source": {
  12511. "type": "git",
  12512. "url": "https://github.com/spatie/error-solutions.git",
  12513. "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936"
  12514. },
  12515. "dist": {
  12516. "type": "zip",
  12517. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
  12518. "reference": "e495d7178ca524f2dd0fe6a1d99a1e608e1c9936",
  12519. "shasum": ""
  12520. },
  12521. "require": {
  12522. "php": "^8.0"
  12523. },
  12524. "require-dev": {
  12525. "illuminate/broadcasting": "^10.0|^11.0|^12.0",
  12526. "illuminate/cache": "^10.0|^11.0|^12.0",
  12527. "illuminate/support": "^10.0|^11.0|^12.0",
  12528. "livewire/livewire": "^2.11|^3.5.20",
  12529. "openai-php/client": "^0.10.1",
  12530. "orchestra/testbench": "8.22.3|^9.0|^10.0",
  12531. "pestphp/pest": "^2.20|^3.0",
  12532. "phpstan/phpstan": "^2.1",
  12533. "psr/simple-cache": "^3.0",
  12534. "psr/simple-cache-implementation": "^3.0",
  12535. "spatie/ray": "^1.28",
  12536. "symfony/cache": "^5.4|^6.0|^7.0",
  12537. "symfony/process": "^5.4|^6.0|^7.0",
  12538. "vlucas/phpdotenv": "^5.5"
  12539. },
  12540. "suggest": {
  12541. "openai-php/client": "Require get solutions from OpenAI",
  12542. "simple-cache-implementation": "To cache solutions from OpenAI"
  12543. },
  12544. "type": "library",
  12545. "autoload": {
  12546. "psr-4": {
  12547. "Spatie\\Ignition\\": "legacy/ignition",
  12548. "Spatie\\ErrorSolutions\\": "src",
  12549. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  12550. }
  12551. },
  12552. "notification-url": "https://packagist.org/downloads/",
  12553. "license": [
  12554. "MIT"
  12555. ],
  12556. "authors": [
  12557. {
  12558. "name": "Ruben Van Assche",
  12559. "email": "ruben@spatie.be",
  12560. "role": "Developer"
  12561. }
  12562. ],
  12563. "description": "This is my package error-solutions",
  12564. "homepage": "https://github.com/spatie/error-solutions",
  12565. "keywords": [
  12566. "error-solutions",
  12567. "spatie"
  12568. ],
  12569. "support": {
  12570. "issues": "https://github.com/spatie/error-solutions/issues",
  12571. "source": "https://github.com/spatie/error-solutions/tree/1.1.3"
  12572. },
  12573. "funding": [
  12574. {
  12575. "url": "https://github.com/Spatie",
  12576. "type": "github"
  12577. }
  12578. ],
  12579. "time": "2025-02-14T12:29:50+00:00"
  12580. },
  12581. {
  12582. "name": "spatie/flare-client-php",
  12583. "version": "1.10.1",
  12584. "source": {
  12585. "type": "git",
  12586. "url": "https://github.com/spatie/flare-client-php.git",
  12587. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f"
  12588. },
  12589. "dist": {
  12590. "type": "zip",
  12591. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/bf1716eb98bd689451b071548ae9e70738dce62f",
  12592. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f",
  12593. "shasum": ""
  12594. },
  12595. "require": {
  12596. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0|^12.0",
  12597. "php": "^8.0",
  12598. "spatie/backtrace": "^1.6.1",
  12599. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  12600. "symfony/mime": "^5.2|^6.0|^7.0",
  12601. "symfony/process": "^5.2|^6.0|^7.0",
  12602. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  12603. },
  12604. "require-dev": {
  12605. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  12606. "pestphp/pest": "^1.20|^2.0",
  12607. "phpstan/extension-installer": "^1.1",
  12608. "phpstan/phpstan-deprecation-rules": "^1.0",
  12609. "phpstan/phpstan-phpunit": "^1.0",
  12610. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  12611. },
  12612. "type": "library",
  12613. "extra": {
  12614. "branch-alias": {
  12615. "dev-main": "1.3.x-dev"
  12616. }
  12617. },
  12618. "autoload": {
  12619. "files": [
  12620. "src/helpers.php"
  12621. ],
  12622. "psr-4": {
  12623. "Spatie\\FlareClient\\": "src"
  12624. }
  12625. },
  12626. "notification-url": "https://packagist.org/downloads/",
  12627. "license": [
  12628. "MIT"
  12629. ],
  12630. "description": "Send PHP errors to Flare",
  12631. "homepage": "https://github.com/spatie/flare-client-php",
  12632. "keywords": [
  12633. "exception",
  12634. "flare",
  12635. "reporting",
  12636. "spatie"
  12637. ],
  12638. "support": {
  12639. "issues": "https://github.com/spatie/flare-client-php/issues",
  12640. "source": "https://github.com/spatie/flare-client-php/tree/1.10.1"
  12641. },
  12642. "funding": [
  12643. {
  12644. "url": "https://github.com/spatie",
  12645. "type": "github"
  12646. }
  12647. ],
  12648. "time": "2025-02-14T13:42:06+00:00"
  12649. },
  12650. {
  12651. "name": "spatie/ignition",
  12652. "version": "1.15.1",
  12653. "source": {
  12654. "type": "git",
  12655. "url": "https://github.com/spatie/ignition.git",
  12656. "reference": "31f314153020aee5af3537e507fef892ffbf8c85"
  12657. },
  12658. "dist": {
  12659. "type": "zip",
  12660. "url": "https://api.github.com/repos/spatie/ignition/zipball/31f314153020aee5af3537e507fef892ffbf8c85",
  12661. "reference": "31f314153020aee5af3537e507fef892ffbf8c85",
  12662. "shasum": ""
  12663. },
  12664. "require": {
  12665. "ext-json": "*",
  12666. "ext-mbstring": "*",
  12667. "php": "^8.0",
  12668. "spatie/error-solutions": "^1.0",
  12669. "spatie/flare-client-php": "^1.7",
  12670. "symfony/console": "^5.4|^6.0|^7.0",
  12671. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  12672. },
  12673. "require-dev": {
  12674. "illuminate/cache": "^9.52|^10.0|^11.0|^12.0",
  12675. "mockery/mockery": "^1.4",
  12676. "pestphp/pest": "^1.20|^2.0",
  12677. "phpstan/extension-installer": "^1.1",
  12678. "phpstan/phpstan-deprecation-rules": "^1.0",
  12679. "phpstan/phpstan-phpunit": "^1.0",
  12680. "psr/simple-cache-implementation": "*",
  12681. "symfony/cache": "^5.4|^6.0|^7.0",
  12682. "symfony/process": "^5.4|^6.0|^7.0",
  12683. "vlucas/phpdotenv": "^5.5"
  12684. },
  12685. "suggest": {
  12686. "openai-php/client": "Require get solutions from OpenAI",
  12687. "simple-cache-implementation": "To cache solutions from OpenAI"
  12688. },
  12689. "type": "library",
  12690. "extra": {
  12691. "branch-alias": {
  12692. "dev-main": "1.5.x-dev"
  12693. }
  12694. },
  12695. "autoload": {
  12696. "psr-4": {
  12697. "Spatie\\Ignition\\": "src"
  12698. }
  12699. },
  12700. "notification-url": "https://packagist.org/downloads/",
  12701. "license": [
  12702. "MIT"
  12703. ],
  12704. "authors": [
  12705. {
  12706. "name": "Spatie",
  12707. "email": "info@spatie.be",
  12708. "role": "Developer"
  12709. }
  12710. ],
  12711. "description": "A beautiful error page for PHP applications.",
  12712. "homepage": "https://flareapp.io/ignition",
  12713. "keywords": [
  12714. "error",
  12715. "flare",
  12716. "laravel",
  12717. "page"
  12718. ],
  12719. "support": {
  12720. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12721. "forum": "https://twitter.com/flareappio",
  12722. "issues": "https://github.com/spatie/ignition/issues",
  12723. "source": "https://github.com/spatie/ignition"
  12724. },
  12725. "funding": [
  12726. {
  12727. "url": "https://github.com/spatie",
  12728. "type": "github"
  12729. }
  12730. ],
  12731. "time": "2025-02-21T14:31:39+00:00"
  12732. },
  12733. {
  12734. "name": "spatie/laravel-ignition",
  12735. "version": "2.9.1",
  12736. "source": {
  12737. "type": "git",
  12738. "url": "https://github.com/spatie/laravel-ignition.git",
  12739. "reference": "1baee07216d6748ebd3a65ba97381b051838707a"
  12740. },
  12741. "dist": {
  12742. "type": "zip",
  12743. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/1baee07216d6748ebd3a65ba97381b051838707a",
  12744. "reference": "1baee07216d6748ebd3a65ba97381b051838707a",
  12745. "shasum": ""
  12746. },
  12747. "require": {
  12748. "ext-curl": "*",
  12749. "ext-json": "*",
  12750. "ext-mbstring": "*",
  12751. "illuminate/support": "^10.0|^11.0|^12.0",
  12752. "php": "^8.1",
  12753. "spatie/ignition": "^1.15",
  12754. "symfony/console": "^6.2.3|^7.0",
  12755. "symfony/var-dumper": "^6.2.3|^7.0"
  12756. },
  12757. "require-dev": {
  12758. "livewire/livewire": "^2.11|^3.3.5",
  12759. "mockery/mockery": "^1.5.1",
  12760. "openai-php/client": "^0.8.1|^0.10",
  12761. "orchestra/testbench": "8.22.3|^9.0|^10.0",
  12762. "pestphp/pest": "^2.34|^3.7",
  12763. "phpstan/extension-installer": "^1.3.1",
  12764. "phpstan/phpstan-deprecation-rules": "^1.1.1|^2.0",
  12765. "phpstan/phpstan-phpunit": "^1.3.16|^2.0",
  12766. "vlucas/phpdotenv": "^5.5"
  12767. },
  12768. "suggest": {
  12769. "openai-php/client": "Require get solutions from OpenAI",
  12770. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  12771. },
  12772. "type": "library",
  12773. "extra": {
  12774. "laravel": {
  12775. "aliases": {
  12776. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  12777. },
  12778. "providers": [
  12779. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  12780. ]
  12781. }
  12782. },
  12783. "autoload": {
  12784. "files": [
  12785. "src/helpers.php"
  12786. ],
  12787. "psr-4": {
  12788. "Spatie\\LaravelIgnition\\": "src"
  12789. }
  12790. },
  12791. "notification-url": "https://packagist.org/downloads/",
  12792. "license": [
  12793. "MIT"
  12794. ],
  12795. "authors": [
  12796. {
  12797. "name": "Spatie",
  12798. "email": "info@spatie.be",
  12799. "role": "Developer"
  12800. }
  12801. ],
  12802. "description": "A beautiful error page for Laravel applications.",
  12803. "homepage": "https://flareapp.io/ignition",
  12804. "keywords": [
  12805. "error",
  12806. "flare",
  12807. "laravel",
  12808. "page"
  12809. ],
  12810. "support": {
  12811. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12812. "forum": "https://twitter.com/flareappio",
  12813. "issues": "https://github.com/spatie/laravel-ignition/issues",
  12814. "source": "https://github.com/spatie/laravel-ignition"
  12815. },
  12816. "funding": [
  12817. {
  12818. "url": "https://github.com/spatie",
  12819. "type": "github"
  12820. }
  12821. ],
  12822. "time": "2025-02-20T13:13:55+00:00"
  12823. },
  12824. {
  12825. "name": "spatie/laravel-ray",
  12826. "version": "1.40.2",
  12827. "source": {
  12828. "type": "git",
  12829. "url": "https://github.com/spatie/laravel-ray.git",
  12830. "reference": "1d1b31eb83cb38b41975c37363c7461de6d86b25"
  12831. },
  12832. "dist": {
  12833. "type": "zip",
  12834. "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/1d1b31eb83cb38b41975c37363c7461de6d86b25",
  12835. "reference": "1d1b31eb83cb38b41975c37363c7461de6d86b25",
  12836. "shasum": ""
  12837. },
  12838. "require": {
  12839. "composer-runtime-api": "^2.2",
  12840. "ext-json": "*",
  12841. "illuminate/contracts": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12842. "illuminate/database": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12843. "illuminate/queue": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12844. "illuminate/support": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12845. "php": "^7.4 || ^8.0",
  12846. "spatie/backtrace": "^1.7.1",
  12847. "spatie/ray": "^1.41.3",
  12848. "symfony/stopwatch": "4.2 || ^5.1 || ^6.0 || ^7.0",
  12849. "zbateson/mail-mime-parser": "^1.3.1 || ^2.0 || ^3.0"
  12850. },
  12851. "require-dev": {
  12852. "guzzlehttp/guzzle": "^7.3",
  12853. "laravel/framework": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12854. "orchestra/testbench-core": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0",
  12855. "pestphp/pest": "^1.22 || ^2.0 || ^3.0",
  12856. "phpstan/phpstan": "^1.10.57 || ^2.0.2",
  12857. "phpunit/phpunit": "^9.3 || ^10.1 || ^11.0.10",
  12858. "rector/rector": "^0.19.2 || ^1.0.1 || ^2.0.0",
  12859. "spatie/pest-plugin-snapshots": "^1.1 || ^2.0",
  12860. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12861. },
  12862. "type": "library",
  12863. "extra": {
  12864. "laravel": {
  12865. "providers": [
  12866. "Spatie\\LaravelRay\\RayServiceProvider"
  12867. ]
  12868. },
  12869. "branch-alias": {
  12870. "dev-main": "1.x-dev"
  12871. }
  12872. },
  12873. "autoload": {
  12874. "psr-4": {
  12875. "Spatie\\LaravelRay\\": "src"
  12876. }
  12877. },
  12878. "notification-url": "https://packagist.org/downloads/",
  12879. "license": [
  12880. "MIT"
  12881. ],
  12882. "authors": [
  12883. {
  12884. "name": "Freek Van der Herten",
  12885. "email": "freek@spatie.be",
  12886. "homepage": "https://spatie.be",
  12887. "role": "Developer"
  12888. }
  12889. ],
  12890. "description": "Easily debug Laravel apps",
  12891. "homepage": "https://github.com/spatie/laravel-ray",
  12892. "keywords": [
  12893. "laravel-ray",
  12894. "spatie"
  12895. ],
  12896. "support": {
  12897. "issues": "https://github.com/spatie/laravel-ray/issues",
  12898. "source": "https://github.com/spatie/laravel-ray/tree/1.40.2"
  12899. },
  12900. "funding": [
  12901. {
  12902. "url": "https://github.com/sponsors/spatie",
  12903. "type": "github"
  12904. },
  12905. {
  12906. "url": "https://spatie.be/open-source/support-us",
  12907. "type": "other"
  12908. }
  12909. ],
  12910. "time": "2025-03-27T08:26:55+00:00"
  12911. },
  12912. {
  12913. "name": "spatie/macroable",
  12914. "version": "2.0.0",
  12915. "source": {
  12916. "type": "git",
  12917. "url": "https://github.com/spatie/macroable.git",
  12918. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072"
  12919. },
  12920. "dist": {
  12921. "type": "zip",
  12922. "url": "https://api.github.com/repos/spatie/macroable/zipball/ec2c320f932e730607aff8052c44183cf3ecb072",
  12923. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072",
  12924. "shasum": ""
  12925. },
  12926. "require": {
  12927. "php": "^8.0"
  12928. },
  12929. "require-dev": {
  12930. "phpunit/phpunit": "^8.0|^9.3"
  12931. },
  12932. "type": "library",
  12933. "autoload": {
  12934. "psr-4": {
  12935. "Spatie\\Macroable\\": "src"
  12936. }
  12937. },
  12938. "notification-url": "https://packagist.org/downloads/",
  12939. "license": [
  12940. "MIT"
  12941. ],
  12942. "authors": [
  12943. {
  12944. "name": "Freek Van der Herten",
  12945. "email": "freek@spatie.be",
  12946. "homepage": "https://spatie.be",
  12947. "role": "Developer"
  12948. }
  12949. ],
  12950. "description": "A trait to dynamically add methods to a class",
  12951. "homepage": "https://github.com/spatie/macroable",
  12952. "keywords": [
  12953. "macroable",
  12954. "spatie"
  12955. ],
  12956. "support": {
  12957. "issues": "https://github.com/spatie/macroable/issues",
  12958. "source": "https://github.com/spatie/macroable/tree/2.0.0"
  12959. },
  12960. "time": "2021-03-26T22:39:02+00:00"
  12961. },
  12962. {
  12963. "name": "spatie/ray",
  12964. "version": "1.41.6",
  12965. "source": {
  12966. "type": "git",
  12967. "url": "https://github.com/spatie/ray.git",
  12968. "reference": "ae6e32a54a901544a3d70b12b865900bc240f71c"
  12969. },
  12970. "dist": {
  12971. "type": "zip",
  12972. "url": "https://api.github.com/repos/spatie/ray/zipball/ae6e32a54a901544a3d70b12b865900bc240f71c",
  12973. "reference": "ae6e32a54a901544a3d70b12b865900bc240f71c",
  12974. "shasum": ""
  12975. },
  12976. "require": {
  12977. "ext-curl": "*",
  12978. "ext-json": "*",
  12979. "php": "^7.4 || ^8.0",
  12980. "ramsey/uuid": "^3.0 || ^4.1",
  12981. "spatie/backtrace": "^1.7.1",
  12982. "spatie/macroable": "^1.0 || ^2.0",
  12983. "symfony/stopwatch": "^4.2 || ^5.1 || ^6.0 || ^7.0",
  12984. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12985. },
  12986. "require-dev": {
  12987. "illuminate/support": "^7.20 || ^8.18 || ^9.0 || ^10.0 || ^11.0 || ^12.0",
  12988. "nesbot/carbon": "^2.63 || ^3.8.4",
  12989. "pestphp/pest": "^1.22",
  12990. "phpstan/phpstan": "^1.10.57 || ^2.0.3",
  12991. "phpunit/phpunit": "^9.5",
  12992. "rector/rector": "^0.19.2 || ^1.0.1 || ^2.0.0",
  12993. "spatie/phpunit-snapshot-assertions": "^4.2",
  12994. "spatie/test-time": "^1.2"
  12995. },
  12996. "bin": [
  12997. "bin/remove-ray.sh"
  12998. ],
  12999. "type": "library",
  13000. "extra": {
  13001. "branch-alias": {
  13002. "dev-main": "1.x-dev"
  13003. }
  13004. },
  13005. "autoload": {
  13006. "files": [
  13007. "src/helpers.php"
  13008. ],
  13009. "psr-4": {
  13010. "Spatie\\Ray\\": "src"
  13011. }
  13012. },
  13013. "notification-url": "https://packagist.org/downloads/",
  13014. "license": [
  13015. "MIT"
  13016. ],
  13017. "authors": [
  13018. {
  13019. "name": "Freek Van der Herten",
  13020. "email": "freek@spatie.be",
  13021. "homepage": "https://spatie.be",
  13022. "role": "Developer"
  13023. }
  13024. ],
  13025. "description": "Debug with Ray to fix problems faster",
  13026. "homepage": "https://github.com/spatie/ray",
  13027. "keywords": [
  13028. "ray",
  13029. "spatie"
  13030. ],
  13031. "support": {
  13032. "issues": "https://github.com/spatie/ray/issues",
  13033. "source": "https://github.com/spatie/ray/tree/1.41.6"
  13034. },
  13035. "funding": [
  13036. {
  13037. "url": "https://github.com/sponsors/spatie",
  13038. "type": "github"
  13039. },
  13040. {
  13041. "url": "https://spatie.be/open-source/support-us",
  13042. "type": "other"
  13043. }
  13044. ],
  13045. "time": "2025-03-21T08:56:30+00:00"
  13046. },
  13047. {
  13048. "name": "staabm/side-effects-detector",
  13049. "version": "1.0.5",
  13050. "source": {
  13051. "type": "git",
  13052. "url": "https://github.com/staabm/side-effects-detector.git",
  13053. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  13054. },
  13055. "dist": {
  13056. "type": "zip",
  13057. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  13058. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  13059. "shasum": ""
  13060. },
  13061. "require": {
  13062. "ext-tokenizer": "*",
  13063. "php": "^7.4 || ^8.0"
  13064. },
  13065. "require-dev": {
  13066. "phpstan/extension-installer": "^1.4.3",
  13067. "phpstan/phpstan": "^1.12.6",
  13068. "phpunit/phpunit": "^9.6.21",
  13069. "symfony/var-dumper": "^5.4.43",
  13070. "tomasvotruba/type-coverage": "1.0.0",
  13071. "tomasvotruba/unused-public": "1.0.0"
  13072. },
  13073. "type": "library",
  13074. "autoload": {
  13075. "classmap": [
  13076. "lib/"
  13077. ]
  13078. },
  13079. "notification-url": "https://packagist.org/downloads/",
  13080. "license": [
  13081. "MIT"
  13082. ],
  13083. "description": "A static analysis tool to detect side effects in PHP code",
  13084. "keywords": [
  13085. "static analysis"
  13086. ],
  13087. "support": {
  13088. "issues": "https://github.com/staabm/side-effects-detector/issues",
  13089. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  13090. },
  13091. "funding": [
  13092. {
  13093. "url": "https://github.com/staabm",
  13094. "type": "github"
  13095. }
  13096. ],
  13097. "time": "2024-10-20T05:08:20+00:00"
  13098. },
  13099. {
  13100. "name": "symfony/polyfill-iconv",
  13101. "version": "v1.31.0",
  13102. "source": {
  13103. "type": "git",
  13104. "url": "https://github.com/symfony/polyfill-iconv.git",
  13105. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  13106. },
  13107. "dist": {
  13108. "type": "zip",
  13109. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  13110. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  13111. "shasum": ""
  13112. },
  13113. "require": {
  13114. "php": ">=7.2"
  13115. },
  13116. "provide": {
  13117. "ext-iconv": "*"
  13118. },
  13119. "suggest": {
  13120. "ext-iconv": "For best performance"
  13121. },
  13122. "type": "library",
  13123. "extra": {
  13124. "thanks": {
  13125. "url": "https://github.com/symfony/polyfill",
  13126. "name": "symfony/polyfill"
  13127. }
  13128. },
  13129. "autoload": {
  13130. "files": [
  13131. "bootstrap.php"
  13132. ],
  13133. "psr-4": {
  13134. "Symfony\\Polyfill\\Iconv\\": ""
  13135. }
  13136. },
  13137. "notification-url": "https://packagist.org/downloads/",
  13138. "license": [
  13139. "MIT"
  13140. ],
  13141. "authors": [
  13142. {
  13143. "name": "Nicolas Grekas",
  13144. "email": "p@tchwork.com"
  13145. },
  13146. {
  13147. "name": "Symfony Community",
  13148. "homepage": "https://symfony.com/contributors"
  13149. }
  13150. ],
  13151. "description": "Symfony polyfill for the Iconv extension",
  13152. "homepage": "https://symfony.com",
  13153. "keywords": [
  13154. "compatibility",
  13155. "iconv",
  13156. "polyfill",
  13157. "portable",
  13158. "shim"
  13159. ],
  13160. "support": {
  13161. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  13162. },
  13163. "funding": [
  13164. {
  13165. "url": "https://symfony.com/sponsor",
  13166. "type": "custom"
  13167. },
  13168. {
  13169. "url": "https://github.com/fabpot",
  13170. "type": "github"
  13171. },
  13172. {
  13173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13174. "type": "tidelift"
  13175. }
  13176. ],
  13177. "time": "2024-09-09T11:45:10+00:00"
  13178. },
  13179. {
  13180. "name": "symfony/stopwatch",
  13181. "version": "v7.2.4",
  13182. "source": {
  13183. "type": "git",
  13184. "url": "https://github.com/symfony/stopwatch.git",
  13185. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd"
  13186. },
  13187. "dist": {
  13188. "type": "zip",
  13189. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  13190. "reference": "5a49289e2b308214c8b9c2fda4ea454d8b8ad7cd",
  13191. "shasum": ""
  13192. },
  13193. "require": {
  13194. "php": ">=8.2",
  13195. "symfony/service-contracts": "^2.5|^3"
  13196. },
  13197. "type": "library",
  13198. "autoload": {
  13199. "psr-4": {
  13200. "Symfony\\Component\\Stopwatch\\": ""
  13201. },
  13202. "exclude-from-classmap": [
  13203. "/Tests/"
  13204. ]
  13205. },
  13206. "notification-url": "https://packagist.org/downloads/",
  13207. "license": [
  13208. "MIT"
  13209. ],
  13210. "authors": [
  13211. {
  13212. "name": "Fabien Potencier",
  13213. "email": "fabien@symfony.com"
  13214. },
  13215. {
  13216. "name": "Symfony Community",
  13217. "homepage": "https://symfony.com/contributors"
  13218. }
  13219. ],
  13220. "description": "Provides a way to profile code",
  13221. "homepage": "https://symfony.com",
  13222. "support": {
  13223. "source": "https://github.com/symfony/stopwatch/tree/v7.2.4"
  13224. },
  13225. "funding": [
  13226. {
  13227. "url": "https://symfony.com/sponsor",
  13228. "type": "custom"
  13229. },
  13230. {
  13231. "url": "https://github.com/fabpot",
  13232. "type": "github"
  13233. },
  13234. {
  13235. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13236. "type": "tidelift"
  13237. }
  13238. ],
  13239. "time": "2025-02-24T10:49:57+00:00"
  13240. },
  13241. {
  13242. "name": "symfony/yaml",
  13243. "version": "v7.2.5",
  13244. "source": {
  13245. "type": "git",
  13246. "url": "https://github.com/symfony/yaml.git",
  13247. "reference": "4c4b6f4cfcd7e52053f0c8bfad0f7f30fb924912"
  13248. },
  13249. "dist": {
  13250. "type": "zip",
  13251. "url": "https://api.github.com/repos/symfony/yaml/zipball/4c4b6f4cfcd7e52053f0c8bfad0f7f30fb924912",
  13252. "reference": "4c4b6f4cfcd7e52053f0c8bfad0f7f30fb924912",
  13253. "shasum": ""
  13254. },
  13255. "require": {
  13256. "php": ">=8.2",
  13257. "symfony/deprecation-contracts": "^2.5|^3.0",
  13258. "symfony/polyfill-ctype": "^1.8"
  13259. },
  13260. "conflict": {
  13261. "symfony/console": "<6.4"
  13262. },
  13263. "require-dev": {
  13264. "symfony/console": "^6.4|^7.0"
  13265. },
  13266. "bin": [
  13267. "Resources/bin/yaml-lint"
  13268. ],
  13269. "type": "library",
  13270. "autoload": {
  13271. "psr-4": {
  13272. "Symfony\\Component\\Yaml\\": ""
  13273. },
  13274. "exclude-from-classmap": [
  13275. "/Tests/"
  13276. ]
  13277. },
  13278. "notification-url": "https://packagist.org/downloads/",
  13279. "license": [
  13280. "MIT"
  13281. ],
  13282. "authors": [
  13283. {
  13284. "name": "Fabien Potencier",
  13285. "email": "fabien@symfony.com"
  13286. },
  13287. {
  13288. "name": "Symfony Community",
  13289. "homepage": "https://symfony.com/contributors"
  13290. }
  13291. ],
  13292. "description": "Loads and dumps YAML files",
  13293. "homepage": "https://symfony.com",
  13294. "support": {
  13295. "source": "https://github.com/symfony/yaml/tree/v7.2.5"
  13296. },
  13297. "funding": [
  13298. {
  13299. "url": "https://symfony.com/sponsor",
  13300. "type": "custom"
  13301. },
  13302. {
  13303. "url": "https://github.com/fabpot",
  13304. "type": "github"
  13305. },
  13306. {
  13307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13308. "type": "tidelift"
  13309. }
  13310. ],
  13311. "time": "2025-03-03T07:12:39+00:00"
  13312. },
  13313. {
  13314. "name": "ta-tikoma/phpunit-architecture-test",
  13315. "version": "0.8.4",
  13316. "source": {
  13317. "type": "git",
  13318. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  13319. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636"
  13320. },
  13321. "dist": {
  13322. "type": "zip",
  13323. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13324. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13325. "shasum": ""
  13326. },
  13327. "require": {
  13328. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  13329. "php": "^8.1.0",
  13330. "phpdocumentor/reflection-docblock": "^5.3.0",
  13331. "phpunit/phpunit": "^10.5.5 || ^11.0.0",
  13332. "symfony/finder": "^6.4.0 || ^7.0.0"
  13333. },
  13334. "require-dev": {
  13335. "laravel/pint": "^1.13.7",
  13336. "phpstan/phpstan": "^1.10.52"
  13337. },
  13338. "type": "library",
  13339. "autoload": {
  13340. "psr-4": {
  13341. "PHPUnit\\Architecture\\": "src/"
  13342. }
  13343. },
  13344. "notification-url": "https://packagist.org/downloads/",
  13345. "license": [
  13346. "MIT"
  13347. ],
  13348. "authors": [
  13349. {
  13350. "name": "Ni Shi",
  13351. "email": "futik0ma011@gmail.com"
  13352. },
  13353. {
  13354. "name": "Nuno Maduro",
  13355. "email": "enunomaduro@gmail.com"
  13356. }
  13357. ],
  13358. "description": "Methods for testing application architecture",
  13359. "keywords": [
  13360. "architecture",
  13361. "phpunit",
  13362. "stucture",
  13363. "test",
  13364. "testing"
  13365. ],
  13366. "support": {
  13367. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  13368. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.4"
  13369. },
  13370. "time": "2024-01-05T14:10:56+00:00"
  13371. },
  13372. {
  13373. "name": "theseer/tokenizer",
  13374. "version": "1.2.3",
  13375. "source": {
  13376. "type": "git",
  13377. "url": "https://github.com/theseer/tokenizer.git",
  13378. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13379. },
  13380. "dist": {
  13381. "type": "zip",
  13382. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13383. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13384. "shasum": ""
  13385. },
  13386. "require": {
  13387. "ext-dom": "*",
  13388. "ext-tokenizer": "*",
  13389. "ext-xmlwriter": "*",
  13390. "php": "^7.2 || ^8.0"
  13391. },
  13392. "type": "library",
  13393. "autoload": {
  13394. "classmap": [
  13395. "src/"
  13396. ]
  13397. },
  13398. "notification-url": "https://packagist.org/downloads/",
  13399. "license": [
  13400. "BSD-3-Clause"
  13401. ],
  13402. "authors": [
  13403. {
  13404. "name": "Arne Blankerts",
  13405. "email": "arne@blankerts.de",
  13406. "role": "Developer"
  13407. }
  13408. ],
  13409. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13410. "support": {
  13411. "issues": "https://github.com/theseer/tokenizer/issues",
  13412. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13413. },
  13414. "funding": [
  13415. {
  13416. "url": "https://github.com/theseer",
  13417. "type": "github"
  13418. }
  13419. ],
  13420. "time": "2024-03-03T12:36:25+00:00"
  13421. },
  13422. {
  13423. "name": "zbateson/mail-mime-parser",
  13424. "version": "3.0.3",
  13425. "source": {
  13426. "type": "git",
  13427. "url": "https://github.com/zbateson/mail-mime-parser.git",
  13428. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19"
  13429. },
  13430. "dist": {
  13431. "type": "zip",
  13432. "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/e0d4423fe27850c9dd301190767dbc421acc2f19",
  13433. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19",
  13434. "shasum": ""
  13435. },
  13436. "require": {
  13437. "guzzlehttp/psr7": "^2.5",
  13438. "php": ">=8.0",
  13439. "php-di/php-di": "^6.0|^7.0",
  13440. "psr/log": "^1|^2|^3",
  13441. "zbateson/mb-wrapper": "^2.0",
  13442. "zbateson/stream-decorators": "^2.1"
  13443. },
  13444. "require-dev": {
  13445. "friendsofphp/php-cs-fixer": "*",
  13446. "monolog/monolog": "^2|^3",
  13447. "phpstan/phpstan": "*",
  13448. "phpunit/phpunit": "^9.6"
  13449. },
  13450. "suggest": {
  13451. "ext-iconv": "For best support/performance",
  13452. "ext-mbstring": "For best support/performance"
  13453. },
  13454. "type": "library",
  13455. "autoload": {
  13456. "psr-4": {
  13457. "ZBateson\\MailMimeParser\\": "src/"
  13458. }
  13459. },
  13460. "notification-url": "https://packagist.org/downloads/",
  13461. "license": [
  13462. "BSD-2-Clause"
  13463. ],
  13464. "authors": [
  13465. {
  13466. "name": "Zaahid Bateson"
  13467. },
  13468. {
  13469. "name": "Contributors",
  13470. "homepage": "https://github.com/zbateson/mail-mime-parser/graphs/contributors"
  13471. }
  13472. ],
  13473. "description": "MIME email message parser",
  13474. "homepage": "https://mail-mime-parser.org",
  13475. "keywords": [
  13476. "MimeMailParser",
  13477. "email",
  13478. "mail",
  13479. "mailparse",
  13480. "mime",
  13481. "mimeparse",
  13482. "parser",
  13483. "php-imap"
  13484. ],
  13485. "support": {
  13486. "docs": "https://mail-mime-parser.org/#usage-guide",
  13487. "issues": "https://github.com/zbateson/mail-mime-parser/issues",
  13488. "source": "https://github.com/zbateson/mail-mime-parser"
  13489. },
  13490. "funding": [
  13491. {
  13492. "url": "https://github.com/zbateson",
  13493. "type": "github"
  13494. }
  13495. ],
  13496. "time": "2024-08-10T18:44:09+00:00"
  13497. },
  13498. {
  13499. "name": "zbateson/mb-wrapper",
  13500. "version": "2.0.1",
  13501. "source": {
  13502. "type": "git",
  13503. "url": "https://github.com/zbateson/mb-wrapper.git",
  13504. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff"
  13505. },
  13506. "dist": {
  13507. "type": "zip",
  13508. "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13509. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13510. "shasum": ""
  13511. },
  13512. "require": {
  13513. "php": ">=8.0",
  13514. "symfony/polyfill-iconv": "^1.9",
  13515. "symfony/polyfill-mbstring": "^1.9"
  13516. },
  13517. "require-dev": {
  13518. "friendsofphp/php-cs-fixer": "*",
  13519. "phpstan/phpstan": "*",
  13520. "phpunit/phpunit": "^9.6|^10.0"
  13521. },
  13522. "suggest": {
  13523. "ext-iconv": "For best support/performance",
  13524. "ext-mbstring": "For best support/performance"
  13525. },
  13526. "type": "library",
  13527. "autoload": {
  13528. "psr-4": {
  13529. "ZBateson\\MbWrapper\\": "src/"
  13530. }
  13531. },
  13532. "notification-url": "https://packagist.org/downloads/",
  13533. "license": [
  13534. "BSD-2-Clause"
  13535. ],
  13536. "authors": [
  13537. {
  13538. "name": "Zaahid Bateson"
  13539. }
  13540. ],
  13541. "description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
  13542. "keywords": [
  13543. "charset",
  13544. "encoding",
  13545. "http",
  13546. "iconv",
  13547. "mail",
  13548. "mb",
  13549. "mb_convert_encoding",
  13550. "mbstring",
  13551. "mime",
  13552. "multibyte",
  13553. "string"
  13554. ],
  13555. "support": {
  13556. "issues": "https://github.com/zbateson/mb-wrapper/issues",
  13557. "source": "https://github.com/zbateson/mb-wrapper/tree/2.0.1"
  13558. },
  13559. "funding": [
  13560. {
  13561. "url": "https://github.com/zbateson",
  13562. "type": "github"
  13563. }
  13564. ],
  13565. "time": "2024-12-20T22:05:33+00:00"
  13566. },
  13567. {
  13568. "name": "zbateson/stream-decorators",
  13569. "version": "2.1.1",
  13570. "source": {
  13571. "type": "git",
  13572. "url": "https://github.com/zbateson/stream-decorators.git",
  13573. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5"
  13574. },
  13575. "dist": {
  13576. "type": "zip",
  13577. "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13578. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13579. "shasum": ""
  13580. },
  13581. "require": {
  13582. "guzzlehttp/psr7": "^2.5",
  13583. "php": ">=8.0",
  13584. "zbateson/mb-wrapper": "^2.0"
  13585. },
  13586. "require-dev": {
  13587. "friendsofphp/php-cs-fixer": "*",
  13588. "phpstan/phpstan": "*",
  13589. "phpunit/phpunit": "^9.6|^10.0"
  13590. },
  13591. "type": "library",
  13592. "autoload": {
  13593. "psr-4": {
  13594. "ZBateson\\StreamDecorators\\": "src/"
  13595. }
  13596. },
  13597. "notification-url": "https://packagist.org/downloads/",
  13598. "license": [
  13599. "BSD-2-Clause"
  13600. ],
  13601. "authors": [
  13602. {
  13603. "name": "Zaahid Bateson"
  13604. }
  13605. ],
  13606. "description": "PHP psr7 stream decorators for mime message part streams",
  13607. "keywords": [
  13608. "base64",
  13609. "charset",
  13610. "decorators",
  13611. "mail",
  13612. "mime",
  13613. "psr7",
  13614. "quoted-printable",
  13615. "stream",
  13616. "uuencode"
  13617. ],
  13618. "support": {
  13619. "issues": "https://github.com/zbateson/stream-decorators/issues",
  13620. "source": "https://github.com/zbateson/stream-decorators/tree/2.1.1"
  13621. },
  13622. "funding": [
  13623. {
  13624. "url": "https://github.com/zbateson",
  13625. "type": "github"
  13626. }
  13627. ],
  13628. "time": "2024-04-29T21:42:39+00:00"
  13629. }
  13630. ],
  13631. "aliases": [],
  13632. "minimum-stability": "stable",
  13633. "stability-flags": {},
  13634. "prefer-stable": true,
  13635. "prefer-lowest": false,
  13636. "platform": {
  13637. "php": "^8.2",
  13638. "ext-bcmath": "*",
  13639. "ext-intl": "*"
  13640. },
  13641. "platform-dev": {},
  13642. "plugin-api-version": "2.6.0"
  13643. }