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

composer.lock 486KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481134821348313484134851348613487134881348913490
  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": "095bb4040f9910ddd128bd53c0670a55",
  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.0.7",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "4de8c488162e2435658555db013f28c4ebb19f22"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/4de8c488162e2435658555db013f28c4ebb19f22",
  89. "reference": "4de8c488162e2435658555db013f28c4ebb19f22",
  90. "shasum": ""
  91. },
  92. "require": {
  93. "ext-json": "*",
  94. "filament/filament": "^3.2.29",
  95. "illuminate/console": "^11.0",
  96. "illuminate/contracts": "^11.0",
  97. "illuminate/support": "^11.0",
  98. "laravel/socialite": "^5.12",
  99. "matomo/device-detector": "^6.1",
  100. "php": "^8.2"
  101. },
  102. "require-dev": {
  103. "laravel/pint": "^1.14",
  104. "laravel/sanctum": "^4.0",
  105. "livewire/livewire": "^3.4.9",
  106. "mockery/mockery": "^1.6",
  107. "orchestra/testbench": "^9.0",
  108. "phpunit/phpunit": "^10.5"
  109. },
  110. "type": "library",
  111. "extra": {
  112. "laravel": {
  113. "providers": [
  114. "Wallo\\FilamentCompanies\\FilamentCompaniesServiceProvider"
  115. ]
  116. }
  117. },
  118. "autoload": {
  119. "psr-4": {
  120. "Wallo\\FilamentCompanies\\": "src/"
  121. }
  122. },
  123. "notification-url": "https://packagist.org/downloads/",
  124. "license": [
  125. "MIT"
  126. ],
  127. "authors": [
  128. {
  129. "name": "Andrew Wallo",
  130. "email": "andrewdwallo@gmail.com",
  131. "role": "Developer"
  132. }
  133. ],
  134. "description": "A comprehensive Laravel authentication and authorization system designed for Filament, focusing on multi-tenant company management.",
  135. "homepage": "https://github.com/andrewdwallo/filament-companies",
  136. "keywords": [
  137. "Authentication",
  138. "ERP",
  139. "andrewdwallo",
  140. "business management",
  141. "company management",
  142. "crm",
  143. "filament",
  144. "filament companies",
  145. "filament-companies",
  146. "laravel",
  147. "multi-tenant",
  148. "saas",
  149. "socialite"
  150. ],
  151. "support": {
  152. "issues": "https://github.com/andrewdwallo/filament-companies/issues",
  153. "source": "https://github.com/andrewdwallo/filament-companies/tree/v4.0.7"
  154. },
  155. "time": "2025-01-28T02:32:00+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.1.1",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/andrewdwallo/transmatic.git",
  227. "reference": "30f5384e7e3b693beaf528b01650570a916daf47"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/andrewdwallo/transmatic/zipball/30f5384e7e3b693beaf528b01650570a916daf47",
  232. "reference": "30f5384e7e3b693beaf528b01650570a916daf47",
  233. "shasum": ""
  234. },
  235. "require": {
  236. "aws/aws-sdk-php-laravel": "^3.8",
  237. "ext-intl": "*",
  238. "ext-json": "*",
  239. "illuminate/contracts": "^10.0|^11.0",
  240. "php": "^8.1",
  241. "spatie/laravel-package-tools": "^1.14.0"
  242. },
  243. "require-dev": {
  244. "larastan/larastan": "^2.9",
  245. "laravel/pint": "^1.0",
  246. "nunomaduro/collision": "^7.8|^8.0",
  247. "orchestra/testbench": "^8.8|^9.0",
  248. "pestphp/pest": "^2.20",
  249. "pestphp/pest-plugin-arch": "^2.0",
  250. "pestphp/pest-plugin-laravel": "^2.0",
  251. "phpstan/extension-installer": "^1.1",
  252. "phpstan/phpstan-deprecation-rules": "^1.0",
  253. "phpstan/phpstan-phpunit": "^1.0",
  254. "spatie/laravel-ray": "^1.26"
  255. },
  256. "type": "library",
  257. "extra": {
  258. "laravel": {
  259. "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.1.1"
  300. },
  301. "time": "2025-01-26T05:48:43+00:00"
  302. },
  303. {
  304. "name": "anourvalar/eloquent-serialize",
  305. "version": "1.2.28",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  309. "reference": "482be4ef83ad9f7b9d0fd0863bd675357658c94a"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/482be4ef83ad9f7b9d0fd0863bd675357658c94a",
  314. "reference": "482be4ef83ad9f7b9d0fd0863bd675357658c94a",
  315. "shasum": ""
  316. },
  317. "require": {
  318. "laravel/framework": "^8.0|^9.0|^10.0|^11.0",
  319. "php": "^7.4|^8.0"
  320. },
  321. "require-dev": {
  322. "friendsofphp/php-cs-fixer": "^3.26",
  323. "laravel/legacy-factories": "^1.1",
  324. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  325. "phpstan/phpstan": "^2.0",
  326. "phpunit/phpunit": "^9.5|^10.5",
  327. "psalm/plugin-laravel": "^2.8",
  328. "squizlabs/php_codesniffer": "^3.7"
  329. },
  330. "type": "library",
  331. "extra": {
  332. "laravel": {
  333. "aliases": {
  334. "EloquentSerialize": "AnourValar\\EloquentSerialize\\Facades\\EloquentSerializeFacade"
  335. }
  336. }
  337. },
  338. "autoload": {
  339. "psr-4": {
  340. "AnourValar\\EloquentSerialize\\": "src/"
  341. }
  342. },
  343. "notification-url": "https://packagist.org/downloads/",
  344. "license": [
  345. "MIT"
  346. ],
  347. "description": "Laravel Query Builder (Eloquent) serialization",
  348. "homepage": "https://github.com/AnourValar/eloquent-serialize",
  349. "keywords": [
  350. "anourvalar",
  351. "builder",
  352. "copy",
  353. "eloquent",
  354. "job",
  355. "laravel",
  356. "query",
  357. "querybuilder",
  358. "queue",
  359. "serializable",
  360. "serialization",
  361. "serialize"
  362. ],
  363. "support": {
  364. "issues": "https://github.com/AnourValar/eloquent-serialize/issues",
  365. "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.2.28"
  366. },
  367. "time": "2025-01-27T15:13:13+00:00"
  368. },
  369. {
  370. "name": "awcodes/filament-table-repeater",
  371. "version": "v3.1.0",
  372. "source": {
  373. "type": "git",
  374. "url": "https://github.com/awcodes/filament-table-repeater.git",
  375. "reference": "beaa9cdb25b4211b00c675bbcbf2584cd777536c"
  376. },
  377. "dist": {
  378. "type": "zip",
  379. "url": "https://api.github.com/repos/awcodes/filament-table-repeater/zipball/beaa9cdb25b4211b00c675bbcbf2584cd777536c",
  380. "reference": "beaa9cdb25b4211b00c675bbcbf2584cd777536c",
  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.0"
  435. },
  436. "funding": [
  437. {
  438. "url": "https://github.com/awcodes",
  439. "type": "github"
  440. }
  441. ],
  442. "time": "2024-11-13T18:07:04+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.339.2",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "2f4e85dd8466ffe5186887f8f1466a0248c6c094"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/2f4e85dd8466ffe5186887f8f1466a0248c6c094",
  509. "reference": "2f4e85dd8466ffe5186887f8f1466a0248c6c094",
  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. "paragonie/random_compat": ">= 2",
  536. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  537. "psr/cache": "^2.0 || ^3.0",
  538. "psr/simple-cache": "^2.0 || ^3.0",
  539. "sebastian/comparator": "^1.2.3 || ^4.0 || ^5.0",
  540. "symfony/filesystem": "^v6.4.0 || ^v7.1.0",
  541. "yoast/phpunit-polyfills": "^2.0"
  542. },
  543. "suggest": {
  544. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  545. "doctrine/cache": "To use the DoctrineCacheAdapter",
  546. "ext-curl": "To send requests using cURL",
  547. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  548. "ext-sockets": "To use client-side monitoring"
  549. },
  550. "type": "library",
  551. "extra": {
  552. "branch-alias": {
  553. "dev-master": "3.0-dev"
  554. }
  555. },
  556. "autoload": {
  557. "files": [
  558. "src/functions.php"
  559. ],
  560. "psr-4": {
  561. "Aws\\": "src/"
  562. },
  563. "exclude-from-classmap": [
  564. "src/data/"
  565. ]
  566. },
  567. "notification-url": "https://packagist.org/downloads/",
  568. "license": [
  569. "Apache-2.0"
  570. ],
  571. "authors": [
  572. {
  573. "name": "Amazon Web Services",
  574. "homepage": "http://aws.amazon.com"
  575. }
  576. ],
  577. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  578. "homepage": "http://aws.amazon.com/sdkforphp",
  579. "keywords": [
  580. "amazon",
  581. "aws",
  582. "cloud",
  583. "dynamodb",
  584. "ec2",
  585. "glacier",
  586. "s3",
  587. "sdk"
  588. ],
  589. "support": {
  590. "forum": "https://github.com/aws/aws-sdk-php/discussions",
  591. "issues": "https://github.com/aws/aws-sdk-php/issues",
  592. "source": "https://github.com/aws/aws-sdk-php/tree/3.339.2"
  593. },
  594. "time": "2025-01-29T19:53:29+00:00"
  595. },
  596. {
  597. "name": "aws/aws-sdk-php-laravel",
  598. "version": "3.9.0",
  599. "source": {
  600. "type": "git",
  601. "url": "https://github.com/aws/aws-sdk-php-laravel.git",
  602. "reference": "11cb363873bd77a91b262936936abfa6a2122d53"
  603. },
  604. "dist": {
  605. "type": "zip",
  606. "url": "https://api.github.com/repos/aws/aws-sdk-php-laravel/zipball/11cb363873bd77a91b262936936abfa6a2122d53",
  607. "reference": "11cb363873bd77a91b262936936abfa6a2122d53",
  608. "shasum": ""
  609. },
  610. "require": {
  611. "aws/aws-sdk-php": "^3.279.0",
  612. "illuminate/support": "^6.0 || ^7.0 || ^8.0 || ^9.0 || ^10.0 || ^11.0",
  613. "php": ">=7.2.5"
  614. },
  615. "require-dev": {
  616. "phpunit/phpunit": "^8.0 || ^9.0",
  617. "vlucas/phpdotenv": "^1.0 || ^2.0 || ^3.0 || ^4.0 || ^5.0",
  618. "yoast/phpunit-polyfills": "^1.0"
  619. },
  620. "suggest": {
  621. "laravel/framework": "To test the Laravel bindings",
  622. "laravel/lumen-framework": "To test the Lumen bindings"
  623. },
  624. "type": "library",
  625. "extra": {
  626. "laravel": {
  627. "aliases": {
  628. "AWS": "Aws\\Laravel\\AwsFacade"
  629. },
  630. "providers": [
  631. "Aws\\Laravel\\AwsServiceProvider"
  632. ]
  633. }
  634. },
  635. "autoload": {
  636. "psr-4": {
  637. "Aws\\Laravel\\": "src/"
  638. }
  639. },
  640. "notification-url": "https://packagist.org/downloads/",
  641. "license": [
  642. "Apache-2.0"
  643. ],
  644. "authors": [
  645. {
  646. "name": "Amazon Web Services",
  647. "homepage": "http://aws.amazon.com"
  648. }
  649. ],
  650. "description": "A simple Laravel 6/7/8/9/10/11 service provider for including the AWS SDK for PHP.",
  651. "homepage": "https://aws.amazon.com/sdk-for-php/",
  652. "keywords": [
  653. "amazon",
  654. "aws",
  655. "dynamodb",
  656. "ec2",
  657. "laravel",
  658. "laravel 10",
  659. "laravel 11",
  660. "laravel 6",
  661. "laravel 7",
  662. "laravel 8",
  663. "laravel 9",
  664. "s3",
  665. "sdk"
  666. ],
  667. "support": {
  668. "issues": "https://github.com/aws/aws-sdk-php-laravel/issues",
  669. "source": "https://github.com/aws/aws-sdk-php-laravel/tree/3.9.0"
  670. },
  671. "time": "2024-03-18T17:43:45+00:00"
  672. },
  673. {
  674. "name": "barryvdh/laravel-snappy",
  675. "version": "v1.0.3",
  676. "source": {
  677. "type": "git",
  678. "url": "https://github.com/barryvdh/laravel-snappy.git",
  679. "reference": "716dcb6db24de4ce8e6ae5941cfab152af337ea0"
  680. },
  681. "dist": {
  682. "type": "zip",
  683. "url": "https://api.github.com/repos/barryvdh/laravel-snappy/zipball/716dcb6db24de4ce8e6ae5941cfab152af337ea0",
  684. "reference": "716dcb6db24de4ce8e6ae5941cfab152af337ea0",
  685. "shasum": ""
  686. },
  687. "require": {
  688. "illuminate/filesystem": "^9|^10|^11.0",
  689. "illuminate/support": "^9|^10|^11.0",
  690. "knplabs/knp-snappy": "^1.4.4",
  691. "php": ">=7.2"
  692. },
  693. "require-dev": {
  694. "orchestra/testbench": "^7|^8|^9.0"
  695. },
  696. "type": "library",
  697. "extra": {
  698. "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.3"
  738. },
  739. "funding": [
  740. {
  741. "url": "https://fruitcake.nl",
  742. "type": "custom"
  743. },
  744. {
  745. "url": "https://github.com/barryvdh",
  746. "type": "github"
  747. }
  748. ],
  749. "time": "2024-03-09T19:20:39+00:00"
  750. },
  751. {
  752. "name": "blade-ui-kit/blade-heroicons",
  753. "version": "2.5.0",
  754. "source": {
  755. "type": "git",
  756. "url": "https://github.com/blade-ui-kit/blade-heroicons.git",
  757. "reference": "4ed3ed08e9ac192d0d126b2f12711d6fb6576a48"
  758. },
  759. "dist": {
  760. "type": "zip",
  761. "url": "https://api.github.com/repos/blade-ui-kit/blade-heroicons/zipball/4ed3ed08e9ac192d0d126b2f12711d6fb6576a48",
  762. "reference": "4ed3ed08e9ac192d0d126b2f12711d6fb6576a48",
  763. "shasum": ""
  764. },
  765. "require": {
  766. "blade-ui-kit/blade-icons": "^1.6",
  767. "illuminate/support": "^9.0|^10.0|^11.0",
  768. "php": "^8.0"
  769. },
  770. "require-dev": {
  771. "orchestra/testbench": "^7.0|^8.0|^9.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.5.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": "2024-11-18T19:59:07+00:00"
  819. },
  820. {
  821. "name": "blade-ui-kit/blade-icons",
  822. "version": "1.7.2",
  823. "source": {
  824. "type": "git",
  825. "url": "https://github.com/blade-ui-kit/blade-icons.git",
  826. "reference": "75a54a3f5a2810fcf6574ab23e91b6cc229a1b53"
  827. },
  828. "dist": {
  829. "type": "zip",
  830. "url": "https://api.github.com/repos/blade-ui-kit/blade-icons/zipball/75a54a3f5a2810fcf6574ab23e91b6cc229a1b53",
  831. "reference": "75a54a3f5a2810fcf6574ab23e91b6cc229a1b53",
  832. "shasum": ""
  833. },
  834. "require": {
  835. "illuminate/contracts": "^8.0|^9.0|^10.0|^11.0",
  836. "illuminate/filesystem": "^8.0|^9.0|^10.0|^11.0",
  837. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  838. "illuminate/view": "^8.0|^9.0|^10.0|^11.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",
  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": "2024-10-17T17:38:00+00:00"
  900. },
  901. {
  902. "name": "brick/math",
  903. "version": "0.12.1",
  904. "source": {
  905. "type": "git",
  906. "url": "https://github.com/brick/math.git",
  907. "reference": "f510c0a40911935b77b86859eb5223d58d660df1"
  908. },
  909. "dist": {
  910. "type": "zip",
  911. "url": "https://api.github.com/repos/brick/math/zipball/f510c0a40911935b77b86859eb5223d58d660df1",
  912. "reference": "f510c0a40911935b77b86859eb5223d58d660df1",
  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": "5.16.0"
  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.1"
  952. },
  953. "funding": [
  954. {
  955. "url": "https://github.com/BenMorel",
  956. "type": "github"
  957. }
  958. ],
  959. "time": "2023-11-29T23:19:16+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.16",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/CodeWithDennis/filament-simple-alert.git",
  1036. "reference": "f29677d3a0d2b6fd9b1c3627152cd0107d2db337"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/CodeWithDennis/filament-simple-alert/zipball/f29677d3a0d2b6fd9b1c3627152cd0107d2db337",
  1041. "reference": "f29677d3a0d2b6fd9b1c3627152cd0107d2db337",
  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-01-19T17:37:34+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.0.1",
  1157. "source": {
  1158. "type": "git",
  1159. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  1160. "reference": "18680be2b4d3d901d8e453560f77810145492b34"
  1161. },
  1162. "dist": {
  1163. "type": "zip",
  1164. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/18680be2b4d3d901d8e453560f77810145492b34",
  1165. "reference": "18680be2b4d3d901d8e453560f77810145492b34",
  1166. "shasum": ""
  1167. },
  1168. "require": {
  1169. "illuminate/support": "^9.0|^10.0|^11.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",
  1176. "phpunit/phpunit": "^9.0|^10.0"
  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-01-22T14:01:35+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.2",
  1286. "source": {
  1287. "type": "git",
  1288. "url": "https://github.com/doctrine/dbal.git",
  1289. "reference": "19a2b7deb5fe8c2df0ff817ecea305e50acb62ec"
  1290. },
  1291. "dist": {
  1292. "type": "zip",
  1293. "url": "https://api.github.com/repos/doctrine/dbal/zipball/19a2b7deb5fe8c2df0ff817ecea305e50acb62ec",
  1294. "reference": "19a2b7deb5fe8c2df0ff817ecea305e50acb62ec",
  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.2"
  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-01-16T08:40:56+00:00"
  1388. },
  1389. {
  1390. "name": "doctrine/deprecations",
  1391. "version": "1.1.4",
  1392. "source": {
  1393. "type": "git",
  1394. "url": "https://github.com/doctrine/deprecations.git",
  1395. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  1396. },
  1397. "dist": {
  1398. "type": "zip",
  1399. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  1400. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  1401. "shasum": ""
  1402. },
  1403. "require": {
  1404. "php": "^7.1 || ^8.0"
  1405. },
  1406. "require-dev": {
  1407. "doctrine/coding-standard": "^9 || ^12",
  1408. "phpstan/phpstan": "1.4.10 || 2.0.3",
  1409. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1410. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1411. "psr/log": "^1 || ^2 || ^3"
  1412. },
  1413. "suggest": {
  1414. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1415. },
  1416. "type": "library",
  1417. "autoload": {
  1418. "psr-4": {
  1419. "Doctrine\\Deprecations\\": "src"
  1420. }
  1421. },
  1422. "notification-url": "https://packagist.org/downloads/",
  1423. "license": [
  1424. "MIT"
  1425. ],
  1426. "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.",
  1427. "homepage": "https://www.doctrine-project.org/",
  1428. "support": {
  1429. "issues": "https://github.com/doctrine/deprecations/issues",
  1430. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  1431. },
  1432. "time": "2024-12-07T21:18:45+00:00"
  1433. },
  1434. {
  1435. "name": "doctrine/inflector",
  1436. "version": "2.0.10",
  1437. "source": {
  1438. "type": "git",
  1439. "url": "https://github.com/doctrine/inflector.git",
  1440. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1441. },
  1442. "dist": {
  1443. "type": "zip",
  1444. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1445. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1446. "shasum": ""
  1447. },
  1448. "require": {
  1449. "php": "^7.2 || ^8.0"
  1450. },
  1451. "require-dev": {
  1452. "doctrine/coding-standard": "^11.0",
  1453. "phpstan/phpstan": "^1.8",
  1454. "phpstan/phpstan-phpunit": "^1.1",
  1455. "phpstan/phpstan-strict-rules": "^1.3",
  1456. "phpunit/phpunit": "^8.5 || ^9.5",
  1457. "vimeo/psalm": "^4.25 || ^5.4"
  1458. },
  1459. "type": "library",
  1460. "autoload": {
  1461. "psr-4": {
  1462. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1463. }
  1464. },
  1465. "notification-url": "https://packagist.org/downloads/",
  1466. "license": [
  1467. "MIT"
  1468. ],
  1469. "authors": [
  1470. {
  1471. "name": "Guilherme Blanco",
  1472. "email": "guilhermeblanco@gmail.com"
  1473. },
  1474. {
  1475. "name": "Roman Borschel",
  1476. "email": "roman@code-factory.org"
  1477. },
  1478. {
  1479. "name": "Benjamin Eberlei",
  1480. "email": "kontakt@beberlei.de"
  1481. },
  1482. {
  1483. "name": "Jonathan Wage",
  1484. "email": "jonwage@gmail.com"
  1485. },
  1486. {
  1487. "name": "Johannes Schmitt",
  1488. "email": "schmittjoh@gmail.com"
  1489. }
  1490. ],
  1491. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1492. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1493. "keywords": [
  1494. "inflection",
  1495. "inflector",
  1496. "lowercase",
  1497. "manipulation",
  1498. "php",
  1499. "plural",
  1500. "singular",
  1501. "strings",
  1502. "uppercase",
  1503. "words"
  1504. ],
  1505. "support": {
  1506. "issues": "https://github.com/doctrine/inflector/issues",
  1507. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1508. },
  1509. "funding": [
  1510. {
  1511. "url": "https://www.doctrine-project.org/sponsorship.html",
  1512. "type": "custom"
  1513. },
  1514. {
  1515. "url": "https://www.patreon.com/phpdoctrine",
  1516. "type": "patreon"
  1517. },
  1518. {
  1519. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1520. "type": "tidelift"
  1521. }
  1522. ],
  1523. "time": "2024-02-18T20:23:39+00:00"
  1524. },
  1525. {
  1526. "name": "doctrine/lexer",
  1527. "version": "3.0.1",
  1528. "source": {
  1529. "type": "git",
  1530. "url": "https://github.com/doctrine/lexer.git",
  1531. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1532. },
  1533. "dist": {
  1534. "type": "zip",
  1535. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1536. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1537. "shasum": ""
  1538. },
  1539. "require": {
  1540. "php": "^8.1"
  1541. },
  1542. "require-dev": {
  1543. "doctrine/coding-standard": "^12",
  1544. "phpstan/phpstan": "^1.10",
  1545. "phpunit/phpunit": "^10.5",
  1546. "psalm/plugin-phpunit": "^0.18.3",
  1547. "vimeo/psalm": "^5.21"
  1548. },
  1549. "type": "library",
  1550. "autoload": {
  1551. "psr-4": {
  1552. "Doctrine\\Common\\Lexer\\": "src"
  1553. }
  1554. },
  1555. "notification-url": "https://packagist.org/downloads/",
  1556. "license": [
  1557. "MIT"
  1558. ],
  1559. "authors": [
  1560. {
  1561. "name": "Guilherme Blanco",
  1562. "email": "guilhermeblanco@gmail.com"
  1563. },
  1564. {
  1565. "name": "Roman Borschel",
  1566. "email": "roman@code-factory.org"
  1567. },
  1568. {
  1569. "name": "Johannes Schmitt",
  1570. "email": "schmittjoh@gmail.com"
  1571. }
  1572. ],
  1573. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1574. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1575. "keywords": [
  1576. "annotations",
  1577. "docblock",
  1578. "lexer",
  1579. "parser",
  1580. "php"
  1581. ],
  1582. "support": {
  1583. "issues": "https://github.com/doctrine/lexer/issues",
  1584. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1585. },
  1586. "funding": [
  1587. {
  1588. "url": "https://www.doctrine-project.org/sponsorship.html",
  1589. "type": "custom"
  1590. },
  1591. {
  1592. "url": "https://www.patreon.com/phpdoctrine",
  1593. "type": "patreon"
  1594. },
  1595. {
  1596. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1597. "type": "tidelift"
  1598. }
  1599. ],
  1600. "time": "2024-02-05T11:56:58+00:00"
  1601. },
  1602. {
  1603. "name": "dragonmantank/cron-expression",
  1604. "version": "v3.4.0",
  1605. "source": {
  1606. "type": "git",
  1607. "url": "https://github.com/dragonmantank/cron-expression.git",
  1608. "reference": "8c784d071debd117328803d86b2097615b457500"
  1609. },
  1610. "dist": {
  1611. "type": "zip",
  1612. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  1613. "reference": "8c784d071debd117328803d86b2097615b457500",
  1614. "shasum": ""
  1615. },
  1616. "require": {
  1617. "php": "^7.2|^8.0",
  1618. "webmozart/assert": "^1.0"
  1619. },
  1620. "replace": {
  1621. "mtdowling/cron-expression": "^1.0"
  1622. },
  1623. "require-dev": {
  1624. "phpstan/extension-installer": "^1.0",
  1625. "phpstan/phpstan": "^1.0",
  1626. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1627. },
  1628. "type": "library",
  1629. "extra": {
  1630. "branch-alias": {
  1631. "dev-master": "3.x-dev"
  1632. }
  1633. },
  1634. "autoload": {
  1635. "psr-4": {
  1636. "Cron\\": "src/Cron/"
  1637. }
  1638. },
  1639. "notification-url": "https://packagist.org/downloads/",
  1640. "license": [
  1641. "MIT"
  1642. ],
  1643. "authors": [
  1644. {
  1645. "name": "Chris Tankersley",
  1646. "email": "chris@ctankersley.com",
  1647. "homepage": "https://github.com/dragonmantank"
  1648. }
  1649. ],
  1650. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1651. "keywords": [
  1652. "cron",
  1653. "schedule"
  1654. ],
  1655. "support": {
  1656. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1657. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1658. },
  1659. "funding": [
  1660. {
  1661. "url": "https://github.com/dragonmantank",
  1662. "type": "github"
  1663. }
  1664. ],
  1665. "time": "2024-10-09T13:47:03+00:00"
  1666. },
  1667. {
  1668. "name": "egulias/email-validator",
  1669. "version": "4.0.3",
  1670. "source": {
  1671. "type": "git",
  1672. "url": "https://github.com/egulias/EmailValidator.git",
  1673. "reference": "b115554301161fa21467629f1e1391c1936de517"
  1674. },
  1675. "dist": {
  1676. "type": "zip",
  1677. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b115554301161fa21467629f1e1391c1936de517",
  1678. "reference": "b115554301161fa21467629f1e1391c1936de517",
  1679. "shasum": ""
  1680. },
  1681. "require": {
  1682. "doctrine/lexer": "^2.0 || ^3.0",
  1683. "php": ">=8.1",
  1684. "symfony/polyfill-intl-idn": "^1.26"
  1685. },
  1686. "require-dev": {
  1687. "phpunit/phpunit": "^10.2",
  1688. "vimeo/psalm": "^5.12"
  1689. },
  1690. "suggest": {
  1691. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1692. },
  1693. "type": "library",
  1694. "extra": {
  1695. "branch-alias": {
  1696. "dev-master": "4.0.x-dev"
  1697. }
  1698. },
  1699. "autoload": {
  1700. "psr-4": {
  1701. "Egulias\\EmailValidator\\": "src"
  1702. }
  1703. },
  1704. "notification-url": "https://packagist.org/downloads/",
  1705. "license": [
  1706. "MIT"
  1707. ],
  1708. "authors": [
  1709. {
  1710. "name": "Eduardo Gulias Davis"
  1711. }
  1712. ],
  1713. "description": "A library for validating emails against several RFCs",
  1714. "homepage": "https://github.com/egulias/EmailValidator",
  1715. "keywords": [
  1716. "email",
  1717. "emailvalidation",
  1718. "emailvalidator",
  1719. "validation",
  1720. "validator"
  1721. ],
  1722. "support": {
  1723. "issues": "https://github.com/egulias/EmailValidator/issues",
  1724. "source": "https://github.com/egulias/EmailValidator/tree/4.0.3"
  1725. },
  1726. "funding": [
  1727. {
  1728. "url": "https://github.com/egulias",
  1729. "type": "github"
  1730. }
  1731. ],
  1732. "time": "2024-12-27T00:36:43+00:00"
  1733. },
  1734. {
  1735. "name": "filament/actions",
  1736. "version": "v3.2.135",
  1737. "source": {
  1738. "type": "git",
  1739. "url": "https://github.com/filamentphp/actions.git",
  1740. "reference": "dee2ca6d11e0ea3efb1190eabf6e483dbe2320ff"
  1741. },
  1742. "dist": {
  1743. "type": "zip",
  1744. "url": "https://api.github.com/repos/filamentphp/actions/zipball/dee2ca6d11e0ea3efb1190eabf6e483dbe2320ff",
  1745. "reference": "dee2ca6d11e0ea3efb1190eabf6e483dbe2320ff",
  1746. "shasum": ""
  1747. },
  1748. "require": {
  1749. "anourvalar/eloquent-serialize": "^1.2",
  1750. "filament/forms": "self.version",
  1751. "filament/infolists": "self.version",
  1752. "filament/notifications": "self.version",
  1753. "filament/support": "self.version",
  1754. "illuminate/contracts": "^10.45|^11.0",
  1755. "illuminate/database": "^10.45|^11.0",
  1756. "illuminate/support": "^10.45|^11.0",
  1757. "league/csv": "^9.16",
  1758. "openspout/openspout": "^4.23",
  1759. "php": "^8.1",
  1760. "spatie/laravel-package-tools": "^1.9"
  1761. },
  1762. "type": "library",
  1763. "extra": {
  1764. "laravel": {
  1765. "providers": [
  1766. "Filament\\Actions\\ActionsServiceProvider"
  1767. ]
  1768. }
  1769. },
  1770. "autoload": {
  1771. "psr-4": {
  1772. "Filament\\Actions\\": "src"
  1773. }
  1774. },
  1775. "notification-url": "https://packagist.org/downloads/",
  1776. "license": [
  1777. "MIT"
  1778. ],
  1779. "description": "Easily add beautiful action modals to any Livewire component.",
  1780. "homepage": "https://github.com/filamentphp/filament",
  1781. "support": {
  1782. "issues": "https://github.com/filamentphp/filament/issues",
  1783. "source": "https://github.com/filamentphp/filament"
  1784. },
  1785. "time": "2025-01-24T09:27:43+00:00"
  1786. },
  1787. {
  1788. "name": "filament/filament",
  1789. "version": "v3.2.135",
  1790. "source": {
  1791. "type": "git",
  1792. "url": "https://github.com/filamentphp/panels.git",
  1793. "reference": "bee6e1fd7b51f7dbffd03bc277b220bcfb8c45bb"
  1794. },
  1795. "dist": {
  1796. "type": "zip",
  1797. "url": "https://api.github.com/repos/filamentphp/panels/zipball/bee6e1fd7b51f7dbffd03bc277b220bcfb8c45bb",
  1798. "reference": "bee6e1fd7b51f7dbffd03bc277b220bcfb8c45bb",
  1799. "shasum": ""
  1800. },
  1801. "require": {
  1802. "danharrin/livewire-rate-limiting": "^0.3|^1.0|^2.0",
  1803. "filament/actions": "self.version",
  1804. "filament/forms": "self.version",
  1805. "filament/infolists": "self.version",
  1806. "filament/notifications": "self.version",
  1807. "filament/support": "self.version",
  1808. "filament/tables": "self.version",
  1809. "filament/widgets": "self.version",
  1810. "illuminate/auth": "^10.45|^11.0",
  1811. "illuminate/console": "^10.45|^11.0",
  1812. "illuminate/contracts": "^10.45|^11.0",
  1813. "illuminate/cookie": "^10.45|^11.0",
  1814. "illuminate/database": "^10.45|^11.0",
  1815. "illuminate/http": "^10.45|^11.0",
  1816. "illuminate/routing": "^10.45|^11.0",
  1817. "illuminate/session": "^10.45|^11.0",
  1818. "illuminate/support": "^10.45|^11.0",
  1819. "illuminate/view": "^10.45|^11.0",
  1820. "php": "^8.1",
  1821. "spatie/laravel-package-tools": "^1.9"
  1822. },
  1823. "type": "library",
  1824. "extra": {
  1825. "laravel": {
  1826. "providers": [
  1827. "Filament\\FilamentServiceProvider"
  1828. ]
  1829. }
  1830. },
  1831. "autoload": {
  1832. "files": [
  1833. "src/global_helpers.php",
  1834. "src/helpers.php"
  1835. ],
  1836. "psr-4": {
  1837. "Filament\\": "src"
  1838. }
  1839. },
  1840. "notification-url": "https://packagist.org/downloads/",
  1841. "license": [
  1842. "MIT"
  1843. ],
  1844. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1845. "homepage": "https://github.com/filamentphp/filament",
  1846. "support": {
  1847. "issues": "https://github.com/filamentphp/filament/issues",
  1848. "source": "https://github.com/filamentphp/filament"
  1849. },
  1850. "time": "2025-01-24T09:27:52+00:00"
  1851. },
  1852. {
  1853. "name": "filament/forms",
  1854. "version": "v3.2.135",
  1855. "source": {
  1856. "type": "git",
  1857. "url": "https://github.com/filamentphp/forms.git",
  1858. "reference": "e17618c921cd0300341a53d0eb2174c51e649565"
  1859. },
  1860. "dist": {
  1861. "type": "zip",
  1862. "url": "https://api.github.com/repos/filamentphp/forms/zipball/e17618c921cd0300341a53d0eb2174c51e649565",
  1863. "reference": "e17618c921cd0300341a53d0eb2174c51e649565",
  1864. "shasum": ""
  1865. },
  1866. "require": {
  1867. "danharrin/date-format-converter": "^0.3",
  1868. "filament/actions": "self.version",
  1869. "filament/support": "self.version",
  1870. "illuminate/console": "^10.45|^11.0",
  1871. "illuminate/contracts": "^10.45|^11.0",
  1872. "illuminate/database": "^10.45|^11.0",
  1873. "illuminate/filesystem": "^10.45|^11.0",
  1874. "illuminate/support": "^10.45|^11.0",
  1875. "illuminate/validation": "^10.45|^11.0",
  1876. "illuminate/view": "^10.45|^11.0",
  1877. "php": "^8.1",
  1878. "spatie/laravel-package-tools": "^1.9"
  1879. },
  1880. "type": "library",
  1881. "extra": {
  1882. "laravel": {
  1883. "providers": [
  1884. "Filament\\Forms\\FormsServiceProvider"
  1885. ]
  1886. }
  1887. },
  1888. "autoload": {
  1889. "files": [
  1890. "src/helpers.php"
  1891. ],
  1892. "psr-4": {
  1893. "Filament\\Forms\\": "src"
  1894. }
  1895. },
  1896. "notification-url": "https://packagist.org/downloads/",
  1897. "license": [
  1898. "MIT"
  1899. ],
  1900. "description": "Easily add beautiful forms to any Livewire component.",
  1901. "homepage": "https://github.com/filamentphp/filament",
  1902. "support": {
  1903. "issues": "https://github.com/filamentphp/filament/issues",
  1904. "source": "https://github.com/filamentphp/filament"
  1905. },
  1906. "time": "2025-01-24T09:27:50+00:00"
  1907. },
  1908. {
  1909. "name": "filament/infolists",
  1910. "version": "v3.2.135",
  1911. "source": {
  1912. "type": "git",
  1913. "url": "https://github.com/filamentphp/infolists.git",
  1914. "reference": "3330966b87da7d2078b62556428c279a6e8ff17c"
  1915. },
  1916. "dist": {
  1917. "type": "zip",
  1918. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/3330966b87da7d2078b62556428c279a6e8ff17c",
  1919. "reference": "3330966b87da7d2078b62556428c279a6e8ff17c",
  1920. "shasum": ""
  1921. },
  1922. "require": {
  1923. "filament/actions": "self.version",
  1924. "filament/support": "self.version",
  1925. "illuminate/console": "^10.45|^11.0",
  1926. "illuminate/contracts": "^10.45|^11.0",
  1927. "illuminate/database": "^10.45|^11.0",
  1928. "illuminate/filesystem": "^10.45|^11.0",
  1929. "illuminate/support": "^10.45|^11.0",
  1930. "illuminate/view": "^10.45|^11.0",
  1931. "php": "^8.1",
  1932. "spatie/laravel-package-tools": "^1.9"
  1933. },
  1934. "type": "library",
  1935. "extra": {
  1936. "laravel": {
  1937. "providers": [
  1938. "Filament\\Infolists\\InfolistsServiceProvider"
  1939. ]
  1940. }
  1941. },
  1942. "autoload": {
  1943. "psr-4": {
  1944. "Filament\\Infolists\\": "src"
  1945. }
  1946. },
  1947. "notification-url": "https://packagist.org/downloads/",
  1948. "license": [
  1949. "MIT"
  1950. ],
  1951. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  1952. "homepage": "https://github.com/filamentphp/filament",
  1953. "support": {
  1954. "issues": "https://github.com/filamentphp/filament/issues",
  1955. "source": "https://github.com/filamentphp/filament"
  1956. },
  1957. "time": "2025-01-24T09:27:49+00:00"
  1958. },
  1959. {
  1960. "name": "filament/notifications",
  1961. "version": "v3.2.135",
  1962. "source": {
  1963. "type": "git",
  1964. "url": "https://github.com/filamentphp/notifications.git",
  1965. "reference": "e864c50bc0b6e9eb46b5e3d93a672a66f80a0fbe"
  1966. },
  1967. "dist": {
  1968. "type": "zip",
  1969. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/e864c50bc0b6e9eb46b5e3d93a672a66f80a0fbe",
  1970. "reference": "e864c50bc0b6e9eb46b5e3d93a672a66f80a0fbe",
  1971. "shasum": ""
  1972. },
  1973. "require": {
  1974. "filament/actions": "self.version",
  1975. "filament/support": "self.version",
  1976. "illuminate/contracts": "^10.45|^11.0",
  1977. "illuminate/filesystem": "^10.45|^11.0",
  1978. "illuminate/notifications": "^10.45|^11.0",
  1979. "illuminate/support": "^10.45|^11.0",
  1980. "php": "^8.1",
  1981. "spatie/laravel-package-tools": "^1.9"
  1982. },
  1983. "type": "library",
  1984. "extra": {
  1985. "laravel": {
  1986. "providers": [
  1987. "Filament\\Notifications\\NotificationsServiceProvider"
  1988. ]
  1989. }
  1990. },
  1991. "autoload": {
  1992. "files": [
  1993. "src/Testing/Autoload.php"
  1994. ],
  1995. "psr-4": {
  1996. "Filament\\Notifications\\": "src"
  1997. }
  1998. },
  1999. "notification-url": "https://packagist.org/downloads/",
  2000. "license": [
  2001. "MIT"
  2002. ],
  2003. "description": "Easily add beautiful notifications to any Livewire app.",
  2004. "homepage": "https://github.com/filamentphp/filament",
  2005. "support": {
  2006. "issues": "https://github.com/filamentphp/filament/issues",
  2007. "source": "https://github.com/filamentphp/filament"
  2008. },
  2009. "time": "2025-01-24T09:27:49+00:00"
  2010. },
  2011. {
  2012. "name": "filament/support",
  2013. "version": "v3.2.135",
  2014. "source": {
  2015. "type": "git",
  2016. "url": "https://github.com/filamentphp/support.git",
  2017. "reference": "ca0ff1fa43d743e06de9c2f50ccea98e23785c7d"
  2018. },
  2019. "dist": {
  2020. "type": "zip",
  2021. "url": "https://api.github.com/repos/filamentphp/support/zipball/ca0ff1fa43d743e06de9c2f50ccea98e23785c7d",
  2022. "reference": "ca0ff1fa43d743e06de9c2f50ccea98e23785c7d",
  2023. "shasum": ""
  2024. },
  2025. "require": {
  2026. "blade-ui-kit/blade-heroicons": "^2.5",
  2027. "doctrine/dbal": "^3.2|^4.0",
  2028. "ext-intl": "*",
  2029. "illuminate/contracts": "^10.45|^11.0",
  2030. "illuminate/support": "^10.45|^11.0",
  2031. "illuminate/view": "^10.45|^11.0",
  2032. "kirschbaum-development/eloquent-power-joins": "^3.0|^4.0",
  2033. "livewire/livewire": "3.5.12",
  2034. "php": "^8.1",
  2035. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  2036. "spatie/color": "^1.5",
  2037. "spatie/invade": "^1.0|^2.0",
  2038. "spatie/laravel-package-tools": "^1.9",
  2039. "symfony/console": "^6.0|^7.0",
  2040. "symfony/html-sanitizer": "^6.1|^7.0"
  2041. },
  2042. "type": "library",
  2043. "extra": {
  2044. "laravel": {
  2045. "providers": [
  2046. "Filament\\Support\\SupportServiceProvider"
  2047. ]
  2048. }
  2049. },
  2050. "autoload": {
  2051. "files": [
  2052. "src/helpers.php"
  2053. ],
  2054. "psr-4": {
  2055. "Filament\\Support\\": "src"
  2056. }
  2057. },
  2058. "notification-url": "https://packagist.org/downloads/",
  2059. "license": [
  2060. "MIT"
  2061. ],
  2062. "description": "Core helper methods and foundation code for all Filament packages.",
  2063. "homepage": "https://github.com/filamentphp/filament",
  2064. "support": {
  2065. "issues": "https://github.com/filamentphp/filament/issues",
  2066. "source": "https://github.com/filamentphp/filament"
  2067. },
  2068. "time": "2025-01-24T09:28:01+00:00"
  2069. },
  2070. {
  2071. "name": "filament/tables",
  2072. "version": "v3.2.135",
  2073. "source": {
  2074. "type": "git",
  2075. "url": "https://github.com/filamentphp/tables.git",
  2076. "reference": "db63ab6fd7c2046dc9b1fc6fbd92df0a1aabb54e"
  2077. },
  2078. "dist": {
  2079. "type": "zip",
  2080. "url": "https://api.github.com/repos/filamentphp/tables/zipball/db63ab6fd7c2046dc9b1fc6fbd92df0a1aabb54e",
  2081. "reference": "db63ab6fd7c2046dc9b1fc6fbd92df0a1aabb54e",
  2082. "shasum": ""
  2083. },
  2084. "require": {
  2085. "filament/actions": "self.version",
  2086. "filament/forms": "self.version",
  2087. "filament/support": "self.version",
  2088. "illuminate/console": "^10.45|^11.0",
  2089. "illuminate/contracts": "^10.45|^11.0",
  2090. "illuminate/database": "^10.45|^11.0",
  2091. "illuminate/filesystem": "^10.45|^11.0",
  2092. "illuminate/support": "^10.45|^11.0",
  2093. "illuminate/view": "^10.45|^11.0",
  2094. "php": "^8.1",
  2095. "spatie/laravel-package-tools": "^1.9"
  2096. },
  2097. "type": "library",
  2098. "extra": {
  2099. "laravel": {
  2100. "providers": [
  2101. "Filament\\Tables\\TablesServiceProvider"
  2102. ]
  2103. }
  2104. },
  2105. "autoload": {
  2106. "psr-4": {
  2107. "Filament\\Tables\\": "src"
  2108. }
  2109. },
  2110. "notification-url": "https://packagist.org/downloads/",
  2111. "license": [
  2112. "MIT"
  2113. ],
  2114. "description": "Easily add beautiful tables to any Livewire component.",
  2115. "homepage": "https://github.com/filamentphp/filament",
  2116. "support": {
  2117. "issues": "https://github.com/filamentphp/filament/issues",
  2118. "source": "https://github.com/filamentphp/filament"
  2119. },
  2120. "time": "2025-01-24T09:28:02+00:00"
  2121. },
  2122. {
  2123. "name": "filament/widgets",
  2124. "version": "v3.2.135",
  2125. "source": {
  2126. "type": "git",
  2127. "url": "https://github.com/filamentphp/widgets.git",
  2128. "reference": "9f6674daceced7d5045494d0bf7e1d2908ea439d"
  2129. },
  2130. "dist": {
  2131. "type": "zip",
  2132. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/9f6674daceced7d5045494d0bf7e1d2908ea439d",
  2133. "reference": "9f6674daceced7d5045494d0bf7e1d2908ea439d",
  2134. "shasum": ""
  2135. },
  2136. "require": {
  2137. "filament/support": "self.version",
  2138. "php": "^8.1",
  2139. "spatie/laravel-package-tools": "^1.9"
  2140. },
  2141. "type": "library",
  2142. "extra": {
  2143. "laravel": {
  2144. "providers": [
  2145. "Filament\\Widgets\\WidgetsServiceProvider"
  2146. ]
  2147. }
  2148. },
  2149. "autoload": {
  2150. "psr-4": {
  2151. "Filament\\Widgets\\": "src"
  2152. }
  2153. },
  2154. "notification-url": "https://packagist.org/downloads/",
  2155. "license": [
  2156. "MIT"
  2157. ],
  2158. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2159. "homepage": "https://github.com/filamentphp/filament",
  2160. "support": {
  2161. "issues": "https://github.com/filamentphp/filament/issues",
  2162. "source": "https://github.com/filamentphp/filament"
  2163. },
  2164. "time": "2025-01-10T12:48:52+00:00"
  2165. },
  2166. {
  2167. "name": "firebase/php-jwt",
  2168. "version": "v6.11.0",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://github.com/firebase/php-jwt.git",
  2172. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  2177. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  2178. "shasum": ""
  2179. },
  2180. "require": {
  2181. "php": "^8.0"
  2182. },
  2183. "require-dev": {
  2184. "guzzlehttp/guzzle": "^7.4",
  2185. "phpspec/prophecy-phpunit": "^2.0",
  2186. "phpunit/phpunit": "^9.5",
  2187. "psr/cache": "^2.0||^3.0",
  2188. "psr/http-client": "^1.0",
  2189. "psr/http-factory": "^1.0"
  2190. },
  2191. "suggest": {
  2192. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2193. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2194. },
  2195. "type": "library",
  2196. "autoload": {
  2197. "psr-4": {
  2198. "Firebase\\JWT\\": "src"
  2199. }
  2200. },
  2201. "notification-url": "https://packagist.org/downloads/",
  2202. "license": [
  2203. "BSD-3-Clause"
  2204. ],
  2205. "authors": [
  2206. {
  2207. "name": "Neuman Vong",
  2208. "email": "neuman+pear@twilio.com",
  2209. "role": "Developer"
  2210. },
  2211. {
  2212. "name": "Anant Narayanan",
  2213. "email": "anant@php.net",
  2214. "role": "Developer"
  2215. }
  2216. ],
  2217. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2218. "homepage": "https://github.com/firebase/php-jwt",
  2219. "keywords": [
  2220. "jwt",
  2221. "php"
  2222. ],
  2223. "support": {
  2224. "issues": "https://github.com/firebase/php-jwt/issues",
  2225. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  2226. },
  2227. "time": "2025-01-23T05:11:06+00:00"
  2228. },
  2229. {
  2230. "name": "fruitcake/php-cors",
  2231. "version": "v1.3.0",
  2232. "source": {
  2233. "type": "git",
  2234. "url": "https://github.com/fruitcake/php-cors.git",
  2235. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2236. },
  2237. "dist": {
  2238. "type": "zip",
  2239. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2240. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2241. "shasum": ""
  2242. },
  2243. "require": {
  2244. "php": "^7.4|^8.0",
  2245. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2246. },
  2247. "require-dev": {
  2248. "phpstan/phpstan": "^1.4",
  2249. "phpunit/phpunit": "^9",
  2250. "squizlabs/php_codesniffer": "^3.5"
  2251. },
  2252. "type": "library",
  2253. "extra": {
  2254. "branch-alias": {
  2255. "dev-master": "1.2-dev"
  2256. }
  2257. },
  2258. "autoload": {
  2259. "psr-4": {
  2260. "Fruitcake\\Cors\\": "src/"
  2261. }
  2262. },
  2263. "notification-url": "https://packagist.org/downloads/",
  2264. "license": [
  2265. "MIT"
  2266. ],
  2267. "authors": [
  2268. {
  2269. "name": "Fruitcake",
  2270. "homepage": "https://fruitcake.nl"
  2271. },
  2272. {
  2273. "name": "Barryvdh",
  2274. "email": "barryvdh@gmail.com"
  2275. }
  2276. ],
  2277. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2278. "homepage": "https://github.com/fruitcake/php-cors",
  2279. "keywords": [
  2280. "cors",
  2281. "laravel",
  2282. "symfony"
  2283. ],
  2284. "support": {
  2285. "issues": "https://github.com/fruitcake/php-cors/issues",
  2286. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2287. },
  2288. "funding": [
  2289. {
  2290. "url": "https://fruitcake.nl",
  2291. "type": "custom"
  2292. },
  2293. {
  2294. "url": "https://github.com/barryvdh",
  2295. "type": "github"
  2296. }
  2297. ],
  2298. "time": "2023-10-12T05:21:21+00:00"
  2299. },
  2300. {
  2301. "name": "graham-campbell/result-type",
  2302. "version": "v1.1.3",
  2303. "source": {
  2304. "type": "git",
  2305. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2306. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2307. },
  2308. "dist": {
  2309. "type": "zip",
  2310. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2311. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2312. "shasum": ""
  2313. },
  2314. "require": {
  2315. "php": "^7.2.5 || ^8.0",
  2316. "phpoption/phpoption": "^1.9.3"
  2317. },
  2318. "require-dev": {
  2319. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2320. },
  2321. "type": "library",
  2322. "autoload": {
  2323. "psr-4": {
  2324. "GrahamCampbell\\ResultType\\": "src/"
  2325. }
  2326. },
  2327. "notification-url": "https://packagist.org/downloads/",
  2328. "license": [
  2329. "MIT"
  2330. ],
  2331. "authors": [
  2332. {
  2333. "name": "Graham Campbell",
  2334. "email": "hello@gjcampbell.co.uk",
  2335. "homepage": "https://github.com/GrahamCampbell"
  2336. }
  2337. ],
  2338. "description": "An Implementation Of The Result Type",
  2339. "keywords": [
  2340. "Graham Campbell",
  2341. "GrahamCampbell",
  2342. "Result Type",
  2343. "Result-Type",
  2344. "result"
  2345. ],
  2346. "support": {
  2347. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2348. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2349. },
  2350. "funding": [
  2351. {
  2352. "url": "https://github.com/GrahamCampbell",
  2353. "type": "github"
  2354. },
  2355. {
  2356. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2357. "type": "tidelift"
  2358. }
  2359. ],
  2360. "time": "2024-07-20T21:45:45+00:00"
  2361. },
  2362. {
  2363. "name": "guava/filament-clusters",
  2364. "version": "1.4.0",
  2365. "source": {
  2366. "type": "git",
  2367. "url": "https://github.com/GuavaCZ/filament-clusters.git",
  2368. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694"
  2369. },
  2370. "dist": {
  2371. "type": "zip",
  2372. "url": "https://api.github.com/repos/GuavaCZ/filament-clusters/zipball/c4a2ad6342f630f494f5e923b65426d935d12694",
  2373. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694",
  2374. "shasum": ""
  2375. },
  2376. "require": {
  2377. "filament/filament": "^3.0",
  2378. "illuminate/contracts": "^10.0 | ^11.0",
  2379. "php": "^8.1",
  2380. "spatie/laravel-package-tools": "^1.14.0"
  2381. },
  2382. "require-dev": {
  2383. "laravel/pint": "^1.0",
  2384. "nunomaduro/collision": "^7.8",
  2385. "nunomaduro/larastan": "^2.0.1",
  2386. "orchestra/testbench": "^8.8",
  2387. "pestphp/pest": "^2.0",
  2388. "pestphp/pest-plugin-arch": "^2.0",
  2389. "pestphp/pest-plugin-laravel": "^2.0",
  2390. "phpstan/extension-installer": "^1.1",
  2391. "phpstan/phpstan-deprecation-rules": "^1.0",
  2392. "phpstan/phpstan-phpunit": "^1.0"
  2393. },
  2394. "type": "library",
  2395. "extra": {
  2396. "laravel": {
  2397. "providers": [
  2398. "Guava\\FilamentClusters\\FilamentClustersServiceProvider"
  2399. ]
  2400. }
  2401. },
  2402. "autoload": {
  2403. "psr-4": {
  2404. "Guava\\FilamentClusters\\": "src/"
  2405. }
  2406. },
  2407. "notification-url": "https://packagist.org/downloads/",
  2408. "license": [
  2409. "MIT"
  2410. ],
  2411. "authors": [
  2412. {
  2413. "name": "Lukas Frey",
  2414. "email": "lukas.frey@guava.cz",
  2415. "role": "Developer"
  2416. }
  2417. ],
  2418. "description": "Filament clusters allow you to cluster multiple fields into one visually.",
  2419. "homepage": "https://github.com/GuavaCZ/filament-clusters",
  2420. "keywords": [
  2421. "Guava",
  2422. "filament-clusters",
  2423. "laravel"
  2424. ],
  2425. "support": {
  2426. "issues": "https://github.com/GuavaCZ/filament-clusters/issues",
  2427. "source": "https://github.com/GuavaCZ/filament-clusters/tree/1.4.0"
  2428. },
  2429. "funding": [
  2430. {
  2431. "url": "https://github.com/GuavaCZ",
  2432. "type": "github"
  2433. }
  2434. ],
  2435. "time": "2024-05-31T09:31:08+00:00"
  2436. },
  2437. {
  2438. "name": "guzzlehttp/guzzle",
  2439. "version": "7.9.2",
  2440. "source": {
  2441. "type": "git",
  2442. "url": "https://github.com/guzzle/guzzle.git",
  2443. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  2444. },
  2445. "dist": {
  2446. "type": "zip",
  2447. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  2448. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  2449. "shasum": ""
  2450. },
  2451. "require": {
  2452. "ext-json": "*",
  2453. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2454. "guzzlehttp/psr7": "^2.7.0",
  2455. "php": "^7.2.5 || ^8.0",
  2456. "psr/http-client": "^1.0",
  2457. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2458. },
  2459. "provide": {
  2460. "psr/http-client-implementation": "1.0"
  2461. },
  2462. "require-dev": {
  2463. "bamarni/composer-bin-plugin": "^1.8.2",
  2464. "ext-curl": "*",
  2465. "guzzle/client-integration-tests": "3.0.2",
  2466. "php-http/message-factory": "^1.1",
  2467. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2468. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2469. },
  2470. "suggest": {
  2471. "ext-curl": "Required for CURL handler support",
  2472. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2473. "psr/log": "Required for using the Log middleware"
  2474. },
  2475. "type": "library",
  2476. "extra": {
  2477. "bamarni-bin": {
  2478. "bin-links": true,
  2479. "forward-command": false
  2480. }
  2481. },
  2482. "autoload": {
  2483. "files": [
  2484. "src/functions_include.php"
  2485. ],
  2486. "psr-4": {
  2487. "GuzzleHttp\\": "src/"
  2488. }
  2489. },
  2490. "notification-url": "https://packagist.org/downloads/",
  2491. "license": [
  2492. "MIT"
  2493. ],
  2494. "authors": [
  2495. {
  2496. "name": "Graham Campbell",
  2497. "email": "hello@gjcampbell.co.uk",
  2498. "homepage": "https://github.com/GrahamCampbell"
  2499. },
  2500. {
  2501. "name": "Michael Dowling",
  2502. "email": "mtdowling@gmail.com",
  2503. "homepage": "https://github.com/mtdowling"
  2504. },
  2505. {
  2506. "name": "Jeremy Lindblom",
  2507. "email": "jeremeamia@gmail.com",
  2508. "homepage": "https://github.com/jeremeamia"
  2509. },
  2510. {
  2511. "name": "George Mponos",
  2512. "email": "gmponos@gmail.com",
  2513. "homepage": "https://github.com/gmponos"
  2514. },
  2515. {
  2516. "name": "Tobias Nyholm",
  2517. "email": "tobias.nyholm@gmail.com",
  2518. "homepage": "https://github.com/Nyholm"
  2519. },
  2520. {
  2521. "name": "Márk Sági-Kazár",
  2522. "email": "mark.sagikazar@gmail.com",
  2523. "homepage": "https://github.com/sagikazarmark"
  2524. },
  2525. {
  2526. "name": "Tobias Schultze",
  2527. "email": "webmaster@tubo-world.de",
  2528. "homepage": "https://github.com/Tobion"
  2529. }
  2530. ],
  2531. "description": "Guzzle is a PHP HTTP client library",
  2532. "keywords": [
  2533. "client",
  2534. "curl",
  2535. "framework",
  2536. "http",
  2537. "http client",
  2538. "psr-18",
  2539. "psr-7",
  2540. "rest",
  2541. "web service"
  2542. ],
  2543. "support": {
  2544. "issues": "https://github.com/guzzle/guzzle/issues",
  2545. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  2546. },
  2547. "funding": [
  2548. {
  2549. "url": "https://github.com/GrahamCampbell",
  2550. "type": "github"
  2551. },
  2552. {
  2553. "url": "https://github.com/Nyholm",
  2554. "type": "github"
  2555. },
  2556. {
  2557. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2558. "type": "tidelift"
  2559. }
  2560. ],
  2561. "time": "2024-07-24T11:22:20+00:00"
  2562. },
  2563. {
  2564. "name": "guzzlehttp/promises",
  2565. "version": "2.0.4",
  2566. "source": {
  2567. "type": "git",
  2568. "url": "https://github.com/guzzle/promises.git",
  2569. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  2570. },
  2571. "dist": {
  2572. "type": "zip",
  2573. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2574. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2575. "shasum": ""
  2576. },
  2577. "require": {
  2578. "php": "^7.2.5 || ^8.0"
  2579. },
  2580. "require-dev": {
  2581. "bamarni/composer-bin-plugin": "^1.8.2",
  2582. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2583. },
  2584. "type": "library",
  2585. "extra": {
  2586. "bamarni-bin": {
  2587. "bin-links": true,
  2588. "forward-command": false
  2589. }
  2590. },
  2591. "autoload": {
  2592. "psr-4": {
  2593. "GuzzleHttp\\Promise\\": "src/"
  2594. }
  2595. },
  2596. "notification-url": "https://packagist.org/downloads/",
  2597. "license": [
  2598. "MIT"
  2599. ],
  2600. "authors": [
  2601. {
  2602. "name": "Graham Campbell",
  2603. "email": "hello@gjcampbell.co.uk",
  2604. "homepage": "https://github.com/GrahamCampbell"
  2605. },
  2606. {
  2607. "name": "Michael Dowling",
  2608. "email": "mtdowling@gmail.com",
  2609. "homepage": "https://github.com/mtdowling"
  2610. },
  2611. {
  2612. "name": "Tobias Nyholm",
  2613. "email": "tobias.nyholm@gmail.com",
  2614. "homepage": "https://github.com/Nyholm"
  2615. },
  2616. {
  2617. "name": "Tobias Schultze",
  2618. "email": "webmaster@tubo-world.de",
  2619. "homepage": "https://github.com/Tobion"
  2620. }
  2621. ],
  2622. "description": "Guzzle promises library",
  2623. "keywords": [
  2624. "promise"
  2625. ],
  2626. "support": {
  2627. "issues": "https://github.com/guzzle/promises/issues",
  2628. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  2629. },
  2630. "funding": [
  2631. {
  2632. "url": "https://github.com/GrahamCampbell",
  2633. "type": "github"
  2634. },
  2635. {
  2636. "url": "https://github.com/Nyholm",
  2637. "type": "github"
  2638. },
  2639. {
  2640. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2641. "type": "tidelift"
  2642. }
  2643. ],
  2644. "time": "2024-10-17T10:06:22+00:00"
  2645. },
  2646. {
  2647. "name": "guzzlehttp/psr7",
  2648. "version": "2.7.0",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://github.com/guzzle/psr7.git",
  2652. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2657. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2658. "shasum": ""
  2659. },
  2660. "require": {
  2661. "php": "^7.2.5 || ^8.0",
  2662. "psr/http-factory": "^1.0",
  2663. "psr/http-message": "^1.1 || ^2.0",
  2664. "ralouphie/getallheaders": "^3.0"
  2665. },
  2666. "provide": {
  2667. "psr/http-factory-implementation": "1.0",
  2668. "psr/http-message-implementation": "1.0"
  2669. },
  2670. "require-dev": {
  2671. "bamarni/composer-bin-plugin": "^1.8.2",
  2672. "http-interop/http-factory-tests": "0.9.0",
  2673. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2674. },
  2675. "suggest": {
  2676. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2677. },
  2678. "type": "library",
  2679. "extra": {
  2680. "bamarni-bin": {
  2681. "bin-links": true,
  2682. "forward-command": false
  2683. }
  2684. },
  2685. "autoload": {
  2686. "psr-4": {
  2687. "GuzzleHttp\\Psr7\\": "src/"
  2688. }
  2689. },
  2690. "notification-url": "https://packagist.org/downloads/",
  2691. "license": [
  2692. "MIT"
  2693. ],
  2694. "authors": [
  2695. {
  2696. "name": "Graham Campbell",
  2697. "email": "hello@gjcampbell.co.uk",
  2698. "homepage": "https://github.com/GrahamCampbell"
  2699. },
  2700. {
  2701. "name": "Michael Dowling",
  2702. "email": "mtdowling@gmail.com",
  2703. "homepage": "https://github.com/mtdowling"
  2704. },
  2705. {
  2706. "name": "George Mponos",
  2707. "email": "gmponos@gmail.com",
  2708. "homepage": "https://github.com/gmponos"
  2709. },
  2710. {
  2711. "name": "Tobias Nyholm",
  2712. "email": "tobias.nyholm@gmail.com",
  2713. "homepage": "https://github.com/Nyholm"
  2714. },
  2715. {
  2716. "name": "Márk Sági-Kazár",
  2717. "email": "mark.sagikazar@gmail.com",
  2718. "homepage": "https://github.com/sagikazarmark"
  2719. },
  2720. {
  2721. "name": "Tobias Schultze",
  2722. "email": "webmaster@tubo-world.de",
  2723. "homepage": "https://github.com/Tobion"
  2724. },
  2725. {
  2726. "name": "Márk Sági-Kazár",
  2727. "email": "mark.sagikazar@gmail.com",
  2728. "homepage": "https://sagikazarmark.hu"
  2729. }
  2730. ],
  2731. "description": "PSR-7 message implementation that also provides common utility methods",
  2732. "keywords": [
  2733. "http",
  2734. "message",
  2735. "psr-7",
  2736. "request",
  2737. "response",
  2738. "stream",
  2739. "uri",
  2740. "url"
  2741. ],
  2742. "support": {
  2743. "issues": "https://github.com/guzzle/psr7/issues",
  2744. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  2745. },
  2746. "funding": [
  2747. {
  2748. "url": "https://github.com/GrahamCampbell",
  2749. "type": "github"
  2750. },
  2751. {
  2752. "url": "https://github.com/Nyholm",
  2753. "type": "github"
  2754. },
  2755. {
  2756. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2757. "type": "tidelift"
  2758. }
  2759. ],
  2760. "time": "2024-07-18T11:15:46+00:00"
  2761. },
  2762. {
  2763. "name": "guzzlehttp/uri-template",
  2764. "version": "v1.0.3",
  2765. "source": {
  2766. "type": "git",
  2767. "url": "https://github.com/guzzle/uri-template.git",
  2768. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  2769. },
  2770. "dist": {
  2771. "type": "zip",
  2772. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2773. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2774. "shasum": ""
  2775. },
  2776. "require": {
  2777. "php": "^7.2.5 || ^8.0",
  2778. "symfony/polyfill-php80": "^1.24"
  2779. },
  2780. "require-dev": {
  2781. "bamarni/composer-bin-plugin": "^1.8.2",
  2782. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2783. "uri-template/tests": "1.0.0"
  2784. },
  2785. "type": "library",
  2786. "extra": {
  2787. "bamarni-bin": {
  2788. "bin-links": true,
  2789. "forward-command": false
  2790. }
  2791. },
  2792. "autoload": {
  2793. "psr-4": {
  2794. "GuzzleHttp\\UriTemplate\\": "src"
  2795. }
  2796. },
  2797. "notification-url": "https://packagist.org/downloads/",
  2798. "license": [
  2799. "MIT"
  2800. ],
  2801. "authors": [
  2802. {
  2803. "name": "Graham Campbell",
  2804. "email": "hello@gjcampbell.co.uk",
  2805. "homepage": "https://github.com/GrahamCampbell"
  2806. },
  2807. {
  2808. "name": "Michael Dowling",
  2809. "email": "mtdowling@gmail.com",
  2810. "homepage": "https://github.com/mtdowling"
  2811. },
  2812. {
  2813. "name": "George Mponos",
  2814. "email": "gmponos@gmail.com",
  2815. "homepage": "https://github.com/gmponos"
  2816. },
  2817. {
  2818. "name": "Tobias Nyholm",
  2819. "email": "tobias.nyholm@gmail.com",
  2820. "homepage": "https://github.com/Nyholm"
  2821. }
  2822. ],
  2823. "description": "A polyfill class for uri_template of PHP",
  2824. "keywords": [
  2825. "guzzlehttp",
  2826. "uri-template"
  2827. ],
  2828. "support": {
  2829. "issues": "https://github.com/guzzle/uri-template/issues",
  2830. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  2831. },
  2832. "funding": [
  2833. {
  2834. "url": "https://github.com/GrahamCampbell",
  2835. "type": "github"
  2836. },
  2837. {
  2838. "url": "https://github.com/Nyholm",
  2839. "type": "github"
  2840. },
  2841. {
  2842. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2843. "type": "tidelift"
  2844. }
  2845. ],
  2846. "time": "2023-12-03T19:50:20+00:00"
  2847. },
  2848. {
  2849. "name": "jaocero/radio-deck",
  2850. "version": "v1.2.9",
  2851. "source": {
  2852. "type": "git",
  2853. "url": "https://github.com/199ocero/radio-deck.git",
  2854. "reference": "f99c40700d9ff1a8419cee44fcd4304908919f8e"
  2855. },
  2856. "dist": {
  2857. "type": "zip",
  2858. "url": "https://api.github.com/repos/199ocero/radio-deck/zipball/f99c40700d9ff1a8419cee44fcd4304908919f8e",
  2859. "reference": "f99c40700d9ff1a8419cee44fcd4304908919f8e",
  2860. "shasum": ""
  2861. },
  2862. "require": {
  2863. "filament/forms": "^3.0",
  2864. "illuminate/contracts": "^10.0|^11.0",
  2865. "php": "^8.1",
  2866. "spatie/laravel-package-tools": "^1.15.0"
  2867. },
  2868. "require-dev": {
  2869. "nunomaduro/collision": "^7.9",
  2870. "orchestra/testbench": "^8.0|^9.0",
  2871. "pestphp/pest": "^2.0",
  2872. "pestphp/pest-plugin-arch": "^2.0",
  2873. "pestphp/pest-plugin-laravel": "^2.0"
  2874. },
  2875. "type": "library",
  2876. "extra": {
  2877. "laravel": {
  2878. "providers": [
  2879. "JaOcero\\RadioDeck\\RadioDeckServiceProvider"
  2880. ]
  2881. }
  2882. },
  2883. "autoload": {
  2884. "psr-4": {
  2885. "JaOcero\\RadioDeck\\": "src/",
  2886. "JaOcero\\RadioDeck\\Database\\Factories\\": "database/factories/"
  2887. }
  2888. },
  2889. "notification-url": "https://packagist.org/downloads/",
  2890. "license": [
  2891. "MIT"
  2892. ],
  2893. "authors": [
  2894. {
  2895. "name": "Jay-Are Ocero",
  2896. "email": "199ocero@gmail.com",
  2897. "role": "Developer"
  2898. }
  2899. ],
  2900. "description": "Turn filament default radio button into a selectable card with icons, title and description.",
  2901. "homepage": "https://github.com/jaocero/radio-deck",
  2902. "keywords": [
  2903. "filament-form",
  2904. "filament-plugin",
  2905. "filamentphp",
  2906. "jaocero",
  2907. "laravel",
  2908. "radio-deck"
  2909. ],
  2910. "support": {
  2911. "issues": "https://github.com/jaocero/radio-deck/issues",
  2912. "source": "https://github.com/jaocero/radio-deck"
  2913. },
  2914. "funding": [
  2915. {
  2916. "url": "https://github.com/jaocero",
  2917. "type": "github"
  2918. }
  2919. ],
  2920. "time": "2024-12-07T13:41:25+00:00"
  2921. },
  2922. {
  2923. "name": "kirschbaum-development/eloquent-power-joins",
  2924. "version": "4.0.1",
  2925. "source": {
  2926. "type": "git",
  2927. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2928. "reference": "3c1af9b86b02f1e39219849c1d2fee7cf77e8638"
  2929. },
  2930. "dist": {
  2931. "type": "zip",
  2932. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/3c1af9b86b02f1e39219849c1d2fee7cf77e8638",
  2933. "reference": "3c1af9b86b02f1e39219849c1d2fee7cf77e8638",
  2934. "shasum": ""
  2935. },
  2936. "require": {
  2937. "illuminate/database": "^10.0|^11.0",
  2938. "illuminate/support": "^10.0|^11.0",
  2939. "php": "^8.1"
  2940. },
  2941. "require-dev": {
  2942. "friendsofphp/php-cs-fixer": "dev-master",
  2943. "laravel/legacy-factories": "^1.0@dev",
  2944. "orchestra/testbench": "^8.0|^9.0",
  2945. "phpunit/phpunit": "^10.0"
  2946. },
  2947. "type": "library",
  2948. "extra": {
  2949. "laravel": {
  2950. "providers": [
  2951. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  2952. ]
  2953. }
  2954. },
  2955. "autoload": {
  2956. "psr-4": {
  2957. "Kirschbaum\\PowerJoins\\": "src"
  2958. }
  2959. },
  2960. "notification-url": "https://packagist.org/downloads/",
  2961. "license": [
  2962. "MIT"
  2963. ],
  2964. "authors": [
  2965. {
  2966. "name": "Luis Dalmolin",
  2967. "email": "luis.nh@gmail.com",
  2968. "role": "Developer"
  2969. }
  2970. ],
  2971. "description": "The Laravel magic applied to joins.",
  2972. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  2973. "keywords": [
  2974. "eloquent",
  2975. "join",
  2976. "laravel",
  2977. "mysql"
  2978. ],
  2979. "support": {
  2980. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  2981. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.0.1"
  2982. },
  2983. "time": "2024-11-26T13:22:08+00:00"
  2984. },
  2985. {
  2986. "name": "knplabs/knp-snappy",
  2987. "version": "v1.5.1",
  2988. "source": {
  2989. "type": "git",
  2990. "url": "https://github.com/KnpLabs/snappy.git",
  2991. "reference": "3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7"
  2992. },
  2993. "dist": {
  2994. "type": "zip",
  2995. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7",
  2996. "reference": "3dd138e9e47de91cd2e056c5e6e1a0dd72547ee7",
  2997. "shasum": ""
  2998. },
  2999. "require": {
  3000. "php": ">=8.1",
  3001. "psr/log": "^2.0||^3.0",
  3002. "symfony/process": "^5.0||^6.0||^7.0"
  3003. },
  3004. "require-dev": {
  3005. "friendsofphp/php-cs-fixer": "^3.0",
  3006. "pedrotroller/php-cs-custom-fixer": "^2.19",
  3007. "phpstan/phpstan": "^1.0.0",
  3008. "phpstan/phpstan-phpunit": "^1.0.0",
  3009. "phpunit/phpunit": "^8.5"
  3010. },
  3011. "type": "library",
  3012. "extra": {
  3013. "branch-alias": {
  3014. "dev-master": "1.x-dev"
  3015. }
  3016. },
  3017. "autoload": {
  3018. "psr-4": {
  3019. "Knp\\Snappy\\": "src/Knp/Snappy"
  3020. }
  3021. },
  3022. "notification-url": "https://packagist.org/downloads/",
  3023. "license": [
  3024. "MIT"
  3025. ],
  3026. "authors": [
  3027. {
  3028. "name": "KNP Labs Team",
  3029. "homepage": "http://knplabs.com"
  3030. },
  3031. {
  3032. "name": "Symfony Community",
  3033. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  3034. }
  3035. ],
  3036. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  3037. "homepage": "http://github.com/KnpLabs/snappy",
  3038. "keywords": [
  3039. "knp",
  3040. "knplabs",
  3041. "pdf",
  3042. "snapshot",
  3043. "thumbnail",
  3044. "wkhtmltopdf"
  3045. ],
  3046. "support": {
  3047. "issues": "https://github.com/KnpLabs/snappy/issues",
  3048. "source": "https://github.com/KnpLabs/snappy/tree/v1.5.1"
  3049. },
  3050. "time": "2025-01-06T16:53:26+00:00"
  3051. },
  3052. {
  3053. "name": "laravel/framework",
  3054. "version": "v11.41.0",
  3055. "source": {
  3056. "type": "git",
  3057. "url": "https://github.com/laravel/framework.git",
  3058. "reference": "42d6ae000c868c2abfa946da46702f2358493482"
  3059. },
  3060. "dist": {
  3061. "type": "zip",
  3062. "url": "https://api.github.com/repos/laravel/framework/zipball/42d6ae000c868c2abfa946da46702f2358493482",
  3063. "reference": "42d6ae000c868c2abfa946da46702f2358493482",
  3064. "shasum": ""
  3065. },
  3066. "require": {
  3067. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  3068. "composer-runtime-api": "^2.2",
  3069. "doctrine/inflector": "^2.0.5",
  3070. "dragonmantank/cron-expression": "^3.4",
  3071. "egulias/email-validator": "^3.2.1|^4.0",
  3072. "ext-ctype": "*",
  3073. "ext-filter": "*",
  3074. "ext-hash": "*",
  3075. "ext-mbstring": "*",
  3076. "ext-openssl": "*",
  3077. "ext-session": "*",
  3078. "ext-tokenizer": "*",
  3079. "fruitcake/php-cors": "^1.3",
  3080. "guzzlehttp/guzzle": "^7.8.2",
  3081. "guzzlehttp/uri-template": "^1.0",
  3082. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  3083. "laravel/serializable-closure": "^1.3|^2.0",
  3084. "league/commonmark": "^2.6",
  3085. "league/flysystem": "^3.25.1",
  3086. "league/flysystem-local": "^3.25.1",
  3087. "league/uri": "^7.5.1",
  3088. "monolog/monolog": "^3.0",
  3089. "nesbot/carbon": "^2.72.6|^3.8.4",
  3090. "nunomaduro/termwind": "^2.0",
  3091. "php": "^8.2",
  3092. "psr/container": "^1.1.1|^2.0.1",
  3093. "psr/log": "^1.0|^2.0|^3.0",
  3094. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3095. "ramsey/uuid": "^4.7",
  3096. "symfony/console": "^7.0.3",
  3097. "symfony/error-handler": "^7.0.3",
  3098. "symfony/finder": "^7.0.3",
  3099. "symfony/http-foundation": "^7.2.0",
  3100. "symfony/http-kernel": "^7.0.3",
  3101. "symfony/mailer": "^7.0.3",
  3102. "symfony/mime": "^7.0.3",
  3103. "symfony/polyfill-php83": "^1.31",
  3104. "symfony/process": "^7.0.3",
  3105. "symfony/routing": "^7.0.3",
  3106. "symfony/uid": "^7.0.3",
  3107. "symfony/var-dumper": "^7.0.3",
  3108. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3109. "vlucas/phpdotenv": "^5.6.1",
  3110. "voku/portable-ascii": "^2.0.2"
  3111. },
  3112. "conflict": {
  3113. "tightenco/collect": "<5.5.33"
  3114. },
  3115. "provide": {
  3116. "psr/container-implementation": "1.1|2.0",
  3117. "psr/log-implementation": "1.0|2.0|3.0",
  3118. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3119. },
  3120. "replace": {
  3121. "illuminate/auth": "self.version",
  3122. "illuminate/broadcasting": "self.version",
  3123. "illuminate/bus": "self.version",
  3124. "illuminate/cache": "self.version",
  3125. "illuminate/collections": "self.version",
  3126. "illuminate/concurrency": "self.version",
  3127. "illuminate/conditionable": "self.version",
  3128. "illuminate/config": "self.version",
  3129. "illuminate/console": "self.version",
  3130. "illuminate/container": "self.version",
  3131. "illuminate/contracts": "self.version",
  3132. "illuminate/cookie": "self.version",
  3133. "illuminate/database": "self.version",
  3134. "illuminate/encryption": "self.version",
  3135. "illuminate/events": "self.version",
  3136. "illuminate/filesystem": "self.version",
  3137. "illuminate/hashing": "self.version",
  3138. "illuminate/http": "self.version",
  3139. "illuminate/log": "self.version",
  3140. "illuminate/macroable": "self.version",
  3141. "illuminate/mail": "self.version",
  3142. "illuminate/notifications": "self.version",
  3143. "illuminate/pagination": "self.version",
  3144. "illuminate/pipeline": "self.version",
  3145. "illuminate/process": "self.version",
  3146. "illuminate/queue": "self.version",
  3147. "illuminate/redis": "self.version",
  3148. "illuminate/routing": "self.version",
  3149. "illuminate/session": "self.version",
  3150. "illuminate/support": "self.version",
  3151. "illuminate/testing": "self.version",
  3152. "illuminate/translation": "self.version",
  3153. "illuminate/validation": "self.version",
  3154. "illuminate/view": "self.version",
  3155. "spatie/once": "*"
  3156. },
  3157. "require-dev": {
  3158. "ably/ably-php": "^1.0",
  3159. "aws/aws-sdk-php": "^3.322.9",
  3160. "ext-gmp": "*",
  3161. "fakerphp/faker": "^1.24",
  3162. "guzzlehttp/promises": "^2.0.3",
  3163. "guzzlehttp/psr7": "^2.4",
  3164. "laravel/pint": "^1.18",
  3165. "league/flysystem-aws-s3-v3": "^3.25.1",
  3166. "league/flysystem-ftp": "^3.25.1",
  3167. "league/flysystem-path-prefixing": "^3.25.1",
  3168. "league/flysystem-read-only": "^3.25.1",
  3169. "league/flysystem-sftp-v3": "^3.25.1",
  3170. "mockery/mockery": "^1.6.10",
  3171. "orchestra/testbench-core": "^9.6",
  3172. "pda/pheanstalk": "^5.0.6",
  3173. "php-http/discovery": "^1.15",
  3174. "phpstan/phpstan": "^1.11.5",
  3175. "phpunit/phpunit": "^10.5.35|^11.3.6",
  3176. "predis/predis": "^2.3",
  3177. "resend/resend-php": "^0.10.0",
  3178. "symfony/cache": "^7.0.3",
  3179. "symfony/http-client": "^7.0.3",
  3180. "symfony/psr-http-message-bridge": "^7.0.3",
  3181. "symfony/translation": "^7.0.3"
  3182. },
  3183. "suggest": {
  3184. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3185. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  3186. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3187. "ext-apcu": "Required to use the APC cache driver.",
  3188. "ext-fileinfo": "Required to use the Filesystem class.",
  3189. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3190. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3191. "ext-memcached": "Required to use the memcache cache driver.",
  3192. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3193. "ext-pdo": "Required to use all database features.",
  3194. "ext-posix": "Required to use all features of the queue worker.",
  3195. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3196. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3197. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3198. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3199. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  3200. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  3201. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  3202. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  3203. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  3204. "mockery/mockery": "Required to use mocking (^1.6).",
  3205. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3206. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  3207. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  3208. "predis/predis": "Required to use the predis connector (^2.3).",
  3209. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3210. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3211. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3212. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3213. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3214. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3215. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3216. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3217. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3218. },
  3219. "type": "library",
  3220. "extra": {
  3221. "branch-alias": {
  3222. "dev-master": "11.x-dev"
  3223. }
  3224. },
  3225. "autoload": {
  3226. "files": [
  3227. "src/Illuminate/Collections/functions.php",
  3228. "src/Illuminate/Collections/helpers.php",
  3229. "src/Illuminate/Events/functions.php",
  3230. "src/Illuminate/Filesystem/functions.php",
  3231. "src/Illuminate/Foundation/helpers.php",
  3232. "src/Illuminate/Log/functions.php",
  3233. "src/Illuminate/Support/functions.php",
  3234. "src/Illuminate/Support/helpers.php"
  3235. ],
  3236. "psr-4": {
  3237. "Illuminate\\": "src/Illuminate/",
  3238. "Illuminate\\Support\\": [
  3239. "src/Illuminate/Macroable/",
  3240. "src/Illuminate/Collections/",
  3241. "src/Illuminate/Conditionable/"
  3242. ]
  3243. }
  3244. },
  3245. "notification-url": "https://packagist.org/downloads/",
  3246. "license": [
  3247. "MIT"
  3248. ],
  3249. "authors": [
  3250. {
  3251. "name": "Taylor Otwell",
  3252. "email": "taylor@laravel.com"
  3253. }
  3254. ],
  3255. "description": "The Laravel Framework.",
  3256. "homepage": "https://laravel.com",
  3257. "keywords": [
  3258. "framework",
  3259. "laravel"
  3260. ],
  3261. "support": {
  3262. "issues": "https://github.com/laravel/framework/issues",
  3263. "source": "https://github.com/laravel/framework"
  3264. },
  3265. "time": "2025-01-28T15:22:55+00:00"
  3266. },
  3267. {
  3268. "name": "laravel/prompts",
  3269. "version": "v0.3.4",
  3270. "source": {
  3271. "type": "git",
  3272. "url": "https://github.com/laravel/prompts.git",
  3273. "reference": "abeaa2ba4294247d5409490d1ca1bc6248087011"
  3274. },
  3275. "dist": {
  3276. "type": "zip",
  3277. "url": "https://api.github.com/repos/laravel/prompts/zipball/abeaa2ba4294247d5409490d1ca1bc6248087011",
  3278. "reference": "abeaa2ba4294247d5409490d1ca1bc6248087011",
  3279. "shasum": ""
  3280. },
  3281. "require": {
  3282. "composer-runtime-api": "^2.2",
  3283. "ext-mbstring": "*",
  3284. "php": "^8.1",
  3285. "symfony/console": "^6.2|^7.0"
  3286. },
  3287. "conflict": {
  3288. "illuminate/console": ">=10.17.0 <10.25.0",
  3289. "laravel/framework": ">=10.17.0 <10.25.0"
  3290. },
  3291. "require-dev": {
  3292. "illuminate/collections": "^10.0|^11.0|^12.0",
  3293. "mockery/mockery": "^1.5",
  3294. "pestphp/pest": "^2.3|^3.4",
  3295. "phpstan/phpstan": "^1.11",
  3296. "phpstan/phpstan-mockery": "^1.1"
  3297. },
  3298. "suggest": {
  3299. "ext-pcntl": "Required for the spinner to be animated."
  3300. },
  3301. "type": "library",
  3302. "extra": {
  3303. "branch-alias": {
  3304. "dev-main": "0.3.x-dev"
  3305. }
  3306. },
  3307. "autoload": {
  3308. "files": [
  3309. "src/helpers.php"
  3310. ],
  3311. "psr-4": {
  3312. "Laravel\\Prompts\\": "src/"
  3313. }
  3314. },
  3315. "notification-url": "https://packagist.org/downloads/",
  3316. "license": [
  3317. "MIT"
  3318. ],
  3319. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3320. "support": {
  3321. "issues": "https://github.com/laravel/prompts/issues",
  3322. "source": "https://github.com/laravel/prompts/tree/v0.3.4"
  3323. },
  3324. "time": "2025-01-24T15:41:01+00:00"
  3325. },
  3326. {
  3327. "name": "laravel/sanctum",
  3328. "version": "v4.0.8",
  3329. "source": {
  3330. "type": "git",
  3331. "url": "https://github.com/laravel/sanctum.git",
  3332. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c"
  3333. },
  3334. "dist": {
  3335. "type": "zip",
  3336. "url": "https://api.github.com/repos/laravel/sanctum/zipball/ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  3337. "reference": "ec1dd9ddb2ab370f79dfe724a101856e0963f43c",
  3338. "shasum": ""
  3339. },
  3340. "require": {
  3341. "ext-json": "*",
  3342. "illuminate/console": "^11.0|^12.0",
  3343. "illuminate/contracts": "^11.0|^12.0",
  3344. "illuminate/database": "^11.0|^12.0",
  3345. "illuminate/support": "^11.0|^12.0",
  3346. "php": "^8.2",
  3347. "symfony/console": "^7.0"
  3348. },
  3349. "require-dev": {
  3350. "mockery/mockery": "^1.6",
  3351. "orchestra/testbench": "^9.0|^10.0",
  3352. "phpstan/phpstan": "^1.10",
  3353. "phpunit/phpunit": "^11.3"
  3354. },
  3355. "type": "library",
  3356. "extra": {
  3357. "laravel": {
  3358. "providers": [
  3359. "Laravel\\Sanctum\\SanctumServiceProvider"
  3360. ]
  3361. }
  3362. },
  3363. "autoload": {
  3364. "psr-4": {
  3365. "Laravel\\Sanctum\\": "src/"
  3366. }
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "MIT"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "Taylor Otwell",
  3375. "email": "taylor@laravel.com"
  3376. }
  3377. ],
  3378. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3379. "keywords": [
  3380. "auth",
  3381. "laravel",
  3382. "sanctum"
  3383. ],
  3384. "support": {
  3385. "issues": "https://github.com/laravel/sanctum/issues",
  3386. "source": "https://github.com/laravel/sanctum"
  3387. },
  3388. "time": "2025-01-26T19:34:36+00:00"
  3389. },
  3390. {
  3391. "name": "laravel/serializable-closure",
  3392. "version": "v2.0.2",
  3393. "source": {
  3394. "type": "git",
  3395. "url": "https://github.com/laravel/serializable-closure.git",
  3396. "reference": "2e1a362527783bcab6c316aad51bf36c5513ae44"
  3397. },
  3398. "dist": {
  3399. "type": "zip",
  3400. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/2e1a362527783bcab6c316aad51bf36c5513ae44",
  3401. "reference": "2e1a362527783bcab6c316aad51bf36c5513ae44",
  3402. "shasum": ""
  3403. },
  3404. "require": {
  3405. "php": "^8.1"
  3406. },
  3407. "require-dev": {
  3408. "illuminate/support": "^10.0|^11.0|^12.0",
  3409. "nesbot/carbon": "^2.67|^3.0",
  3410. "pestphp/pest": "^2.36|^3.0",
  3411. "phpstan/phpstan": "^2.0",
  3412. "symfony/var-dumper": "^6.2.0|^7.0.0"
  3413. },
  3414. "type": "library",
  3415. "extra": {
  3416. "branch-alias": {
  3417. "dev-master": "2.x-dev"
  3418. }
  3419. },
  3420. "autoload": {
  3421. "psr-4": {
  3422. "Laravel\\SerializableClosure\\": "src/"
  3423. }
  3424. },
  3425. "notification-url": "https://packagist.org/downloads/",
  3426. "license": [
  3427. "MIT"
  3428. ],
  3429. "authors": [
  3430. {
  3431. "name": "Taylor Otwell",
  3432. "email": "taylor@laravel.com"
  3433. },
  3434. {
  3435. "name": "Nuno Maduro",
  3436. "email": "nuno@laravel.com"
  3437. }
  3438. ],
  3439. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3440. "keywords": [
  3441. "closure",
  3442. "laravel",
  3443. "serializable"
  3444. ],
  3445. "support": {
  3446. "issues": "https://github.com/laravel/serializable-closure/issues",
  3447. "source": "https://github.com/laravel/serializable-closure"
  3448. },
  3449. "time": "2025-01-24T15:42:37+00:00"
  3450. },
  3451. {
  3452. "name": "laravel/socialite",
  3453. "version": "v5.17.1",
  3454. "source": {
  3455. "type": "git",
  3456. "url": "https://github.com/laravel/socialite.git",
  3457. "reference": "4b44c97c04da28e5aabb73df70b0999e9976382f"
  3458. },
  3459. "dist": {
  3460. "type": "zip",
  3461. "url": "https://api.github.com/repos/laravel/socialite/zipball/4b44c97c04da28e5aabb73df70b0999e9976382f",
  3462. "reference": "4b44c97c04da28e5aabb73df70b0999e9976382f",
  3463. "shasum": ""
  3464. },
  3465. "require": {
  3466. "ext-json": "*",
  3467. "firebase/php-jwt": "^6.4",
  3468. "guzzlehttp/guzzle": "^6.0|^7.0",
  3469. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3470. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3471. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3472. "league/oauth1-client": "^1.11",
  3473. "php": "^7.2|^8.0",
  3474. "phpseclib/phpseclib": "^3.0"
  3475. },
  3476. "require-dev": {
  3477. "mockery/mockery": "^1.0",
  3478. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  3479. "phpstan/phpstan": "^1.10",
  3480. "phpunit/phpunit": "^8.0|^9.3|^10.4|^11.5"
  3481. },
  3482. "type": "library",
  3483. "extra": {
  3484. "laravel": {
  3485. "aliases": {
  3486. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3487. },
  3488. "providers": [
  3489. "Laravel\\Socialite\\SocialiteServiceProvider"
  3490. ]
  3491. },
  3492. "branch-alias": {
  3493. "dev-master": "5.x-dev"
  3494. }
  3495. },
  3496. "autoload": {
  3497. "psr-4": {
  3498. "Laravel\\Socialite\\": "src/"
  3499. }
  3500. },
  3501. "notification-url": "https://packagist.org/downloads/",
  3502. "license": [
  3503. "MIT"
  3504. ],
  3505. "authors": [
  3506. {
  3507. "name": "Taylor Otwell",
  3508. "email": "taylor@laravel.com"
  3509. }
  3510. ],
  3511. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3512. "homepage": "https://laravel.com",
  3513. "keywords": [
  3514. "laravel",
  3515. "oauth"
  3516. ],
  3517. "support": {
  3518. "issues": "https://github.com/laravel/socialite/issues",
  3519. "source": "https://github.com/laravel/socialite"
  3520. },
  3521. "time": "2025-01-28T15:16:52+00:00"
  3522. },
  3523. {
  3524. "name": "laravel/tinker",
  3525. "version": "v2.10.1",
  3526. "source": {
  3527. "type": "git",
  3528. "url": "https://github.com/laravel/tinker.git",
  3529. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
  3530. },
  3531. "dist": {
  3532. "type": "zip",
  3533. "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
  3534. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
  3535. "shasum": ""
  3536. },
  3537. "require": {
  3538. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3539. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3540. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3541. "php": "^7.2.5|^8.0",
  3542. "psy/psysh": "^0.11.1|^0.12.0",
  3543. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3544. },
  3545. "require-dev": {
  3546. "mockery/mockery": "~1.3.3|^1.4.2",
  3547. "phpstan/phpstan": "^1.10",
  3548. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  3549. },
  3550. "suggest": {
  3551. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  3552. },
  3553. "type": "library",
  3554. "extra": {
  3555. "laravel": {
  3556. "providers": [
  3557. "Laravel\\Tinker\\TinkerServiceProvider"
  3558. ]
  3559. }
  3560. },
  3561. "autoload": {
  3562. "psr-4": {
  3563. "Laravel\\Tinker\\": "src/"
  3564. }
  3565. },
  3566. "notification-url": "https://packagist.org/downloads/",
  3567. "license": [
  3568. "MIT"
  3569. ],
  3570. "authors": [
  3571. {
  3572. "name": "Taylor Otwell",
  3573. "email": "taylor@laravel.com"
  3574. }
  3575. ],
  3576. "description": "Powerful REPL for the Laravel framework.",
  3577. "keywords": [
  3578. "REPL",
  3579. "Tinker",
  3580. "laravel",
  3581. "psysh"
  3582. ],
  3583. "support": {
  3584. "issues": "https://github.com/laravel/tinker/issues",
  3585. "source": "https://github.com/laravel/tinker/tree/v2.10.1"
  3586. },
  3587. "time": "2025-01-27T14:24:01+00:00"
  3588. },
  3589. {
  3590. "name": "league/commonmark",
  3591. "version": "2.6.1",
  3592. "source": {
  3593. "type": "git",
  3594. "url": "https://github.com/thephpleague/commonmark.git",
  3595. "reference": "d990688c91cedfb69753ffc2512727ec646df2ad"
  3596. },
  3597. "dist": {
  3598. "type": "zip",
  3599. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d990688c91cedfb69753ffc2512727ec646df2ad",
  3600. "reference": "d990688c91cedfb69753ffc2512727ec646df2ad",
  3601. "shasum": ""
  3602. },
  3603. "require": {
  3604. "ext-mbstring": "*",
  3605. "league/config": "^1.1.1",
  3606. "php": "^7.4 || ^8.0",
  3607. "psr/event-dispatcher": "^1.0",
  3608. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3609. "symfony/polyfill-php80": "^1.16"
  3610. },
  3611. "require-dev": {
  3612. "cebe/markdown": "^1.0",
  3613. "commonmark/cmark": "0.31.1",
  3614. "commonmark/commonmark.js": "0.31.1",
  3615. "composer/package-versions-deprecated": "^1.8",
  3616. "embed/embed": "^4.4",
  3617. "erusev/parsedown": "^1.0",
  3618. "ext-json": "*",
  3619. "github/gfm": "0.29.0",
  3620. "michelf/php-markdown": "^1.4 || ^2.0",
  3621. "nyholm/psr7": "^1.5",
  3622. "phpstan/phpstan": "^1.8.2",
  3623. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3624. "scrutinizer/ocular": "^1.8.1",
  3625. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  3626. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  3627. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  3628. "unleashedtech/php-coding-standard": "^3.1.1",
  3629. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3630. },
  3631. "suggest": {
  3632. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3633. },
  3634. "type": "library",
  3635. "extra": {
  3636. "branch-alias": {
  3637. "dev-main": "2.7-dev"
  3638. }
  3639. },
  3640. "autoload": {
  3641. "psr-4": {
  3642. "League\\CommonMark\\": "src"
  3643. }
  3644. },
  3645. "notification-url": "https://packagist.org/downloads/",
  3646. "license": [
  3647. "BSD-3-Clause"
  3648. ],
  3649. "authors": [
  3650. {
  3651. "name": "Colin O'Dell",
  3652. "email": "colinodell@gmail.com",
  3653. "homepage": "https://www.colinodell.com",
  3654. "role": "Lead Developer"
  3655. }
  3656. ],
  3657. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3658. "homepage": "https://commonmark.thephpleague.com",
  3659. "keywords": [
  3660. "commonmark",
  3661. "flavored",
  3662. "gfm",
  3663. "github",
  3664. "github-flavored",
  3665. "markdown",
  3666. "md",
  3667. "parser"
  3668. ],
  3669. "support": {
  3670. "docs": "https://commonmark.thephpleague.com/",
  3671. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3672. "issues": "https://github.com/thephpleague/commonmark/issues",
  3673. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3674. "source": "https://github.com/thephpleague/commonmark"
  3675. },
  3676. "funding": [
  3677. {
  3678. "url": "https://www.colinodell.com/sponsor",
  3679. "type": "custom"
  3680. },
  3681. {
  3682. "url": "https://www.paypal.me/colinpodell/10.00",
  3683. "type": "custom"
  3684. },
  3685. {
  3686. "url": "https://github.com/colinodell",
  3687. "type": "github"
  3688. },
  3689. {
  3690. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3691. "type": "tidelift"
  3692. }
  3693. ],
  3694. "time": "2024-12-29T14:10:59+00:00"
  3695. },
  3696. {
  3697. "name": "league/config",
  3698. "version": "v1.2.0",
  3699. "source": {
  3700. "type": "git",
  3701. "url": "https://github.com/thephpleague/config.git",
  3702. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3703. },
  3704. "dist": {
  3705. "type": "zip",
  3706. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3707. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3708. "shasum": ""
  3709. },
  3710. "require": {
  3711. "dflydev/dot-access-data": "^3.0.1",
  3712. "nette/schema": "^1.2",
  3713. "php": "^7.4 || ^8.0"
  3714. },
  3715. "require-dev": {
  3716. "phpstan/phpstan": "^1.8.2",
  3717. "phpunit/phpunit": "^9.5.5",
  3718. "scrutinizer/ocular": "^1.8.1",
  3719. "unleashedtech/php-coding-standard": "^3.1",
  3720. "vimeo/psalm": "^4.7.3"
  3721. },
  3722. "type": "library",
  3723. "extra": {
  3724. "branch-alias": {
  3725. "dev-main": "1.2-dev"
  3726. }
  3727. },
  3728. "autoload": {
  3729. "psr-4": {
  3730. "League\\Config\\": "src"
  3731. }
  3732. },
  3733. "notification-url": "https://packagist.org/downloads/",
  3734. "license": [
  3735. "BSD-3-Clause"
  3736. ],
  3737. "authors": [
  3738. {
  3739. "name": "Colin O'Dell",
  3740. "email": "colinodell@gmail.com",
  3741. "homepage": "https://www.colinodell.com",
  3742. "role": "Lead Developer"
  3743. }
  3744. ],
  3745. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3746. "homepage": "https://config.thephpleague.com",
  3747. "keywords": [
  3748. "array",
  3749. "config",
  3750. "configuration",
  3751. "dot",
  3752. "dot-access",
  3753. "nested",
  3754. "schema"
  3755. ],
  3756. "support": {
  3757. "docs": "https://config.thephpleague.com/",
  3758. "issues": "https://github.com/thephpleague/config/issues",
  3759. "rss": "https://github.com/thephpleague/config/releases.atom",
  3760. "source": "https://github.com/thephpleague/config"
  3761. },
  3762. "funding": [
  3763. {
  3764. "url": "https://www.colinodell.com/sponsor",
  3765. "type": "custom"
  3766. },
  3767. {
  3768. "url": "https://www.paypal.me/colinpodell/10.00",
  3769. "type": "custom"
  3770. },
  3771. {
  3772. "url": "https://github.com/colinodell",
  3773. "type": "github"
  3774. }
  3775. ],
  3776. "time": "2022-12-11T20:36:23+00:00"
  3777. },
  3778. {
  3779. "name": "league/csv",
  3780. "version": "9.21.0",
  3781. "source": {
  3782. "type": "git",
  3783. "url": "https://github.com/thephpleague/csv.git",
  3784. "reference": "72196d11ebba22d868954cb39c0c7346207430cc"
  3785. },
  3786. "dist": {
  3787. "type": "zip",
  3788. "url": "https://api.github.com/repos/thephpleague/csv/zipball/72196d11ebba22d868954cb39c0c7346207430cc",
  3789. "reference": "72196d11ebba22d868954cb39c0c7346207430cc",
  3790. "shasum": ""
  3791. },
  3792. "require": {
  3793. "ext-filter": "*",
  3794. "php": "^8.1.2"
  3795. },
  3796. "require-dev": {
  3797. "ext-dom": "*",
  3798. "ext-xdebug": "*",
  3799. "friendsofphp/php-cs-fixer": "^3.64.0",
  3800. "phpbench/phpbench": "^1.3.1",
  3801. "phpstan/phpstan": "^1.12.11",
  3802. "phpstan/phpstan-deprecation-rules": "^1.2.1",
  3803. "phpstan/phpstan-phpunit": "^1.4.1",
  3804. "phpstan/phpstan-strict-rules": "^1.6.1",
  3805. "phpunit/phpunit": "^10.5.16 || ^11.4.3",
  3806. "symfony/var-dumper": "^6.4.8 || ^7.1.8"
  3807. },
  3808. "suggest": {
  3809. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  3810. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
  3811. "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters"
  3812. },
  3813. "type": "library",
  3814. "extra": {
  3815. "branch-alias": {
  3816. "dev-master": "9.x-dev"
  3817. }
  3818. },
  3819. "autoload": {
  3820. "files": [
  3821. "src/functions_include.php"
  3822. ],
  3823. "psr-4": {
  3824. "League\\Csv\\": "src/"
  3825. }
  3826. },
  3827. "notification-url": "https://packagist.org/downloads/",
  3828. "license": [
  3829. "MIT"
  3830. ],
  3831. "authors": [
  3832. {
  3833. "name": "Ignace Nyamagana Butera",
  3834. "email": "nyamsprod@gmail.com",
  3835. "homepage": "https://github.com/nyamsprod/",
  3836. "role": "Developer"
  3837. }
  3838. ],
  3839. "description": "CSV data manipulation made easy in PHP",
  3840. "homepage": "https://csv.thephpleague.com",
  3841. "keywords": [
  3842. "convert",
  3843. "csv",
  3844. "export",
  3845. "filter",
  3846. "import",
  3847. "read",
  3848. "transform",
  3849. "write"
  3850. ],
  3851. "support": {
  3852. "docs": "https://csv.thephpleague.com",
  3853. "issues": "https://github.com/thephpleague/csv/issues",
  3854. "rss": "https://github.com/thephpleague/csv/releases.atom",
  3855. "source": "https://github.com/thephpleague/csv"
  3856. },
  3857. "funding": [
  3858. {
  3859. "url": "https://github.com/sponsors/nyamsprod",
  3860. "type": "github"
  3861. }
  3862. ],
  3863. "time": "2025-01-08T19:27:58+00:00"
  3864. },
  3865. {
  3866. "name": "league/flysystem",
  3867. "version": "3.29.1",
  3868. "source": {
  3869. "type": "git",
  3870. "url": "https://github.com/thephpleague/flysystem.git",
  3871. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  3872. },
  3873. "dist": {
  3874. "type": "zip",
  3875. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3876. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3877. "shasum": ""
  3878. },
  3879. "require": {
  3880. "league/flysystem-local": "^3.0.0",
  3881. "league/mime-type-detection": "^1.0.0",
  3882. "php": "^8.0.2"
  3883. },
  3884. "conflict": {
  3885. "async-aws/core": "<1.19.0",
  3886. "async-aws/s3": "<1.14.0",
  3887. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3888. "guzzlehttp/guzzle": "<7.0",
  3889. "guzzlehttp/ringphp": "<1.1.1",
  3890. "phpseclib/phpseclib": "3.0.15",
  3891. "symfony/http-client": "<5.2"
  3892. },
  3893. "require-dev": {
  3894. "async-aws/s3": "^1.5 || ^2.0",
  3895. "async-aws/simple-s3": "^1.1 || ^2.0",
  3896. "aws/aws-sdk-php": "^3.295.10",
  3897. "composer/semver": "^3.0",
  3898. "ext-fileinfo": "*",
  3899. "ext-ftp": "*",
  3900. "ext-mongodb": "^1.3",
  3901. "ext-zip": "*",
  3902. "friendsofphp/php-cs-fixer": "^3.5",
  3903. "google/cloud-storage": "^1.23",
  3904. "guzzlehttp/psr7": "^2.6",
  3905. "microsoft/azure-storage-blob": "^1.1",
  3906. "mongodb/mongodb": "^1.2",
  3907. "phpseclib/phpseclib": "^3.0.36",
  3908. "phpstan/phpstan": "^1.10",
  3909. "phpunit/phpunit": "^9.5.11|^10.0",
  3910. "sabre/dav": "^4.6.0"
  3911. },
  3912. "type": "library",
  3913. "autoload": {
  3914. "psr-4": {
  3915. "League\\Flysystem\\": "src"
  3916. }
  3917. },
  3918. "notification-url": "https://packagist.org/downloads/",
  3919. "license": [
  3920. "MIT"
  3921. ],
  3922. "authors": [
  3923. {
  3924. "name": "Frank de Jonge",
  3925. "email": "info@frankdejonge.nl"
  3926. }
  3927. ],
  3928. "description": "File storage abstraction for PHP",
  3929. "keywords": [
  3930. "WebDAV",
  3931. "aws",
  3932. "cloud",
  3933. "file",
  3934. "files",
  3935. "filesystem",
  3936. "filesystems",
  3937. "ftp",
  3938. "s3",
  3939. "sftp",
  3940. "storage"
  3941. ],
  3942. "support": {
  3943. "issues": "https://github.com/thephpleague/flysystem/issues",
  3944. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  3945. },
  3946. "time": "2024-10-08T08:58:34+00:00"
  3947. },
  3948. {
  3949. "name": "league/flysystem-local",
  3950. "version": "3.29.0",
  3951. "source": {
  3952. "type": "git",
  3953. "url": "https://github.com/thephpleague/flysystem-local.git",
  3954. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  3955. },
  3956. "dist": {
  3957. "type": "zip",
  3958. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3959. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3960. "shasum": ""
  3961. },
  3962. "require": {
  3963. "ext-fileinfo": "*",
  3964. "league/flysystem": "^3.0.0",
  3965. "league/mime-type-detection": "^1.0.0",
  3966. "php": "^8.0.2"
  3967. },
  3968. "type": "library",
  3969. "autoload": {
  3970. "psr-4": {
  3971. "League\\Flysystem\\Local\\": ""
  3972. }
  3973. },
  3974. "notification-url": "https://packagist.org/downloads/",
  3975. "license": [
  3976. "MIT"
  3977. ],
  3978. "authors": [
  3979. {
  3980. "name": "Frank de Jonge",
  3981. "email": "info@frankdejonge.nl"
  3982. }
  3983. ],
  3984. "description": "Local filesystem adapter for Flysystem.",
  3985. "keywords": [
  3986. "Flysystem",
  3987. "file",
  3988. "files",
  3989. "filesystem",
  3990. "local"
  3991. ],
  3992. "support": {
  3993. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  3994. },
  3995. "time": "2024-08-09T21:24:39+00:00"
  3996. },
  3997. {
  3998. "name": "league/mime-type-detection",
  3999. "version": "1.16.0",
  4000. "source": {
  4001. "type": "git",
  4002. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4003. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  4004. },
  4005. "dist": {
  4006. "type": "zip",
  4007. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  4008. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  4009. "shasum": ""
  4010. },
  4011. "require": {
  4012. "ext-fileinfo": "*",
  4013. "php": "^7.4 || ^8.0"
  4014. },
  4015. "require-dev": {
  4016. "friendsofphp/php-cs-fixer": "^3.2",
  4017. "phpstan/phpstan": "^0.12.68",
  4018. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  4019. },
  4020. "type": "library",
  4021. "autoload": {
  4022. "psr-4": {
  4023. "League\\MimeTypeDetection\\": "src"
  4024. }
  4025. },
  4026. "notification-url": "https://packagist.org/downloads/",
  4027. "license": [
  4028. "MIT"
  4029. ],
  4030. "authors": [
  4031. {
  4032. "name": "Frank de Jonge",
  4033. "email": "info@frankdejonge.nl"
  4034. }
  4035. ],
  4036. "description": "Mime-type detection for Flysystem",
  4037. "support": {
  4038. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4039. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  4040. },
  4041. "funding": [
  4042. {
  4043. "url": "https://github.com/frankdejonge",
  4044. "type": "github"
  4045. },
  4046. {
  4047. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4048. "type": "tidelift"
  4049. }
  4050. ],
  4051. "time": "2024-09-21T08:32:55+00:00"
  4052. },
  4053. {
  4054. "name": "league/oauth1-client",
  4055. "version": "v1.11.0",
  4056. "source": {
  4057. "type": "git",
  4058. "url": "https://github.com/thephpleague/oauth1-client.git",
  4059. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055"
  4060. },
  4061. "dist": {
  4062. "type": "zip",
  4063. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4064. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4065. "shasum": ""
  4066. },
  4067. "require": {
  4068. "ext-json": "*",
  4069. "ext-openssl": "*",
  4070. "guzzlehttp/guzzle": "^6.0|^7.0",
  4071. "guzzlehttp/psr7": "^1.7|^2.0",
  4072. "php": ">=7.1||>=8.0"
  4073. },
  4074. "require-dev": {
  4075. "ext-simplexml": "*",
  4076. "friendsofphp/php-cs-fixer": "^2.17",
  4077. "mockery/mockery": "^1.3.3",
  4078. "phpstan/phpstan": "^0.12.42",
  4079. "phpunit/phpunit": "^7.5||9.5"
  4080. },
  4081. "suggest": {
  4082. "ext-simplexml": "For decoding XML-based responses."
  4083. },
  4084. "type": "library",
  4085. "extra": {
  4086. "branch-alias": {
  4087. "dev-master": "1.0-dev",
  4088. "dev-develop": "2.0-dev"
  4089. }
  4090. },
  4091. "autoload": {
  4092. "psr-4": {
  4093. "League\\OAuth1\\Client\\": "src/"
  4094. }
  4095. },
  4096. "notification-url": "https://packagist.org/downloads/",
  4097. "license": [
  4098. "MIT"
  4099. ],
  4100. "authors": [
  4101. {
  4102. "name": "Ben Corlett",
  4103. "email": "bencorlett@me.com",
  4104. "homepage": "http://www.webcomm.com.au",
  4105. "role": "Developer"
  4106. }
  4107. ],
  4108. "description": "OAuth 1.0 Client Library",
  4109. "keywords": [
  4110. "Authentication",
  4111. "SSO",
  4112. "authorization",
  4113. "bitbucket",
  4114. "identity",
  4115. "idp",
  4116. "oauth",
  4117. "oauth1",
  4118. "single sign on",
  4119. "trello",
  4120. "tumblr",
  4121. "twitter"
  4122. ],
  4123. "support": {
  4124. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4125. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.11.0"
  4126. },
  4127. "time": "2024-12-10T19:59:05+00:00"
  4128. },
  4129. {
  4130. "name": "league/uri",
  4131. "version": "7.5.1",
  4132. "source": {
  4133. "type": "git",
  4134. "url": "https://github.com/thephpleague/uri.git",
  4135. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  4136. },
  4137. "dist": {
  4138. "type": "zip",
  4139. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  4140. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  4141. "shasum": ""
  4142. },
  4143. "require": {
  4144. "league/uri-interfaces": "^7.5",
  4145. "php": "^8.1"
  4146. },
  4147. "conflict": {
  4148. "league/uri-schemes": "^1.0"
  4149. },
  4150. "suggest": {
  4151. "ext-bcmath": "to improve IPV4 host parsing",
  4152. "ext-fileinfo": "to create Data URI from file contennts",
  4153. "ext-gmp": "to improve IPV4 host parsing",
  4154. "ext-intl": "to handle IDN host with the best performance",
  4155. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4156. "league/uri-components": "Needed to easily manipulate URI objects components",
  4157. "php-64bit": "to improve IPV4 host parsing",
  4158. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4159. },
  4160. "type": "library",
  4161. "extra": {
  4162. "branch-alias": {
  4163. "dev-master": "7.x-dev"
  4164. }
  4165. },
  4166. "autoload": {
  4167. "psr-4": {
  4168. "League\\Uri\\": ""
  4169. }
  4170. },
  4171. "notification-url": "https://packagist.org/downloads/",
  4172. "license": [
  4173. "MIT"
  4174. ],
  4175. "authors": [
  4176. {
  4177. "name": "Ignace Nyamagana Butera",
  4178. "email": "nyamsprod@gmail.com",
  4179. "homepage": "https://nyamsprod.com"
  4180. }
  4181. ],
  4182. "description": "URI manipulation library",
  4183. "homepage": "https://uri.thephpleague.com",
  4184. "keywords": [
  4185. "data-uri",
  4186. "file-uri",
  4187. "ftp",
  4188. "hostname",
  4189. "http",
  4190. "https",
  4191. "middleware",
  4192. "parse_str",
  4193. "parse_url",
  4194. "psr-7",
  4195. "query-string",
  4196. "querystring",
  4197. "rfc3986",
  4198. "rfc3987",
  4199. "rfc6570",
  4200. "uri",
  4201. "uri-template",
  4202. "url",
  4203. "ws"
  4204. ],
  4205. "support": {
  4206. "docs": "https://uri.thephpleague.com",
  4207. "forum": "https://thephpleague.slack.com",
  4208. "issues": "https://github.com/thephpleague/uri-src/issues",
  4209. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  4210. },
  4211. "funding": [
  4212. {
  4213. "url": "https://github.com/sponsors/nyamsprod",
  4214. "type": "github"
  4215. }
  4216. ],
  4217. "time": "2024-12-08T08:40:02+00:00"
  4218. },
  4219. {
  4220. "name": "league/uri-interfaces",
  4221. "version": "7.5.0",
  4222. "source": {
  4223. "type": "git",
  4224. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4225. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  4226. },
  4227. "dist": {
  4228. "type": "zip",
  4229. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4230. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4231. "shasum": ""
  4232. },
  4233. "require": {
  4234. "ext-filter": "*",
  4235. "php": "^8.1",
  4236. "psr/http-factory": "^1",
  4237. "psr/http-message": "^1.1 || ^2.0"
  4238. },
  4239. "suggest": {
  4240. "ext-bcmath": "to improve IPV4 host parsing",
  4241. "ext-gmp": "to improve IPV4 host parsing",
  4242. "ext-intl": "to handle IDN host with the best performance",
  4243. "php-64bit": "to improve IPV4 host parsing",
  4244. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4245. },
  4246. "type": "library",
  4247. "extra": {
  4248. "branch-alias": {
  4249. "dev-master": "7.x-dev"
  4250. }
  4251. },
  4252. "autoload": {
  4253. "psr-4": {
  4254. "League\\Uri\\": ""
  4255. }
  4256. },
  4257. "notification-url": "https://packagist.org/downloads/",
  4258. "license": [
  4259. "MIT"
  4260. ],
  4261. "authors": [
  4262. {
  4263. "name": "Ignace Nyamagana Butera",
  4264. "email": "nyamsprod@gmail.com",
  4265. "homepage": "https://nyamsprod.com"
  4266. }
  4267. ],
  4268. "description": "Common interfaces and classes for URI representation and interaction",
  4269. "homepage": "https://uri.thephpleague.com",
  4270. "keywords": [
  4271. "data-uri",
  4272. "file-uri",
  4273. "ftp",
  4274. "hostname",
  4275. "http",
  4276. "https",
  4277. "parse_str",
  4278. "parse_url",
  4279. "psr-7",
  4280. "query-string",
  4281. "querystring",
  4282. "rfc3986",
  4283. "rfc3987",
  4284. "rfc6570",
  4285. "uri",
  4286. "url",
  4287. "ws"
  4288. ],
  4289. "support": {
  4290. "docs": "https://uri.thephpleague.com",
  4291. "forum": "https://thephpleague.slack.com",
  4292. "issues": "https://github.com/thephpleague/uri-src/issues",
  4293. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  4294. },
  4295. "funding": [
  4296. {
  4297. "url": "https://github.com/sponsors/nyamsprod",
  4298. "type": "github"
  4299. }
  4300. ],
  4301. "time": "2024-12-08T08:18:47+00:00"
  4302. },
  4303. {
  4304. "name": "livewire/livewire",
  4305. "version": "v3.5.12",
  4306. "source": {
  4307. "type": "git",
  4308. "url": "https://github.com/livewire/livewire.git",
  4309. "reference": "3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d"
  4310. },
  4311. "dist": {
  4312. "type": "zip",
  4313. "url": "https://api.github.com/repos/livewire/livewire/zipball/3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d",
  4314. "reference": "3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d",
  4315. "shasum": ""
  4316. },
  4317. "require": {
  4318. "illuminate/database": "^10.0|^11.0",
  4319. "illuminate/routing": "^10.0|^11.0",
  4320. "illuminate/support": "^10.0|^11.0",
  4321. "illuminate/validation": "^10.0|^11.0",
  4322. "laravel/prompts": "^0.1.24|^0.2|^0.3",
  4323. "league/mime-type-detection": "^1.9",
  4324. "php": "^8.1",
  4325. "symfony/console": "^6.0|^7.0",
  4326. "symfony/http-kernel": "^6.2|^7.0"
  4327. },
  4328. "require-dev": {
  4329. "calebporzio/sushi": "^2.1",
  4330. "laravel/framework": "^10.15.0|^11.0",
  4331. "mockery/mockery": "^1.3.1",
  4332. "orchestra/testbench": "^8.21.0|^9.0",
  4333. "orchestra/testbench-dusk": "^8.24|^9.1",
  4334. "phpunit/phpunit": "^10.4",
  4335. "psy/psysh": "^0.11.22|^0.12"
  4336. },
  4337. "type": "library",
  4338. "extra": {
  4339. "laravel": {
  4340. "aliases": {
  4341. "Livewire": "Livewire\\Livewire"
  4342. },
  4343. "providers": [
  4344. "Livewire\\LivewireServiceProvider"
  4345. ]
  4346. }
  4347. },
  4348. "autoload": {
  4349. "files": [
  4350. "src/helpers.php"
  4351. ],
  4352. "psr-4": {
  4353. "Livewire\\": "src/"
  4354. }
  4355. },
  4356. "notification-url": "https://packagist.org/downloads/",
  4357. "license": [
  4358. "MIT"
  4359. ],
  4360. "authors": [
  4361. {
  4362. "name": "Caleb Porzio",
  4363. "email": "calebporzio@gmail.com"
  4364. }
  4365. ],
  4366. "description": "A front-end framework for Laravel.",
  4367. "support": {
  4368. "issues": "https://github.com/livewire/livewire/issues",
  4369. "source": "https://github.com/livewire/livewire/tree/v3.5.12"
  4370. },
  4371. "funding": [
  4372. {
  4373. "url": "https://github.com/livewire",
  4374. "type": "github"
  4375. }
  4376. ],
  4377. "time": "2024-10-15T19:35:06+00:00"
  4378. },
  4379. {
  4380. "name": "masterminds/html5",
  4381. "version": "2.9.0",
  4382. "source": {
  4383. "type": "git",
  4384. "url": "https://github.com/Masterminds/html5-php.git",
  4385. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  4386. },
  4387. "dist": {
  4388. "type": "zip",
  4389. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4390. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4391. "shasum": ""
  4392. },
  4393. "require": {
  4394. "ext-dom": "*",
  4395. "php": ">=5.3.0"
  4396. },
  4397. "require-dev": {
  4398. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4399. },
  4400. "type": "library",
  4401. "extra": {
  4402. "branch-alias": {
  4403. "dev-master": "2.7-dev"
  4404. }
  4405. },
  4406. "autoload": {
  4407. "psr-4": {
  4408. "Masterminds\\": "src"
  4409. }
  4410. },
  4411. "notification-url": "https://packagist.org/downloads/",
  4412. "license": [
  4413. "MIT"
  4414. ],
  4415. "authors": [
  4416. {
  4417. "name": "Matt Butcher",
  4418. "email": "technosophos@gmail.com"
  4419. },
  4420. {
  4421. "name": "Matt Farina",
  4422. "email": "matt@mattfarina.com"
  4423. },
  4424. {
  4425. "name": "Asmir Mustafic",
  4426. "email": "goetas@gmail.com"
  4427. }
  4428. ],
  4429. "description": "An HTML5 parser and serializer.",
  4430. "homepage": "http://masterminds.github.io/html5-php",
  4431. "keywords": [
  4432. "HTML5",
  4433. "dom",
  4434. "html",
  4435. "parser",
  4436. "querypath",
  4437. "serializer",
  4438. "xml"
  4439. ],
  4440. "support": {
  4441. "issues": "https://github.com/Masterminds/html5-php/issues",
  4442. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  4443. },
  4444. "time": "2024-03-31T07:05:07+00:00"
  4445. },
  4446. {
  4447. "name": "matomo/device-detector",
  4448. "version": "6.4.3",
  4449. "source": {
  4450. "type": "git",
  4451. "url": "https://github.com/matomo-org/device-detector.git",
  4452. "reference": "aa4586d495a7f59029d46d976f160b13eb769bb0"
  4453. },
  4454. "dist": {
  4455. "type": "zip",
  4456. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/aa4586d495a7f59029d46d976f160b13eb769bb0",
  4457. "reference": "aa4586d495a7f59029d46d976f160b13eb769bb0",
  4458. "shasum": ""
  4459. },
  4460. "require": {
  4461. "mustangostang/spyc": "*",
  4462. "php": "^7.2|^8.0"
  4463. },
  4464. "replace": {
  4465. "piwik/device-detector": "self.version"
  4466. },
  4467. "require-dev": {
  4468. "matthiasmullie/scrapbook": "^1.4.7",
  4469. "mayflower/mo4-coding-standard": "^v9.0.0",
  4470. "phpstan/phpstan": "^1.10.44",
  4471. "phpunit/phpunit": "^8.5.8",
  4472. "psr/cache": "^1.0.1",
  4473. "psr/simple-cache": "^1.0.1",
  4474. "symfony/yaml": "^5.1.7"
  4475. },
  4476. "suggest": {
  4477. "doctrine/cache": "Can directly be used for caching purpose",
  4478. "ext-yaml": "Necessary for using the Pecl YAML parser"
  4479. },
  4480. "type": "library",
  4481. "autoload": {
  4482. "psr-4": {
  4483. "DeviceDetector\\": ""
  4484. },
  4485. "exclude-from-classmap": [
  4486. "Tests/"
  4487. ]
  4488. },
  4489. "notification-url": "https://packagist.org/downloads/",
  4490. "license": [
  4491. "LGPL-3.0-or-later"
  4492. ],
  4493. "authors": [
  4494. {
  4495. "name": "The Matomo Team",
  4496. "email": "hello@matomo.org",
  4497. "homepage": "https://matomo.org/team/"
  4498. }
  4499. ],
  4500. "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.",
  4501. "homepage": "https://matomo.org",
  4502. "keywords": [
  4503. "devicedetection",
  4504. "parser",
  4505. "useragent"
  4506. ],
  4507. "support": {
  4508. "forum": "https://forum.matomo.org/",
  4509. "issues": "https://github.com/matomo-org/device-detector/issues",
  4510. "source": "https://github.com/matomo-org/matomo",
  4511. "wiki": "https://dev.matomo.org/"
  4512. },
  4513. "time": "2025-01-17T09:59:39+00:00"
  4514. },
  4515. {
  4516. "name": "monolog/monolog",
  4517. "version": "3.8.1",
  4518. "source": {
  4519. "type": "git",
  4520. "url": "https://github.com/Seldaek/monolog.git",
  4521. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  4522. },
  4523. "dist": {
  4524. "type": "zip",
  4525. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4526. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4527. "shasum": ""
  4528. },
  4529. "require": {
  4530. "php": ">=8.1",
  4531. "psr/log": "^2.0 || ^3.0"
  4532. },
  4533. "provide": {
  4534. "psr/log-implementation": "3.0.0"
  4535. },
  4536. "require-dev": {
  4537. "aws/aws-sdk-php": "^3.0",
  4538. "doctrine/couchdb": "~1.0@dev",
  4539. "elasticsearch/elasticsearch": "^7 || ^8",
  4540. "ext-json": "*",
  4541. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4542. "guzzlehttp/guzzle": "^7.4.5",
  4543. "guzzlehttp/psr7": "^2.2",
  4544. "mongodb/mongodb": "^1.8",
  4545. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4546. "php-console/php-console": "^3.1.8",
  4547. "phpstan/phpstan": "^2",
  4548. "phpstan/phpstan-deprecation-rules": "^2",
  4549. "phpstan/phpstan-strict-rules": "^2",
  4550. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4551. "predis/predis": "^1.1 || ^2",
  4552. "rollbar/rollbar": "^4.0",
  4553. "ruflin/elastica": "^7 || ^8",
  4554. "symfony/mailer": "^5.4 || ^6",
  4555. "symfony/mime": "^5.4 || ^6"
  4556. },
  4557. "suggest": {
  4558. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4559. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4560. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4561. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4562. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4563. "ext-mbstring": "Allow to work properly with unicode symbols",
  4564. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4565. "ext-openssl": "Required to send log messages using SSL",
  4566. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4567. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4568. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4569. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4570. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4571. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4572. },
  4573. "type": "library",
  4574. "extra": {
  4575. "branch-alias": {
  4576. "dev-main": "3.x-dev"
  4577. }
  4578. },
  4579. "autoload": {
  4580. "psr-4": {
  4581. "Monolog\\": "src/Monolog"
  4582. }
  4583. },
  4584. "notification-url": "https://packagist.org/downloads/",
  4585. "license": [
  4586. "MIT"
  4587. ],
  4588. "authors": [
  4589. {
  4590. "name": "Jordi Boggiano",
  4591. "email": "j.boggiano@seld.be",
  4592. "homepage": "https://seld.be"
  4593. }
  4594. ],
  4595. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4596. "homepage": "https://github.com/Seldaek/monolog",
  4597. "keywords": [
  4598. "log",
  4599. "logging",
  4600. "psr-3"
  4601. ],
  4602. "support": {
  4603. "issues": "https://github.com/Seldaek/monolog/issues",
  4604. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  4605. },
  4606. "funding": [
  4607. {
  4608. "url": "https://github.com/Seldaek",
  4609. "type": "github"
  4610. },
  4611. {
  4612. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4613. "type": "tidelift"
  4614. }
  4615. ],
  4616. "time": "2024-12-05T17:15:07+00:00"
  4617. },
  4618. {
  4619. "name": "mtdowling/jmespath.php",
  4620. "version": "2.8.0",
  4621. "source": {
  4622. "type": "git",
  4623. "url": "https://github.com/jmespath/jmespath.php.git",
  4624. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4625. },
  4626. "dist": {
  4627. "type": "zip",
  4628. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4629. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4630. "shasum": ""
  4631. },
  4632. "require": {
  4633. "php": "^7.2.5 || ^8.0",
  4634. "symfony/polyfill-mbstring": "^1.17"
  4635. },
  4636. "require-dev": {
  4637. "composer/xdebug-handler": "^3.0.3",
  4638. "phpunit/phpunit": "^8.5.33"
  4639. },
  4640. "bin": [
  4641. "bin/jp.php"
  4642. ],
  4643. "type": "library",
  4644. "extra": {
  4645. "branch-alias": {
  4646. "dev-master": "2.8-dev"
  4647. }
  4648. },
  4649. "autoload": {
  4650. "files": [
  4651. "src/JmesPath.php"
  4652. ],
  4653. "psr-4": {
  4654. "JmesPath\\": "src/"
  4655. }
  4656. },
  4657. "notification-url": "https://packagist.org/downloads/",
  4658. "license": [
  4659. "MIT"
  4660. ],
  4661. "authors": [
  4662. {
  4663. "name": "Graham Campbell",
  4664. "email": "hello@gjcampbell.co.uk",
  4665. "homepage": "https://github.com/GrahamCampbell"
  4666. },
  4667. {
  4668. "name": "Michael Dowling",
  4669. "email": "mtdowling@gmail.com",
  4670. "homepage": "https://github.com/mtdowling"
  4671. }
  4672. ],
  4673. "description": "Declaratively specify how to extract elements from a JSON document",
  4674. "keywords": [
  4675. "json",
  4676. "jsonpath"
  4677. ],
  4678. "support": {
  4679. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4680. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  4681. },
  4682. "time": "2024-09-04T18:46:31+00:00"
  4683. },
  4684. {
  4685. "name": "mustangostang/spyc",
  4686. "version": "0.6.3",
  4687. "source": {
  4688. "type": "git",
  4689. "url": "https://github.com/mustangostang/spyc.git",
  4690. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  4691. },
  4692. "dist": {
  4693. "type": "zip",
  4694. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  4695. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  4696. "shasum": ""
  4697. },
  4698. "require": {
  4699. "php": ">=5.3.1"
  4700. },
  4701. "require-dev": {
  4702. "phpunit/phpunit": "4.3.*@dev"
  4703. },
  4704. "type": "library",
  4705. "extra": {
  4706. "branch-alias": {
  4707. "dev-master": "0.5.x-dev"
  4708. }
  4709. },
  4710. "autoload": {
  4711. "files": [
  4712. "Spyc.php"
  4713. ]
  4714. },
  4715. "notification-url": "https://packagist.org/downloads/",
  4716. "license": [
  4717. "MIT"
  4718. ],
  4719. "authors": [
  4720. {
  4721. "name": "mustangostang",
  4722. "email": "vlad.andersen@gmail.com"
  4723. }
  4724. ],
  4725. "description": "A simple YAML loader/dumper class for PHP",
  4726. "homepage": "https://github.com/mustangostang/spyc/",
  4727. "keywords": [
  4728. "spyc",
  4729. "yaml",
  4730. "yml"
  4731. ],
  4732. "support": {
  4733. "issues": "https://github.com/mustangostang/spyc/issues",
  4734. "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
  4735. },
  4736. "time": "2019-09-10T13:16:29+00:00"
  4737. },
  4738. {
  4739. "name": "nesbot/carbon",
  4740. "version": "3.8.4",
  4741. "source": {
  4742. "type": "git",
  4743. "url": "https://github.com/CarbonPHP/carbon.git",
  4744. "reference": "129700ed449b1f02d70272d2ac802357c8c30c58"
  4745. },
  4746. "dist": {
  4747. "type": "zip",
  4748. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/129700ed449b1f02d70272d2ac802357c8c30c58",
  4749. "reference": "129700ed449b1f02d70272d2ac802357c8c30c58",
  4750. "shasum": ""
  4751. },
  4752. "require": {
  4753. "carbonphp/carbon-doctrine-types": "<100.0",
  4754. "ext-json": "*",
  4755. "php": "^8.1",
  4756. "psr/clock": "^1.0",
  4757. "symfony/clock": "^6.3 || ^7.0",
  4758. "symfony/polyfill-mbstring": "^1.0",
  4759. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  4760. },
  4761. "provide": {
  4762. "psr/clock-implementation": "1.0"
  4763. },
  4764. "require-dev": {
  4765. "doctrine/dbal": "^3.6.3 || ^4.0",
  4766. "doctrine/orm": "^2.15.2 || ^3.0",
  4767. "friendsofphp/php-cs-fixer": "^3.57.2",
  4768. "kylekatarnls/multi-tester": "^2.5.3",
  4769. "ondrejmirtes/better-reflection": "^6.25.0.4",
  4770. "phpmd/phpmd": "^2.15.0",
  4771. "phpstan/extension-installer": "^1.3.1",
  4772. "phpstan/phpstan": "^1.11.2",
  4773. "phpunit/phpunit": "^10.5.20",
  4774. "squizlabs/php_codesniffer": "^3.9.0"
  4775. },
  4776. "bin": [
  4777. "bin/carbon"
  4778. ],
  4779. "type": "library",
  4780. "extra": {
  4781. "laravel": {
  4782. "providers": [
  4783. "Carbon\\Laravel\\ServiceProvider"
  4784. ]
  4785. },
  4786. "phpstan": {
  4787. "includes": [
  4788. "extension.neon"
  4789. ]
  4790. },
  4791. "branch-alias": {
  4792. "dev-2.x": "2.x-dev",
  4793. "dev-master": "3.x-dev"
  4794. }
  4795. },
  4796. "autoload": {
  4797. "psr-4": {
  4798. "Carbon\\": "src/Carbon/"
  4799. }
  4800. },
  4801. "notification-url": "https://packagist.org/downloads/",
  4802. "license": [
  4803. "MIT"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "Brian Nesbitt",
  4808. "email": "brian@nesbot.com",
  4809. "homepage": "https://markido.com"
  4810. },
  4811. {
  4812. "name": "kylekatarnls",
  4813. "homepage": "https://github.com/kylekatarnls"
  4814. }
  4815. ],
  4816. "description": "An API extension for DateTime that supports 281 different languages.",
  4817. "homepage": "https://carbon.nesbot.com",
  4818. "keywords": [
  4819. "date",
  4820. "datetime",
  4821. "time"
  4822. ],
  4823. "support": {
  4824. "docs": "https://carbon.nesbot.com/docs",
  4825. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4826. "source": "https://github.com/briannesbitt/Carbon"
  4827. },
  4828. "funding": [
  4829. {
  4830. "url": "https://github.com/sponsors/kylekatarnls",
  4831. "type": "github"
  4832. },
  4833. {
  4834. "url": "https://opencollective.com/Carbon#sponsor",
  4835. "type": "opencollective"
  4836. },
  4837. {
  4838. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4839. "type": "tidelift"
  4840. }
  4841. ],
  4842. "time": "2024-12-27T09:25:35+00:00"
  4843. },
  4844. {
  4845. "name": "nette/schema",
  4846. "version": "v1.3.2",
  4847. "source": {
  4848. "type": "git",
  4849. "url": "https://github.com/nette/schema.git",
  4850. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  4851. },
  4852. "dist": {
  4853. "type": "zip",
  4854. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  4855. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  4856. "shasum": ""
  4857. },
  4858. "require": {
  4859. "nette/utils": "^4.0",
  4860. "php": "8.1 - 8.4"
  4861. },
  4862. "require-dev": {
  4863. "nette/tester": "^2.5.2",
  4864. "phpstan/phpstan-nette": "^1.0",
  4865. "tracy/tracy": "^2.8"
  4866. },
  4867. "type": "library",
  4868. "extra": {
  4869. "branch-alias": {
  4870. "dev-master": "1.3-dev"
  4871. }
  4872. },
  4873. "autoload": {
  4874. "classmap": [
  4875. "src/"
  4876. ]
  4877. },
  4878. "notification-url": "https://packagist.org/downloads/",
  4879. "license": [
  4880. "BSD-3-Clause",
  4881. "GPL-2.0-only",
  4882. "GPL-3.0-only"
  4883. ],
  4884. "authors": [
  4885. {
  4886. "name": "David Grudl",
  4887. "homepage": "https://davidgrudl.com"
  4888. },
  4889. {
  4890. "name": "Nette Community",
  4891. "homepage": "https://nette.org/contributors"
  4892. }
  4893. ],
  4894. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4895. "homepage": "https://nette.org",
  4896. "keywords": [
  4897. "config",
  4898. "nette"
  4899. ],
  4900. "support": {
  4901. "issues": "https://github.com/nette/schema/issues",
  4902. "source": "https://github.com/nette/schema/tree/v1.3.2"
  4903. },
  4904. "time": "2024-10-06T23:10:23+00:00"
  4905. },
  4906. {
  4907. "name": "nette/utils",
  4908. "version": "v4.0.5",
  4909. "source": {
  4910. "type": "git",
  4911. "url": "https://github.com/nette/utils.git",
  4912. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  4913. },
  4914. "dist": {
  4915. "type": "zip",
  4916. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4917. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4918. "shasum": ""
  4919. },
  4920. "require": {
  4921. "php": "8.0 - 8.4"
  4922. },
  4923. "conflict": {
  4924. "nette/finder": "<3",
  4925. "nette/schema": "<1.2.2"
  4926. },
  4927. "require-dev": {
  4928. "jetbrains/phpstorm-attributes": "dev-master",
  4929. "nette/tester": "^2.5",
  4930. "phpstan/phpstan": "^1.0",
  4931. "tracy/tracy": "^2.9"
  4932. },
  4933. "suggest": {
  4934. "ext-gd": "to use Image",
  4935. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4936. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4937. "ext-json": "to use Nette\\Utils\\Json",
  4938. "ext-mbstring": "to use Strings::lower() etc...",
  4939. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4940. },
  4941. "type": "library",
  4942. "extra": {
  4943. "branch-alias": {
  4944. "dev-master": "4.0-dev"
  4945. }
  4946. },
  4947. "autoload": {
  4948. "classmap": [
  4949. "src/"
  4950. ]
  4951. },
  4952. "notification-url": "https://packagist.org/downloads/",
  4953. "license": [
  4954. "BSD-3-Clause",
  4955. "GPL-2.0-only",
  4956. "GPL-3.0-only"
  4957. ],
  4958. "authors": [
  4959. {
  4960. "name": "David Grudl",
  4961. "homepage": "https://davidgrudl.com"
  4962. },
  4963. {
  4964. "name": "Nette Community",
  4965. "homepage": "https://nette.org/contributors"
  4966. }
  4967. ],
  4968. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4969. "homepage": "https://nette.org",
  4970. "keywords": [
  4971. "array",
  4972. "core",
  4973. "datetime",
  4974. "images",
  4975. "json",
  4976. "nette",
  4977. "paginator",
  4978. "password",
  4979. "slugify",
  4980. "string",
  4981. "unicode",
  4982. "utf-8",
  4983. "utility",
  4984. "validation"
  4985. ],
  4986. "support": {
  4987. "issues": "https://github.com/nette/utils/issues",
  4988. "source": "https://github.com/nette/utils/tree/v4.0.5"
  4989. },
  4990. "time": "2024-08-07T15:39:19+00:00"
  4991. },
  4992. {
  4993. "name": "nikic/php-parser",
  4994. "version": "v5.4.0",
  4995. "source": {
  4996. "type": "git",
  4997. "url": "https://github.com/nikic/PHP-Parser.git",
  4998. "reference": "447a020a1f875a434d62f2a401f53b82a396e494"
  4999. },
  5000. "dist": {
  5001. "type": "zip",
  5002. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494",
  5003. "reference": "447a020a1f875a434d62f2a401f53b82a396e494",
  5004. "shasum": ""
  5005. },
  5006. "require": {
  5007. "ext-ctype": "*",
  5008. "ext-json": "*",
  5009. "ext-tokenizer": "*",
  5010. "php": ">=7.4"
  5011. },
  5012. "require-dev": {
  5013. "ircmaxell/php-yacc": "^0.0.7",
  5014. "phpunit/phpunit": "^9.0"
  5015. },
  5016. "bin": [
  5017. "bin/php-parse"
  5018. ],
  5019. "type": "library",
  5020. "extra": {
  5021. "branch-alias": {
  5022. "dev-master": "5.0-dev"
  5023. }
  5024. },
  5025. "autoload": {
  5026. "psr-4": {
  5027. "PhpParser\\": "lib/PhpParser"
  5028. }
  5029. },
  5030. "notification-url": "https://packagist.org/downloads/",
  5031. "license": [
  5032. "BSD-3-Clause"
  5033. ],
  5034. "authors": [
  5035. {
  5036. "name": "Nikita Popov"
  5037. }
  5038. ],
  5039. "description": "A PHP parser written in PHP",
  5040. "keywords": [
  5041. "parser",
  5042. "php"
  5043. ],
  5044. "support": {
  5045. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5046. "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0"
  5047. },
  5048. "time": "2024-12-30T11:07:19+00:00"
  5049. },
  5050. {
  5051. "name": "nunomaduro/termwind",
  5052. "version": "v2.3.0",
  5053. "source": {
  5054. "type": "git",
  5055. "url": "https://github.com/nunomaduro/termwind.git",
  5056. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  5057. },
  5058. "dist": {
  5059. "type": "zip",
  5060. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  5061. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  5062. "shasum": ""
  5063. },
  5064. "require": {
  5065. "ext-mbstring": "*",
  5066. "php": "^8.2",
  5067. "symfony/console": "^7.1.8"
  5068. },
  5069. "require-dev": {
  5070. "illuminate/console": "^11.33.2",
  5071. "laravel/pint": "^1.18.2",
  5072. "mockery/mockery": "^1.6.12",
  5073. "pestphp/pest": "^2.36.0",
  5074. "phpstan/phpstan": "^1.12.11",
  5075. "phpstan/phpstan-strict-rules": "^1.6.1",
  5076. "symfony/var-dumper": "^7.1.8",
  5077. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  5078. },
  5079. "type": "library",
  5080. "extra": {
  5081. "laravel": {
  5082. "providers": [
  5083. "Termwind\\Laravel\\TermwindServiceProvider"
  5084. ]
  5085. },
  5086. "branch-alias": {
  5087. "dev-2.x": "2.x-dev"
  5088. }
  5089. },
  5090. "autoload": {
  5091. "files": [
  5092. "src/Functions.php"
  5093. ],
  5094. "psr-4": {
  5095. "Termwind\\": "src/"
  5096. }
  5097. },
  5098. "notification-url": "https://packagist.org/downloads/",
  5099. "license": [
  5100. "MIT"
  5101. ],
  5102. "authors": [
  5103. {
  5104. "name": "Nuno Maduro",
  5105. "email": "enunomaduro@gmail.com"
  5106. }
  5107. ],
  5108. "description": "Its like Tailwind CSS, but for the console.",
  5109. "keywords": [
  5110. "cli",
  5111. "console",
  5112. "css",
  5113. "package",
  5114. "php",
  5115. "style"
  5116. ],
  5117. "support": {
  5118. "issues": "https://github.com/nunomaduro/termwind/issues",
  5119. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  5120. },
  5121. "funding": [
  5122. {
  5123. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5124. "type": "custom"
  5125. },
  5126. {
  5127. "url": "https://github.com/nunomaduro",
  5128. "type": "github"
  5129. },
  5130. {
  5131. "url": "https://github.com/xiCO2k",
  5132. "type": "github"
  5133. }
  5134. ],
  5135. "time": "2024-11-21T10:39:51+00:00"
  5136. },
  5137. {
  5138. "name": "openspout/openspout",
  5139. "version": "v4.28.4",
  5140. "source": {
  5141. "type": "git",
  5142. "url": "https://github.com/openspout/openspout.git",
  5143. "reference": "68d58235c7c1164b3d231b798975b9b0b2b79b15"
  5144. },
  5145. "dist": {
  5146. "type": "zip",
  5147. "url": "https://api.github.com/repos/openspout/openspout/zipball/68d58235c7c1164b3d231b798975b9b0b2b79b15",
  5148. "reference": "68d58235c7c1164b3d231b798975b9b0b2b79b15",
  5149. "shasum": ""
  5150. },
  5151. "require": {
  5152. "ext-dom": "*",
  5153. "ext-fileinfo": "*",
  5154. "ext-filter": "*",
  5155. "ext-libxml": "*",
  5156. "ext-xmlreader": "*",
  5157. "ext-zip": "*",
  5158. "php": "~8.2.0 || ~8.3.0 || ~8.4.0"
  5159. },
  5160. "require-dev": {
  5161. "ext-zlib": "*",
  5162. "friendsofphp/php-cs-fixer": "^3.66.1",
  5163. "infection/infection": "^0.29.10",
  5164. "phpbench/phpbench": "^1.3.1",
  5165. "phpstan/phpstan": "^2.1.1",
  5166. "phpstan/phpstan-phpunit": "^2.0.3",
  5167. "phpstan/phpstan-strict-rules": "^2",
  5168. "phpunit/phpunit": "^11.5.2"
  5169. },
  5170. "suggest": {
  5171. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5172. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5173. },
  5174. "type": "library",
  5175. "extra": {
  5176. "branch-alias": {
  5177. "dev-master": "3.3.x-dev"
  5178. }
  5179. },
  5180. "autoload": {
  5181. "psr-4": {
  5182. "OpenSpout\\": "src/"
  5183. }
  5184. },
  5185. "notification-url": "https://packagist.org/downloads/",
  5186. "license": [
  5187. "MIT"
  5188. ],
  5189. "authors": [
  5190. {
  5191. "name": "Adrien Loison",
  5192. "email": "adrien@box.com"
  5193. }
  5194. ],
  5195. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5196. "homepage": "https://github.com/openspout/openspout",
  5197. "keywords": [
  5198. "OOXML",
  5199. "csv",
  5200. "excel",
  5201. "memory",
  5202. "odf",
  5203. "ods",
  5204. "office",
  5205. "open",
  5206. "php",
  5207. "read",
  5208. "scale",
  5209. "spreadsheet",
  5210. "stream",
  5211. "write",
  5212. "xlsx"
  5213. ],
  5214. "support": {
  5215. "issues": "https://github.com/openspout/openspout/issues",
  5216. "source": "https://github.com/openspout/openspout/tree/v4.28.4"
  5217. },
  5218. "funding": [
  5219. {
  5220. "url": "https://paypal.me/filippotessarotto",
  5221. "type": "custom"
  5222. },
  5223. {
  5224. "url": "https://github.com/Slamdunk",
  5225. "type": "github"
  5226. }
  5227. ],
  5228. "time": "2025-01-07T11:48:34+00:00"
  5229. },
  5230. {
  5231. "name": "paragonie/constant_time_encoding",
  5232. "version": "v3.0.0",
  5233. "source": {
  5234. "type": "git",
  5235. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5236. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5237. },
  5238. "dist": {
  5239. "type": "zip",
  5240. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5241. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5242. "shasum": ""
  5243. },
  5244. "require": {
  5245. "php": "^8"
  5246. },
  5247. "require-dev": {
  5248. "phpunit/phpunit": "^9",
  5249. "vimeo/psalm": "^4|^5"
  5250. },
  5251. "type": "library",
  5252. "autoload": {
  5253. "psr-4": {
  5254. "ParagonIE\\ConstantTime\\": "src/"
  5255. }
  5256. },
  5257. "notification-url": "https://packagist.org/downloads/",
  5258. "license": [
  5259. "MIT"
  5260. ],
  5261. "authors": [
  5262. {
  5263. "name": "Paragon Initiative Enterprises",
  5264. "email": "security@paragonie.com",
  5265. "homepage": "https://paragonie.com",
  5266. "role": "Maintainer"
  5267. },
  5268. {
  5269. "name": "Steve 'Sc00bz' Thomas",
  5270. "email": "steve@tobtu.com",
  5271. "homepage": "https://www.tobtu.com",
  5272. "role": "Original Developer"
  5273. }
  5274. ],
  5275. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5276. "keywords": [
  5277. "base16",
  5278. "base32",
  5279. "base32_decode",
  5280. "base32_encode",
  5281. "base64",
  5282. "base64_decode",
  5283. "base64_encode",
  5284. "bin2hex",
  5285. "encoding",
  5286. "hex",
  5287. "hex2bin",
  5288. "rfc4648"
  5289. ],
  5290. "support": {
  5291. "email": "info@paragonie.com",
  5292. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5293. "source": "https://github.com/paragonie/constant_time_encoding"
  5294. },
  5295. "time": "2024-05-08T12:36:18+00:00"
  5296. },
  5297. {
  5298. "name": "paragonie/random_compat",
  5299. "version": "v9.99.100",
  5300. "source": {
  5301. "type": "git",
  5302. "url": "https://github.com/paragonie/random_compat.git",
  5303. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5304. },
  5305. "dist": {
  5306. "type": "zip",
  5307. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5308. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5309. "shasum": ""
  5310. },
  5311. "require": {
  5312. "php": ">= 7"
  5313. },
  5314. "require-dev": {
  5315. "phpunit/phpunit": "4.*|5.*",
  5316. "vimeo/psalm": "^1"
  5317. },
  5318. "suggest": {
  5319. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5320. },
  5321. "type": "library",
  5322. "notification-url": "https://packagist.org/downloads/",
  5323. "license": [
  5324. "MIT"
  5325. ],
  5326. "authors": [
  5327. {
  5328. "name": "Paragon Initiative Enterprises",
  5329. "email": "security@paragonie.com",
  5330. "homepage": "https://paragonie.com"
  5331. }
  5332. ],
  5333. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5334. "keywords": [
  5335. "csprng",
  5336. "polyfill",
  5337. "pseudorandom",
  5338. "random"
  5339. ],
  5340. "support": {
  5341. "email": "info@paragonie.com",
  5342. "issues": "https://github.com/paragonie/random_compat/issues",
  5343. "source": "https://github.com/paragonie/random_compat"
  5344. },
  5345. "time": "2020-10-15T08:29:30+00:00"
  5346. },
  5347. {
  5348. "name": "phpoption/phpoption",
  5349. "version": "1.9.3",
  5350. "source": {
  5351. "type": "git",
  5352. "url": "https://github.com/schmittjoh/php-option.git",
  5353. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5354. },
  5355. "dist": {
  5356. "type": "zip",
  5357. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5358. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5359. "shasum": ""
  5360. },
  5361. "require": {
  5362. "php": "^7.2.5 || ^8.0"
  5363. },
  5364. "require-dev": {
  5365. "bamarni/composer-bin-plugin": "^1.8.2",
  5366. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5367. },
  5368. "type": "library",
  5369. "extra": {
  5370. "bamarni-bin": {
  5371. "bin-links": true,
  5372. "forward-command": false
  5373. },
  5374. "branch-alias": {
  5375. "dev-master": "1.9-dev"
  5376. }
  5377. },
  5378. "autoload": {
  5379. "psr-4": {
  5380. "PhpOption\\": "src/PhpOption/"
  5381. }
  5382. },
  5383. "notification-url": "https://packagist.org/downloads/",
  5384. "license": [
  5385. "Apache-2.0"
  5386. ],
  5387. "authors": [
  5388. {
  5389. "name": "Johannes M. Schmitt",
  5390. "email": "schmittjoh@gmail.com",
  5391. "homepage": "https://github.com/schmittjoh"
  5392. },
  5393. {
  5394. "name": "Graham Campbell",
  5395. "email": "hello@gjcampbell.co.uk",
  5396. "homepage": "https://github.com/GrahamCampbell"
  5397. }
  5398. ],
  5399. "description": "Option Type for PHP",
  5400. "keywords": [
  5401. "language",
  5402. "option",
  5403. "php",
  5404. "type"
  5405. ],
  5406. "support": {
  5407. "issues": "https://github.com/schmittjoh/php-option/issues",
  5408. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5409. },
  5410. "funding": [
  5411. {
  5412. "url": "https://github.com/GrahamCampbell",
  5413. "type": "github"
  5414. },
  5415. {
  5416. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5417. "type": "tidelift"
  5418. }
  5419. ],
  5420. "time": "2024-07-20T21:41:07+00:00"
  5421. },
  5422. {
  5423. "name": "phpseclib/phpseclib",
  5424. "version": "3.0.43",
  5425. "source": {
  5426. "type": "git",
  5427. "url": "https://github.com/phpseclib/phpseclib.git",
  5428. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  5429. },
  5430. "dist": {
  5431. "type": "zip",
  5432. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  5433. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  5434. "shasum": ""
  5435. },
  5436. "require": {
  5437. "paragonie/constant_time_encoding": "^1|^2|^3",
  5438. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5439. "php": ">=5.6.1"
  5440. },
  5441. "require-dev": {
  5442. "phpunit/phpunit": "*"
  5443. },
  5444. "suggest": {
  5445. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5446. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5447. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5448. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5449. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5450. },
  5451. "type": "library",
  5452. "autoload": {
  5453. "files": [
  5454. "phpseclib/bootstrap.php"
  5455. ],
  5456. "psr-4": {
  5457. "phpseclib3\\": "phpseclib/"
  5458. }
  5459. },
  5460. "notification-url": "https://packagist.org/downloads/",
  5461. "license": [
  5462. "MIT"
  5463. ],
  5464. "authors": [
  5465. {
  5466. "name": "Jim Wigginton",
  5467. "email": "terrafrost@php.net",
  5468. "role": "Lead Developer"
  5469. },
  5470. {
  5471. "name": "Patrick Monnerat",
  5472. "email": "pm@datasphere.ch",
  5473. "role": "Developer"
  5474. },
  5475. {
  5476. "name": "Andreas Fischer",
  5477. "email": "bantu@phpbb.com",
  5478. "role": "Developer"
  5479. },
  5480. {
  5481. "name": "Hans-Jürgen Petrich",
  5482. "email": "petrich@tronic-media.com",
  5483. "role": "Developer"
  5484. },
  5485. {
  5486. "name": "Graham Campbell",
  5487. "email": "graham@alt-three.com",
  5488. "role": "Developer"
  5489. }
  5490. ],
  5491. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5492. "homepage": "http://phpseclib.sourceforge.net",
  5493. "keywords": [
  5494. "BigInteger",
  5495. "aes",
  5496. "asn.1",
  5497. "asn1",
  5498. "blowfish",
  5499. "crypto",
  5500. "cryptography",
  5501. "encryption",
  5502. "rsa",
  5503. "security",
  5504. "sftp",
  5505. "signature",
  5506. "signing",
  5507. "ssh",
  5508. "twofish",
  5509. "x.509",
  5510. "x509"
  5511. ],
  5512. "support": {
  5513. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5514. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  5515. },
  5516. "funding": [
  5517. {
  5518. "url": "https://github.com/terrafrost",
  5519. "type": "github"
  5520. },
  5521. {
  5522. "url": "https://www.patreon.com/phpseclib",
  5523. "type": "patreon"
  5524. },
  5525. {
  5526. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5527. "type": "tidelift"
  5528. }
  5529. ],
  5530. "time": "2024-12-14T21:12:59+00:00"
  5531. },
  5532. {
  5533. "name": "psr/cache",
  5534. "version": "3.0.0",
  5535. "source": {
  5536. "type": "git",
  5537. "url": "https://github.com/php-fig/cache.git",
  5538. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5539. },
  5540. "dist": {
  5541. "type": "zip",
  5542. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5543. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5544. "shasum": ""
  5545. },
  5546. "require": {
  5547. "php": ">=8.0.0"
  5548. },
  5549. "type": "library",
  5550. "extra": {
  5551. "branch-alias": {
  5552. "dev-master": "1.0.x-dev"
  5553. }
  5554. },
  5555. "autoload": {
  5556. "psr-4": {
  5557. "Psr\\Cache\\": "src/"
  5558. }
  5559. },
  5560. "notification-url": "https://packagist.org/downloads/",
  5561. "license": [
  5562. "MIT"
  5563. ],
  5564. "authors": [
  5565. {
  5566. "name": "PHP-FIG",
  5567. "homepage": "https://www.php-fig.org/"
  5568. }
  5569. ],
  5570. "description": "Common interface for caching libraries",
  5571. "keywords": [
  5572. "cache",
  5573. "psr",
  5574. "psr-6"
  5575. ],
  5576. "support": {
  5577. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5578. },
  5579. "time": "2021-02-03T23:26:27+00:00"
  5580. },
  5581. {
  5582. "name": "psr/clock",
  5583. "version": "1.0.0",
  5584. "source": {
  5585. "type": "git",
  5586. "url": "https://github.com/php-fig/clock.git",
  5587. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5588. },
  5589. "dist": {
  5590. "type": "zip",
  5591. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5592. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5593. "shasum": ""
  5594. },
  5595. "require": {
  5596. "php": "^7.0 || ^8.0"
  5597. },
  5598. "type": "library",
  5599. "autoload": {
  5600. "psr-4": {
  5601. "Psr\\Clock\\": "src/"
  5602. }
  5603. },
  5604. "notification-url": "https://packagist.org/downloads/",
  5605. "license": [
  5606. "MIT"
  5607. ],
  5608. "authors": [
  5609. {
  5610. "name": "PHP-FIG",
  5611. "homepage": "https://www.php-fig.org/"
  5612. }
  5613. ],
  5614. "description": "Common interface for reading the clock.",
  5615. "homepage": "https://github.com/php-fig/clock",
  5616. "keywords": [
  5617. "clock",
  5618. "now",
  5619. "psr",
  5620. "psr-20",
  5621. "time"
  5622. ],
  5623. "support": {
  5624. "issues": "https://github.com/php-fig/clock/issues",
  5625. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5626. },
  5627. "time": "2022-11-25T14:36:26+00:00"
  5628. },
  5629. {
  5630. "name": "psr/container",
  5631. "version": "2.0.2",
  5632. "source": {
  5633. "type": "git",
  5634. "url": "https://github.com/php-fig/container.git",
  5635. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5636. },
  5637. "dist": {
  5638. "type": "zip",
  5639. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5640. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5641. "shasum": ""
  5642. },
  5643. "require": {
  5644. "php": ">=7.4.0"
  5645. },
  5646. "type": "library",
  5647. "extra": {
  5648. "branch-alias": {
  5649. "dev-master": "2.0.x-dev"
  5650. }
  5651. },
  5652. "autoload": {
  5653. "psr-4": {
  5654. "Psr\\Container\\": "src/"
  5655. }
  5656. },
  5657. "notification-url": "https://packagist.org/downloads/",
  5658. "license": [
  5659. "MIT"
  5660. ],
  5661. "authors": [
  5662. {
  5663. "name": "PHP-FIG",
  5664. "homepage": "https://www.php-fig.org/"
  5665. }
  5666. ],
  5667. "description": "Common Container Interface (PHP FIG PSR-11)",
  5668. "homepage": "https://github.com/php-fig/container",
  5669. "keywords": [
  5670. "PSR-11",
  5671. "container",
  5672. "container-interface",
  5673. "container-interop",
  5674. "psr"
  5675. ],
  5676. "support": {
  5677. "issues": "https://github.com/php-fig/container/issues",
  5678. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5679. },
  5680. "time": "2021-11-05T16:47:00+00:00"
  5681. },
  5682. {
  5683. "name": "psr/event-dispatcher",
  5684. "version": "1.0.0",
  5685. "source": {
  5686. "type": "git",
  5687. "url": "https://github.com/php-fig/event-dispatcher.git",
  5688. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5689. },
  5690. "dist": {
  5691. "type": "zip",
  5692. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5693. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5694. "shasum": ""
  5695. },
  5696. "require": {
  5697. "php": ">=7.2.0"
  5698. },
  5699. "type": "library",
  5700. "extra": {
  5701. "branch-alias": {
  5702. "dev-master": "1.0.x-dev"
  5703. }
  5704. },
  5705. "autoload": {
  5706. "psr-4": {
  5707. "Psr\\EventDispatcher\\": "src/"
  5708. }
  5709. },
  5710. "notification-url": "https://packagist.org/downloads/",
  5711. "license": [
  5712. "MIT"
  5713. ],
  5714. "authors": [
  5715. {
  5716. "name": "PHP-FIG",
  5717. "homepage": "http://www.php-fig.org/"
  5718. }
  5719. ],
  5720. "description": "Standard interfaces for event handling.",
  5721. "keywords": [
  5722. "events",
  5723. "psr",
  5724. "psr-14"
  5725. ],
  5726. "support": {
  5727. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5728. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5729. },
  5730. "time": "2019-01-08T18:20:26+00:00"
  5731. },
  5732. {
  5733. "name": "psr/http-client",
  5734. "version": "1.0.3",
  5735. "source": {
  5736. "type": "git",
  5737. "url": "https://github.com/php-fig/http-client.git",
  5738. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5739. },
  5740. "dist": {
  5741. "type": "zip",
  5742. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5743. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5744. "shasum": ""
  5745. },
  5746. "require": {
  5747. "php": "^7.0 || ^8.0",
  5748. "psr/http-message": "^1.0 || ^2.0"
  5749. },
  5750. "type": "library",
  5751. "extra": {
  5752. "branch-alias": {
  5753. "dev-master": "1.0.x-dev"
  5754. }
  5755. },
  5756. "autoload": {
  5757. "psr-4": {
  5758. "Psr\\Http\\Client\\": "src/"
  5759. }
  5760. },
  5761. "notification-url": "https://packagist.org/downloads/",
  5762. "license": [
  5763. "MIT"
  5764. ],
  5765. "authors": [
  5766. {
  5767. "name": "PHP-FIG",
  5768. "homepage": "https://www.php-fig.org/"
  5769. }
  5770. ],
  5771. "description": "Common interface for HTTP clients",
  5772. "homepage": "https://github.com/php-fig/http-client",
  5773. "keywords": [
  5774. "http",
  5775. "http-client",
  5776. "psr",
  5777. "psr-18"
  5778. ],
  5779. "support": {
  5780. "source": "https://github.com/php-fig/http-client"
  5781. },
  5782. "time": "2023-09-23T14:17:50+00:00"
  5783. },
  5784. {
  5785. "name": "psr/http-factory",
  5786. "version": "1.1.0",
  5787. "source": {
  5788. "type": "git",
  5789. "url": "https://github.com/php-fig/http-factory.git",
  5790. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5791. },
  5792. "dist": {
  5793. "type": "zip",
  5794. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5795. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5796. "shasum": ""
  5797. },
  5798. "require": {
  5799. "php": ">=7.1",
  5800. "psr/http-message": "^1.0 || ^2.0"
  5801. },
  5802. "type": "library",
  5803. "extra": {
  5804. "branch-alias": {
  5805. "dev-master": "1.0.x-dev"
  5806. }
  5807. },
  5808. "autoload": {
  5809. "psr-4": {
  5810. "Psr\\Http\\Message\\": "src/"
  5811. }
  5812. },
  5813. "notification-url": "https://packagist.org/downloads/",
  5814. "license": [
  5815. "MIT"
  5816. ],
  5817. "authors": [
  5818. {
  5819. "name": "PHP-FIG",
  5820. "homepage": "https://www.php-fig.org/"
  5821. }
  5822. ],
  5823. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5824. "keywords": [
  5825. "factory",
  5826. "http",
  5827. "message",
  5828. "psr",
  5829. "psr-17",
  5830. "psr-7",
  5831. "request",
  5832. "response"
  5833. ],
  5834. "support": {
  5835. "source": "https://github.com/php-fig/http-factory"
  5836. },
  5837. "time": "2024-04-15T12:06:14+00:00"
  5838. },
  5839. {
  5840. "name": "psr/http-message",
  5841. "version": "2.0",
  5842. "source": {
  5843. "type": "git",
  5844. "url": "https://github.com/php-fig/http-message.git",
  5845. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5846. },
  5847. "dist": {
  5848. "type": "zip",
  5849. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5850. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5851. "shasum": ""
  5852. },
  5853. "require": {
  5854. "php": "^7.2 || ^8.0"
  5855. },
  5856. "type": "library",
  5857. "extra": {
  5858. "branch-alias": {
  5859. "dev-master": "2.0.x-dev"
  5860. }
  5861. },
  5862. "autoload": {
  5863. "psr-4": {
  5864. "Psr\\Http\\Message\\": "src/"
  5865. }
  5866. },
  5867. "notification-url": "https://packagist.org/downloads/",
  5868. "license": [
  5869. "MIT"
  5870. ],
  5871. "authors": [
  5872. {
  5873. "name": "PHP-FIG",
  5874. "homepage": "https://www.php-fig.org/"
  5875. }
  5876. ],
  5877. "description": "Common interface for HTTP messages",
  5878. "homepage": "https://github.com/php-fig/http-message",
  5879. "keywords": [
  5880. "http",
  5881. "http-message",
  5882. "psr",
  5883. "psr-7",
  5884. "request",
  5885. "response"
  5886. ],
  5887. "support": {
  5888. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5889. },
  5890. "time": "2023-04-04T09:54:51+00:00"
  5891. },
  5892. {
  5893. "name": "psr/log",
  5894. "version": "3.0.2",
  5895. "source": {
  5896. "type": "git",
  5897. "url": "https://github.com/php-fig/log.git",
  5898. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5899. },
  5900. "dist": {
  5901. "type": "zip",
  5902. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5903. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5904. "shasum": ""
  5905. },
  5906. "require": {
  5907. "php": ">=8.0.0"
  5908. },
  5909. "type": "library",
  5910. "extra": {
  5911. "branch-alias": {
  5912. "dev-master": "3.x-dev"
  5913. }
  5914. },
  5915. "autoload": {
  5916. "psr-4": {
  5917. "Psr\\Log\\": "src"
  5918. }
  5919. },
  5920. "notification-url": "https://packagist.org/downloads/",
  5921. "license": [
  5922. "MIT"
  5923. ],
  5924. "authors": [
  5925. {
  5926. "name": "PHP-FIG",
  5927. "homepage": "https://www.php-fig.org/"
  5928. }
  5929. ],
  5930. "description": "Common interface for logging libraries",
  5931. "homepage": "https://github.com/php-fig/log",
  5932. "keywords": [
  5933. "log",
  5934. "psr",
  5935. "psr-3"
  5936. ],
  5937. "support": {
  5938. "source": "https://github.com/php-fig/log/tree/3.0.2"
  5939. },
  5940. "time": "2024-09-11T13:17:53+00:00"
  5941. },
  5942. {
  5943. "name": "psr/simple-cache",
  5944. "version": "3.0.0",
  5945. "source": {
  5946. "type": "git",
  5947. "url": "https://github.com/php-fig/simple-cache.git",
  5948. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5949. },
  5950. "dist": {
  5951. "type": "zip",
  5952. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5953. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5954. "shasum": ""
  5955. },
  5956. "require": {
  5957. "php": ">=8.0.0"
  5958. },
  5959. "type": "library",
  5960. "extra": {
  5961. "branch-alias": {
  5962. "dev-master": "3.0.x-dev"
  5963. }
  5964. },
  5965. "autoload": {
  5966. "psr-4": {
  5967. "Psr\\SimpleCache\\": "src/"
  5968. }
  5969. },
  5970. "notification-url": "https://packagist.org/downloads/",
  5971. "license": [
  5972. "MIT"
  5973. ],
  5974. "authors": [
  5975. {
  5976. "name": "PHP-FIG",
  5977. "homepage": "https://www.php-fig.org/"
  5978. }
  5979. ],
  5980. "description": "Common interfaces for simple caching",
  5981. "keywords": [
  5982. "cache",
  5983. "caching",
  5984. "psr",
  5985. "psr-16",
  5986. "simple-cache"
  5987. ],
  5988. "support": {
  5989. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5990. },
  5991. "time": "2021-10-29T13:26:27+00:00"
  5992. },
  5993. {
  5994. "name": "psy/psysh",
  5995. "version": "v0.12.7",
  5996. "source": {
  5997. "type": "git",
  5998. "url": "https://github.com/bobthecow/psysh.git",
  5999. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c"
  6000. },
  6001. "dist": {
  6002. "type": "zip",
  6003. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  6004. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  6005. "shasum": ""
  6006. },
  6007. "require": {
  6008. "ext-json": "*",
  6009. "ext-tokenizer": "*",
  6010. "nikic/php-parser": "^5.0 || ^4.0",
  6011. "php": "^8.0 || ^7.4",
  6012. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6013. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6014. },
  6015. "conflict": {
  6016. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6017. },
  6018. "require-dev": {
  6019. "bamarni/composer-bin-plugin": "^1.2"
  6020. },
  6021. "suggest": {
  6022. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6023. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6024. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6025. },
  6026. "bin": [
  6027. "bin/psysh"
  6028. ],
  6029. "type": "library",
  6030. "extra": {
  6031. "bamarni-bin": {
  6032. "bin-links": false,
  6033. "forward-command": false
  6034. },
  6035. "branch-alias": {
  6036. "dev-main": "0.12.x-dev"
  6037. }
  6038. },
  6039. "autoload": {
  6040. "files": [
  6041. "src/functions.php"
  6042. ],
  6043. "psr-4": {
  6044. "Psy\\": "src/"
  6045. }
  6046. },
  6047. "notification-url": "https://packagist.org/downloads/",
  6048. "license": [
  6049. "MIT"
  6050. ],
  6051. "authors": [
  6052. {
  6053. "name": "Justin Hileman",
  6054. "email": "justin@justinhileman.info",
  6055. "homepage": "http://justinhileman.com"
  6056. }
  6057. ],
  6058. "description": "An interactive shell for modern PHP.",
  6059. "homepage": "http://psysh.org",
  6060. "keywords": [
  6061. "REPL",
  6062. "console",
  6063. "interactive",
  6064. "shell"
  6065. ],
  6066. "support": {
  6067. "issues": "https://github.com/bobthecow/psysh/issues",
  6068. "source": "https://github.com/bobthecow/psysh/tree/v0.12.7"
  6069. },
  6070. "time": "2024-12-10T01:58:33+00:00"
  6071. },
  6072. {
  6073. "name": "ralouphie/getallheaders",
  6074. "version": "3.0.3",
  6075. "source": {
  6076. "type": "git",
  6077. "url": "https://github.com/ralouphie/getallheaders.git",
  6078. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6079. },
  6080. "dist": {
  6081. "type": "zip",
  6082. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6083. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6084. "shasum": ""
  6085. },
  6086. "require": {
  6087. "php": ">=5.6"
  6088. },
  6089. "require-dev": {
  6090. "php-coveralls/php-coveralls": "^2.1",
  6091. "phpunit/phpunit": "^5 || ^6.5"
  6092. },
  6093. "type": "library",
  6094. "autoload": {
  6095. "files": [
  6096. "src/getallheaders.php"
  6097. ]
  6098. },
  6099. "notification-url": "https://packagist.org/downloads/",
  6100. "license": [
  6101. "MIT"
  6102. ],
  6103. "authors": [
  6104. {
  6105. "name": "Ralph Khattar",
  6106. "email": "ralph.khattar@gmail.com"
  6107. }
  6108. ],
  6109. "description": "A polyfill for getallheaders.",
  6110. "support": {
  6111. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6112. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6113. },
  6114. "time": "2019-03-08T08:55:37+00:00"
  6115. },
  6116. {
  6117. "name": "ramsey/collection",
  6118. "version": "2.0.0",
  6119. "source": {
  6120. "type": "git",
  6121. "url": "https://github.com/ramsey/collection.git",
  6122. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  6123. },
  6124. "dist": {
  6125. "type": "zip",
  6126. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6127. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6128. "shasum": ""
  6129. },
  6130. "require": {
  6131. "php": "^8.1"
  6132. },
  6133. "require-dev": {
  6134. "captainhook/plugin-composer": "^5.3",
  6135. "ergebnis/composer-normalize": "^2.28.3",
  6136. "fakerphp/faker": "^1.21",
  6137. "hamcrest/hamcrest-php": "^2.0",
  6138. "jangregor/phpstan-prophecy": "^1.0",
  6139. "mockery/mockery": "^1.5",
  6140. "php-parallel-lint/php-console-highlighter": "^1.0",
  6141. "php-parallel-lint/php-parallel-lint": "^1.3",
  6142. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6143. "phpspec/prophecy-phpunit": "^2.0",
  6144. "phpstan/extension-installer": "^1.2",
  6145. "phpstan/phpstan": "^1.9",
  6146. "phpstan/phpstan-mockery": "^1.1",
  6147. "phpstan/phpstan-phpunit": "^1.3",
  6148. "phpunit/phpunit": "^9.5",
  6149. "psalm/plugin-mockery": "^1.1",
  6150. "psalm/plugin-phpunit": "^0.18.4",
  6151. "ramsey/coding-standard": "^2.0.3",
  6152. "ramsey/conventional-commits": "^1.3",
  6153. "vimeo/psalm": "^5.4"
  6154. },
  6155. "type": "library",
  6156. "extra": {
  6157. "captainhook": {
  6158. "force-install": true
  6159. },
  6160. "ramsey/conventional-commits": {
  6161. "configFile": "conventional-commits.json"
  6162. }
  6163. },
  6164. "autoload": {
  6165. "psr-4": {
  6166. "Ramsey\\Collection\\": "src/"
  6167. }
  6168. },
  6169. "notification-url": "https://packagist.org/downloads/",
  6170. "license": [
  6171. "MIT"
  6172. ],
  6173. "authors": [
  6174. {
  6175. "name": "Ben Ramsey",
  6176. "email": "ben@benramsey.com",
  6177. "homepage": "https://benramsey.com"
  6178. }
  6179. ],
  6180. "description": "A PHP library for representing and manipulating collections.",
  6181. "keywords": [
  6182. "array",
  6183. "collection",
  6184. "hash",
  6185. "map",
  6186. "queue",
  6187. "set"
  6188. ],
  6189. "support": {
  6190. "issues": "https://github.com/ramsey/collection/issues",
  6191. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  6192. },
  6193. "funding": [
  6194. {
  6195. "url": "https://github.com/ramsey",
  6196. "type": "github"
  6197. },
  6198. {
  6199. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6200. "type": "tidelift"
  6201. }
  6202. ],
  6203. "time": "2022-12-31T21:50:55+00:00"
  6204. },
  6205. {
  6206. "name": "ramsey/uuid",
  6207. "version": "4.7.6",
  6208. "source": {
  6209. "type": "git",
  6210. "url": "https://github.com/ramsey/uuid.git",
  6211. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6212. },
  6213. "dist": {
  6214. "type": "zip",
  6215. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6216. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6217. "shasum": ""
  6218. },
  6219. "require": {
  6220. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  6221. "ext-json": "*",
  6222. "php": "^8.0",
  6223. "ramsey/collection": "^1.2 || ^2.0"
  6224. },
  6225. "replace": {
  6226. "rhumsaa/uuid": "self.version"
  6227. },
  6228. "require-dev": {
  6229. "captainhook/captainhook": "^5.10",
  6230. "captainhook/plugin-composer": "^5.3",
  6231. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6232. "doctrine/annotations": "^1.8",
  6233. "ergebnis/composer-normalize": "^2.15",
  6234. "mockery/mockery": "^1.3",
  6235. "paragonie/random-lib": "^2",
  6236. "php-mock/php-mock": "^2.2",
  6237. "php-mock/php-mock-mockery": "^1.3",
  6238. "php-parallel-lint/php-parallel-lint": "^1.1",
  6239. "phpbench/phpbench": "^1.0",
  6240. "phpstan/extension-installer": "^1.1",
  6241. "phpstan/phpstan": "^1.8",
  6242. "phpstan/phpstan-mockery": "^1.1",
  6243. "phpstan/phpstan-phpunit": "^1.1",
  6244. "phpunit/phpunit": "^8.5 || ^9",
  6245. "ramsey/composer-repl": "^1.4",
  6246. "slevomat/coding-standard": "^8.4",
  6247. "squizlabs/php_codesniffer": "^3.5",
  6248. "vimeo/psalm": "^4.9"
  6249. },
  6250. "suggest": {
  6251. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6252. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6253. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6254. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6255. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6256. },
  6257. "type": "library",
  6258. "extra": {
  6259. "captainhook": {
  6260. "force-install": true
  6261. }
  6262. },
  6263. "autoload": {
  6264. "files": [
  6265. "src/functions.php"
  6266. ],
  6267. "psr-4": {
  6268. "Ramsey\\Uuid\\": "src/"
  6269. }
  6270. },
  6271. "notification-url": "https://packagist.org/downloads/",
  6272. "license": [
  6273. "MIT"
  6274. ],
  6275. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6276. "keywords": [
  6277. "guid",
  6278. "identifier",
  6279. "uuid"
  6280. ],
  6281. "support": {
  6282. "issues": "https://github.com/ramsey/uuid/issues",
  6283. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6284. },
  6285. "funding": [
  6286. {
  6287. "url": "https://github.com/ramsey",
  6288. "type": "github"
  6289. },
  6290. {
  6291. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6292. "type": "tidelift"
  6293. }
  6294. ],
  6295. "time": "2024-04-27T21:32:50+00:00"
  6296. },
  6297. {
  6298. "name": "ryangjchandler/blade-capture-directive",
  6299. "version": "v1.0.0",
  6300. "source": {
  6301. "type": "git",
  6302. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6303. "reference": "cb6f58663d97f17bece176295240b740835e14f1"
  6304. },
  6305. "dist": {
  6306. "type": "zip",
  6307. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/cb6f58663d97f17bece176295240b740835e14f1",
  6308. "reference": "cb6f58663d97f17bece176295240b740835e14f1",
  6309. "shasum": ""
  6310. },
  6311. "require": {
  6312. "illuminate/contracts": "^10.0|^11.0",
  6313. "php": "^8.1",
  6314. "spatie/laravel-package-tools": "^1.9.2"
  6315. },
  6316. "require-dev": {
  6317. "nunomaduro/collision": "^7.0|^8.0",
  6318. "nunomaduro/larastan": "^2.0",
  6319. "orchestra/testbench": "^8.0|^9.0",
  6320. "pestphp/pest": "^2.0",
  6321. "pestphp/pest-plugin-laravel": "^2.0",
  6322. "phpstan/extension-installer": "^1.1",
  6323. "phpstan/phpstan-deprecation-rules": "^1.0",
  6324. "phpstan/phpstan-phpunit": "^1.0",
  6325. "phpunit/phpunit": "^10.0",
  6326. "spatie/laravel-ray": "^1.26"
  6327. },
  6328. "type": "library",
  6329. "extra": {
  6330. "laravel": {
  6331. "aliases": {
  6332. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6333. },
  6334. "providers": [
  6335. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6336. ]
  6337. }
  6338. },
  6339. "autoload": {
  6340. "psr-4": {
  6341. "RyanChandler\\BladeCaptureDirective\\": "src",
  6342. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6343. }
  6344. },
  6345. "notification-url": "https://packagist.org/downloads/",
  6346. "license": [
  6347. "MIT"
  6348. ],
  6349. "authors": [
  6350. {
  6351. "name": "Ryan Chandler",
  6352. "email": "support@ryangjchandler.co.uk",
  6353. "role": "Developer"
  6354. }
  6355. ],
  6356. "description": "Create inline partials in your Blade templates with ease.",
  6357. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6358. "keywords": [
  6359. "blade-capture-directive",
  6360. "laravel",
  6361. "ryangjchandler"
  6362. ],
  6363. "support": {
  6364. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6365. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.0.0"
  6366. },
  6367. "funding": [
  6368. {
  6369. "url": "https://github.com/ryangjchandler",
  6370. "type": "github"
  6371. }
  6372. ],
  6373. "time": "2024-02-26T18:08:49+00:00"
  6374. },
  6375. {
  6376. "name": "spatie/color",
  6377. "version": "1.7.0",
  6378. "source": {
  6379. "type": "git",
  6380. "url": "https://github.com/spatie/color.git",
  6381. "reference": "614f1e0674262c620db908998a11eacd16494835"
  6382. },
  6383. "dist": {
  6384. "type": "zip",
  6385. "url": "https://api.github.com/repos/spatie/color/zipball/614f1e0674262c620db908998a11eacd16494835",
  6386. "reference": "614f1e0674262c620db908998a11eacd16494835",
  6387. "shasum": ""
  6388. },
  6389. "require": {
  6390. "php": "^7.3|^8.0"
  6391. },
  6392. "require-dev": {
  6393. "pestphp/pest": "^1.22",
  6394. "phpunit/phpunit": "^6.5||^9.0"
  6395. },
  6396. "type": "library",
  6397. "autoload": {
  6398. "psr-4": {
  6399. "Spatie\\Color\\": "src"
  6400. }
  6401. },
  6402. "notification-url": "https://packagist.org/downloads/",
  6403. "license": [
  6404. "MIT"
  6405. ],
  6406. "authors": [
  6407. {
  6408. "name": "Sebastian De Deyne",
  6409. "email": "sebastian@spatie.be",
  6410. "homepage": "https://spatie.be",
  6411. "role": "Developer"
  6412. }
  6413. ],
  6414. "description": "A little library to handle color conversions",
  6415. "homepage": "https://github.com/spatie/color",
  6416. "keywords": [
  6417. "color",
  6418. "conversion",
  6419. "rgb",
  6420. "spatie"
  6421. ],
  6422. "support": {
  6423. "issues": "https://github.com/spatie/color/issues",
  6424. "source": "https://github.com/spatie/color/tree/1.7.0"
  6425. },
  6426. "funding": [
  6427. {
  6428. "url": "https://github.com/spatie",
  6429. "type": "github"
  6430. }
  6431. ],
  6432. "time": "2024-12-30T14:23:15+00:00"
  6433. },
  6434. {
  6435. "name": "spatie/invade",
  6436. "version": "2.1.0",
  6437. "source": {
  6438. "type": "git",
  6439. "url": "https://github.com/spatie/invade.git",
  6440. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  6441. },
  6442. "dist": {
  6443. "type": "zip",
  6444. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6445. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6446. "shasum": ""
  6447. },
  6448. "require": {
  6449. "php": "^8.0"
  6450. },
  6451. "require-dev": {
  6452. "pestphp/pest": "^1.20",
  6453. "phpstan/phpstan": "^1.4",
  6454. "spatie/ray": "^1.28"
  6455. },
  6456. "type": "library",
  6457. "autoload": {
  6458. "files": [
  6459. "src/functions.php"
  6460. ],
  6461. "psr-4": {
  6462. "Spatie\\Invade\\": "src"
  6463. }
  6464. },
  6465. "notification-url": "https://packagist.org/downloads/",
  6466. "license": [
  6467. "MIT"
  6468. ],
  6469. "authors": [
  6470. {
  6471. "name": "Freek Van der Herten",
  6472. "email": "freek@spatie.be",
  6473. "role": "Developer"
  6474. }
  6475. ],
  6476. "description": "A PHP function to work with private properties and methods",
  6477. "homepage": "https://github.com/spatie/invade",
  6478. "keywords": [
  6479. "invade",
  6480. "spatie"
  6481. ],
  6482. "support": {
  6483. "source": "https://github.com/spatie/invade/tree/2.1.0"
  6484. },
  6485. "funding": [
  6486. {
  6487. "url": "https://github.com/spatie",
  6488. "type": "github"
  6489. }
  6490. ],
  6491. "time": "2024-05-17T09:06:10+00:00"
  6492. },
  6493. {
  6494. "name": "spatie/laravel-package-tools",
  6495. "version": "1.18.3",
  6496. "source": {
  6497. "type": "git",
  6498. "url": "https://github.com/spatie/laravel-package-tools.git",
  6499. "reference": "ba67eee37d86ed775dab7dad58a7cbaf9a6cfe78"
  6500. },
  6501. "dist": {
  6502. "type": "zip",
  6503. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/ba67eee37d86ed775dab7dad58a7cbaf9a6cfe78",
  6504. "reference": "ba67eee37d86ed775dab7dad58a7cbaf9a6cfe78",
  6505. "shasum": ""
  6506. },
  6507. "require": {
  6508. "illuminate/contracts": "^9.28|^10.0|^11.0",
  6509. "php": "^8.0"
  6510. },
  6511. "require-dev": {
  6512. "mockery/mockery": "^1.5",
  6513. "orchestra/testbench": "^7.7|^8.0|^9.0",
  6514. "pestphp/pest": "^1.22|^2",
  6515. "phpunit/phpunit": "^9.5.24|^10.5",
  6516. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  6517. },
  6518. "type": "library",
  6519. "autoload": {
  6520. "psr-4": {
  6521. "Spatie\\LaravelPackageTools\\": "src"
  6522. }
  6523. },
  6524. "notification-url": "https://packagist.org/downloads/",
  6525. "license": [
  6526. "MIT"
  6527. ],
  6528. "authors": [
  6529. {
  6530. "name": "Freek Van der Herten",
  6531. "email": "freek@spatie.be",
  6532. "role": "Developer"
  6533. }
  6534. ],
  6535. "description": "Tools for creating Laravel packages",
  6536. "homepage": "https://github.com/spatie/laravel-package-tools",
  6537. "keywords": [
  6538. "laravel-package-tools",
  6539. "spatie"
  6540. ],
  6541. "support": {
  6542. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6543. "source": "https://github.com/spatie/laravel-package-tools/tree/1.18.3"
  6544. },
  6545. "funding": [
  6546. {
  6547. "url": "https://github.com/spatie",
  6548. "type": "github"
  6549. }
  6550. ],
  6551. "time": "2025-01-22T08:51:18+00:00"
  6552. },
  6553. {
  6554. "name": "squirephp/model",
  6555. "version": "v3.7.0",
  6556. "source": {
  6557. "type": "git",
  6558. "url": "https://github.com/squirephp/model.git",
  6559. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce"
  6560. },
  6561. "dist": {
  6562. "type": "zip",
  6563. "url": "https://api.github.com/repos/squirephp/model/zipball/9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6564. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6565. "shasum": ""
  6566. },
  6567. "require": {
  6568. "ext-pdo_sqlite": "*",
  6569. "illuminate/database": "^8.40|^9.0|^10.0|^11.0",
  6570. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6571. "php": "^8.0"
  6572. },
  6573. "type": "library",
  6574. "extra": {
  6575. "laravel": {
  6576. "providers": [
  6577. "Squire\\ModelServiceProvider"
  6578. ]
  6579. }
  6580. },
  6581. "autoload": {
  6582. "psr-4": {
  6583. "Squire\\": "src"
  6584. }
  6585. },
  6586. "notification-url": "https://packagist.org/downloads/",
  6587. "license": [
  6588. "MIT"
  6589. ],
  6590. "authors": [
  6591. {
  6592. "name": "Dan Harrin",
  6593. "email": "dan@danharrin.com"
  6594. }
  6595. ],
  6596. "description": "A library containing the base Squire model class.",
  6597. "homepage": "https://github.com/squirephp",
  6598. "keywords": [
  6599. "squire"
  6600. ],
  6601. "support": {
  6602. "issues": "https://github.com/squirephp/squire/issues",
  6603. "source": "https://github.com/squirephp/squire"
  6604. },
  6605. "time": "2024-03-11T11:06:10+00:00"
  6606. },
  6607. {
  6608. "name": "squirephp/repository",
  6609. "version": "v3.7.0",
  6610. "source": {
  6611. "type": "git",
  6612. "url": "https://github.com/squirephp/repository.git",
  6613. "reference": "c7cf78011f32904905638f4689975cbbbc78501c"
  6614. },
  6615. "dist": {
  6616. "type": "zip",
  6617. "url": "https://api.github.com/repos/squirephp/repository/zipball/c7cf78011f32904905638f4689975cbbbc78501c",
  6618. "reference": "c7cf78011f32904905638f4689975cbbbc78501c",
  6619. "shasum": ""
  6620. },
  6621. "require": {
  6622. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6623. "php": "^8.0"
  6624. },
  6625. "type": "library",
  6626. "extra": {
  6627. "laravel": {
  6628. "aliases": {
  6629. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6630. },
  6631. "providers": [
  6632. "Squire\\RepositoryServiceProvider"
  6633. ]
  6634. }
  6635. },
  6636. "autoload": {
  6637. "psr-4": {
  6638. "Squire\\": "src"
  6639. }
  6640. },
  6641. "notification-url": "https://packagist.org/downloads/",
  6642. "license": [
  6643. "MIT"
  6644. ],
  6645. "authors": [
  6646. {
  6647. "name": "Dan Harrin",
  6648. "email": "dan@danharrin.com"
  6649. }
  6650. ],
  6651. "description": "A library containing the Squire repository.",
  6652. "homepage": "https://github.com/squirephp",
  6653. "keywords": [
  6654. "squire"
  6655. ],
  6656. "support": {
  6657. "issues": "https://github.com/squirephp/squire/issues",
  6658. "source": "https://github.com/squirephp/squire"
  6659. },
  6660. "time": "2024-03-11T11:06:10+00:00"
  6661. },
  6662. {
  6663. "name": "symfony/clock",
  6664. "version": "v7.2.0",
  6665. "source": {
  6666. "type": "git",
  6667. "url": "https://github.com/symfony/clock.git",
  6668. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  6669. },
  6670. "dist": {
  6671. "type": "zip",
  6672. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6673. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6674. "shasum": ""
  6675. },
  6676. "require": {
  6677. "php": ">=8.2",
  6678. "psr/clock": "^1.0",
  6679. "symfony/polyfill-php83": "^1.28"
  6680. },
  6681. "provide": {
  6682. "psr/clock-implementation": "1.0"
  6683. },
  6684. "type": "library",
  6685. "autoload": {
  6686. "files": [
  6687. "Resources/now.php"
  6688. ],
  6689. "psr-4": {
  6690. "Symfony\\Component\\Clock\\": ""
  6691. },
  6692. "exclude-from-classmap": [
  6693. "/Tests/"
  6694. ]
  6695. },
  6696. "notification-url": "https://packagist.org/downloads/",
  6697. "license": [
  6698. "MIT"
  6699. ],
  6700. "authors": [
  6701. {
  6702. "name": "Nicolas Grekas",
  6703. "email": "p@tchwork.com"
  6704. },
  6705. {
  6706. "name": "Symfony Community",
  6707. "homepage": "https://symfony.com/contributors"
  6708. }
  6709. ],
  6710. "description": "Decouples applications from the system clock",
  6711. "homepage": "https://symfony.com",
  6712. "keywords": [
  6713. "clock",
  6714. "psr20",
  6715. "time"
  6716. ],
  6717. "support": {
  6718. "source": "https://github.com/symfony/clock/tree/v7.2.0"
  6719. },
  6720. "funding": [
  6721. {
  6722. "url": "https://symfony.com/sponsor",
  6723. "type": "custom"
  6724. },
  6725. {
  6726. "url": "https://github.com/fabpot",
  6727. "type": "github"
  6728. },
  6729. {
  6730. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6731. "type": "tidelift"
  6732. }
  6733. ],
  6734. "time": "2024-09-25T14:21:43+00:00"
  6735. },
  6736. {
  6737. "name": "symfony/console",
  6738. "version": "v7.2.1",
  6739. "source": {
  6740. "type": "git",
  6741. "url": "https://github.com/symfony/console.git",
  6742. "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3"
  6743. },
  6744. "dist": {
  6745. "type": "zip",
  6746. "url": "https://api.github.com/repos/symfony/console/zipball/fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
  6747. "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
  6748. "shasum": ""
  6749. },
  6750. "require": {
  6751. "php": ">=8.2",
  6752. "symfony/polyfill-mbstring": "~1.0",
  6753. "symfony/service-contracts": "^2.5|^3",
  6754. "symfony/string": "^6.4|^7.0"
  6755. },
  6756. "conflict": {
  6757. "symfony/dependency-injection": "<6.4",
  6758. "symfony/dotenv": "<6.4",
  6759. "symfony/event-dispatcher": "<6.4",
  6760. "symfony/lock": "<6.4",
  6761. "symfony/process": "<6.4"
  6762. },
  6763. "provide": {
  6764. "psr/log-implementation": "1.0|2.0|3.0"
  6765. },
  6766. "require-dev": {
  6767. "psr/log": "^1|^2|^3",
  6768. "symfony/config": "^6.4|^7.0",
  6769. "symfony/dependency-injection": "^6.4|^7.0",
  6770. "symfony/event-dispatcher": "^6.4|^7.0",
  6771. "symfony/http-foundation": "^6.4|^7.0",
  6772. "symfony/http-kernel": "^6.4|^7.0",
  6773. "symfony/lock": "^6.4|^7.0",
  6774. "symfony/messenger": "^6.4|^7.0",
  6775. "symfony/process": "^6.4|^7.0",
  6776. "symfony/stopwatch": "^6.4|^7.0",
  6777. "symfony/var-dumper": "^6.4|^7.0"
  6778. },
  6779. "type": "library",
  6780. "autoload": {
  6781. "psr-4": {
  6782. "Symfony\\Component\\Console\\": ""
  6783. },
  6784. "exclude-from-classmap": [
  6785. "/Tests/"
  6786. ]
  6787. },
  6788. "notification-url": "https://packagist.org/downloads/",
  6789. "license": [
  6790. "MIT"
  6791. ],
  6792. "authors": [
  6793. {
  6794. "name": "Fabien Potencier",
  6795. "email": "fabien@symfony.com"
  6796. },
  6797. {
  6798. "name": "Symfony Community",
  6799. "homepage": "https://symfony.com/contributors"
  6800. }
  6801. ],
  6802. "description": "Eases the creation of beautiful and testable command line interfaces",
  6803. "homepage": "https://symfony.com",
  6804. "keywords": [
  6805. "cli",
  6806. "command-line",
  6807. "console",
  6808. "terminal"
  6809. ],
  6810. "support": {
  6811. "source": "https://github.com/symfony/console/tree/v7.2.1"
  6812. },
  6813. "funding": [
  6814. {
  6815. "url": "https://symfony.com/sponsor",
  6816. "type": "custom"
  6817. },
  6818. {
  6819. "url": "https://github.com/fabpot",
  6820. "type": "github"
  6821. },
  6822. {
  6823. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6824. "type": "tidelift"
  6825. }
  6826. ],
  6827. "time": "2024-12-11T03:49:26+00:00"
  6828. },
  6829. {
  6830. "name": "symfony/css-selector",
  6831. "version": "v7.2.0",
  6832. "source": {
  6833. "type": "git",
  6834. "url": "https://github.com/symfony/css-selector.git",
  6835. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  6836. },
  6837. "dist": {
  6838. "type": "zip",
  6839. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6840. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6841. "shasum": ""
  6842. },
  6843. "require": {
  6844. "php": ">=8.2"
  6845. },
  6846. "type": "library",
  6847. "autoload": {
  6848. "psr-4": {
  6849. "Symfony\\Component\\CssSelector\\": ""
  6850. },
  6851. "exclude-from-classmap": [
  6852. "/Tests/"
  6853. ]
  6854. },
  6855. "notification-url": "https://packagist.org/downloads/",
  6856. "license": [
  6857. "MIT"
  6858. ],
  6859. "authors": [
  6860. {
  6861. "name": "Fabien Potencier",
  6862. "email": "fabien@symfony.com"
  6863. },
  6864. {
  6865. "name": "Jean-François Simon",
  6866. "email": "jeanfrancois.simon@sensiolabs.com"
  6867. },
  6868. {
  6869. "name": "Symfony Community",
  6870. "homepage": "https://symfony.com/contributors"
  6871. }
  6872. ],
  6873. "description": "Converts CSS selectors to XPath expressions",
  6874. "homepage": "https://symfony.com",
  6875. "support": {
  6876. "source": "https://github.com/symfony/css-selector/tree/v7.2.0"
  6877. },
  6878. "funding": [
  6879. {
  6880. "url": "https://symfony.com/sponsor",
  6881. "type": "custom"
  6882. },
  6883. {
  6884. "url": "https://github.com/fabpot",
  6885. "type": "github"
  6886. },
  6887. {
  6888. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6889. "type": "tidelift"
  6890. }
  6891. ],
  6892. "time": "2024-09-25T14:21:43+00:00"
  6893. },
  6894. {
  6895. "name": "symfony/deprecation-contracts",
  6896. "version": "v3.5.1",
  6897. "source": {
  6898. "type": "git",
  6899. "url": "https://github.com/symfony/deprecation-contracts.git",
  6900. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6901. },
  6902. "dist": {
  6903. "type": "zip",
  6904. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6905. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6906. "shasum": ""
  6907. },
  6908. "require": {
  6909. "php": ">=8.1"
  6910. },
  6911. "type": "library",
  6912. "extra": {
  6913. "thanks": {
  6914. "url": "https://github.com/symfony/contracts",
  6915. "name": "symfony/contracts"
  6916. },
  6917. "branch-alias": {
  6918. "dev-main": "3.5-dev"
  6919. }
  6920. },
  6921. "autoload": {
  6922. "files": [
  6923. "function.php"
  6924. ]
  6925. },
  6926. "notification-url": "https://packagist.org/downloads/",
  6927. "license": [
  6928. "MIT"
  6929. ],
  6930. "authors": [
  6931. {
  6932. "name": "Nicolas Grekas",
  6933. "email": "p@tchwork.com"
  6934. },
  6935. {
  6936. "name": "Symfony Community",
  6937. "homepage": "https://symfony.com/contributors"
  6938. }
  6939. ],
  6940. "description": "A generic function and convention to trigger deprecation notices",
  6941. "homepage": "https://symfony.com",
  6942. "support": {
  6943. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  6944. },
  6945. "funding": [
  6946. {
  6947. "url": "https://symfony.com/sponsor",
  6948. "type": "custom"
  6949. },
  6950. {
  6951. "url": "https://github.com/fabpot",
  6952. "type": "github"
  6953. },
  6954. {
  6955. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6956. "type": "tidelift"
  6957. }
  6958. ],
  6959. "time": "2024-09-25T14:20:29+00:00"
  6960. },
  6961. {
  6962. "name": "symfony/error-handler",
  6963. "version": "v7.2.3",
  6964. "source": {
  6965. "type": "git",
  6966. "url": "https://github.com/symfony/error-handler.git",
  6967. "reference": "959a74d044a6db21f4caa6d695648dcb5584cb49"
  6968. },
  6969. "dist": {
  6970. "type": "zip",
  6971. "url": "https://api.github.com/repos/symfony/error-handler/zipball/959a74d044a6db21f4caa6d695648dcb5584cb49",
  6972. "reference": "959a74d044a6db21f4caa6d695648dcb5584cb49",
  6973. "shasum": ""
  6974. },
  6975. "require": {
  6976. "php": ">=8.2",
  6977. "psr/log": "^1|^2|^3",
  6978. "symfony/var-dumper": "^6.4|^7.0"
  6979. },
  6980. "conflict": {
  6981. "symfony/deprecation-contracts": "<2.5",
  6982. "symfony/http-kernel": "<6.4"
  6983. },
  6984. "require-dev": {
  6985. "symfony/deprecation-contracts": "^2.5|^3",
  6986. "symfony/http-kernel": "^6.4|^7.0",
  6987. "symfony/serializer": "^6.4|^7.0"
  6988. },
  6989. "bin": [
  6990. "Resources/bin/patch-type-declarations"
  6991. ],
  6992. "type": "library",
  6993. "autoload": {
  6994. "psr-4": {
  6995. "Symfony\\Component\\ErrorHandler\\": ""
  6996. },
  6997. "exclude-from-classmap": [
  6998. "/Tests/"
  6999. ]
  7000. },
  7001. "notification-url": "https://packagist.org/downloads/",
  7002. "license": [
  7003. "MIT"
  7004. ],
  7005. "authors": [
  7006. {
  7007. "name": "Fabien Potencier",
  7008. "email": "fabien@symfony.com"
  7009. },
  7010. {
  7011. "name": "Symfony Community",
  7012. "homepage": "https://symfony.com/contributors"
  7013. }
  7014. ],
  7015. "description": "Provides tools to manage errors and ease debugging PHP code",
  7016. "homepage": "https://symfony.com",
  7017. "support": {
  7018. "source": "https://github.com/symfony/error-handler/tree/v7.2.3"
  7019. },
  7020. "funding": [
  7021. {
  7022. "url": "https://symfony.com/sponsor",
  7023. "type": "custom"
  7024. },
  7025. {
  7026. "url": "https://github.com/fabpot",
  7027. "type": "github"
  7028. },
  7029. {
  7030. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7031. "type": "tidelift"
  7032. }
  7033. ],
  7034. "time": "2025-01-07T09:39:55+00:00"
  7035. },
  7036. {
  7037. "name": "symfony/event-dispatcher",
  7038. "version": "v7.2.0",
  7039. "source": {
  7040. "type": "git",
  7041. "url": "https://github.com/symfony/event-dispatcher.git",
  7042. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
  7043. },
  7044. "dist": {
  7045. "type": "zip",
  7046. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
  7047. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
  7048. "shasum": ""
  7049. },
  7050. "require": {
  7051. "php": ">=8.2",
  7052. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7053. },
  7054. "conflict": {
  7055. "symfony/dependency-injection": "<6.4",
  7056. "symfony/service-contracts": "<2.5"
  7057. },
  7058. "provide": {
  7059. "psr/event-dispatcher-implementation": "1.0",
  7060. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7061. },
  7062. "require-dev": {
  7063. "psr/log": "^1|^2|^3",
  7064. "symfony/config": "^6.4|^7.0",
  7065. "symfony/dependency-injection": "^6.4|^7.0",
  7066. "symfony/error-handler": "^6.4|^7.0",
  7067. "symfony/expression-language": "^6.4|^7.0",
  7068. "symfony/http-foundation": "^6.4|^7.0",
  7069. "symfony/service-contracts": "^2.5|^3",
  7070. "symfony/stopwatch": "^6.4|^7.0"
  7071. },
  7072. "type": "library",
  7073. "autoload": {
  7074. "psr-4": {
  7075. "Symfony\\Component\\EventDispatcher\\": ""
  7076. },
  7077. "exclude-from-classmap": [
  7078. "/Tests/"
  7079. ]
  7080. },
  7081. "notification-url": "https://packagist.org/downloads/",
  7082. "license": [
  7083. "MIT"
  7084. ],
  7085. "authors": [
  7086. {
  7087. "name": "Fabien Potencier",
  7088. "email": "fabien@symfony.com"
  7089. },
  7090. {
  7091. "name": "Symfony Community",
  7092. "homepage": "https://symfony.com/contributors"
  7093. }
  7094. ],
  7095. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7096. "homepage": "https://symfony.com",
  7097. "support": {
  7098. "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0"
  7099. },
  7100. "funding": [
  7101. {
  7102. "url": "https://symfony.com/sponsor",
  7103. "type": "custom"
  7104. },
  7105. {
  7106. "url": "https://github.com/fabpot",
  7107. "type": "github"
  7108. },
  7109. {
  7110. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7111. "type": "tidelift"
  7112. }
  7113. ],
  7114. "time": "2024-09-25T14:21:43+00:00"
  7115. },
  7116. {
  7117. "name": "symfony/event-dispatcher-contracts",
  7118. "version": "v3.5.1",
  7119. "source": {
  7120. "type": "git",
  7121. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7122. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  7123. },
  7124. "dist": {
  7125. "type": "zip",
  7126. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7127. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7128. "shasum": ""
  7129. },
  7130. "require": {
  7131. "php": ">=8.1",
  7132. "psr/event-dispatcher": "^1"
  7133. },
  7134. "type": "library",
  7135. "extra": {
  7136. "thanks": {
  7137. "url": "https://github.com/symfony/contracts",
  7138. "name": "symfony/contracts"
  7139. },
  7140. "branch-alias": {
  7141. "dev-main": "3.5-dev"
  7142. }
  7143. },
  7144. "autoload": {
  7145. "psr-4": {
  7146. "Symfony\\Contracts\\EventDispatcher\\": ""
  7147. }
  7148. },
  7149. "notification-url": "https://packagist.org/downloads/",
  7150. "license": [
  7151. "MIT"
  7152. ],
  7153. "authors": [
  7154. {
  7155. "name": "Nicolas Grekas",
  7156. "email": "p@tchwork.com"
  7157. },
  7158. {
  7159. "name": "Symfony Community",
  7160. "homepage": "https://symfony.com/contributors"
  7161. }
  7162. ],
  7163. "description": "Generic abstractions related to dispatching event",
  7164. "homepage": "https://symfony.com",
  7165. "keywords": [
  7166. "abstractions",
  7167. "contracts",
  7168. "decoupling",
  7169. "interfaces",
  7170. "interoperability",
  7171. "standards"
  7172. ],
  7173. "support": {
  7174. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  7175. },
  7176. "funding": [
  7177. {
  7178. "url": "https://symfony.com/sponsor",
  7179. "type": "custom"
  7180. },
  7181. {
  7182. "url": "https://github.com/fabpot",
  7183. "type": "github"
  7184. },
  7185. {
  7186. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7187. "type": "tidelift"
  7188. }
  7189. ],
  7190. "time": "2024-09-25T14:20:29+00:00"
  7191. },
  7192. {
  7193. "name": "symfony/finder",
  7194. "version": "v7.2.2",
  7195. "source": {
  7196. "type": "git",
  7197. "url": "https://github.com/symfony/finder.git",
  7198. "reference": "87a71856f2f56e4100373e92529eed3171695cfb"
  7199. },
  7200. "dist": {
  7201. "type": "zip",
  7202. "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb",
  7203. "reference": "87a71856f2f56e4100373e92529eed3171695cfb",
  7204. "shasum": ""
  7205. },
  7206. "require": {
  7207. "php": ">=8.2"
  7208. },
  7209. "require-dev": {
  7210. "symfony/filesystem": "^6.4|^7.0"
  7211. },
  7212. "type": "library",
  7213. "autoload": {
  7214. "psr-4": {
  7215. "Symfony\\Component\\Finder\\": ""
  7216. },
  7217. "exclude-from-classmap": [
  7218. "/Tests/"
  7219. ]
  7220. },
  7221. "notification-url": "https://packagist.org/downloads/",
  7222. "license": [
  7223. "MIT"
  7224. ],
  7225. "authors": [
  7226. {
  7227. "name": "Fabien Potencier",
  7228. "email": "fabien@symfony.com"
  7229. },
  7230. {
  7231. "name": "Symfony Community",
  7232. "homepage": "https://symfony.com/contributors"
  7233. }
  7234. ],
  7235. "description": "Finds files and directories via an intuitive fluent interface",
  7236. "homepage": "https://symfony.com",
  7237. "support": {
  7238. "source": "https://github.com/symfony/finder/tree/v7.2.2"
  7239. },
  7240. "funding": [
  7241. {
  7242. "url": "https://symfony.com/sponsor",
  7243. "type": "custom"
  7244. },
  7245. {
  7246. "url": "https://github.com/fabpot",
  7247. "type": "github"
  7248. },
  7249. {
  7250. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7251. "type": "tidelift"
  7252. }
  7253. ],
  7254. "time": "2024-12-30T19:00:17+00:00"
  7255. },
  7256. {
  7257. "name": "symfony/html-sanitizer",
  7258. "version": "v7.2.3",
  7259. "source": {
  7260. "type": "git",
  7261. "url": "https://github.com/symfony/html-sanitizer.git",
  7262. "reference": "91443febe34cfa5e8e00425f892e6316db95bc23"
  7263. },
  7264. "dist": {
  7265. "type": "zip",
  7266. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/91443febe34cfa5e8e00425f892e6316db95bc23",
  7267. "reference": "91443febe34cfa5e8e00425f892e6316db95bc23",
  7268. "shasum": ""
  7269. },
  7270. "require": {
  7271. "ext-dom": "*",
  7272. "league/uri": "^6.5|^7.0",
  7273. "masterminds/html5": "^2.7.2",
  7274. "php": ">=8.2"
  7275. },
  7276. "type": "library",
  7277. "autoload": {
  7278. "psr-4": {
  7279. "Symfony\\Component\\HtmlSanitizer\\": ""
  7280. },
  7281. "exclude-from-classmap": [
  7282. "/Tests/"
  7283. ]
  7284. },
  7285. "notification-url": "https://packagist.org/downloads/",
  7286. "license": [
  7287. "MIT"
  7288. ],
  7289. "authors": [
  7290. {
  7291. "name": "Titouan Galopin",
  7292. "email": "galopintitouan@gmail.com"
  7293. },
  7294. {
  7295. "name": "Symfony Community",
  7296. "homepage": "https://symfony.com/contributors"
  7297. }
  7298. ],
  7299. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7300. "homepage": "https://symfony.com",
  7301. "keywords": [
  7302. "Purifier",
  7303. "html",
  7304. "sanitizer"
  7305. ],
  7306. "support": {
  7307. "source": "https://github.com/symfony/html-sanitizer/tree/v7.2.3"
  7308. },
  7309. "funding": [
  7310. {
  7311. "url": "https://symfony.com/sponsor",
  7312. "type": "custom"
  7313. },
  7314. {
  7315. "url": "https://github.com/fabpot",
  7316. "type": "github"
  7317. },
  7318. {
  7319. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7320. "type": "tidelift"
  7321. }
  7322. ],
  7323. "time": "2025-01-27T11:08:17+00:00"
  7324. },
  7325. {
  7326. "name": "symfony/http-foundation",
  7327. "version": "v7.2.3",
  7328. "source": {
  7329. "type": "git",
  7330. "url": "https://github.com/symfony/http-foundation.git",
  7331. "reference": "ee1b504b8926198be89d05e5b6fc4c3810c090f0"
  7332. },
  7333. "dist": {
  7334. "type": "zip",
  7335. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ee1b504b8926198be89d05e5b6fc4c3810c090f0",
  7336. "reference": "ee1b504b8926198be89d05e5b6fc4c3810c090f0",
  7337. "shasum": ""
  7338. },
  7339. "require": {
  7340. "php": ">=8.2",
  7341. "symfony/deprecation-contracts": "^2.5|^3.0",
  7342. "symfony/polyfill-mbstring": "~1.1",
  7343. "symfony/polyfill-php83": "^1.27"
  7344. },
  7345. "conflict": {
  7346. "doctrine/dbal": "<3.6",
  7347. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  7348. },
  7349. "require-dev": {
  7350. "doctrine/dbal": "^3.6|^4",
  7351. "predis/predis": "^1.1|^2.0",
  7352. "symfony/cache": "^6.4.12|^7.1.5",
  7353. "symfony/dependency-injection": "^6.4|^7.0",
  7354. "symfony/expression-language": "^6.4|^7.0",
  7355. "symfony/http-kernel": "^6.4|^7.0",
  7356. "symfony/mime": "^6.4|^7.0",
  7357. "symfony/rate-limiter": "^6.4|^7.0"
  7358. },
  7359. "type": "library",
  7360. "autoload": {
  7361. "psr-4": {
  7362. "Symfony\\Component\\HttpFoundation\\": ""
  7363. },
  7364. "exclude-from-classmap": [
  7365. "/Tests/"
  7366. ]
  7367. },
  7368. "notification-url": "https://packagist.org/downloads/",
  7369. "license": [
  7370. "MIT"
  7371. ],
  7372. "authors": [
  7373. {
  7374. "name": "Fabien Potencier",
  7375. "email": "fabien@symfony.com"
  7376. },
  7377. {
  7378. "name": "Symfony Community",
  7379. "homepage": "https://symfony.com/contributors"
  7380. }
  7381. ],
  7382. "description": "Defines an object-oriented layer for the HTTP specification",
  7383. "homepage": "https://symfony.com",
  7384. "support": {
  7385. "source": "https://github.com/symfony/http-foundation/tree/v7.2.3"
  7386. },
  7387. "funding": [
  7388. {
  7389. "url": "https://symfony.com/sponsor",
  7390. "type": "custom"
  7391. },
  7392. {
  7393. "url": "https://github.com/fabpot",
  7394. "type": "github"
  7395. },
  7396. {
  7397. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7398. "type": "tidelift"
  7399. }
  7400. ],
  7401. "time": "2025-01-17T10:56:55+00:00"
  7402. },
  7403. {
  7404. "name": "symfony/http-kernel",
  7405. "version": "v7.2.3",
  7406. "source": {
  7407. "type": "git",
  7408. "url": "https://github.com/symfony/http-kernel.git",
  7409. "reference": "caae9807f8e25a9b43ce8cc6fafab6cf91f0cc9b"
  7410. },
  7411. "dist": {
  7412. "type": "zip",
  7413. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/caae9807f8e25a9b43ce8cc6fafab6cf91f0cc9b",
  7414. "reference": "caae9807f8e25a9b43ce8cc6fafab6cf91f0cc9b",
  7415. "shasum": ""
  7416. },
  7417. "require": {
  7418. "php": ">=8.2",
  7419. "psr/log": "^1|^2|^3",
  7420. "symfony/deprecation-contracts": "^2.5|^3",
  7421. "symfony/error-handler": "^6.4|^7.0",
  7422. "symfony/event-dispatcher": "^6.4|^7.0",
  7423. "symfony/http-foundation": "^6.4|^7.0",
  7424. "symfony/polyfill-ctype": "^1.8"
  7425. },
  7426. "conflict": {
  7427. "symfony/browser-kit": "<6.4",
  7428. "symfony/cache": "<6.4",
  7429. "symfony/config": "<6.4",
  7430. "symfony/console": "<6.4",
  7431. "symfony/dependency-injection": "<6.4",
  7432. "symfony/doctrine-bridge": "<6.4",
  7433. "symfony/form": "<6.4",
  7434. "symfony/http-client": "<6.4",
  7435. "symfony/http-client-contracts": "<2.5",
  7436. "symfony/mailer": "<6.4",
  7437. "symfony/messenger": "<6.4",
  7438. "symfony/translation": "<6.4",
  7439. "symfony/translation-contracts": "<2.5",
  7440. "symfony/twig-bridge": "<6.4",
  7441. "symfony/validator": "<6.4",
  7442. "symfony/var-dumper": "<6.4",
  7443. "twig/twig": "<3.12"
  7444. },
  7445. "provide": {
  7446. "psr/log-implementation": "1.0|2.0|3.0"
  7447. },
  7448. "require-dev": {
  7449. "psr/cache": "^1.0|^2.0|^3.0",
  7450. "symfony/browser-kit": "^6.4|^7.0",
  7451. "symfony/clock": "^6.4|^7.0",
  7452. "symfony/config": "^6.4|^7.0",
  7453. "symfony/console": "^6.4|^7.0",
  7454. "symfony/css-selector": "^6.4|^7.0",
  7455. "symfony/dependency-injection": "^6.4|^7.0",
  7456. "symfony/dom-crawler": "^6.4|^7.0",
  7457. "symfony/expression-language": "^6.4|^7.0",
  7458. "symfony/finder": "^6.4|^7.0",
  7459. "symfony/http-client-contracts": "^2.5|^3",
  7460. "symfony/process": "^6.4|^7.0",
  7461. "symfony/property-access": "^7.1",
  7462. "symfony/routing": "^6.4|^7.0",
  7463. "symfony/serializer": "^7.1",
  7464. "symfony/stopwatch": "^6.4|^7.0",
  7465. "symfony/translation": "^6.4|^7.0",
  7466. "symfony/translation-contracts": "^2.5|^3",
  7467. "symfony/uid": "^6.4|^7.0",
  7468. "symfony/validator": "^6.4|^7.0",
  7469. "symfony/var-dumper": "^6.4|^7.0",
  7470. "symfony/var-exporter": "^6.4|^7.0",
  7471. "twig/twig": "^3.12"
  7472. },
  7473. "type": "library",
  7474. "autoload": {
  7475. "psr-4": {
  7476. "Symfony\\Component\\HttpKernel\\": ""
  7477. },
  7478. "exclude-from-classmap": [
  7479. "/Tests/"
  7480. ]
  7481. },
  7482. "notification-url": "https://packagist.org/downloads/",
  7483. "license": [
  7484. "MIT"
  7485. ],
  7486. "authors": [
  7487. {
  7488. "name": "Fabien Potencier",
  7489. "email": "fabien@symfony.com"
  7490. },
  7491. {
  7492. "name": "Symfony Community",
  7493. "homepage": "https://symfony.com/contributors"
  7494. }
  7495. ],
  7496. "description": "Provides a structured process for converting a Request into a Response",
  7497. "homepage": "https://symfony.com",
  7498. "support": {
  7499. "source": "https://github.com/symfony/http-kernel/tree/v7.2.3"
  7500. },
  7501. "funding": [
  7502. {
  7503. "url": "https://symfony.com/sponsor",
  7504. "type": "custom"
  7505. },
  7506. {
  7507. "url": "https://github.com/fabpot",
  7508. "type": "github"
  7509. },
  7510. {
  7511. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7512. "type": "tidelift"
  7513. }
  7514. ],
  7515. "time": "2025-01-29T07:40:13+00:00"
  7516. },
  7517. {
  7518. "name": "symfony/intl",
  7519. "version": "v6.4.15",
  7520. "source": {
  7521. "type": "git",
  7522. "url": "https://github.com/symfony/intl.git",
  7523. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6"
  7524. },
  7525. "dist": {
  7526. "type": "zip",
  7527. "url": "https://api.github.com/repos/symfony/intl/zipball/b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  7528. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  7529. "shasum": ""
  7530. },
  7531. "require": {
  7532. "php": ">=8.1"
  7533. },
  7534. "require-dev": {
  7535. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7536. "symfony/finder": "^5.4|^6.0|^7.0",
  7537. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7538. },
  7539. "type": "library",
  7540. "autoload": {
  7541. "psr-4": {
  7542. "Symfony\\Component\\Intl\\": ""
  7543. },
  7544. "exclude-from-classmap": [
  7545. "/Tests/",
  7546. "/Resources/data/"
  7547. ]
  7548. },
  7549. "notification-url": "https://packagist.org/downloads/",
  7550. "license": [
  7551. "MIT"
  7552. ],
  7553. "authors": [
  7554. {
  7555. "name": "Bernhard Schussek",
  7556. "email": "bschussek@gmail.com"
  7557. },
  7558. {
  7559. "name": "Eriksen Costa",
  7560. "email": "eriksen.costa@infranology.com.br"
  7561. },
  7562. {
  7563. "name": "Igor Wiedler",
  7564. "email": "igor@wiedler.ch"
  7565. },
  7566. {
  7567. "name": "Symfony Community",
  7568. "homepage": "https://symfony.com/contributors"
  7569. }
  7570. ],
  7571. "description": "Provides access to the localization data of the ICU library",
  7572. "homepage": "https://symfony.com",
  7573. "keywords": [
  7574. "i18n",
  7575. "icu",
  7576. "internationalization",
  7577. "intl",
  7578. "l10n",
  7579. "localization"
  7580. ],
  7581. "support": {
  7582. "source": "https://github.com/symfony/intl/tree/v6.4.15"
  7583. },
  7584. "funding": [
  7585. {
  7586. "url": "https://symfony.com/sponsor",
  7587. "type": "custom"
  7588. },
  7589. {
  7590. "url": "https://github.com/fabpot",
  7591. "type": "github"
  7592. },
  7593. {
  7594. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7595. "type": "tidelift"
  7596. }
  7597. ],
  7598. "time": "2024-11-08T15:28:48+00:00"
  7599. },
  7600. {
  7601. "name": "symfony/mailer",
  7602. "version": "v7.2.3",
  7603. "source": {
  7604. "type": "git",
  7605. "url": "https://github.com/symfony/mailer.git",
  7606. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3"
  7607. },
  7608. "dist": {
  7609. "type": "zip",
  7610. "url": "https://api.github.com/repos/symfony/mailer/zipball/f3871b182c44997cf039f3b462af4a48fb85f9d3",
  7611. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3",
  7612. "shasum": ""
  7613. },
  7614. "require": {
  7615. "egulias/email-validator": "^2.1.10|^3|^4",
  7616. "php": ">=8.2",
  7617. "psr/event-dispatcher": "^1",
  7618. "psr/log": "^1|^2|^3",
  7619. "symfony/event-dispatcher": "^6.4|^7.0",
  7620. "symfony/mime": "^7.2",
  7621. "symfony/service-contracts": "^2.5|^3"
  7622. },
  7623. "conflict": {
  7624. "symfony/http-client-contracts": "<2.5",
  7625. "symfony/http-kernel": "<6.4",
  7626. "symfony/messenger": "<6.4",
  7627. "symfony/mime": "<6.4",
  7628. "symfony/twig-bridge": "<6.4"
  7629. },
  7630. "require-dev": {
  7631. "symfony/console": "^6.4|^7.0",
  7632. "symfony/http-client": "^6.4|^7.0",
  7633. "symfony/messenger": "^6.4|^7.0",
  7634. "symfony/twig-bridge": "^6.4|^7.0"
  7635. },
  7636. "type": "library",
  7637. "autoload": {
  7638. "psr-4": {
  7639. "Symfony\\Component\\Mailer\\": ""
  7640. },
  7641. "exclude-from-classmap": [
  7642. "/Tests/"
  7643. ]
  7644. },
  7645. "notification-url": "https://packagist.org/downloads/",
  7646. "license": [
  7647. "MIT"
  7648. ],
  7649. "authors": [
  7650. {
  7651. "name": "Fabien Potencier",
  7652. "email": "fabien@symfony.com"
  7653. },
  7654. {
  7655. "name": "Symfony Community",
  7656. "homepage": "https://symfony.com/contributors"
  7657. }
  7658. ],
  7659. "description": "Helps sending emails",
  7660. "homepage": "https://symfony.com",
  7661. "support": {
  7662. "source": "https://github.com/symfony/mailer/tree/v7.2.3"
  7663. },
  7664. "funding": [
  7665. {
  7666. "url": "https://symfony.com/sponsor",
  7667. "type": "custom"
  7668. },
  7669. {
  7670. "url": "https://github.com/fabpot",
  7671. "type": "github"
  7672. },
  7673. {
  7674. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7675. "type": "tidelift"
  7676. }
  7677. ],
  7678. "time": "2025-01-27T11:08:17+00:00"
  7679. },
  7680. {
  7681. "name": "symfony/mime",
  7682. "version": "v7.2.3",
  7683. "source": {
  7684. "type": "git",
  7685. "url": "https://github.com/symfony/mime.git",
  7686. "reference": "2fc3b4bd67e4747e45195bc4c98bea4628476204"
  7687. },
  7688. "dist": {
  7689. "type": "zip",
  7690. "url": "https://api.github.com/repos/symfony/mime/zipball/2fc3b4bd67e4747e45195bc4c98bea4628476204",
  7691. "reference": "2fc3b4bd67e4747e45195bc4c98bea4628476204",
  7692. "shasum": ""
  7693. },
  7694. "require": {
  7695. "php": ">=8.2",
  7696. "symfony/polyfill-intl-idn": "^1.10",
  7697. "symfony/polyfill-mbstring": "^1.0"
  7698. },
  7699. "conflict": {
  7700. "egulias/email-validator": "~3.0.0",
  7701. "phpdocumentor/reflection-docblock": "<3.2.2",
  7702. "phpdocumentor/type-resolver": "<1.4.0",
  7703. "symfony/mailer": "<6.4",
  7704. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7705. },
  7706. "require-dev": {
  7707. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7708. "league/html-to-markdown": "^5.0",
  7709. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7710. "symfony/dependency-injection": "^6.4|^7.0",
  7711. "symfony/process": "^6.4|^7.0",
  7712. "symfony/property-access": "^6.4|^7.0",
  7713. "symfony/property-info": "^6.4|^7.0",
  7714. "symfony/serializer": "^6.4.3|^7.0.3"
  7715. },
  7716. "type": "library",
  7717. "autoload": {
  7718. "psr-4": {
  7719. "Symfony\\Component\\Mime\\": ""
  7720. },
  7721. "exclude-from-classmap": [
  7722. "/Tests/"
  7723. ]
  7724. },
  7725. "notification-url": "https://packagist.org/downloads/",
  7726. "license": [
  7727. "MIT"
  7728. ],
  7729. "authors": [
  7730. {
  7731. "name": "Fabien Potencier",
  7732. "email": "fabien@symfony.com"
  7733. },
  7734. {
  7735. "name": "Symfony Community",
  7736. "homepage": "https://symfony.com/contributors"
  7737. }
  7738. ],
  7739. "description": "Allows manipulating MIME messages",
  7740. "homepage": "https://symfony.com",
  7741. "keywords": [
  7742. "mime",
  7743. "mime-type"
  7744. ],
  7745. "support": {
  7746. "source": "https://github.com/symfony/mime/tree/v7.2.3"
  7747. },
  7748. "funding": [
  7749. {
  7750. "url": "https://symfony.com/sponsor",
  7751. "type": "custom"
  7752. },
  7753. {
  7754. "url": "https://github.com/fabpot",
  7755. "type": "github"
  7756. },
  7757. {
  7758. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7759. "type": "tidelift"
  7760. }
  7761. ],
  7762. "time": "2025-01-27T11:08:17+00:00"
  7763. },
  7764. {
  7765. "name": "symfony/polyfill-ctype",
  7766. "version": "v1.31.0",
  7767. "source": {
  7768. "type": "git",
  7769. "url": "https://github.com/symfony/polyfill-ctype.git",
  7770. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7771. },
  7772. "dist": {
  7773. "type": "zip",
  7774. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7775. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7776. "shasum": ""
  7777. },
  7778. "require": {
  7779. "php": ">=7.2"
  7780. },
  7781. "provide": {
  7782. "ext-ctype": "*"
  7783. },
  7784. "suggest": {
  7785. "ext-ctype": "For best performance"
  7786. },
  7787. "type": "library",
  7788. "extra": {
  7789. "thanks": {
  7790. "url": "https://github.com/symfony/polyfill",
  7791. "name": "symfony/polyfill"
  7792. }
  7793. },
  7794. "autoload": {
  7795. "files": [
  7796. "bootstrap.php"
  7797. ],
  7798. "psr-4": {
  7799. "Symfony\\Polyfill\\Ctype\\": ""
  7800. }
  7801. },
  7802. "notification-url": "https://packagist.org/downloads/",
  7803. "license": [
  7804. "MIT"
  7805. ],
  7806. "authors": [
  7807. {
  7808. "name": "Gert de Pagter",
  7809. "email": "BackEndTea@gmail.com"
  7810. },
  7811. {
  7812. "name": "Symfony Community",
  7813. "homepage": "https://symfony.com/contributors"
  7814. }
  7815. ],
  7816. "description": "Symfony polyfill for ctype functions",
  7817. "homepage": "https://symfony.com",
  7818. "keywords": [
  7819. "compatibility",
  7820. "ctype",
  7821. "polyfill",
  7822. "portable"
  7823. ],
  7824. "support": {
  7825. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7826. },
  7827. "funding": [
  7828. {
  7829. "url": "https://symfony.com/sponsor",
  7830. "type": "custom"
  7831. },
  7832. {
  7833. "url": "https://github.com/fabpot",
  7834. "type": "github"
  7835. },
  7836. {
  7837. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7838. "type": "tidelift"
  7839. }
  7840. ],
  7841. "time": "2024-09-09T11:45:10+00:00"
  7842. },
  7843. {
  7844. "name": "symfony/polyfill-intl-grapheme",
  7845. "version": "v1.31.0",
  7846. "source": {
  7847. "type": "git",
  7848. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7849. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7850. },
  7851. "dist": {
  7852. "type": "zip",
  7853. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7854. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7855. "shasum": ""
  7856. },
  7857. "require": {
  7858. "php": ">=7.2"
  7859. },
  7860. "suggest": {
  7861. "ext-intl": "For best performance"
  7862. },
  7863. "type": "library",
  7864. "extra": {
  7865. "thanks": {
  7866. "url": "https://github.com/symfony/polyfill",
  7867. "name": "symfony/polyfill"
  7868. }
  7869. },
  7870. "autoload": {
  7871. "files": [
  7872. "bootstrap.php"
  7873. ],
  7874. "psr-4": {
  7875. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7876. }
  7877. },
  7878. "notification-url": "https://packagist.org/downloads/",
  7879. "license": [
  7880. "MIT"
  7881. ],
  7882. "authors": [
  7883. {
  7884. "name": "Nicolas Grekas",
  7885. "email": "p@tchwork.com"
  7886. },
  7887. {
  7888. "name": "Symfony Community",
  7889. "homepage": "https://symfony.com/contributors"
  7890. }
  7891. ],
  7892. "description": "Symfony polyfill for intl's grapheme_* functions",
  7893. "homepage": "https://symfony.com",
  7894. "keywords": [
  7895. "compatibility",
  7896. "grapheme",
  7897. "intl",
  7898. "polyfill",
  7899. "portable",
  7900. "shim"
  7901. ],
  7902. "support": {
  7903. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7904. },
  7905. "funding": [
  7906. {
  7907. "url": "https://symfony.com/sponsor",
  7908. "type": "custom"
  7909. },
  7910. {
  7911. "url": "https://github.com/fabpot",
  7912. "type": "github"
  7913. },
  7914. {
  7915. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7916. "type": "tidelift"
  7917. }
  7918. ],
  7919. "time": "2024-09-09T11:45:10+00:00"
  7920. },
  7921. {
  7922. "name": "symfony/polyfill-intl-idn",
  7923. "version": "v1.31.0",
  7924. "source": {
  7925. "type": "git",
  7926. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7927. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7928. },
  7929. "dist": {
  7930. "type": "zip",
  7931. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7932. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7933. "shasum": ""
  7934. },
  7935. "require": {
  7936. "php": ">=7.2",
  7937. "symfony/polyfill-intl-normalizer": "^1.10"
  7938. },
  7939. "suggest": {
  7940. "ext-intl": "For best performance"
  7941. },
  7942. "type": "library",
  7943. "extra": {
  7944. "thanks": {
  7945. "url": "https://github.com/symfony/polyfill",
  7946. "name": "symfony/polyfill"
  7947. }
  7948. },
  7949. "autoload": {
  7950. "files": [
  7951. "bootstrap.php"
  7952. ],
  7953. "psr-4": {
  7954. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7955. }
  7956. },
  7957. "notification-url": "https://packagist.org/downloads/",
  7958. "license": [
  7959. "MIT"
  7960. ],
  7961. "authors": [
  7962. {
  7963. "name": "Laurent Bassin",
  7964. "email": "laurent@bassin.info"
  7965. },
  7966. {
  7967. "name": "Trevor Rowbotham",
  7968. "email": "trevor.rowbotham@pm.me"
  7969. },
  7970. {
  7971. "name": "Symfony Community",
  7972. "homepage": "https://symfony.com/contributors"
  7973. }
  7974. ],
  7975. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7976. "homepage": "https://symfony.com",
  7977. "keywords": [
  7978. "compatibility",
  7979. "idn",
  7980. "intl",
  7981. "polyfill",
  7982. "portable",
  7983. "shim"
  7984. ],
  7985. "support": {
  7986. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7987. },
  7988. "funding": [
  7989. {
  7990. "url": "https://symfony.com/sponsor",
  7991. "type": "custom"
  7992. },
  7993. {
  7994. "url": "https://github.com/fabpot",
  7995. "type": "github"
  7996. },
  7997. {
  7998. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7999. "type": "tidelift"
  8000. }
  8001. ],
  8002. "time": "2024-09-09T11:45:10+00:00"
  8003. },
  8004. {
  8005. "name": "symfony/polyfill-intl-normalizer",
  8006. "version": "v1.31.0",
  8007. "source": {
  8008. "type": "git",
  8009. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8010. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8011. },
  8012. "dist": {
  8013. "type": "zip",
  8014. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8015. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8016. "shasum": ""
  8017. },
  8018. "require": {
  8019. "php": ">=7.2"
  8020. },
  8021. "suggest": {
  8022. "ext-intl": "For best performance"
  8023. },
  8024. "type": "library",
  8025. "extra": {
  8026. "thanks": {
  8027. "url": "https://github.com/symfony/polyfill",
  8028. "name": "symfony/polyfill"
  8029. }
  8030. },
  8031. "autoload": {
  8032. "files": [
  8033. "bootstrap.php"
  8034. ],
  8035. "psr-4": {
  8036. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8037. },
  8038. "classmap": [
  8039. "Resources/stubs"
  8040. ]
  8041. },
  8042. "notification-url": "https://packagist.org/downloads/",
  8043. "license": [
  8044. "MIT"
  8045. ],
  8046. "authors": [
  8047. {
  8048. "name": "Nicolas Grekas",
  8049. "email": "p@tchwork.com"
  8050. },
  8051. {
  8052. "name": "Symfony Community",
  8053. "homepage": "https://symfony.com/contributors"
  8054. }
  8055. ],
  8056. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8057. "homepage": "https://symfony.com",
  8058. "keywords": [
  8059. "compatibility",
  8060. "intl",
  8061. "normalizer",
  8062. "polyfill",
  8063. "portable",
  8064. "shim"
  8065. ],
  8066. "support": {
  8067. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  8068. },
  8069. "funding": [
  8070. {
  8071. "url": "https://symfony.com/sponsor",
  8072. "type": "custom"
  8073. },
  8074. {
  8075. "url": "https://github.com/fabpot",
  8076. "type": "github"
  8077. },
  8078. {
  8079. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8080. "type": "tidelift"
  8081. }
  8082. ],
  8083. "time": "2024-09-09T11:45:10+00:00"
  8084. },
  8085. {
  8086. "name": "symfony/polyfill-mbstring",
  8087. "version": "v1.31.0",
  8088. "source": {
  8089. "type": "git",
  8090. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8091. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  8092. },
  8093. "dist": {
  8094. "type": "zip",
  8095. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8096. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8097. "shasum": ""
  8098. },
  8099. "require": {
  8100. "php": ">=7.2"
  8101. },
  8102. "provide": {
  8103. "ext-mbstring": "*"
  8104. },
  8105. "suggest": {
  8106. "ext-mbstring": "For best performance"
  8107. },
  8108. "type": "library",
  8109. "extra": {
  8110. "thanks": {
  8111. "url": "https://github.com/symfony/polyfill",
  8112. "name": "symfony/polyfill"
  8113. }
  8114. },
  8115. "autoload": {
  8116. "files": [
  8117. "bootstrap.php"
  8118. ],
  8119. "psr-4": {
  8120. "Symfony\\Polyfill\\Mbstring\\": ""
  8121. }
  8122. },
  8123. "notification-url": "https://packagist.org/downloads/",
  8124. "license": [
  8125. "MIT"
  8126. ],
  8127. "authors": [
  8128. {
  8129. "name": "Nicolas Grekas",
  8130. "email": "p@tchwork.com"
  8131. },
  8132. {
  8133. "name": "Symfony Community",
  8134. "homepage": "https://symfony.com/contributors"
  8135. }
  8136. ],
  8137. "description": "Symfony polyfill for the Mbstring extension",
  8138. "homepage": "https://symfony.com",
  8139. "keywords": [
  8140. "compatibility",
  8141. "mbstring",
  8142. "polyfill",
  8143. "portable",
  8144. "shim"
  8145. ],
  8146. "support": {
  8147. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  8148. },
  8149. "funding": [
  8150. {
  8151. "url": "https://symfony.com/sponsor",
  8152. "type": "custom"
  8153. },
  8154. {
  8155. "url": "https://github.com/fabpot",
  8156. "type": "github"
  8157. },
  8158. {
  8159. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8160. "type": "tidelift"
  8161. }
  8162. ],
  8163. "time": "2024-09-09T11:45:10+00:00"
  8164. },
  8165. {
  8166. "name": "symfony/polyfill-php80",
  8167. "version": "v1.31.0",
  8168. "source": {
  8169. "type": "git",
  8170. "url": "https://github.com/symfony/polyfill-php80.git",
  8171. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8172. },
  8173. "dist": {
  8174. "type": "zip",
  8175. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8176. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8177. "shasum": ""
  8178. },
  8179. "require": {
  8180. "php": ">=7.2"
  8181. },
  8182. "type": "library",
  8183. "extra": {
  8184. "thanks": {
  8185. "url": "https://github.com/symfony/polyfill",
  8186. "name": "symfony/polyfill"
  8187. }
  8188. },
  8189. "autoload": {
  8190. "files": [
  8191. "bootstrap.php"
  8192. ],
  8193. "psr-4": {
  8194. "Symfony\\Polyfill\\Php80\\": ""
  8195. },
  8196. "classmap": [
  8197. "Resources/stubs"
  8198. ]
  8199. },
  8200. "notification-url": "https://packagist.org/downloads/",
  8201. "license": [
  8202. "MIT"
  8203. ],
  8204. "authors": [
  8205. {
  8206. "name": "Ion Bazan",
  8207. "email": "ion.bazan@gmail.com"
  8208. },
  8209. {
  8210. "name": "Nicolas Grekas",
  8211. "email": "p@tchwork.com"
  8212. },
  8213. {
  8214. "name": "Symfony Community",
  8215. "homepage": "https://symfony.com/contributors"
  8216. }
  8217. ],
  8218. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8219. "homepage": "https://symfony.com",
  8220. "keywords": [
  8221. "compatibility",
  8222. "polyfill",
  8223. "portable",
  8224. "shim"
  8225. ],
  8226. "support": {
  8227. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8228. },
  8229. "funding": [
  8230. {
  8231. "url": "https://symfony.com/sponsor",
  8232. "type": "custom"
  8233. },
  8234. {
  8235. "url": "https://github.com/fabpot",
  8236. "type": "github"
  8237. },
  8238. {
  8239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8240. "type": "tidelift"
  8241. }
  8242. ],
  8243. "time": "2024-09-09T11:45:10+00:00"
  8244. },
  8245. {
  8246. "name": "symfony/polyfill-php83",
  8247. "version": "v1.31.0",
  8248. "source": {
  8249. "type": "git",
  8250. "url": "https://github.com/symfony/polyfill-php83.git",
  8251. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  8252. },
  8253. "dist": {
  8254. "type": "zip",
  8255. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  8256. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  8257. "shasum": ""
  8258. },
  8259. "require": {
  8260. "php": ">=7.2"
  8261. },
  8262. "type": "library",
  8263. "extra": {
  8264. "thanks": {
  8265. "url": "https://github.com/symfony/polyfill",
  8266. "name": "symfony/polyfill"
  8267. }
  8268. },
  8269. "autoload": {
  8270. "files": [
  8271. "bootstrap.php"
  8272. ],
  8273. "psr-4": {
  8274. "Symfony\\Polyfill\\Php83\\": ""
  8275. },
  8276. "classmap": [
  8277. "Resources/stubs"
  8278. ]
  8279. },
  8280. "notification-url": "https://packagist.org/downloads/",
  8281. "license": [
  8282. "MIT"
  8283. ],
  8284. "authors": [
  8285. {
  8286. "name": "Nicolas Grekas",
  8287. "email": "p@tchwork.com"
  8288. },
  8289. {
  8290. "name": "Symfony Community",
  8291. "homepage": "https://symfony.com/contributors"
  8292. }
  8293. ],
  8294. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8295. "homepage": "https://symfony.com",
  8296. "keywords": [
  8297. "compatibility",
  8298. "polyfill",
  8299. "portable",
  8300. "shim"
  8301. ],
  8302. "support": {
  8303. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  8304. },
  8305. "funding": [
  8306. {
  8307. "url": "https://symfony.com/sponsor",
  8308. "type": "custom"
  8309. },
  8310. {
  8311. "url": "https://github.com/fabpot",
  8312. "type": "github"
  8313. },
  8314. {
  8315. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8316. "type": "tidelift"
  8317. }
  8318. ],
  8319. "time": "2024-09-09T11:45:10+00:00"
  8320. },
  8321. {
  8322. "name": "symfony/polyfill-uuid",
  8323. "version": "v1.31.0",
  8324. "source": {
  8325. "type": "git",
  8326. "url": "https://github.com/symfony/polyfill-uuid.git",
  8327. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  8328. },
  8329. "dist": {
  8330. "type": "zip",
  8331. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8332. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8333. "shasum": ""
  8334. },
  8335. "require": {
  8336. "php": ">=7.2"
  8337. },
  8338. "provide": {
  8339. "ext-uuid": "*"
  8340. },
  8341. "suggest": {
  8342. "ext-uuid": "For best performance"
  8343. },
  8344. "type": "library",
  8345. "extra": {
  8346. "thanks": {
  8347. "url": "https://github.com/symfony/polyfill",
  8348. "name": "symfony/polyfill"
  8349. }
  8350. },
  8351. "autoload": {
  8352. "files": [
  8353. "bootstrap.php"
  8354. ],
  8355. "psr-4": {
  8356. "Symfony\\Polyfill\\Uuid\\": ""
  8357. }
  8358. },
  8359. "notification-url": "https://packagist.org/downloads/",
  8360. "license": [
  8361. "MIT"
  8362. ],
  8363. "authors": [
  8364. {
  8365. "name": "Grégoire Pineau",
  8366. "email": "lyrixx@lyrixx.info"
  8367. },
  8368. {
  8369. "name": "Symfony Community",
  8370. "homepage": "https://symfony.com/contributors"
  8371. }
  8372. ],
  8373. "description": "Symfony polyfill for uuid functions",
  8374. "homepage": "https://symfony.com",
  8375. "keywords": [
  8376. "compatibility",
  8377. "polyfill",
  8378. "portable",
  8379. "uuid"
  8380. ],
  8381. "support": {
  8382. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  8383. },
  8384. "funding": [
  8385. {
  8386. "url": "https://symfony.com/sponsor",
  8387. "type": "custom"
  8388. },
  8389. {
  8390. "url": "https://github.com/fabpot",
  8391. "type": "github"
  8392. },
  8393. {
  8394. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8395. "type": "tidelift"
  8396. }
  8397. ],
  8398. "time": "2024-09-09T11:45:10+00:00"
  8399. },
  8400. {
  8401. "name": "symfony/process",
  8402. "version": "v7.2.0",
  8403. "source": {
  8404. "type": "git",
  8405. "url": "https://github.com/symfony/process.git",
  8406. "reference": "d34b22ba9390ec19d2dd966c40aa9e8462f27a7e"
  8407. },
  8408. "dist": {
  8409. "type": "zip",
  8410. "url": "https://api.github.com/repos/symfony/process/zipball/d34b22ba9390ec19d2dd966c40aa9e8462f27a7e",
  8411. "reference": "d34b22ba9390ec19d2dd966c40aa9e8462f27a7e",
  8412. "shasum": ""
  8413. },
  8414. "require": {
  8415. "php": ">=8.2"
  8416. },
  8417. "type": "library",
  8418. "autoload": {
  8419. "psr-4": {
  8420. "Symfony\\Component\\Process\\": ""
  8421. },
  8422. "exclude-from-classmap": [
  8423. "/Tests/"
  8424. ]
  8425. },
  8426. "notification-url": "https://packagist.org/downloads/",
  8427. "license": [
  8428. "MIT"
  8429. ],
  8430. "authors": [
  8431. {
  8432. "name": "Fabien Potencier",
  8433. "email": "fabien@symfony.com"
  8434. },
  8435. {
  8436. "name": "Symfony Community",
  8437. "homepage": "https://symfony.com/contributors"
  8438. }
  8439. ],
  8440. "description": "Executes commands in sub-processes",
  8441. "homepage": "https://symfony.com",
  8442. "support": {
  8443. "source": "https://github.com/symfony/process/tree/v7.2.0"
  8444. },
  8445. "funding": [
  8446. {
  8447. "url": "https://symfony.com/sponsor",
  8448. "type": "custom"
  8449. },
  8450. {
  8451. "url": "https://github.com/fabpot",
  8452. "type": "github"
  8453. },
  8454. {
  8455. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8456. "type": "tidelift"
  8457. }
  8458. ],
  8459. "time": "2024-11-06T14:24:19+00:00"
  8460. },
  8461. {
  8462. "name": "symfony/routing",
  8463. "version": "v7.2.3",
  8464. "source": {
  8465. "type": "git",
  8466. "url": "https://github.com/symfony/routing.git",
  8467. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996"
  8468. },
  8469. "dist": {
  8470. "type": "zip",
  8471. "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996",
  8472. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996",
  8473. "shasum": ""
  8474. },
  8475. "require": {
  8476. "php": ">=8.2",
  8477. "symfony/deprecation-contracts": "^2.5|^3"
  8478. },
  8479. "conflict": {
  8480. "symfony/config": "<6.4",
  8481. "symfony/dependency-injection": "<6.4",
  8482. "symfony/yaml": "<6.4"
  8483. },
  8484. "require-dev": {
  8485. "psr/log": "^1|^2|^3",
  8486. "symfony/config": "^6.4|^7.0",
  8487. "symfony/dependency-injection": "^6.4|^7.0",
  8488. "symfony/expression-language": "^6.4|^7.0",
  8489. "symfony/http-foundation": "^6.4|^7.0",
  8490. "symfony/yaml": "^6.4|^7.0"
  8491. },
  8492. "type": "library",
  8493. "autoload": {
  8494. "psr-4": {
  8495. "Symfony\\Component\\Routing\\": ""
  8496. },
  8497. "exclude-from-classmap": [
  8498. "/Tests/"
  8499. ]
  8500. },
  8501. "notification-url": "https://packagist.org/downloads/",
  8502. "license": [
  8503. "MIT"
  8504. ],
  8505. "authors": [
  8506. {
  8507. "name": "Fabien Potencier",
  8508. "email": "fabien@symfony.com"
  8509. },
  8510. {
  8511. "name": "Symfony Community",
  8512. "homepage": "https://symfony.com/contributors"
  8513. }
  8514. ],
  8515. "description": "Maps an HTTP request to a set of configuration variables",
  8516. "homepage": "https://symfony.com",
  8517. "keywords": [
  8518. "router",
  8519. "routing",
  8520. "uri",
  8521. "url"
  8522. ],
  8523. "support": {
  8524. "source": "https://github.com/symfony/routing/tree/v7.2.3"
  8525. },
  8526. "funding": [
  8527. {
  8528. "url": "https://symfony.com/sponsor",
  8529. "type": "custom"
  8530. },
  8531. {
  8532. "url": "https://github.com/fabpot",
  8533. "type": "github"
  8534. },
  8535. {
  8536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8537. "type": "tidelift"
  8538. }
  8539. ],
  8540. "time": "2025-01-17T10:56:55+00:00"
  8541. },
  8542. {
  8543. "name": "symfony/service-contracts",
  8544. "version": "v3.5.1",
  8545. "source": {
  8546. "type": "git",
  8547. "url": "https://github.com/symfony/service-contracts.git",
  8548. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  8549. },
  8550. "dist": {
  8551. "type": "zip",
  8552. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8553. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8554. "shasum": ""
  8555. },
  8556. "require": {
  8557. "php": ">=8.1",
  8558. "psr/container": "^1.1|^2.0",
  8559. "symfony/deprecation-contracts": "^2.5|^3"
  8560. },
  8561. "conflict": {
  8562. "ext-psr": "<1.1|>=2"
  8563. },
  8564. "type": "library",
  8565. "extra": {
  8566. "thanks": {
  8567. "url": "https://github.com/symfony/contracts",
  8568. "name": "symfony/contracts"
  8569. },
  8570. "branch-alias": {
  8571. "dev-main": "3.5-dev"
  8572. }
  8573. },
  8574. "autoload": {
  8575. "psr-4": {
  8576. "Symfony\\Contracts\\Service\\": ""
  8577. },
  8578. "exclude-from-classmap": [
  8579. "/Test/"
  8580. ]
  8581. },
  8582. "notification-url": "https://packagist.org/downloads/",
  8583. "license": [
  8584. "MIT"
  8585. ],
  8586. "authors": [
  8587. {
  8588. "name": "Nicolas Grekas",
  8589. "email": "p@tchwork.com"
  8590. },
  8591. {
  8592. "name": "Symfony Community",
  8593. "homepage": "https://symfony.com/contributors"
  8594. }
  8595. ],
  8596. "description": "Generic abstractions related to writing services",
  8597. "homepage": "https://symfony.com",
  8598. "keywords": [
  8599. "abstractions",
  8600. "contracts",
  8601. "decoupling",
  8602. "interfaces",
  8603. "interoperability",
  8604. "standards"
  8605. ],
  8606. "support": {
  8607. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  8608. },
  8609. "funding": [
  8610. {
  8611. "url": "https://symfony.com/sponsor",
  8612. "type": "custom"
  8613. },
  8614. {
  8615. "url": "https://github.com/fabpot",
  8616. "type": "github"
  8617. },
  8618. {
  8619. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8620. "type": "tidelift"
  8621. }
  8622. ],
  8623. "time": "2024-09-25T14:20:29+00:00"
  8624. },
  8625. {
  8626. "name": "symfony/string",
  8627. "version": "v7.2.0",
  8628. "source": {
  8629. "type": "git",
  8630. "url": "https://github.com/symfony/string.git",
  8631. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82"
  8632. },
  8633. "dist": {
  8634. "type": "zip",
  8635. "url": "https://api.github.com/repos/symfony/string/zipball/446e0d146f991dde3e73f45f2c97a9faad773c82",
  8636. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82",
  8637. "shasum": ""
  8638. },
  8639. "require": {
  8640. "php": ">=8.2",
  8641. "symfony/polyfill-ctype": "~1.8",
  8642. "symfony/polyfill-intl-grapheme": "~1.0",
  8643. "symfony/polyfill-intl-normalizer": "~1.0",
  8644. "symfony/polyfill-mbstring": "~1.0"
  8645. },
  8646. "conflict": {
  8647. "symfony/translation-contracts": "<2.5"
  8648. },
  8649. "require-dev": {
  8650. "symfony/emoji": "^7.1",
  8651. "symfony/error-handler": "^6.4|^7.0",
  8652. "symfony/http-client": "^6.4|^7.0",
  8653. "symfony/intl": "^6.4|^7.0",
  8654. "symfony/translation-contracts": "^2.5|^3.0",
  8655. "symfony/var-exporter": "^6.4|^7.0"
  8656. },
  8657. "type": "library",
  8658. "autoload": {
  8659. "files": [
  8660. "Resources/functions.php"
  8661. ],
  8662. "psr-4": {
  8663. "Symfony\\Component\\String\\": ""
  8664. },
  8665. "exclude-from-classmap": [
  8666. "/Tests/"
  8667. ]
  8668. },
  8669. "notification-url": "https://packagist.org/downloads/",
  8670. "license": [
  8671. "MIT"
  8672. ],
  8673. "authors": [
  8674. {
  8675. "name": "Nicolas Grekas",
  8676. "email": "p@tchwork.com"
  8677. },
  8678. {
  8679. "name": "Symfony Community",
  8680. "homepage": "https://symfony.com/contributors"
  8681. }
  8682. ],
  8683. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8684. "homepage": "https://symfony.com",
  8685. "keywords": [
  8686. "grapheme",
  8687. "i18n",
  8688. "string",
  8689. "unicode",
  8690. "utf-8",
  8691. "utf8"
  8692. ],
  8693. "support": {
  8694. "source": "https://github.com/symfony/string/tree/v7.2.0"
  8695. },
  8696. "funding": [
  8697. {
  8698. "url": "https://symfony.com/sponsor",
  8699. "type": "custom"
  8700. },
  8701. {
  8702. "url": "https://github.com/fabpot",
  8703. "type": "github"
  8704. },
  8705. {
  8706. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8707. "type": "tidelift"
  8708. }
  8709. ],
  8710. "time": "2024-11-13T13:31:26+00:00"
  8711. },
  8712. {
  8713. "name": "symfony/translation",
  8714. "version": "v7.2.2",
  8715. "source": {
  8716. "type": "git",
  8717. "url": "https://github.com/symfony/translation.git",
  8718. "reference": "e2674a30132b7cc4d74540d6c2573aa363f05923"
  8719. },
  8720. "dist": {
  8721. "type": "zip",
  8722. "url": "https://api.github.com/repos/symfony/translation/zipball/e2674a30132b7cc4d74540d6c2573aa363f05923",
  8723. "reference": "e2674a30132b7cc4d74540d6c2573aa363f05923",
  8724. "shasum": ""
  8725. },
  8726. "require": {
  8727. "php": ">=8.2",
  8728. "symfony/deprecation-contracts": "^2.5|^3",
  8729. "symfony/polyfill-mbstring": "~1.0",
  8730. "symfony/translation-contracts": "^2.5|^3.0"
  8731. },
  8732. "conflict": {
  8733. "symfony/config": "<6.4",
  8734. "symfony/console": "<6.4",
  8735. "symfony/dependency-injection": "<6.4",
  8736. "symfony/http-client-contracts": "<2.5",
  8737. "symfony/http-kernel": "<6.4",
  8738. "symfony/service-contracts": "<2.5",
  8739. "symfony/twig-bundle": "<6.4",
  8740. "symfony/yaml": "<6.4"
  8741. },
  8742. "provide": {
  8743. "symfony/translation-implementation": "2.3|3.0"
  8744. },
  8745. "require-dev": {
  8746. "nikic/php-parser": "^4.18|^5.0",
  8747. "psr/log": "^1|^2|^3",
  8748. "symfony/config": "^6.4|^7.0",
  8749. "symfony/console": "^6.4|^7.0",
  8750. "symfony/dependency-injection": "^6.4|^7.0",
  8751. "symfony/finder": "^6.4|^7.0",
  8752. "symfony/http-client-contracts": "^2.5|^3.0",
  8753. "symfony/http-kernel": "^6.4|^7.0",
  8754. "symfony/intl": "^6.4|^7.0",
  8755. "symfony/polyfill-intl-icu": "^1.21",
  8756. "symfony/routing": "^6.4|^7.0",
  8757. "symfony/service-contracts": "^2.5|^3",
  8758. "symfony/yaml": "^6.4|^7.0"
  8759. },
  8760. "type": "library",
  8761. "autoload": {
  8762. "files": [
  8763. "Resources/functions.php"
  8764. ],
  8765. "psr-4": {
  8766. "Symfony\\Component\\Translation\\": ""
  8767. },
  8768. "exclude-from-classmap": [
  8769. "/Tests/"
  8770. ]
  8771. },
  8772. "notification-url": "https://packagist.org/downloads/",
  8773. "license": [
  8774. "MIT"
  8775. ],
  8776. "authors": [
  8777. {
  8778. "name": "Fabien Potencier",
  8779. "email": "fabien@symfony.com"
  8780. },
  8781. {
  8782. "name": "Symfony Community",
  8783. "homepage": "https://symfony.com/contributors"
  8784. }
  8785. ],
  8786. "description": "Provides tools to internationalize your application",
  8787. "homepage": "https://symfony.com",
  8788. "support": {
  8789. "source": "https://github.com/symfony/translation/tree/v7.2.2"
  8790. },
  8791. "funding": [
  8792. {
  8793. "url": "https://symfony.com/sponsor",
  8794. "type": "custom"
  8795. },
  8796. {
  8797. "url": "https://github.com/fabpot",
  8798. "type": "github"
  8799. },
  8800. {
  8801. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8802. "type": "tidelift"
  8803. }
  8804. ],
  8805. "time": "2024-12-07T08:18:10+00:00"
  8806. },
  8807. {
  8808. "name": "symfony/translation-contracts",
  8809. "version": "v3.5.1",
  8810. "source": {
  8811. "type": "git",
  8812. "url": "https://github.com/symfony/translation-contracts.git",
  8813. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  8814. },
  8815. "dist": {
  8816. "type": "zip",
  8817. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  8818. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  8819. "shasum": ""
  8820. },
  8821. "require": {
  8822. "php": ">=8.1"
  8823. },
  8824. "type": "library",
  8825. "extra": {
  8826. "thanks": {
  8827. "url": "https://github.com/symfony/contracts",
  8828. "name": "symfony/contracts"
  8829. },
  8830. "branch-alias": {
  8831. "dev-main": "3.5-dev"
  8832. }
  8833. },
  8834. "autoload": {
  8835. "psr-4": {
  8836. "Symfony\\Contracts\\Translation\\": ""
  8837. },
  8838. "exclude-from-classmap": [
  8839. "/Test/"
  8840. ]
  8841. },
  8842. "notification-url": "https://packagist.org/downloads/",
  8843. "license": [
  8844. "MIT"
  8845. ],
  8846. "authors": [
  8847. {
  8848. "name": "Nicolas Grekas",
  8849. "email": "p@tchwork.com"
  8850. },
  8851. {
  8852. "name": "Symfony Community",
  8853. "homepage": "https://symfony.com/contributors"
  8854. }
  8855. ],
  8856. "description": "Generic abstractions related to translation",
  8857. "homepage": "https://symfony.com",
  8858. "keywords": [
  8859. "abstractions",
  8860. "contracts",
  8861. "decoupling",
  8862. "interfaces",
  8863. "interoperability",
  8864. "standards"
  8865. ],
  8866. "support": {
  8867. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  8868. },
  8869. "funding": [
  8870. {
  8871. "url": "https://symfony.com/sponsor",
  8872. "type": "custom"
  8873. },
  8874. {
  8875. "url": "https://github.com/fabpot",
  8876. "type": "github"
  8877. },
  8878. {
  8879. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8880. "type": "tidelift"
  8881. }
  8882. ],
  8883. "time": "2024-09-25T14:20:29+00:00"
  8884. },
  8885. {
  8886. "name": "symfony/uid",
  8887. "version": "v7.2.0",
  8888. "source": {
  8889. "type": "git",
  8890. "url": "https://github.com/symfony/uid.git",
  8891. "reference": "2d294d0c48df244c71c105a169d0190bfb080426"
  8892. },
  8893. "dist": {
  8894. "type": "zip",
  8895. "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426",
  8896. "reference": "2d294d0c48df244c71c105a169d0190bfb080426",
  8897. "shasum": ""
  8898. },
  8899. "require": {
  8900. "php": ">=8.2",
  8901. "symfony/polyfill-uuid": "^1.15"
  8902. },
  8903. "require-dev": {
  8904. "symfony/console": "^6.4|^7.0"
  8905. },
  8906. "type": "library",
  8907. "autoload": {
  8908. "psr-4": {
  8909. "Symfony\\Component\\Uid\\": ""
  8910. },
  8911. "exclude-from-classmap": [
  8912. "/Tests/"
  8913. ]
  8914. },
  8915. "notification-url": "https://packagist.org/downloads/",
  8916. "license": [
  8917. "MIT"
  8918. ],
  8919. "authors": [
  8920. {
  8921. "name": "Grégoire Pineau",
  8922. "email": "lyrixx@lyrixx.info"
  8923. },
  8924. {
  8925. "name": "Nicolas Grekas",
  8926. "email": "p@tchwork.com"
  8927. },
  8928. {
  8929. "name": "Symfony Community",
  8930. "homepage": "https://symfony.com/contributors"
  8931. }
  8932. ],
  8933. "description": "Provides an object-oriented API to generate and represent UIDs",
  8934. "homepage": "https://symfony.com",
  8935. "keywords": [
  8936. "UID",
  8937. "ulid",
  8938. "uuid"
  8939. ],
  8940. "support": {
  8941. "source": "https://github.com/symfony/uid/tree/v7.2.0"
  8942. },
  8943. "funding": [
  8944. {
  8945. "url": "https://symfony.com/sponsor",
  8946. "type": "custom"
  8947. },
  8948. {
  8949. "url": "https://github.com/fabpot",
  8950. "type": "github"
  8951. },
  8952. {
  8953. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8954. "type": "tidelift"
  8955. }
  8956. ],
  8957. "time": "2024-09-25T14:21:43+00:00"
  8958. },
  8959. {
  8960. "name": "symfony/var-dumper",
  8961. "version": "v7.2.3",
  8962. "source": {
  8963. "type": "git",
  8964. "url": "https://github.com/symfony/var-dumper.git",
  8965. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a"
  8966. },
  8967. "dist": {
  8968. "type": "zip",
  8969. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82b478c69745d8878eb60f9a049a4d584996f73a",
  8970. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a",
  8971. "shasum": ""
  8972. },
  8973. "require": {
  8974. "php": ">=8.2",
  8975. "symfony/polyfill-mbstring": "~1.0"
  8976. },
  8977. "conflict": {
  8978. "symfony/console": "<6.4"
  8979. },
  8980. "require-dev": {
  8981. "ext-iconv": "*",
  8982. "symfony/console": "^6.4|^7.0",
  8983. "symfony/http-kernel": "^6.4|^7.0",
  8984. "symfony/process": "^6.4|^7.0",
  8985. "symfony/uid": "^6.4|^7.0",
  8986. "twig/twig": "^3.12"
  8987. },
  8988. "bin": [
  8989. "Resources/bin/var-dump-server"
  8990. ],
  8991. "type": "library",
  8992. "autoload": {
  8993. "files": [
  8994. "Resources/functions/dump.php"
  8995. ],
  8996. "psr-4": {
  8997. "Symfony\\Component\\VarDumper\\": ""
  8998. },
  8999. "exclude-from-classmap": [
  9000. "/Tests/"
  9001. ]
  9002. },
  9003. "notification-url": "https://packagist.org/downloads/",
  9004. "license": [
  9005. "MIT"
  9006. ],
  9007. "authors": [
  9008. {
  9009. "name": "Nicolas Grekas",
  9010. "email": "p@tchwork.com"
  9011. },
  9012. {
  9013. "name": "Symfony Community",
  9014. "homepage": "https://symfony.com/contributors"
  9015. }
  9016. ],
  9017. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9018. "homepage": "https://symfony.com",
  9019. "keywords": [
  9020. "debug",
  9021. "dump"
  9022. ],
  9023. "support": {
  9024. "source": "https://github.com/symfony/var-dumper/tree/v7.2.3"
  9025. },
  9026. "funding": [
  9027. {
  9028. "url": "https://symfony.com/sponsor",
  9029. "type": "custom"
  9030. },
  9031. {
  9032. "url": "https://github.com/fabpot",
  9033. "type": "github"
  9034. },
  9035. {
  9036. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9037. "type": "tidelift"
  9038. }
  9039. ],
  9040. "time": "2025-01-17T11:39:41+00:00"
  9041. },
  9042. {
  9043. "name": "tijsverkoyen/css-to-inline-styles",
  9044. "version": "v2.3.0",
  9045. "source": {
  9046. "type": "git",
  9047. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9048. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  9049. },
  9050. "dist": {
  9051. "type": "zip",
  9052. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  9053. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  9054. "shasum": ""
  9055. },
  9056. "require": {
  9057. "ext-dom": "*",
  9058. "ext-libxml": "*",
  9059. "php": "^7.4 || ^8.0",
  9060. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  9061. },
  9062. "require-dev": {
  9063. "phpstan/phpstan": "^2.0",
  9064. "phpstan/phpstan-phpunit": "^2.0",
  9065. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  9066. },
  9067. "type": "library",
  9068. "extra": {
  9069. "branch-alias": {
  9070. "dev-master": "2.x-dev"
  9071. }
  9072. },
  9073. "autoload": {
  9074. "psr-4": {
  9075. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9076. }
  9077. },
  9078. "notification-url": "https://packagist.org/downloads/",
  9079. "license": [
  9080. "BSD-3-Clause"
  9081. ],
  9082. "authors": [
  9083. {
  9084. "name": "Tijs Verkoyen",
  9085. "email": "css_to_inline_styles@verkoyen.eu",
  9086. "role": "Developer"
  9087. }
  9088. ],
  9089. "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.",
  9090. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9091. "support": {
  9092. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9093. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  9094. },
  9095. "time": "2024-12-21T16:25:41+00:00"
  9096. },
  9097. {
  9098. "name": "vlucas/phpdotenv",
  9099. "version": "v5.6.1",
  9100. "source": {
  9101. "type": "git",
  9102. "url": "https://github.com/vlucas/phpdotenv.git",
  9103. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  9104. },
  9105. "dist": {
  9106. "type": "zip",
  9107. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9108. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9109. "shasum": ""
  9110. },
  9111. "require": {
  9112. "ext-pcre": "*",
  9113. "graham-campbell/result-type": "^1.1.3",
  9114. "php": "^7.2.5 || ^8.0",
  9115. "phpoption/phpoption": "^1.9.3",
  9116. "symfony/polyfill-ctype": "^1.24",
  9117. "symfony/polyfill-mbstring": "^1.24",
  9118. "symfony/polyfill-php80": "^1.24"
  9119. },
  9120. "require-dev": {
  9121. "bamarni/composer-bin-plugin": "^1.8.2",
  9122. "ext-filter": "*",
  9123. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9124. },
  9125. "suggest": {
  9126. "ext-filter": "Required to use the boolean validator."
  9127. },
  9128. "type": "library",
  9129. "extra": {
  9130. "bamarni-bin": {
  9131. "bin-links": true,
  9132. "forward-command": false
  9133. },
  9134. "branch-alias": {
  9135. "dev-master": "5.6-dev"
  9136. }
  9137. },
  9138. "autoload": {
  9139. "psr-4": {
  9140. "Dotenv\\": "src/"
  9141. }
  9142. },
  9143. "notification-url": "https://packagist.org/downloads/",
  9144. "license": [
  9145. "BSD-3-Clause"
  9146. ],
  9147. "authors": [
  9148. {
  9149. "name": "Graham Campbell",
  9150. "email": "hello@gjcampbell.co.uk",
  9151. "homepage": "https://github.com/GrahamCampbell"
  9152. },
  9153. {
  9154. "name": "Vance Lucas",
  9155. "email": "vance@vancelucas.com",
  9156. "homepage": "https://github.com/vlucas"
  9157. }
  9158. ],
  9159. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9160. "keywords": [
  9161. "dotenv",
  9162. "env",
  9163. "environment"
  9164. ],
  9165. "support": {
  9166. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9167. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  9168. },
  9169. "funding": [
  9170. {
  9171. "url": "https://github.com/GrahamCampbell",
  9172. "type": "github"
  9173. },
  9174. {
  9175. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9176. "type": "tidelift"
  9177. }
  9178. ],
  9179. "time": "2024-07-20T21:52:34+00:00"
  9180. },
  9181. {
  9182. "name": "voku/portable-ascii",
  9183. "version": "2.0.3",
  9184. "source": {
  9185. "type": "git",
  9186. "url": "https://github.com/voku/portable-ascii.git",
  9187. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  9188. },
  9189. "dist": {
  9190. "type": "zip",
  9191. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9192. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9193. "shasum": ""
  9194. },
  9195. "require": {
  9196. "php": ">=7.0.0"
  9197. },
  9198. "require-dev": {
  9199. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9200. },
  9201. "suggest": {
  9202. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9203. },
  9204. "type": "library",
  9205. "autoload": {
  9206. "psr-4": {
  9207. "voku\\": "src/voku/"
  9208. }
  9209. },
  9210. "notification-url": "https://packagist.org/downloads/",
  9211. "license": [
  9212. "MIT"
  9213. ],
  9214. "authors": [
  9215. {
  9216. "name": "Lars Moelleken",
  9217. "homepage": "https://www.moelleken.org/"
  9218. }
  9219. ],
  9220. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9221. "homepage": "https://github.com/voku/portable-ascii",
  9222. "keywords": [
  9223. "ascii",
  9224. "clean",
  9225. "php"
  9226. ],
  9227. "support": {
  9228. "issues": "https://github.com/voku/portable-ascii/issues",
  9229. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  9230. },
  9231. "funding": [
  9232. {
  9233. "url": "https://www.paypal.me/moelleken",
  9234. "type": "custom"
  9235. },
  9236. {
  9237. "url": "https://github.com/voku",
  9238. "type": "github"
  9239. },
  9240. {
  9241. "url": "https://opencollective.com/portable-ascii",
  9242. "type": "open_collective"
  9243. },
  9244. {
  9245. "url": "https://www.patreon.com/voku",
  9246. "type": "patreon"
  9247. },
  9248. {
  9249. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9250. "type": "tidelift"
  9251. }
  9252. ],
  9253. "time": "2024-11-21T01:49:47+00:00"
  9254. },
  9255. {
  9256. "name": "webmozart/assert",
  9257. "version": "1.11.0",
  9258. "source": {
  9259. "type": "git",
  9260. "url": "https://github.com/webmozarts/assert.git",
  9261. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9262. },
  9263. "dist": {
  9264. "type": "zip",
  9265. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9266. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9267. "shasum": ""
  9268. },
  9269. "require": {
  9270. "ext-ctype": "*",
  9271. "php": "^7.2 || ^8.0"
  9272. },
  9273. "conflict": {
  9274. "phpstan/phpstan": "<0.12.20",
  9275. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9276. },
  9277. "require-dev": {
  9278. "phpunit/phpunit": "^8.5.13"
  9279. },
  9280. "type": "library",
  9281. "extra": {
  9282. "branch-alias": {
  9283. "dev-master": "1.10-dev"
  9284. }
  9285. },
  9286. "autoload": {
  9287. "psr-4": {
  9288. "Webmozart\\Assert\\": "src/"
  9289. }
  9290. },
  9291. "notification-url": "https://packagist.org/downloads/",
  9292. "license": [
  9293. "MIT"
  9294. ],
  9295. "authors": [
  9296. {
  9297. "name": "Bernhard Schussek",
  9298. "email": "bschussek@gmail.com"
  9299. }
  9300. ],
  9301. "description": "Assertions to validate method input/output with nice error messages.",
  9302. "keywords": [
  9303. "assert",
  9304. "check",
  9305. "validate"
  9306. ],
  9307. "support": {
  9308. "issues": "https://github.com/webmozarts/assert/issues",
  9309. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9310. },
  9311. "time": "2022-06-03T18:03:27+00:00"
  9312. }
  9313. ],
  9314. "packages-dev": [
  9315. {
  9316. "name": "brianium/paratest",
  9317. "version": "v7.7.0",
  9318. "source": {
  9319. "type": "git",
  9320. "url": "https://github.com/paratestphp/paratest.git",
  9321. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf"
  9322. },
  9323. "dist": {
  9324. "type": "zip",
  9325. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  9326. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  9327. "shasum": ""
  9328. },
  9329. "require": {
  9330. "ext-dom": "*",
  9331. "ext-pcre": "*",
  9332. "ext-reflection": "*",
  9333. "ext-simplexml": "*",
  9334. "fidry/cpu-core-counter": "^1.2.0",
  9335. "jean85/pretty-package-versions": "^2.1.0",
  9336. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  9337. "phpunit/php-code-coverage": "^11.0.8",
  9338. "phpunit/php-file-iterator": "^5.1.0",
  9339. "phpunit/php-timer": "^7.0.1",
  9340. "phpunit/phpunit": "^11.5.1",
  9341. "sebastian/environment": "^7.2.0",
  9342. "symfony/console": "^6.4.14 || ^7.2.1",
  9343. "symfony/process": "^6.4.14 || ^7.2.0"
  9344. },
  9345. "require-dev": {
  9346. "doctrine/coding-standard": "^12.0.0",
  9347. "ext-pcov": "*",
  9348. "ext-posix": "*",
  9349. "phpstan/phpstan": "^2.0.3",
  9350. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  9351. "phpstan/phpstan-phpunit": "^2.0.1",
  9352. "phpstan/phpstan-strict-rules": "^2",
  9353. "squizlabs/php_codesniffer": "^3.11.1",
  9354. "symfony/filesystem": "^6.4.13 || ^7.2.0"
  9355. },
  9356. "bin": [
  9357. "bin/paratest",
  9358. "bin/paratest_for_phpstorm"
  9359. ],
  9360. "type": "library",
  9361. "autoload": {
  9362. "psr-4": {
  9363. "ParaTest\\": [
  9364. "src/"
  9365. ]
  9366. }
  9367. },
  9368. "notification-url": "https://packagist.org/downloads/",
  9369. "license": [
  9370. "MIT"
  9371. ],
  9372. "authors": [
  9373. {
  9374. "name": "Brian Scaturro",
  9375. "email": "scaturrob@gmail.com",
  9376. "role": "Developer"
  9377. },
  9378. {
  9379. "name": "Filippo Tessarotto",
  9380. "email": "zoeslam@gmail.com",
  9381. "role": "Developer"
  9382. }
  9383. ],
  9384. "description": "Parallel testing for PHP",
  9385. "homepage": "https://github.com/paratestphp/paratest",
  9386. "keywords": [
  9387. "concurrent",
  9388. "parallel",
  9389. "phpunit",
  9390. "testing"
  9391. ],
  9392. "support": {
  9393. "issues": "https://github.com/paratestphp/paratest/issues",
  9394. "source": "https://github.com/paratestphp/paratest/tree/v7.7.0"
  9395. },
  9396. "funding": [
  9397. {
  9398. "url": "https://github.com/sponsors/Slamdunk",
  9399. "type": "github"
  9400. },
  9401. {
  9402. "url": "https://paypal.me/filippotessarotto",
  9403. "type": "paypal"
  9404. }
  9405. ],
  9406. "time": "2024-12-11T14:50:44+00:00"
  9407. },
  9408. {
  9409. "name": "fakerphp/faker",
  9410. "version": "v1.24.1",
  9411. "source": {
  9412. "type": "git",
  9413. "url": "https://github.com/FakerPHP/Faker.git",
  9414. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  9415. },
  9416. "dist": {
  9417. "type": "zip",
  9418. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9419. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9420. "shasum": ""
  9421. },
  9422. "require": {
  9423. "php": "^7.4 || ^8.0",
  9424. "psr/container": "^1.0 || ^2.0",
  9425. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9426. },
  9427. "conflict": {
  9428. "fzaninotto/faker": "*"
  9429. },
  9430. "require-dev": {
  9431. "bamarni/composer-bin-plugin": "^1.4.1",
  9432. "doctrine/persistence": "^1.3 || ^2.0",
  9433. "ext-intl": "*",
  9434. "phpunit/phpunit": "^9.5.26",
  9435. "symfony/phpunit-bridge": "^5.4.16"
  9436. },
  9437. "suggest": {
  9438. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9439. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9440. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9441. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9442. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9443. },
  9444. "type": "library",
  9445. "autoload": {
  9446. "psr-4": {
  9447. "Faker\\": "src/Faker/"
  9448. }
  9449. },
  9450. "notification-url": "https://packagist.org/downloads/",
  9451. "license": [
  9452. "MIT"
  9453. ],
  9454. "authors": [
  9455. {
  9456. "name": "François Zaninotto"
  9457. }
  9458. ],
  9459. "description": "Faker is a PHP library that generates fake data for you.",
  9460. "keywords": [
  9461. "data",
  9462. "faker",
  9463. "fixtures"
  9464. ],
  9465. "support": {
  9466. "issues": "https://github.com/FakerPHP/Faker/issues",
  9467. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  9468. },
  9469. "time": "2024-11-21T13:46:39+00:00"
  9470. },
  9471. {
  9472. "name": "fidry/cpu-core-counter",
  9473. "version": "1.2.0",
  9474. "source": {
  9475. "type": "git",
  9476. "url": "https://github.com/theofidry/cpu-core-counter.git",
  9477. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  9478. },
  9479. "dist": {
  9480. "type": "zip",
  9481. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  9482. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  9483. "shasum": ""
  9484. },
  9485. "require": {
  9486. "php": "^7.2 || ^8.0"
  9487. },
  9488. "require-dev": {
  9489. "fidry/makefile": "^0.2.0",
  9490. "fidry/php-cs-fixer-config": "^1.1.2",
  9491. "phpstan/extension-installer": "^1.2.0",
  9492. "phpstan/phpstan": "^1.9.2",
  9493. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  9494. "phpstan/phpstan-phpunit": "^1.2.2",
  9495. "phpstan/phpstan-strict-rules": "^1.4.4",
  9496. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  9497. "webmozarts/strict-phpunit": "^7.5"
  9498. },
  9499. "type": "library",
  9500. "autoload": {
  9501. "psr-4": {
  9502. "Fidry\\CpuCoreCounter\\": "src/"
  9503. }
  9504. },
  9505. "notification-url": "https://packagist.org/downloads/",
  9506. "license": [
  9507. "MIT"
  9508. ],
  9509. "authors": [
  9510. {
  9511. "name": "Théo FIDRY",
  9512. "email": "theo.fidry@gmail.com"
  9513. }
  9514. ],
  9515. "description": "Tiny utility to get the number of CPU cores.",
  9516. "keywords": [
  9517. "CPU",
  9518. "core"
  9519. ],
  9520. "support": {
  9521. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  9522. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  9523. },
  9524. "funding": [
  9525. {
  9526. "url": "https://github.com/theofidry",
  9527. "type": "github"
  9528. }
  9529. ],
  9530. "time": "2024-08-06T10:04:20+00:00"
  9531. },
  9532. {
  9533. "name": "filp/whoops",
  9534. "version": "2.17.0",
  9535. "source": {
  9536. "type": "git",
  9537. "url": "https://github.com/filp/whoops.git",
  9538. "reference": "075bc0c26631110584175de6523ab3f1652eb28e"
  9539. },
  9540. "dist": {
  9541. "type": "zip",
  9542. "url": "https://api.github.com/repos/filp/whoops/zipball/075bc0c26631110584175de6523ab3f1652eb28e",
  9543. "reference": "075bc0c26631110584175de6523ab3f1652eb28e",
  9544. "shasum": ""
  9545. },
  9546. "require": {
  9547. "php": "^7.1 || ^8.0",
  9548. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9549. },
  9550. "require-dev": {
  9551. "mockery/mockery": "^1.0",
  9552. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  9553. "symfony/var-dumper": "^4.0 || ^5.0"
  9554. },
  9555. "suggest": {
  9556. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9557. "whoops/soap": "Formats errors as SOAP responses"
  9558. },
  9559. "type": "library",
  9560. "extra": {
  9561. "branch-alias": {
  9562. "dev-master": "2.7-dev"
  9563. }
  9564. },
  9565. "autoload": {
  9566. "psr-4": {
  9567. "Whoops\\": "src/Whoops/"
  9568. }
  9569. },
  9570. "notification-url": "https://packagist.org/downloads/",
  9571. "license": [
  9572. "MIT"
  9573. ],
  9574. "authors": [
  9575. {
  9576. "name": "Filipe Dobreira",
  9577. "homepage": "https://github.com/filp",
  9578. "role": "Developer"
  9579. }
  9580. ],
  9581. "description": "php error handling for cool kids",
  9582. "homepage": "https://filp.github.io/whoops/",
  9583. "keywords": [
  9584. "error",
  9585. "exception",
  9586. "handling",
  9587. "library",
  9588. "throwable",
  9589. "whoops"
  9590. ],
  9591. "support": {
  9592. "issues": "https://github.com/filp/whoops/issues",
  9593. "source": "https://github.com/filp/whoops/tree/2.17.0"
  9594. },
  9595. "funding": [
  9596. {
  9597. "url": "https://github.com/denis-sokolov",
  9598. "type": "github"
  9599. }
  9600. ],
  9601. "time": "2025-01-25T12:00:00+00:00"
  9602. },
  9603. {
  9604. "name": "hamcrest/hamcrest-php",
  9605. "version": "v2.0.1",
  9606. "source": {
  9607. "type": "git",
  9608. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9609. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9610. },
  9611. "dist": {
  9612. "type": "zip",
  9613. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9614. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9615. "shasum": ""
  9616. },
  9617. "require": {
  9618. "php": "^5.3|^7.0|^8.0"
  9619. },
  9620. "replace": {
  9621. "cordoval/hamcrest-php": "*",
  9622. "davedevelopment/hamcrest-php": "*",
  9623. "kodova/hamcrest-php": "*"
  9624. },
  9625. "require-dev": {
  9626. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9627. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9628. },
  9629. "type": "library",
  9630. "extra": {
  9631. "branch-alias": {
  9632. "dev-master": "2.1-dev"
  9633. }
  9634. },
  9635. "autoload": {
  9636. "classmap": [
  9637. "hamcrest"
  9638. ]
  9639. },
  9640. "notification-url": "https://packagist.org/downloads/",
  9641. "license": [
  9642. "BSD-3-Clause"
  9643. ],
  9644. "description": "This is the PHP port of Hamcrest Matchers",
  9645. "keywords": [
  9646. "test"
  9647. ],
  9648. "support": {
  9649. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9650. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9651. },
  9652. "time": "2020-07-09T08:09:16+00:00"
  9653. },
  9654. {
  9655. "name": "jean85/pretty-package-versions",
  9656. "version": "2.1.0",
  9657. "source": {
  9658. "type": "git",
  9659. "url": "https://github.com/Jean85/pretty-package-versions.git",
  9660. "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10"
  9661. },
  9662. "dist": {
  9663. "type": "zip",
  9664. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10",
  9665. "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10",
  9666. "shasum": ""
  9667. },
  9668. "require": {
  9669. "composer-runtime-api": "^2.1.0",
  9670. "php": "^7.4|^8.0"
  9671. },
  9672. "require-dev": {
  9673. "friendsofphp/php-cs-fixer": "^3.2",
  9674. "jean85/composer-provided-replaced-stub-package": "^1.0",
  9675. "phpstan/phpstan": "^1.4",
  9676. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  9677. "vimeo/psalm": "^4.3 || ^5.0"
  9678. },
  9679. "type": "library",
  9680. "extra": {
  9681. "branch-alias": {
  9682. "dev-master": "1.x-dev"
  9683. }
  9684. },
  9685. "autoload": {
  9686. "psr-4": {
  9687. "Jean85\\": "src/"
  9688. }
  9689. },
  9690. "notification-url": "https://packagist.org/downloads/",
  9691. "license": [
  9692. "MIT"
  9693. ],
  9694. "authors": [
  9695. {
  9696. "name": "Alessandro Lai",
  9697. "email": "alessandro.lai85@gmail.com"
  9698. }
  9699. ],
  9700. "description": "A library to get pretty versions strings of installed dependencies",
  9701. "keywords": [
  9702. "composer",
  9703. "package",
  9704. "release",
  9705. "versions"
  9706. ],
  9707. "support": {
  9708. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  9709. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0"
  9710. },
  9711. "time": "2024-11-18T16:19:46+00:00"
  9712. },
  9713. {
  9714. "name": "laravel/pint",
  9715. "version": "v1.20.0",
  9716. "source": {
  9717. "type": "git",
  9718. "url": "https://github.com/laravel/pint.git",
  9719. "reference": "53072e8ea22213a7ed168a8a15b96fbb8b82d44b"
  9720. },
  9721. "dist": {
  9722. "type": "zip",
  9723. "url": "https://api.github.com/repos/laravel/pint/zipball/53072e8ea22213a7ed168a8a15b96fbb8b82d44b",
  9724. "reference": "53072e8ea22213a7ed168a8a15b96fbb8b82d44b",
  9725. "shasum": ""
  9726. },
  9727. "require": {
  9728. "ext-json": "*",
  9729. "ext-mbstring": "*",
  9730. "ext-tokenizer": "*",
  9731. "ext-xml": "*",
  9732. "php": "^8.1.0"
  9733. },
  9734. "require-dev": {
  9735. "friendsofphp/php-cs-fixer": "^3.66.0",
  9736. "illuminate/view": "^10.48.25",
  9737. "larastan/larastan": "^2.9.12",
  9738. "laravel-zero/framework": "^10.48.25",
  9739. "mockery/mockery": "^1.6.12",
  9740. "nunomaduro/termwind": "^1.17.0",
  9741. "pestphp/pest": "^2.36.0"
  9742. },
  9743. "bin": [
  9744. "builds/pint"
  9745. ],
  9746. "type": "project",
  9747. "autoload": {
  9748. "psr-4": {
  9749. "App\\": "app/",
  9750. "Database\\Seeders\\": "database/seeders/",
  9751. "Database\\Factories\\": "database/factories/"
  9752. }
  9753. },
  9754. "notification-url": "https://packagist.org/downloads/",
  9755. "license": [
  9756. "MIT"
  9757. ],
  9758. "authors": [
  9759. {
  9760. "name": "Nuno Maduro",
  9761. "email": "enunomaduro@gmail.com"
  9762. }
  9763. ],
  9764. "description": "An opinionated code formatter for PHP.",
  9765. "homepage": "https://laravel.com",
  9766. "keywords": [
  9767. "format",
  9768. "formatter",
  9769. "lint",
  9770. "linter",
  9771. "php"
  9772. ],
  9773. "support": {
  9774. "issues": "https://github.com/laravel/pint/issues",
  9775. "source": "https://github.com/laravel/pint"
  9776. },
  9777. "time": "2025-01-14T16:20:53+00:00"
  9778. },
  9779. {
  9780. "name": "laravel/sail",
  9781. "version": "v1.41.0",
  9782. "source": {
  9783. "type": "git",
  9784. "url": "https://github.com/laravel/sail.git",
  9785. "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec"
  9786. },
  9787. "dist": {
  9788. "type": "zip",
  9789. "url": "https://api.github.com/repos/laravel/sail/zipball/fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec",
  9790. "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec",
  9791. "shasum": ""
  9792. },
  9793. "require": {
  9794. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  9795. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  9796. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  9797. "php": "^8.0",
  9798. "symfony/console": "^6.0|^7.0",
  9799. "symfony/yaml": "^6.0|^7.0"
  9800. },
  9801. "require-dev": {
  9802. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  9803. "phpstan/phpstan": "^1.10"
  9804. },
  9805. "bin": [
  9806. "bin/sail"
  9807. ],
  9808. "type": "library",
  9809. "extra": {
  9810. "laravel": {
  9811. "providers": [
  9812. "Laravel\\Sail\\SailServiceProvider"
  9813. ]
  9814. }
  9815. },
  9816. "autoload": {
  9817. "psr-4": {
  9818. "Laravel\\Sail\\": "src/"
  9819. }
  9820. },
  9821. "notification-url": "https://packagist.org/downloads/",
  9822. "license": [
  9823. "MIT"
  9824. ],
  9825. "authors": [
  9826. {
  9827. "name": "Taylor Otwell",
  9828. "email": "taylor@laravel.com"
  9829. }
  9830. ],
  9831. "description": "Docker files for running a basic Laravel application.",
  9832. "keywords": [
  9833. "docker",
  9834. "laravel"
  9835. ],
  9836. "support": {
  9837. "issues": "https://github.com/laravel/sail/issues",
  9838. "source": "https://github.com/laravel/sail"
  9839. },
  9840. "time": "2025-01-24T15:45:36+00:00"
  9841. },
  9842. {
  9843. "name": "mockery/mockery",
  9844. "version": "1.6.12",
  9845. "source": {
  9846. "type": "git",
  9847. "url": "https://github.com/mockery/mockery.git",
  9848. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9849. },
  9850. "dist": {
  9851. "type": "zip",
  9852. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9853. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9854. "shasum": ""
  9855. },
  9856. "require": {
  9857. "hamcrest/hamcrest-php": "^2.0.1",
  9858. "lib-pcre": ">=7.0",
  9859. "php": ">=7.3"
  9860. },
  9861. "conflict": {
  9862. "phpunit/phpunit": "<8.0"
  9863. },
  9864. "require-dev": {
  9865. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9866. "symplify/easy-coding-standard": "^12.1.14"
  9867. },
  9868. "type": "library",
  9869. "autoload": {
  9870. "files": [
  9871. "library/helpers.php",
  9872. "library/Mockery.php"
  9873. ],
  9874. "psr-4": {
  9875. "Mockery\\": "library/Mockery"
  9876. }
  9877. },
  9878. "notification-url": "https://packagist.org/downloads/",
  9879. "license": [
  9880. "BSD-3-Clause"
  9881. ],
  9882. "authors": [
  9883. {
  9884. "name": "Pádraic Brady",
  9885. "email": "padraic.brady@gmail.com",
  9886. "homepage": "https://github.com/padraic",
  9887. "role": "Author"
  9888. },
  9889. {
  9890. "name": "Dave Marshall",
  9891. "email": "dave.marshall@atstsolutions.co.uk",
  9892. "homepage": "https://davedevelopment.co.uk",
  9893. "role": "Developer"
  9894. },
  9895. {
  9896. "name": "Nathanael Esayeas",
  9897. "email": "nathanael.esayeas@protonmail.com",
  9898. "homepage": "https://github.com/ghostwriter",
  9899. "role": "Lead Developer"
  9900. }
  9901. ],
  9902. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9903. "homepage": "https://github.com/mockery/mockery",
  9904. "keywords": [
  9905. "BDD",
  9906. "TDD",
  9907. "library",
  9908. "mock",
  9909. "mock objects",
  9910. "mockery",
  9911. "stub",
  9912. "test",
  9913. "test double",
  9914. "testing"
  9915. ],
  9916. "support": {
  9917. "docs": "https://docs.mockery.io/",
  9918. "issues": "https://github.com/mockery/mockery/issues",
  9919. "rss": "https://github.com/mockery/mockery/releases.atom",
  9920. "security": "https://github.com/mockery/mockery/security/advisories",
  9921. "source": "https://github.com/mockery/mockery"
  9922. },
  9923. "time": "2024-05-16T03:13:13+00:00"
  9924. },
  9925. {
  9926. "name": "myclabs/deep-copy",
  9927. "version": "1.12.1",
  9928. "source": {
  9929. "type": "git",
  9930. "url": "https://github.com/myclabs/DeepCopy.git",
  9931. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  9932. },
  9933. "dist": {
  9934. "type": "zip",
  9935. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  9936. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  9937. "shasum": ""
  9938. },
  9939. "require": {
  9940. "php": "^7.1 || ^8.0"
  9941. },
  9942. "conflict": {
  9943. "doctrine/collections": "<1.6.8",
  9944. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9945. },
  9946. "require-dev": {
  9947. "doctrine/collections": "^1.6.8",
  9948. "doctrine/common": "^2.13.3 || ^3.2.2",
  9949. "phpspec/prophecy": "^1.10",
  9950. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9951. },
  9952. "type": "library",
  9953. "autoload": {
  9954. "files": [
  9955. "src/DeepCopy/deep_copy.php"
  9956. ],
  9957. "psr-4": {
  9958. "DeepCopy\\": "src/DeepCopy/"
  9959. }
  9960. },
  9961. "notification-url": "https://packagist.org/downloads/",
  9962. "license": [
  9963. "MIT"
  9964. ],
  9965. "description": "Create deep copies (clones) of your objects",
  9966. "keywords": [
  9967. "clone",
  9968. "copy",
  9969. "duplicate",
  9970. "object",
  9971. "object graph"
  9972. ],
  9973. "support": {
  9974. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9975. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  9976. },
  9977. "funding": [
  9978. {
  9979. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9980. "type": "tidelift"
  9981. }
  9982. ],
  9983. "time": "2024-11-08T17:47:46+00:00"
  9984. },
  9985. {
  9986. "name": "nunomaduro/collision",
  9987. "version": "v8.6.1",
  9988. "source": {
  9989. "type": "git",
  9990. "url": "https://github.com/nunomaduro/collision.git",
  9991. "reference": "86f003c132143d5a2ab214e19933946409e0cae7"
  9992. },
  9993. "dist": {
  9994. "type": "zip",
  9995. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/86f003c132143d5a2ab214e19933946409e0cae7",
  9996. "reference": "86f003c132143d5a2ab214e19933946409e0cae7",
  9997. "shasum": ""
  9998. },
  9999. "require": {
  10000. "filp/whoops": "^2.16.0",
  10001. "nunomaduro/termwind": "^2.3.0",
  10002. "php": "^8.2.0",
  10003. "symfony/console": "^7.2.1"
  10004. },
  10005. "conflict": {
  10006. "laravel/framework": "<11.39.1 || >=13.0.0",
  10007. "phpunit/phpunit": "<11.5.3 || >=12.0.0"
  10008. },
  10009. "require-dev": {
  10010. "larastan/larastan": "^2.9.12",
  10011. "laravel/framework": "^11.39.1",
  10012. "laravel/pint": "^1.20.0",
  10013. "laravel/sail": "^1.40.0",
  10014. "laravel/sanctum": "^4.0.7",
  10015. "laravel/tinker": "^2.10.0",
  10016. "orchestra/testbench-core": "^9.9.2",
  10017. "pestphp/pest": "^3.7.3",
  10018. "sebastian/environment": "^6.1.0 || ^7.2.0"
  10019. },
  10020. "type": "library",
  10021. "extra": {
  10022. "laravel": {
  10023. "providers": [
  10024. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10025. ]
  10026. },
  10027. "branch-alias": {
  10028. "dev-8.x": "8.x-dev"
  10029. }
  10030. },
  10031. "autoload": {
  10032. "files": [
  10033. "./src/Adapters/Phpunit/Autoload.php"
  10034. ],
  10035. "psr-4": {
  10036. "NunoMaduro\\Collision\\": "src/"
  10037. }
  10038. },
  10039. "notification-url": "https://packagist.org/downloads/",
  10040. "license": [
  10041. "MIT"
  10042. ],
  10043. "authors": [
  10044. {
  10045. "name": "Nuno Maduro",
  10046. "email": "enunomaduro@gmail.com"
  10047. }
  10048. ],
  10049. "description": "Cli error handling for console/command-line PHP applications.",
  10050. "keywords": [
  10051. "artisan",
  10052. "cli",
  10053. "command-line",
  10054. "console",
  10055. "dev",
  10056. "error",
  10057. "handling",
  10058. "laravel",
  10059. "laravel-zero",
  10060. "php",
  10061. "symfony"
  10062. ],
  10063. "support": {
  10064. "issues": "https://github.com/nunomaduro/collision/issues",
  10065. "source": "https://github.com/nunomaduro/collision"
  10066. },
  10067. "funding": [
  10068. {
  10069. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10070. "type": "custom"
  10071. },
  10072. {
  10073. "url": "https://github.com/nunomaduro",
  10074. "type": "github"
  10075. },
  10076. {
  10077. "url": "https://www.patreon.com/nunomaduro",
  10078. "type": "patreon"
  10079. }
  10080. ],
  10081. "time": "2025-01-23T13:41:43+00:00"
  10082. },
  10083. {
  10084. "name": "pestphp/pest",
  10085. "version": "v3.7.4",
  10086. "source": {
  10087. "type": "git",
  10088. "url": "https://github.com/pestphp/pest.git",
  10089. "reference": "4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b"
  10090. },
  10091. "dist": {
  10092. "type": "zip",
  10093. "url": "https://api.github.com/repos/pestphp/pest/zipball/4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b",
  10094. "reference": "4a987d3d5c4e3ba36c76fecbf56113baac2d1b2b",
  10095. "shasum": ""
  10096. },
  10097. "require": {
  10098. "brianium/paratest": "^7.7.0",
  10099. "nunomaduro/collision": "^8.6.1",
  10100. "nunomaduro/termwind": "^2.3.0",
  10101. "pestphp/pest-plugin": "^3.0.0",
  10102. "pestphp/pest-plugin-arch": "^3.0.0",
  10103. "pestphp/pest-plugin-mutate": "^3.0.5",
  10104. "php": "^8.2.0",
  10105. "phpunit/phpunit": "^11.5.3"
  10106. },
  10107. "conflict": {
  10108. "filp/whoops": "<2.16.0",
  10109. "phpunit/phpunit": ">11.5.3",
  10110. "sebastian/exporter": "<6.0.0",
  10111. "webmozart/assert": "<1.11.0"
  10112. },
  10113. "require-dev": {
  10114. "pestphp/pest-dev-tools": "^3.3.0",
  10115. "pestphp/pest-plugin-type-coverage": "^3.2.3",
  10116. "symfony/process": "^7.2.0"
  10117. },
  10118. "bin": [
  10119. "bin/pest"
  10120. ],
  10121. "type": "library",
  10122. "extra": {
  10123. "pest": {
  10124. "plugins": [
  10125. "Pest\\Mutate\\Plugins\\Mutate",
  10126. "Pest\\Plugins\\Configuration",
  10127. "Pest\\Plugins\\Bail",
  10128. "Pest\\Plugins\\Cache",
  10129. "Pest\\Plugins\\Coverage",
  10130. "Pest\\Plugins\\Init",
  10131. "Pest\\Plugins\\Environment",
  10132. "Pest\\Plugins\\Help",
  10133. "Pest\\Plugins\\Memory",
  10134. "Pest\\Plugins\\Only",
  10135. "Pest\\Plugins\\Printer",
  10136. "Pest\\Plugins\\ProcessIsolation",
  10137. "Pest\\Plugins\\Profile",
  10138. "Pest\\Plugins\\Retry",
  10139. "Pest\\Plugins\\Snapshot",
  10140. "Pest\\Plugins\\Verbose",
  10141. "Pest\\Plugins\\Version",
  10142. "Pest\\Plugins\\Parallel"
  10143. ]
  10144. },
  10145. "phpstan": {
  10146. "includes": [
  10147. "extension.neon"
  10148. ]
  10149. }
  10150. },
  10151. "autoload": {
  10152. "files": [
  10153. "src/Functions.php",
  10154. "src/Pest.php"
  10155. ],
  10156. "psr-4": {
  10157. "Pest\\": "src/"
  10158. }
  10159. },
  10160. "notification-url": "https://packagist.org/downloads/",
  10161. "license": [
  10162. "MIT"
  10163. ],
  10164. "authors": [
  10165. {
  10166. "name": "Nuno Maduro",
  10167. "email": "enunomaduro@gmail.com"
  10168. }
  10169. ],
  10170. "description": "The elegant PHP Testing Framework.",
  10171. "keywords": [
  10172. "framework",
  10173. "pest",
  10174. "php",
  10175. "test",
  10176. "testing",
  10177. "unit"
  10178. ],
  10179. "support": {
  10180. "issues": "https://github.com/pestphp/pest/issues",
  10181. "source": "https://github.com/pestphp/pest/tree/v3.7.4"
  10182. },
  10183. "funding": [
  10184. {
  10185. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10186. "type": "custom"
  10187. },
  10188. {
  10189. "url": "https://github.com/nunomaduro",
  10190. "type": "github"
  10191. }
  10192. ],
  10193. "time": "2025-01-23T14:03:29+00:00"
  10194. },
  10195. {
  10196. "name": "pestphp/pest-plugin",
  10197. "version": "v3.0.0",
  10198. "source": {
  10199. "type": "git",
  10200. "url": "https://github.com/pestphp/pest-plugin.git",
  10201. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  10202. },
  10203. "dist": {
  10204. "type": "zip",
  10205. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10206. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10207. "shasum": ""
  10208. },
  10209. "require": {
  10210. "composer-plugin-api": "^2.0.0",
  10211. "composer-runtime-api": "^2.2.2",
  10212. "php": "^8.2"
  10213. },
  10214. "conflict": {
  10215. "pestphp/pest": "<3.0.0"
  10216. },
  10217. "require-dev": {
  10218. "composer/composer": "^2.7.9",
  10219. "pestphp/pest": "^3.0.0",
  10220. "pestphp/pest-dev-tools": "^3.0.0"
  10221. },
  10222. "type": "composer-plugin",
  10223. "extra": {
  10224. "class": "Pest\\Plugin\\Manager"
  10225. },
  10226. "autoload": {
  10227. "psr-4": {
  10228. "Pest\\Plugin\\": "src/"
  10229. }
  10230. },
  10231. "notification-url": "https://packagist.org/downloads/",
  10232. "license": [
  10233. "MIT"
  10234. ],
  10235. "description": "The Pest plugin manager",
  10236. "keywords": [
  10237. "framework",
  10238. "manager",
  10239. "pest",
  10240. "php",
  10241. "plugin",
  10242. "test",
  10243. "testing",
  10244. "unit"
  10245. ],
  10246. "support": {
  10247. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  10248. },
  10249. "funding": [
  10250. {
  10251. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10252. "type": "custom"
  10253. },
  10254. {
  10255. "url": "https://github.com/nunomaduro",
  10256. "type": "github"
  10257. },
  10258. {
  10259. "url": "https://www.patreon.com/nunomaduro",
  10260. "type": "patreon"
  10261. }
  10262. ],
  10263. "time": "2024-09-08T23:21:41+00:00"
  10264. },
  10265. {
  10266. "name": "pestphp/pest-plugin-arch",
  10267. "version": "v3.0.0",
  10268. "source": {
  10269. "type": "git",
  10270. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  10271. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0"
  10272. },
  10273. "dist": {
  10274. "type": "zip",
  10275. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  10276. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  10277. "shasum": ""
  10278. },
  10279. "require": {
  10280. "pestphp/pest-plugin": "^3.0.0",
  10281. "php": "^8.2",
  10282. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  10283. },
  10284. "require-dev": {
  10285. "pestphp/pest": "^3.0.0",
  10286. "pestphp/pest-dev-tools": "^3.0.0"
  10287. },
  10288. "type": "library",
  10289. "extra": {
  10290. "pest": {
  10291. "plugins": [
  10292. "Pest\\Arch\\Plugin"
  10293. ]
  10294. }
  10295. },
  10296. "autoload": {
  10297. "files": [
  10298. "src/Autoload.php"
  10299. ],
  10300. "psr-4": {
  10301. "Pest\\Arch\\": "src/"
  10302. }
  10303. },
  10304. "notification-url": "https://packagist.org/downloads/",
  10305. "license": [
  10306. "MIT"
  10307. ],
  10308. "description": "The Arch plugin for Pest PHP.",
  10309. "keywords": [
  10310. "arch",
  10311. "architecture",
  10312. "framework",
  10313. "pest",
  10314. "php",
  10315. "plugin",
  10316. "test",
  10317. "testing",
  10318. "unit"
  10319. ],
  10320. "support": {
  10321. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.0.0"
  10322. },
  10323. "funding": [
  10324. {
  10325. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10326. "type": "custom"
  10327. },
  10328. {
  10329. "url": "https://github.com/nunomaduro",
  10330. "type": "github"
  10331. }
  10332. ],
  10333. "time": "2024-09-08T23:23:55+00:00"
  10334. },
  10335. {
  10336. "name": "pestphp/pest-plugin-livewire",
  10337. "version": "v3.0.0",
  10338. "source": {
  10339. "type": "git",
  10340. "url": "https://github.com/pestphp/pest-plugin-livewire.git",
  10341. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89"
  10342. },
  10343. "dist": {
  10344. "type": "zip",
  10345. "url": "https://api.github.com/repos/pestphp/pest-plugin-livewire/zipball/e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10346. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10347. "shasum": ""
  10348. },
  10349. "require": {
  10350. "livewire/livewire": "^3.5.6",
  10351. "pestphp/pest": "^3.0.0",
  10352. "php": "^8.1"
  10353. },
  10354. "require-dev": {
  10355. "orchestra/testbench": "^9.4.0",
  10356. "pestphp/pest-dev-tools": "^3.0.0"
  10357. },
  10358. "type": "library",
  10359. "autoload": {
  10360. "files": [
  10361. "src/Autoload.php"
  10362. ],
  10363. "psr-4": {
  10364. "Pest\\Livewire\\": "src/"
  10365. }
  10366. },
  10367. "notification-url": "https://packagist.org/downloads/",
  10368. "license": [
  10369. "MIT"
  10370. ],
  10371. "description": "The Pest Livewire Plugin",
  10372. "keywords": [
  10373. "framework",
  10374. "livewire",
  10375. "pest",
  10376. "php",
  10377. "plugin",
  10378. "test",
  10379. "testing",
  10380. "unit"
  10381. ],
  10382. "support": {
  10383. "source": "https://github.com/pestphp/pest-plugin-livewire/tree/v3.0.0"
  10384. },
  10385. "funding": [
  10386. {
  10387. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10388. "type": "custom"
  10389. },
  10390. {
  10391. "url": "https://github.com/nunomaduro",
  10392. "type": "github"
  10393. },
  10394. {
  10395. "url": "https://www.patreon.com/nunomaduro",
  10396. "type": "patreon"
  10397. }
  10398. ],
  10399. "time": "2024-09-09T00:05:59+00:00"
  10400. },
  10401. {
  10402. "name": "pestphp/pest-plugin-mutate",
  10403. "version": "v3.0.5",
  10404. "source": {
  10405. "type": "git",
  10406. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  10407. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  10408. },
  10409. "dist": {
  10410. "type": "zip",
  10411. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10412. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10413. "shasum": ""
  10414. },
  10415. "require": {
  10416. "nikic/php-parser": "^5.2.0",
  10417. "pestphp/pest-plugin": "^3.0.0",
  10418. "php": "^8.2",
  10419. "psr/simple-cache": "^3.0.0"
  10420. },
  10421. "require-dev": {
  10422. "pestphp/pest": "^3.0.8",
  10423. "pestphp/pest-dev-tools": "^3.0.0",
  10424. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  10425. },
  10426. "type": "library",
  10427. "autoload": {
  10428. "psr-4": {
  10429. "Pest\\Mutate\\": "src/"
  10430. }
  10431. },
  10432. "notification-url": "https://packagist.org/downloads/",
  10433. "license": [
  10434. "MIT"
  10435. ],
  10436. "authors": [
  10437. {
  10438. "name": "Sandro Gehri",
  10439. "email": "sandrogehri@gmail.com"
  10440. }
  10441. ],
  10442. "description": "Mutates your code to find untested cases",
  10443. "keywords": [
  10444. "framework",
  10445. "mutate",
  10446. "mutation",
  10447. "pest",
  10448. "php",
  10449. "plugin",
  10450. "test",
  10451. "testing",
  10452. "unit"
  10453. ],
  10454. "support": {
  10455. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  10456. },
  10457. "funding": [
  10458. {
  10459. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10460. "type": "custom"
  10461. },
  10462. {
  10463. "url": "https://github.com/gehrisandro",
  10464. "type": "github"
  10465. },
  10466. {
  10467. "url": "https://github.com/nunomaduro",
  10468. "type": "github"
  10469. }
  10470. ],
  10471. "time": "2024-09-22T07:54:40+00:00"
  10472. },
  10473. {
  10474. "name": "phar-io/manifest",
  10475. "version": "2.0.4",
  10476. "source": {
  10477. "type": "git",
  10478. "url": "https://github.com/phar-io/manifest.git",
  10479. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10480. },
  10481. "dist": {
  10482. "type": "zip",
  10483. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10484. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10485. "shasum": ""
  10486. },
  10487. "require": {
  10488. "ext-dom": "*",
  10489. "ext-libxml": "*",
  10490. "ext-phar": "*",
  10491. "ext-xmlwriter": "*",
  10492. "phar-io/version": "^3.0.1",
  10493. "php": "^7.2 || ^8.0"
  10494. },
  10495. "type": "library",
  10496. "extra": {
  10497. "branch-alias": {
  10498. "dev-master": "2.0.x-dev"
  10499. }
  10500. },
  10501. "autoload": {
  10502. "classmap": [
  10503. "src/"
  10504. ]
  10505. },
  10506. "notification-url": "https://packagist.org/downloads/",
  10507. "license": [
  10508. "BSD-3-Clause"
  10509. ],
  10510. "authors": [
  10511. {
  10512. "name": "Arne Blankerts",
  10513. "email": "arne@blankerts.de",
  10514. "role": "Developer"
  10515. },
  10516. {
  10517. "name": "Sebastian Heuer",
  10518. "email": "sebastian@phpeople.de",
  10519. "role": "Developer"
  10520. },
  10521. {
  10522. "name": "Sebastian Bergmann",
  10523. "email": "sebastian@phpunit.de",
  10524. "role": "Developer"
  10525. }
  10526. ],
  10527. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10528. "support": {
  10529. "issues": "https://github.com/phar-io/manifest/issues",
  10530. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10531. },
  10532. "funding": [
  10533. {
  10534. "url": "https://github.com/theseer",
  10535. "type": "github"
  10536. }
  10537. ],
  10538. "time": "2024-03-03T12:33:53+00:00"
  10539. },
  10540. {
  10541. "name": "phar-io/version",
  10542. "version": "3.2.1",
  10543. "source": {
  10544. "type": "git",
  10545. "url": "https://github.com/phar-io/version.git",
  10546. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10547. },
  10548. "dist": {
  10549. "type": "zip",
  10550. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10551. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10552. "shasum": ""
  10553. },
  10554. "require": {
  10555. "php": "^7.2 || ^8.0"
  10556. },
  10557. "type": "library",
  10558. "autoload": {
  10559. "classmap": [
  10560. "src/"
  10561. ]
  10562. },
  10563. "notification-url": "https://packagist.org/downloads/",
  10564. "license": [
  10565. "BSD-3-Clause"
  10566. ],
  10567. "authors": [
  10568. {
  10569. "name": "Arne Blankerts",
  10570. "email": "arne@blankerts.de",
  10571. "role": "Developer"
  10572. },
  10573. {
  10574. "name": "Sebastian Heuer",
  10575. "email": "sebastian@phpeople.de",
  10576. "role": "Developer"
  10577. },
  10578. {
  10579. "name": "Sebastian Bergmann",
  10580. "email": "sebastian@phpunit.de",
  10581. "role": "Developer"
  10582. }
  10583. ],
  10584. "description": "Library for handling version information and constraints",
  10585. "support": {
  10586. "issues": "https://github.com/phar-io/version/issues",
  10587. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10588. },
  10589. "time": "2022-02-21T01:04:05+00:00"
  10590. },
  10591. {
  10592. "name": "php-di/invoker",
  10593. "version": "2.3.6",
  10594. "source": {
  10595. "type": "git",
  10596. "url": "https://github.com/PHP-DI/Invoker.git",
  10597. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576"
  10598. },
  10599. "dist": {
  10600. "type": "zip",
  10601. "url": "https://api.github.com/repos/PHP-DI/Invoker/zipball/59f15608528d8a8838d69b422a919fd6b16aa576",
  10602. "reference": "59f15608528d8a8838d69b422a919fd6b16aa576",
  10603. "shasum": ""
  10604. },
  10605. "require": {
  10606. "php": ">=7.3",
  10607. "psr/container": "^1.0|^2.0"
  10608. },
  10609. "require-dev": {
  10610. "athletic/athletic": "~0.1.8",
  10611. "mnapoli/hard-mode": "~0.3.0",
  10612. "phpunit/phpunit": "^9.0"
  10613. },
  10614. "type": "library",
  10615. "autoload": {
  10616. "psr-4": {
  10617. "Invoker\\": "src/"
  10618. }
  10619. },
  10620. "notification-url": "https://packagist.org/downloads/",
  10621. "license": [
  10622. "MIT"
  10623. ],
  10624. "description": "Generic and extensible callable invoker",
  10625. "homepage": "https://github.com/PHP-DI/Invoker",
  10626. "keywords": [
  10627. "callable",
  10628. "dependency",
  10629. "dependency-injection",
  10630. "injection",
  10631. "invoke",
  10632. "invoker"
  10633. ],
  10634. "support": {
  10635. "issues": "https://github.com/PHP-DI/Invoker/issues",
  10636. "source": "https://github.com/PHP-DI/Invoker/tree/2.3.6"
  10637. },
  10638. "funding": [
  10639. {
  10640. "url": "https://github.com/mnapoli",
  10641. "type": "github"
  10642. }
  10643. ],
  10644. "time": "2025-01-17T12:49:27+00:00"
  10645. },
  10646. {
  10647. "name": "php-di/php-di",
  10648. "version": "7.0.8",
  10649. "source": {
  10650. "type": "git",
  10651. "url": "https://github.com/PHP-DI/PHP-DI.git",
  10652. "reference": "98ddc81f8f768a2ad39e4cbe737285eaeabe577a"
  10653. },
  10654. "dist": {
  10655. "type": "zip",
  10656. "url": "https://api.github.com/repos/PHP-DI/PHP-DI/zipball/98ddc81f8f768a2ad39e4cbe737285eaeabe577a",
  10657. "reference": "98ddc81f8f768a2ad39e4cbe737285eaeabe577a",
  10658. "shasum": ""
  10659. },
  10660. "require": {
  10661. "laravel/serializable-closure": "^1.0 || ^2.0",
  10662. "php": ">=8.0",
  10663. "php-di/invoker": "^2.0",
  10664. "psr/container": "^1.1 || ^2.0"
  10665. },
  10666. "provide": {
  10667. "psr/container-implementation": "^1.0"
  10668. },
  10669. "require-dev": {
  10670. "friendsofphp/php-cs-fixer": "^3",
  10671. "friendsofphp/proxy-manager-lts": "^1",
  10672. "mnapoli/phpunit-easymock": "^1.3",
  10673. "phpunit/phpunit": "^9.6",
  10674. "vimeo/psalm": "^4.6"
  10675. },
  10676. "suggest": {
  10677. "friendsofphp/proxy-manager-lts": "Install it if you want to use lazy injection (version ^1)"
  10678. },
  10679. "type": "library",
  10680. "autoload": {
  10681. "files": [
  10682. "src/functions.php"
  10683. ],
  10684. "psr-4": {
  10685. "DI\\": "src/"
  10686. }
  10687. },
  10688. "notification-url": "https://packagist.org/downloads/",
  10689. "license": [
  10690. "MIT"
  10691. ],
  10692. "description": "The dependency injection container for humans",
  10693. "homepage": "https://php-di.org/",
  10694. "keywords": [
  10695. "PSR-11",
  10696. "container",
  10697. "container-interop",
  10698. "dependency injection",
  10699. "di",
  10700. "ioc",
  10701. "psr11"
  10702. ],
  10703. "support": {
  10704. "issues": "https://github.com/PHP-DI/PHP-DI/issues",
  10705. "source": "https://github.com/PHP-DI/PHP-DI/tree/7.0.8"
  10706. },
  10707. "funding": [
  10708. {
  10709. "url": "https://github.com/mnapoli",
  10710. "type": "github"
  10711. },
  10712. {
  10713. "url": "https://tidelift.com/funding/github/packagist/php-di/php-di",
  10714. "type": "tidelift"
  10715. }
  10716. ],
  10717. "time": "2025-01-28T21:02:46+00:00"
  10718. },
  10719. {
  10720. "name": "phpdocumentor/reflection-common",
  10721. "version": "2.2.0",
  10722. "source": {
  10723. "type": "git",
  10724. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10725. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  10726. },
  10727. "dist": {
  10728. "type": "zip",
  10729. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10730. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10731. "shasum": ""
  10732. },
  10733. "require": {
  10734. "php": "^7.2 || ^8.0"
  10735. },
  10736. "type": "library",
  10737. "extra": {
  10738. "branch-alias": {
  10739. "dev-2.x": "2.x-dev"
  10740. }
  10741. },
  10742. "autoload": {
  10743. "psr-4": {
  10744. "phpDocumentor\\Reflection\\": "src/"
  10745. }
  10746. },
  10747. "notification-url": "https://packagist.org/downloads/",
  10748. "license": [
  10749. "MIT"
  10750. ],
  10751. "authors": [
  10752. {
  10753. "name": "Jaap van Otterdijk",
  10754. "email": "opensource@ijaap.nl"
  10755. }
  10756. ],
  10757. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10758. "homepage": "http://www.phpdoc.org",
  10759. "keywords": [
  10760. "FQSEN",
  10761. "phpDocumentor",
  10762. "phpdoc",
  10763. "reflection",
  10764. "static analysis"
  10765. ],
  10766. "support": {
  10767. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  10768. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  10769. },
  10770. "time": "2020-06-27T09:03:43+00:00"
  10771. },
  10772. {
  10773. "name": "phpdocumentor/reflection-docblock",
  10774. "version": "5.6.1",
  10775. "source": {
  10776. "type": "git",
  10777. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  10778. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8"
  10779. },
  10780. "dist": {
  10781. "type": "zip",
  10782. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  10783. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  10784. "shasum": ""
  10785. },
  10786. "require": {
  10787. "doctrine/deprecations": "^1.1",
  10788. "ext-filter": "*",
  10789. "php": "^7.4 || ^8.0",
  10790. "phpdocumentor/reflection-common": "^2.2",
  10791. "phpdocumentor/type-resolver": "^1.7",
  10792. "phpstan/phpdoc-parser": "^1.7|^2.0",
  10793. "webmozart/assert": "^1.9.1"
  10794. },
  10795. "require-dev": {
  10796. "mockery/mockery": "~1.3.5 || ~1.6.0",
  10797. "phpstan/extension-installer": "^1.1",
  10798. "phpstan/phpstan": "^1.8",
  10799. "phpstan/phpstan-mockery": "^1.1",
  10800. "phpstan/phpstan-webmozart-assert": "^1.2",
  10801. "phpunit/phpunit": "^9.5",
  10802. "psalm/phar": "^5.26"
  10803. },
  10804. "type": "library",
  10805. "extra": {
  10806. "branch-alias": {
  10807. "dev-master": "5.x-dev"
  10808. }
  10809. },
  10810. "autoload": {
  10811. "psr-4": {
  10812. "phpDocumentor\\Reflection\\": "src"
  10813. }
  10814. },
  10815. "notification-url": "https://packagist.org/downloads/",
  10816. "license": [
  10817. "MIT"
  10818. ],
  10819. "authors": [
  10820. {
  10821. "name": "Mike van Riel",
  10822. "email": "me@mikevanriel.com"
  10823. },
  10824. {
  10825. "name": "Jaap van Otterdijk",
  10826. "email": "opensource@ijaap.nl"
  10827. }
  10828. ],
  10829. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  10830. "support": {
  10831. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  10832. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.1"
  10833. },
  10834. "time": "2024-12-07T09:39:29+00:00"
  10835. },
  10836. {
  10837. "name": "phpdocumentor/type-resolver",
  10838. "version": "1.10.0",
  10839. "source": {
  10840. "type": "git",
  10841. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10842. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  10843. },
  10844. "dist": {
  10845. "type": "zip",
  10846. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10847. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10848. "shasum": ""
  10849. },
  10850. "require": {
  10851. "doctrine/deprecations": "^1.0",
  10852. "php": "^7.3 || ^8.0",
  10853. "phpdocumentor/reflection-common": "^2.0",
  10854. "phpstan/phpdoc-parser": "^1.18|^2.0"
  10855. },
  10856. "require-dev": {
  10857. "ext-tokenizer": "*",
  10858. "phpbench/phpbench": "^1.2",
  10859. "phpstan/extension-installer": "^1.1",
  10860. "phpstan/phpstan": "^1.8",
  10861. "phpstan/phpstan-phpunit": "^1.1",
  10862. "phpunit/phpunit": "^9.5",
  10863. "rector/rector": "^0.13.9",
  10864. "vimeo/psalm": "^4.25"
  10865. },
  10866. "type": "library",
  10867. "extra": {
  10868. "branch-alias": {
  10869. "dev-1.x": "1.x-dev"
  10870. }
  10871. },
  10872. "autoload": {
  10873. "psr-4": {
  10874. "phpDocumentor\\Reflection\\": "src"
  10875. }
  10876. },
  10877. "notification-url": "https://packagist.org/downloads/",
  10878. "license": [
  10879. "MIT"
  10880. ],
  10881. "authors": [
  10882. {
  10883. "name": "Mike van Riel",
  10884. "email": "me@mikevanriel.com"
  10885. }
  10886. ],
  10887. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  10888. "support": {
  10889. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  10890. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  10891. },
  10892. "time": "2024-11-09T15:12:26+00:00"
  10893. },
  10894. {
  10895. "name": "phpstan/phpdoc-parser",
  10896. "version": "2.0.0",
  10897. "source": {
  10898. "type": "git",
  10899. "url": "https://github.com/phpstan/phpdoc-parser.git",
  10900. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299"
  10901. },
  10902. "dist": {
  10903. "type": "zip",
  10904. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299",
  10905. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299",
  10906. "shasum": ""
  10907. },
  10908. "require": {
  10909. "php": "^7.4 || ^8.0"
  10910. },
  10911. "require-dev": {
  10912. "doctrine/annotations": "^2.0",
  10913. "nikic/php-parser": "^5.3.0",
  10914. "php-parallel-lint/php-parallel-lint": "^1.2",
  10915. "phpstan/extension-installer": "^1.0",
  10916. "phpstan/phpstan": "^2.0",
  10917. "phpstan/phpstan-phpunit": "^2.0",
  10918. "phpstan/phpstan-strict-rules": "^2.0",
  10919. "phpunit/phpunit": "^9.6",
  10920. "symfony/process": "^5.2"
  10921. },
  10922. "type": "library",
  10923. "autoload": {
  10924. "psr-4": {
  10925. "PHPStan\\PhpDocParser\\": [
  10926. "src/"
  10927. ]
  10928. }
  10929. },
  10930. "notification-url": "https://packagist.org/downloads/",
  10931. "license": [
  10932. "MIT"
  10933. ],
  10934. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  10935. "support": {
  10936. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  10937. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0"
  10938. },
  10939. "time": "2024-10-13T11:29:49+00:00"
  10940. },
  10941. {
  10942. "name": "phpunit/php-code-coverage",
  10943. "version": "11.0.8",
  10944. "source": {
  10945. "type": "git",
  10946. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10947. "reference": "418c59fd080954f8c4aa5631d9502ecda2387118"
  10948. },
  10949. "dist": {
  10950. "type": "zip",
  10951. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/418c59fd080954f8c4aa5631d9502ecda2387118",
  10952. "reference": "418c59fd080954f8c4aa5631d9502ecda2387118",
  10953. "shasum": ""
  10954. },
  10955. "require": {
  10956. "ext-dom": "*",
  10957. "ext-libxml": "*",
  10958. "ext-xmlwriter": "*",
  10959. "nikic/php-parser": "^5.3.1",
  10960. "php": ">=8.2",
  10961. "phpunit/php-file-iterator": "^5.1.0",
  10962. "phpunit/php-text-template": "^4.0.1",
  10963. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  10964. "sebastian/complexity": "^4.0.1",
  10965. "sebastian/environment": "^7.2.0",
  10966. "sebastian/lines-of-code": "^3.0.1",
  10967. "sebastian/version": "^5.0.2",
  10968. "theseer/tokenizer": "^1.2.3"
  10969. },
  10970. "require-dev": {
  10971. "phpunit/phpunit": "^11.5.0"
  10972. },
  10973. "suggest": {
  10974. "ext-pcov": "PHP extension that provides line coverage",
  10975. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10976. },
  10977. "type": "library",
  10978. "extra": {
  10979. "branch-alias": {
  10980. "dev-main": "11.0.x-dev"
  10981. }
  10982. },
  10983. "autoload": {
  10984. "classmap": [
  10985. "src/"
  10986. ]
  10987. },
  10988. "notification-url": "https://packagist.org/downloads/",
  10989. "license": [
  10990. "BSD-3-Clause"
  10991. ],
  10992. "authors": [
  10993. {
  10994. "name": "Sebastian Bergmann",
  10995. "email": "sebastian@phpunit.de",
  10996. "role": "lead"
  10997. }
  10998. ],
  10999. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11000. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11001. "keywords": [
  11002. "coverage",
  11003. "testing",
  11004. "xunit"
  11005. ],
  11006. "support": {
  11007. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11008. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  11009. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.8"
  11010. },
  11011. "funding": [
  11012. {
  11013. "url": "https://github.com/sebastianbergmann",
  11014. "type": "github"
  11015. }
  11016. ],
  11017. "time": "2024-12-11T12:34:27+00:00"
  11018. },
  11019. {
  11020. "name": "phpunit/php-file-iterator",
  11021. "version": "5.1.0",
  11022. "source": {
  11023. "type": "git",
  11024. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11025. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  11026. },
  11027. "dist": {
  11028. "type": "zip",
  11029. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11030. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11031. "shasum": ""
  11032. },
  11033. "require": {
  11034. "php": ">=8.2"
  11035. },
  11036. "require-dev": {
  11037. "phpunit/phpunit": "^11.0"
  11038. },
  11039. "type": "library",
  11040. "extra": {
  11041. "branch-alias": {
  11042. "dev-main": "5.0-dev"
  11043. }
  11044. },
  11045. "autoload": {
  11046. "classmap": [
  11047. "src/"
  11048. ]
  11049. },
  11050. "notification-url": "https://packagist.org/downloads/",
  11051. "license": [
  11052. "BSD-3-Clause"
  11053. ],
  11054. "authors": [
  11055. {
  11056. "name": "Sebastian Bergmann",
  11057. "email": "sebastian@phpunit.de",
  11058. "role": "lead"
  11059. }
  11060. ],
  11061. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11062. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11063. "keywords": [
  11064. "filesystem",
  11065. "iterator"
  11066. ],
  11067. "support": {
  11068. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11069. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  11070. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  11071. },
  11072. "funding": [
  11073. {
  11074. "url": "https://github.com/sebastianbergmann",
  11075. "type": "github"
  11076. }
  11077. ],
  11078. "time": "2024-08-27T05:02:59+00:00"
  11079. },
  11080. {
  11081. "name": "phpunit/php-invoker",
  11082. "version": "5.0.1",
  11083. "source": {
  11084. "type": "git",
  11085. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11086. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  11087. },
  11088. "dist": {
  11089. "type": "zip",
  11090. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11091. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11092. "shasum": ""
  11093. },
  11094. "require": {
  11095. "php": ">=8.2"
  11096. },
  11097. "require-dev": {
  11098. "ext-pcntl": "*",
  11099. "phpunit/phpunit": "^11.0"
  11100. },
  11101. "suggest": {
  11102. "ext-pcntl": "*"
  11103. },
  11104. "type": "library",
  11105. "extra": {
  11106. "branch-alias": {
  11107. "dev-main": "5.0-dev"
  11108. }
  11109. },
  11110. "autoload": {
  11111. "classmap": [
  11112. "src/"
  11113. ]
  11114. },
  11115. "notification-url": "https://packagist.org/downloads/",
  11116. "license": [
  11117. "BSD-3-Clause"
  11118. ],
  11119. "authors": [
  11120. {
  11121. "name": "Sebastian Bergmann",
  11122. "email": "sebastian@phpunit.de",
  11123. "role": "lead"
  11124. }
  11125. ],
  11126. "description": "Invoke callables with a timeout",
  11127. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11128. "keywords": [
  11129. "process"
  11130. ],
  11131. "support": {
  11132. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11133. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  11134. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  11135. },
  11136. "funding": [
  11137. {
  11138. "url": "https://github.com/sebastianbergmann",
  11139. "type": "github"
  11140. }
  11141. ],
  11142. "time": "2024-07-03T05:07:44+00:00"
  11143. },
  11144. {
  11145. "name": "phpunit/php-text-template",
  11146. "version": "4.0.1",
  11147. "source": {
  11148. "type": "git",
  11149. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11150. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  11151. },
  11152. "dist": {
  11153. "type": "zip",
  11154. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11155. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11156. "shasum": ""
  11157. },
  11158. "require": {
  11159. "php": ">=8.2"
  11160. },
  11161. "require-dev": {
  11162. "phpunit/phpunit": "^11.0"
  11163. },
  11164. "type": "library",
  11165. "extra": {
  11166. "branch-alias": {
  11167. "dev-main": "4.0-dev"
  11168. }
  11169. },
  11170. "autoload": {
  11171. "classmap": [
  11172. "src/"
  11173. ]
  11174. },
  11175. "notification-url": "https://packagist.org/downloads/",
  11176. "license": [
  11177. "BSD-3-Clause"
  11178. ],
  11179. "authors": [
  11180. {
  11181. "name": "Sebastian Bergmann",
  11182. "email": "sebastian@phpunit.de",
  11183. "role": "lead"
  11184. }
  11185. ],
  11186. "description": "Simple template engine.",
  11187. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11188. "keywords": [
  11189. "template"
  11190. ],
  11191. "support": {
  11192. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11193. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  11194. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  11195. },
  11196. "funding": [
  11197. {
  11198. "url": "https://github.com/sebastianbergmann",
  11199. "type": "github"
  11200. }
  11201. ],
  11202. "time": "2024-07-03T05:08:43+00:00"
  11203. },
  11204. {
  11205. "name": "phpunit/php-timer",
  11206. "version": "7.0.1",
  11207. "source": {
  11208. "type": "git",
  11209. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11210. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  11211. },
  11212. "dist": {
  11213. "type": "zip",
  11214. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11215. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11216. "shasum": ""
  11217. },
  11218. "require": {
  11219. "php": ">=8.2"
  11220. },
  11221. "require-dev": {
  11222. "phpunit/phpunit": "^11.0"
  11223. },
  11224. "type": "library",
  11225. "extra": {
  11226. "branch-alias": {
  11227. "dev-main": "7.0-dev"
  11228. }
  11229. },
  11230. "autoload": {
  11231. "classmap": [
  11232. "src/"
  11233. ]
  11234. },
  11235. "notification-url": "https://packagist.org/downloads/",
  11236. "license": [
  11237. "BSD-3-Clause"
  11238. ],
  11239. "authors": [
  11240. {
  11241. "name": "Sebastian Bergmann",
  11242. "email": "sebastian@phpunit.de",
  11243. "role": "lead"
  11244. }
  11245. ],
  11246. "description": "Utility class for timing",
  11247. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11248. "keywords": [
  11249. "timer"
  11250. ],
  11251. "support": {
  11252. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11253. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  11254. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  11255. },
  11256. "funding": [
  11257. {
  11258. "url": "https://github.com/sebastianbergmann",
  11259. "type": "github"
  11260. }
  11261. ],
  11262. "time": "2024-07-03T05:09:35+00:00"
  11263. },
  11264. {
  11265. "name": "phpunit/phpunit",
  11266. "version": "11.5.3",
  11267. "source": {
  11268. "type": "git",
  11269. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11270. "reference": "30e319e578a7b5da3543073e30002bf82042f701"
  11271. },
  11272. "dist": {
  11273. "type": "zip",
  11274. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/30e319e578a7b5da3543073e30002bf82042f701",
  11275. "reference": "30e319e578a7b5da3543073e30002bf82042f701",
  11276. "shasum": ""
  11277. },
  11278. "require": {
  11279. "ext-dom": "*",
  11280. "ext-json": "*",
  11281. "ext-libxml": "*",
  11282. "ext-mbstring": "*",
  11283. "ext-xml": "*",
  11284. "ext-xmlwriter": "*",
  11285. "myclabs/deep-copy": "^1.12.1",
  11286. "phar-io/manifest": "^2.0.4",
  11287. "phar-io/version": "^3.2.1",
  11288. "php": ">=8.2",
  11289. "phpunit/php-code-coverage": "^11.0.8",
  11290. "phpunit/php-file-iterator": "^5.1.0",
  11291. "phpunit/php-invoker": "^5.0.1",
  11292. "phpunit/php-text-template": "^4.0.1",
  11293. "phpunit/php-timer": "^7.0.1",
  11294. "sebastian/cli-parser": "^3.0.2",
  11295. "sebastian/code-unit": "^3.0.2",
  11296. "sebastian/comparator": "^6.3.0",
  11297. "sebastian/diff": "^6.0.2",
  11298. "sebastian/environment": "^7.2.0",
  11299. "sebastian/exporter": "^6.3.0",
  11300. "sebastian/global-state": "^7.0.2",
  11301. "sebastian/object-enumerator": "^6.0.1",
  11302. "sebastian/type": "^5.1.0",
  11303. "sebastian/version": "^5.0.2",
  11304. "staabm/side-effects-detector": "^1.0.5"
  11305. },
  11306. "suggest": {
  11307. "ext-soap": "To be able to generate mocks based on WSDL files"
  11308. },
  11309. "bin": [
  11310. "phpunit"
  11311. ],
  11312. "type": "library",
  11313. "extra": {
  11314. "branch-alias": {
  11315. "dev-main": "11.5-dev"
  11316. }
  11317. },
  11318. "autoload": {
  11319. "files": [
  11320. "src/Framework/Assert/Functions.php"
  11321. ],
  11322. "classmap": [
  11323. "src/"
  11324. ]
  11325. },
  11326. "notification-url": "https://packagist.org/downloads/",
  11327. "license": [
  11328. "BSD-3-Clause"
  11329. ],
  11330. "authors": [
  11331. {
  11332. "name": "Sebastian Bergmann",
  11333. "email": "sebastian@phpunit.de",
  11334. "role": "lead"
  11335. }
  11336. ],
  11337. "description": "The PHP Unit Testing framework.",
  11338. "homepage": "https://phpunit.de/",
  11339. "keywords": [
  11340. "phpunit",
  11341. "testing",
  11342. "xunit"
  11343. ],
  11344. "support": {
  11345. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11346. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11347. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.3"
  11348. },
  11349. "funding": [
  11350. {
  11351. "url": "https://phpunit.de/sponsors.html",
  11352. "type": "custom"
  11353. },
  11354. {
  11355. "url": "https://github.com/sebastianbergmann",
  11356. "type": "github"
  11357. },
  11358. {
  11359. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11360. "type": "tidelift"
  11361. }
  11362. ],
  11363. "time": "2025-01-13T09:36:00+00:00"
  11364. },
  11365. {
  11366. "name": "sebastian/cli-parser",
  11367. "version": "3.0.2",
  11368. "source": {
  11369. "type": "git",
  11370. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11371. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  11372. },
  11373. "dist": {
  11374. "type": "zip",
  11375. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11376. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11377. "shasum": ""
  11378. },
  11379. "require": {
  11380. "php": ">=8.2"
  11381. },
  11382. "require-dev": {
  11383. "phpunit/phpunit": "^11.0"
  11384. },
  11385. "type": "library",
  11386. "extra": {
  11387. "branch-alias": {
  11388. "dev-main": "3.0-dev"
  11389. }
  11390. },
  11391. "autoload": {
  11392. "classmap": [
  11393. "src/"
  11394. ]
  11395. },
  11396. "notification-url": "https://packagist.org/downloads/",
  11397. "license": [
  11398. "BSD-3-Clause"
  11399. ],
  11400. "authors": [
  11401. {
  11402. "name": "Sebastian Bergmann",
  11403. "email": "sebastian@phpunit.de",
  11404. "role": "lead"
  11405. }
  11406. ],
  11407. "description": "Library for parsing CLI options",
  11408. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11409. "support": {
  11410. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11411. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11412. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  11413. },
  11414. "funding": [
  11415. {
  11416. "url": "https://github.com/sebastianbergmann",
  11417. "type": "github"
  11418. }
  11419. ],
  11420. "time": "2024-07-03T04:41:36+00:00"
  11421. },
  11422. {
  11423. "name": "sebastian/code-unit",
  11424. "version": "3.0.2",
  11425. "source": {
  11426. "type": "git",
  11427. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11428. "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca"
  11429. },
  11430. "dist": {
  11431. "type": "zip",
  11432. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca",
  11433. "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca",
  11434. "shasum": ""
  11435. },
  11436. "require": {
  11437. "php": ">=8.2"
  11438. },
  11439. "require-dev": {
  11440. "phpunit/phpunit": "^11.5"
  11441. },
  11442. "type": "library",
  11443. "extra": {
  11444. "branch-alias": {
  11445. "dev-main": "3.0-dev"
  11446. }
  11447. },
  11448. "autoload": {
  11449. "classmap": [
  11450. "src/"
  11451. ]
  11452. },
  11453. "notification-url": "https://packagist.org/downloads/",
  11454. "license": [
  11455. "BSD-3-Clause"
  11456. ],
  11457. "authors": [
  11458. {
  11459. "name": "Sebastian Bergmann",
  11460. "email": "sebastian@phpunit.de",
  11461. "role": "lead"
  11462. }
  11463. ],
  11464. "description": "Collection of value objects that represent the PHP code units",
  11465. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11466. "support": {
  11467. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11468. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  11469. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.2"
  11470. },
  11471. "funding": [
  11472. {
  11473. "url": "https://github.com/sebastianbergmann",
  11474. "type": "github"
  11475. }
  11476. ],
  11477. "time": "2024-12-12T09:59:06+00:00"
  11478. },
  11479. {
  11480. "name": "sebastian/code-unit-reverse-lookup",
  11481. "version": "4.0.1",
  11482. "source": {
  11483. "type": "git",
  11484. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11485. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  11486. },
  11487. "dist": {
  11488. "type": "zip",
  11489. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  11490. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  11491. "shasum": ""
  11492. },
  11493. "require": {
  11494. "php": ">=8.2"
  11495. },
  11496. "require-dev": {
  11497. "phpunit/phpunit": "^11.0"
  11498. },
  11499. "type": "library",
  11500. "extra": {
  11501. "branch-alias": {
  11502. "dev-main": "4.0-dev"
  11503. }
  11504. },
  11505. "autoload": {
  11506. "classmap": [
  11507. "src/"
  11508. ]
  11509. },
  11510. "notification-url": "https://packagist.org/downloads/",
  11511. "license": [
  11512. "BSD-3-Clause"
  11513. ],
  11514. "authors": [
  11515. {
  11516. "name": "Sebastian Bergmann",
  11517. "email": "sebastian@phpunit.de"
  11518. }
  11519. ],
  11520. "description": "Looks up which function or method a line of code belongs to",
  11521. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11522. "support": {
  11523. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11524. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  11525. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  11526. },
  11527. "funding": [
  11528. {
  11529. "url": "https://github.com/sebastianbergmann",
  11530. "type": "github"
  11531. }
  11532. ],
  11533. "time": "2024-07-03T04:45:54+00:00"
  11534. },
  11535. {
  11536. "name": "sebastian/comparator",
  11537. "version": "6.3.0",
  11538. "source": {
  11539. "type": "git",
  11540. "url": "https://github.com/sebastianbergmann/comparator.git",
  11541. "reference": "d4e47a769525c4dd38cea90e5dcd435ddbbc7115"
  11542. },
  11543. "dist": {
  11544. "type": "zip",
  11545. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/d4e47a769525c4dd38cea90e5dcd435ddbbc7115",
  11546. "reference": "d4e47a769525c4dd38cea90e5dcd435ddbbc7115",
  11547. "shasum": ""
  11548. },
  11549. "require": {
  11550. "ext-dom": "*",
  11551. "ext-mbstring": "*",
  11552. "php": ">=8.2",
  11553. "sebastian/diff": "^6.0",
  11554. "sebastian/exporter": "^6.0"
  11555. },
  11556. "require-dev": {
  11557. "phpunit/phpunit": "^11.4"
  11558. },
  11559. "suggest": {
  11560. "ext-bcmath": "For comparing BcMath\\Number objects"
  11561. },
  11562. "type": "library",
  11563. "extra": {
  11564. "branch-alias": {
  11565. "dev-main": "6.2-dev"
  11566. }
  11567. },
  11568. "autoload": {
  11569. "classmap": [
  11570. "src/"
  11571. ]
  11572. },
  11573. "notification-url": "https://packagist.org/downloads/",
  11574. "license": [
  11575. "BSD-3-Clause"
  11576. ],
  11577. "authors": [
  11578. {
  11579. "name": "Sebastian Bergmann",
  11580. "email": "sebastian@phpunit.de"
  11581. },
  11582. {
  11583. "name": "Jeff Welch",
  11584. "email": "whatthejeff@gmail.com"
  11585. },
  11586. {
  11587. "name": "Volker Dusch",
  11588. "email": "github@wallbash.com"
  11589. },
  11590. {
  11591. "name": "Bernhard Schussek",
  11592. "email": "bschussek@2bepublished.at"
  11593. }
  11594. ],
  11595. "description": "Provides the functionality to compare PHP values for equality",
  11596. "homepage": "https://github.com/sebastianbergmann/comparator",
  11597. "keywords": [
  11598. "comparator",
  11599. "compare",
  11600. "equality"
  11601. ],
  11602. "support": {
  11603. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11604. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11605. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.0"
  11606. },
  11607. "funding": [
  11608. {
  11609. "url": "https://github.com/sebastianbergmann",
  11610. "type": "github"
  11611. }
  11612. ],
  11613. "time": "2025-01-06T10:28:19+00:00"
  11614. },
  11615. {
  11616. "name": "sebastian/complexity",
  11617. "version": "4.0.1",
  11618. "source": {
  11619. "type": "git",
  11620. "url": "https://github.com/sebastianbergmann/complexity.git",
  11621. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  11622. },
  11623. "dist": {
  11624. "type": "zip",
  11625. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  11626. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  11627. "shasum": ""
  11628. },
  11629. "require": {
  11630. "nikic/php-parser": "^5.0",
  11631. "php": ">=8.2"
  11632. },
  11633. "require-dev": {
  11634. "phpunit/phpunit": "^11.0"
  11635. },
  11636. "type": "library",
  11637. "extra": {
  11638. "branch-alias": {
  11639. "dev-main": "4.0-dev"
  11640. }
  11641. },
  11642. "autoload": {
  11643. "classmap": [
  11644. "src/"
  11645. ]
  11646. },
  11647. "notification-url": "https://packagist.org/downloads/",
  11648. "license": [
  11649. "BSD-3-Clause"
  11650. ],
  11651. "authors": [
  11652. {
  11653. "name": "Sebastian Bergmann",
  11654. "email": "sebastian@phpunit.de",
  11655. "role": "lead"
  11656. }
  11657. ],
  11658. "description": "Library for calculating the complexity of PHP code units",
  11659. "homepage": "https://github.com/sebastianbergmann/complexity",
  11660. "support": {
  11661. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11662. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11663. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  11664. },
  11665. "funding": [
  11666. {
  11667. "url": "https://github.com/sebastianbergmann",
  11668. "type": "github"
  11669. }
  11670. ],
  11671. "time": "2024-07-03T04:49:50+00:00"
  11672. },
  11673. {
  11674. "name": "sebastian/diff",
  11675. "version": "6.0.2",
  11676. "source": {
  11677. "type": "git",
  11678. "url": "https://github.com/sebastianbergmann/diff.git",
  11679. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  11680. },
  11681. "dist": {
  11682. "type": "zip",
  11683. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  11684. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  11685. "shasum": ""
  11686. },
  11687. "require": {
  11688. "php": ">=8.2"
  11689. },
  11690. "require-dev": {
  11691. "phpunit/phpunit": "^11.0",
  11692. "symfony/process": "^4.2 || ^5"
  11693. },
  11694. "type": "library",
  11695. "extra": {
  11696. "branch-alias": {
  11697. "dev-main": "6.0-dev"
  11698. }
  11699. },
  11700. "autoload": {
  11701. "classmap": [
  11702. "src/"
  11703. ]
  11704. },
  11705. "notification-url": "https://packagist.org/downloads/",
  11706. "license": [
  11707. "BSD-3-Clause"
  11708. ],
  11709. "authors": [
  11710. {
  11711. "name": "Sebastian Bergmann",
  11712. "email": "sebastian@phpunit.de"
  11713. },
  11714. {
  11715. "name": "Kore Nordmann",
  11716. "email": "mail@kore-nordmann.de"
  11717. }
  11718. ],
  11719. "description": "Diff implementation",
  11720. "homepage": "https://github.com/sebastianbergmann/diff",
  11721. "keywords": [
  11722. "diff",
  11723. "udiff",
  11724. "unidiff",
  11725. "unified diff"
  11726. ],
  11727. "support": {
  11728. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11729. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11730. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  11731. },
  11732. "funding": [
  11733. {
  11734. "url": "https://github.com/sebastianbergmann",
  11735. "type": "github"
  11736. }
  11737. ],
  11738. "time": "2024-07-03T04:53:05+00:00"
  11739. },
  11740. {
  11741. "name": "sebastian/environment",
  11742. "version": "7.2.0",
  11743. "source": {
  11744. "type": "git",
  11745. "url": "https://github.com/sebastianbergmann/environment.git",
  11746. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  11747. },
  11748. "dist": {
  11749. "type": "zip",
  11750. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11751. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11752. "shasum": ""
  11753. },
  11754. "require": {
  11755. "php": ">=8.2"
  11756. },
  11757. "require-dev": {
  11758. "phpunit/phpunit": "^11.0"
  11759. },
  11760. "suggest": {
  11761. "ext-posix": "*"
  11762. },
  11763. "type": "library",
  11764. "extra": {
  11765. "branch-alias": {
  11766. "dev-main": "7.2-dev"
  11767. }
  11768. },
  11769. "autoload": {
  11770. "classmap": [
  11771. "src/"
  11772. ]
  11773. },
  11774. "notification-url": "https://packagist.org/downloads/",
  11775. "license": [
  11776. "BSD-3-Clause"
  11777. ],
  11778. "authors": [
  11779. {
  11780. "name": "Sebastian Bergmann",
  11781. "email": "sebastian@phpunit.de"
  11782. }
  11783. ],
  11784. "description": "Provides functionality to handle HHVM/PHP environments",
  11785. "homepage": "https://github.com/sebastianbergmann/environment",
  11786. "keywords": [
  11787. "Xdebug",
  11788. "environment",
  11789. "hhvm"
  11790. ],
  11791. "support": {
  11792. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11793. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11794. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  11795. },
  11796. "funding": [
  11797. {
  11798. "url": "https://github.com/sebastianbergmann",
  11799. "type": "github"
  11800. }
  11801. ],
  11802. "time": "2024-07-03T04:54:44+00:00"
  11803. },
  11804. {
  11805. "name": "sebastian/exporter",
  11806. "version": "6.3.0",
  11807. "source": {
  11808. "type": "git",
  11809. "url": "https://github.com/sebastianbergmann/exporter.git",
  11810. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  11811. },
  11812. "dist": {
  11813. "type": "zip",
  11814. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11815. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11816. "shasum": ""
  11817. },
  11818. "require": {
  11819. "ext-mbstring": "*",
  11820. "php": ">=8.2",
  11821. "sebastian/recursion-context": "^6.0"
  11822. },
  11823. "require-dev": {
  11824. "phpunit/phpunit": "^11.3"
  11825. },
  11826. "type": "library",
  11827. "extra": {
  11828. "branch-alias": {
  11829. "dev-main": "6.1-dev"
  11830. }
  11831. },
  11832. "autoload": {
  11833. "classmap": [
  11834. "src/"
  11835. ]
  11836. },
  11837. "notification-url": "https://packagist.org/downloads/",
  11838. "license": [
  11839. "BSD-3-Clause"
  11840. ],
  11841. "authors": [
  11842. {
  11843. "name": "Sebastian Bergmann",
  11844. "email": "sebastian@phpunit.de"
  11845. },
  11846. {
  11847. "name": "Jeff Welch",
  11848. "email": "whatthejeff@gmail.com"
  11849. },
  11850. {
  11851. "name": "Volker Dusch",
  11852. "email": "github@wallbash.com"
  11853. },
  11854. {
  11855. "name": "Adam Harvey",
  11856. "email": "aharvey@php.net"
  11857. },
  11858. {
  11859. "name": "Bernhard Schussek",
  11860. "email": "bschussek@gmail.com"
  11861. }
  11862. ],
  11863. "description": "Provides the functionality to export PHP variables for visualization",
  11864. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11865. "keywords": [
  11866. "export",
  11867. "exporter"
  11868. ],
  11869. "support": {
  11870. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11871. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  11872. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  11873. },
  11874. "funding": [
  11875. {
  11876. "url": "https://github.com/sebastianbergmann",
  11877. "type": "github"
  11878. }
  11879. ],
  11880. "time": "2024-12-05T09:17:50+00:00"
  11881. },
  11882. {
  11883. "name": "sebastian/global-state",
  11884. "version": "7.0.2",
  11885. "source": {
  11886. "type": "git",
  11887. "url": "https://github.com/sebastianbergmann/global-state.git",
  11888. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  11889. },
  11890. "dist": {
  11891. "type": "zip",
  11892. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  11893. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  11894. "shasum": ""
  11895. },
  11896. "require": {
  11897. "php": ">=8.2",
  11898. "sebastian/object-reflector": "^4.0",
  11899. "sebastian/recursion-context": "^6.0"
  11900. },
  11901. "require-dev": {
  11902. "ext-dom": "*",
  11903. "phpunit/phpunit": "^11.0"
  11904. },
  11905. "type": "library",
  11906. "extra": {
  11907. "branch-alias": {
  11908. "dev-main": "7.0-dev"
  11909. }
  11910. },
  11911. "autoload": {
  11912. "classmap": [
  11913. "src/"
  11914. ]
  11915. },
  11916. "notification-url": "https://packagist.org/downloads/",
  11917. "license": [
  11918. "BSD-3-Clause"
  11919. ],
  11920. "authors": [
  11921. {
  11922. "name": "Sebastian Bergmann",
  11923. "email": "sebastian@phpunit.de"
  11924. }
  11925. ],
  11926. "description": "Snapshotting of global state",
  11927. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  11928. "keywords": [
  11929. "global state"
  11930. ],
  11931. "support": {
  11932. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11933. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  11934. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  11935. },
  11936. "funding": [
  11937. {
  11938. "url": "https://github.com/sebastianbergmann",
  11939. "type": "github"
  11940. }
  11941. ],
  11942. "time": "2024-07-03T04:57:36+00:00"
  11943. },
  11944. {
  11945. "name": "sebastian/lines-of-code",
  11946. "version": "3.0.1",
  11947. "source": {
  11948. "type": "git",
  11949. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11950. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  11951. },
  11952. "dist": {
  11953. "type": "zip",
  11954. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11955. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11956. "shasum": ""
  11957. },
  11958. "require": {
  11959. "nikic/php-parser": "^5.0",
  11960. "php": ">=8.2"
  11961. },
  11962. "require-dev": {
  11963. "phpunit/phpunit": "^11.0"
  11964. },
  11965. "type": "library",
  11966. "extra": {
  11967. "branch-alias": {
  11968. "dev-main": "3.0-dev"
  11969. }
  11970. },
  11971. "autoload": {
  11972. "classmap": [
  11973. "src/"
  11974. ]
  11975. },
  11976. "notification-url": "https://packagist.org/downloads/",
  11977. "license": [
  11978. "BSD-3-Clause"
  11979. ],
  11980. "authors": [
  11981. {
  11982. "name": "Sebastian Bergmann",
  11983. "email": "sebastian@phpunit.de",
  11984. "role": "lead"
  11985. }
  11986. ],
  11987. "description": "Library for counting the lines of code in PHP source code",
  11988. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11989. "support": {
  11990. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11991. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11992. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  11993. },
  11994. "funding": [
  11995. {
  11996. "url": "https://github.com/sebastianbergmann",
  11997. "type": "github"
  11998. }
  11999. ],
  12000. "time": "2024-07-03T04:58:38+00:00"
  12001. },
  12002. {
  12003. "name": "sebastian/object-enumerator",
  12004. "version": "6.0.1",
  12005. "source": {
  12006. "type": "git",
  12007. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12008. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  12009. },
  12010. "dist": {
  12011. "type": "zip",
  12012. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  12013. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  12014. "shasum": ""
  12015. },
  12016. "require": {
  12017. "php": ">=8.2",
  12018. "sebastian/object-reflector": "^4.0",
  12019. "sebastian/recursion-context": "^6.0"
  12020. },
  12021. "require-dev": {
  12022. "phpunit/phpunit": "^11.0"
  12023. },
  12024. "type": "library",
  12025. "extra": {
  12026. "branch-alias": {
  12027. "dev-main": "6.0-dev"
  12028. }
  12029. },
  12030. "autoload": {
  12031. "classmap": [
  12032. "src/"
  12033. ]
  12034. },
  12035. "notification-url": "https://packagist.org/downloads/",
  12036. "license": [
  12037. "BSD-3-Clause"
  12038. ],
  12039. "authors": [
  12040. {
  12041. "name": "Sebastian Bergmann",
  12042. "email": "sebastian@phpunit.de"
  12043. }
  12044. ],
  12045. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12046. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12047. "support": {
  12048. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12049. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  12050. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  12051. },
  12052. "funding": [
  12053. {
  12054. "url": "https://github.com/sebastianbergmann",
  12055. "type": "github"
  12056. }
  12057. ],
  12058. "time": "2024-07-03T05:00:13+00:00"
  12059. },
  12060. {
  12061. "name": "sebastian/object-reflector",
  12062. "version": "4.0.1",
  12063. "source": {
  12064. "type": "git",
  12065. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12066. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  12067. },
  12068. "dist": {
  12069. "type": "zip",
  12070. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12071. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12072. "shasum": ""
  12073. },
  12074. "require": {
  12075. "php": ">=8.2"
  12076. },
  12077. "require-dev": {
  12078. "phpunit/phpunit": "^11.0"
  12079. },
  12080. "type": "library",
  12081. "extra": {
  12082. "branch-alias": {
  12083. "dev-main": "4.0-dev"
  12084. }
  12085. },
  12086. "autoload": {
  12087. "classmap": [
  12088. "src/"
  12089. ]
  12090. },
  12091. "notification-url": "https://packagist.org/downloads/",
  12092. "license": [
  12093. "BSD-3-Clause"
  12094. ],
  12095. "authors": [
  12096. {
  12097. "name": "Sebastian Bergmann",
  12098. "email": "sebastian@phpunit.de"
  12099. }
  12100. ],
  12101. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12102. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12103. "support": {
  12104. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12105. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  12106. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  12107. },
  12108. "funding": [
  12109. {
  12110. "url": "https://github.com/sebastianbergmann",
  12111. "type": "github"
  12112. }
  12113. ],
  12114. "time": "2024-07-03T05:01:32+00:00"
  12115. },
  12116. {
  12117. "name": "sebastian/recursion-context",
  12118. "version": "6.0.2",
  12119. "source": {
  12120. "type": "git",
  12121. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12122. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  12123. },
  12124. "dist": {
  12125. "type": "zip",
  12126. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  12127. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  12128. "shasum": ""
  12129. },
  12130. "require": {
  12131. "php": ">=8.2"
  12132. },
  12133. "require-dev": {
  12134. "phpunit/phpunit": "^11.0"
  12135. },
  12136. "type": "library",
  12137. "extra": {
  12138. "branch-alias": {
  12139. "dev-main": "6.0-dev"
  12140. }
  12141. },
  12142. "autoload": {
  12143. "classmap": [
  12144. "src/"
  12145. ]
  12146. },
  12147. "notification-url": "https://packagist.org/downloads/",
  12148. "license": [
  12149. "BSD-3-Clause"
  12150. ],
  12151. "authors": [
  12152. {
  12153. "name": "Sebastian Bergmann",
  12154. "email": "sebastian@phpunit.de"
  12155. },
  12156. {
  12157. "name": "Jeff Welch",
  12158. "email": "whatthejeff@gmail.com"
  12159. },
  12160. {
  12161. "name": "Adam Harvey",
  12162. "email": "aharvey@php.net"
  12163. }
  12164. ],
  12165. "description": "Provides functionality to recursively process PHP variables",
  12166. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12167. "support": {
  12168. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12169. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  12170. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  12171. },
  12172. "funding": [
  12173. {
  12174. "url": "https://github.com/sebastianbergmann",
  12175. "type": "github"
  12176. }
  12177. ],
  12178. "time": "2024-07-03T05:10:34+00:00"
  12179. },
  12180. {
  12181. "name": "sebastian/type",
  12182. "version": "5.1.0",
  12183. "source": {
  12184. "type": "git",
  12185. "url": "https://github.com/sebastianbergmann/type.git",
  12186. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  12187. },
  12188. "dist": {
  12189. "type": "zip",
  12190. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12191. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12192. "shasum": ""
  12193. },
  12194. "require": {
  12195. "php": ">=8.2"
  12196. },
  12197. "require-dev": {
  12198. "phpunit/phpunit": "^11.3"
  12199. },
  12200. "type": "library",
  12201. "extra": {
  12202. "branch-alias": {
  12203. "dev-main": "5.1-dev"
  12204. }
  12205. },
  12206. "autoload": {
  12207. "classmap": [
  12208. "src/"
  12209. ]
  12210. },
  12211. "notification-url": "https://packagist.org/downloads/",
  12212. "license": [
  12213. "BSD-3-Clause"
  12214. ],
  12215. "authors": [
  12216. {
  12217. "name": "Sebastian Bergmann",
  12218. "email": "sebastian@phpunit.de",
  12219. "role": "lead"
  12220. }
  12221. ],
  12222. "description": "Collection of value objects that represent the types of the PHP type system",
  12223. "homepage": "https://github.com/sebastianbergmann/type",
  12224. "support": {
  12225. "issues": "https://github.com/sebastianbergmann/type/issues",
  12226. "security": "https://github.com/sebastianbergmann/type/security/policy",
  12227. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  12228. },
  12229. "funding": [
  12230. {
  12231. "url": "https://github.com/sebastianbergmann",
  12232. "type": "github"
  12233. }
  12234. ],
  12235. "time": "2024-09-17T13:12:04+00:00"
  12236. },
  12237. {
  12238. "name": "sebastian/version",
  12239. "version": "5.0.2",
  12240. "source": {
  12241. "type": "git",
  12242. "url": "https://github.com/sebastianbergmann/version.git",
  12243. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  12244. },
  12245. "dist": {
  12246. "type": "zip",
  12247. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12248. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12249. "shasum": ""
  12250. },
  12251. "require": {
  12252. "php": ">=8.2"
  12253. },
  12254. "type": "library",
  12255. "extra": {
  12256. "branch-alias": {
  12257. "dev-main": "5.0-dev"
  12258. }
  12259. },
  12260. "autoload": {
  12261. "classmap": [
  12262. "src/"
  12263. ]
  12264. },
  12265. "notification-url": "https://packagist.org/downloads/",
  12266. "license": [
  12267. "BSD-3-Clause"
  12268. ],
  12269. "authors": [
  12270. {
  12271. "name": "Sebastian Bergmann",
  12272. "email": "sebastian@phpunit.de",
  12273. "role": "lead"
  12274. }
  12275. ],
  12276. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12277. "homepage": "https://github.com/sebastianbergmann/version",
  12278. "support": {
  12279. "issues": "https://github.com/sebastianbergmann/version/issues",
  12280. "security": "https://github.com/sebastianbergmann/version/security/policy",
  12281. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  12282. },
  12283. "funding": [
  12284. {
  12285. "url": "https://github.com/sebastianbergmann",
  12286. "type": "github"
  12287. }
  12288. ],
  12289. "time": "2024-10-09T05:16:32+00:00"
  12290. },
  12291. {
  12292. "name": "spatie/backtrace",
  12293. "version": "1.7.1",
  12294. "source": {
  12295. "type": "git",
  12296. "url": "https://github.com/spatie/backtrace.git",
  12297. "reference": "0f2477c520e3729de58e061b8192f161c99f770b"
  12298. },
  12299. "dist": {
  12300. "type": "zip",
  12301. "url": "https://api.github.com/repos/spatie/backtrace/zipball/0f2477c520e3729de58e061b8192f161c99f770b",
  12302. "reference": "0f2477c520e3729de58e061b8192f161c99f770b",
  12303. "shasum": ""
  12304. },
  12305. "require": {
  12306. "php": "^7.3 || ^8.0"
  12307. },
  12308. "require-dev": {
  12309. "ext-json": "*",
  12310. "laravel/serializable-closure": "^1.3 || ^2.0",
  12311. "phpunit/phpunit": "^9.3 || ^11.4.3",
  12312. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6",
  12313. "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0"
  12314. },
  12315. "type": "library",
  12316. "autoload": {
  12317. "psr-4": {
  12318. "Spatie\\Backtrace\\": "src"
  12319. }
  12320. },
  12321. "notification-url": "https://packagist.org/downloads/",
  12322. "license": [
  12323. "MIT"
  12324. ],
  12325. "authors": [
  12326. {
  12327. "name": "Freek Van de Herten",
  12328. "email": "freek@spatie.be",
  12329. "homepage": "https://spatie.be",
  12330. "role": "Developer"
  12331. }
  12332. ],
  12333. "description": "A better backtrace",
  12334. "homepage": "https://github.com/spatie/backtrace",
  12335. "keywords": [
  12336. "Backtrace",
  12337. "spatie"
  12338. ],
  12339. "support": {
  12340. "source": "https://github.com/spatie/backtrace/tree/1.7.1"
  12341. },
  12342. "funding": [
  12343. {
  12344. "url": "https://github.com/sponsors/spatie",
  12345. "type": "github"
  12346. },
  12347. {
  12348. "url": "https://spatie.be/open-source/support-us",
  12349. "type": "other"
  12350. }
  12351. ],
  12352. "time": "2024-12-02T13:28:15+00:00"
  12353. },
  12354. {
  12355. "name": "spatie/error-solutions",
  12356. "version": "1.1.2",
  12357. "source": {
  12358. "type": "git",
  12359. "url": "https://github.com/spatie/error-solutions.git",
  12360. "reference": "d239a65235a1eb128dfa0a4e4c4ef032ea11b541"
  12361. },
  12362. "dist": {
  12363. "type": "zip",
  12364. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/d239a65235a1eb128dfa0a4e4c4ef032ea11b541",
  12365. "reference": "d239a65235a1eb128dfa0a4e4c4ef032ea11b541",
  12366. "shasum": ""
  12367. },
  12368. "require": {
  12369. "php": "^8.0"
  12370. },
  12371. "require-dev": {
  12372. "illuminate/broadcasting": "^10.0|^11.0",
  12373. "illuminate/cache": "^10.0|^11.0",
  12374. "illuminate/support": "^10.0|^11.0",
  12375. "livewire/livewire": "^2.11|^3.3.5",
  12376. "openai-php/client": "^0.10.1",
  12377. "orchestra/testbench": "^7.0|8.22.3|^9.0",
  12378. "pestphp/pest": "^2.20",
  12379. "phpstan/phpstan": "^1.11",
  12380. "psr/simple-cache": "^3.0",
  12381. "psr/simple-cache-implementation": "^3.0",
  12382. "spatie/ray": "^1.28",
  12383. "symfony/cache": "^5.4|^6.0|^7.0",
  12384. "symfony/process": "^5.4|^6.0|^7.0",
  12385. "vlucas/phpdotenv": "^5.5"
  12386. },
  12387. "suggest": {
  12388. "openai-php/client": "Require get solutions from OpenAI",
  12389. "simple-cache-implementation": "To cache solutions from OpenAI"
  12390. },
  12391. "type": "library",
  12392. "autoload": {
  12393. "psr-4": {
  12394. "Spatie\\Ignition\\": "legacy/ignition",
  12395. "Spatie\\ErrorSolutions\\": "src",
  12396. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  12397. }
  12398. },
  12399. "notification-url": "https://packagist.org/downloads/",
  12400. "license": [
  12401. "MIT"
  12402. ],
  12403. "authors": [
  12404. {
  12405. "name": "Ruben Van Assche",
  12406. "email": "ruben@spatie.be",
  12407. "role": "Developer"
  12408. }
  12409. ],
  12410. "description": "This is my package error-solutions",
  12411. "homepage": "https://github.com/spatie/error-solutions",
  12412. "keywords": [
  12413. "error-solutions",
  12414. "spatie"
  12415. ],
  12416. "support": {
  12417. "issues": "https://github.com/spatie/error-solutions/issues",
  12418. "source": "https://github.com/spatie/error-solutions/tree/1.1.2"
  12419. },
  12420. "funding": [
  12421. {
  12422. "url": "https://github.com/Spatie",
  12423. "type": "github"
  12424. }
  12425. ],
  12426. "time": "2024-12-11T09:51:56+00:00"
  12427. },
  12428. {
  12429. "name": "spatie/flare-client-php",
  12430. "version": "1.10.0",
  12431. "source": {
  12432. "type": "git",
  12433. "url": "https://github.com/spatie/flare-client-php.git",
  12434. "reference": "140a42b2c5d59ac4ecf8f5b493386a4f2eb28272"
  12435. },
  12436. "dist": {
  12437. "type": "zip",
  12438. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/140a42b2c5d59ac4ecf8f5b493386a4f2eb28272",
  12439. "reference": "140a42b2c5d59ac4ecf8f5b493386a4f2eb28272",
  12440. "shasum": ""
  12441. },
  12442. "require": {
  12443. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  12444. "php": "^8.0",
  12445. "spatie/backtrace": "^1.6.1",
  12446. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  12447. "symfony/mime": "^5.2|^6.0|^7.0",
  12448. "symfony/process": "^5.2|^6.0|^7.0",
  12449. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  12450. },
  12451. "require-dev": {
  12452. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  12453. "pestphp/pest": "^1.20|^2.0",
  12454. "phpstan/extension-installer": "^1.1",
  12455. "phpstan/phpstan-deprecation-rules": "^1.0",
  12456. "phpstan/phpstan-phpunit": "^1.0",
  12457. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  12458. },
  12459. "type": "library",
  12460. "extra": {
  12461. "branch-alias": {
  12462. "dev-main": "1.3.x-dev"
  12463. }
  12464. },
  12465. "autoload": {
  12466. "files": [
  12467. "src/helpers.php"
  12468. ],
  12469. "psr-4": {
  12470. "Spatie\\FlareClient\\": "src"
  12471. }
  12472. },
  12473. "notification-url": "https://packagist.org/downloads/",
  12474. "license": [
  12475. "MIT"
  12476. ],
  12477. "description": "Send PHP errors to Flare",
  12478. "homepage": "https://github.com/spatie/flare-client-php",
  12479. "keywords": [
  12480. "exception",
  12481. "flare",
  12482. "reporting",
  12483. "spatie"
  12484. ],
  12485. "support": {
  12486. "issues": "https://github.com/spatie/flare-client-php/issues",
  12487. "source": "https://github.com/spatie/flare-client-php/tree/1.10.0"
  12488. },
  12489. "funding": [
  12490. {
  12491. "url": "https://github.com/spatie",
  12492. "type": "github"
  12493. }
  12494. ],
  12495. "time": "2024-12-02T14:30:06+00:00"
  12496. },
  12497. {
  12498. "name": "spatie/ignition",
  12499. "version": "1.15.0",
  12500. "source": {
  12501. "type": "git",
  12502. "url": "https://github.com/spatie/ignition.git",
  12503. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2"
  12504. },
  12505. "dist": {
  12506. "type": "zip",
  12507. "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  12508. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  12509. "shasum": ""
  12510. },
  12511. "require": {
  12512. "ext-json": "*",
  12513. "ext-mbstring": "*",
  12514. "php": "^8.0",
  12515. "spatie/error-solutions": "^1.0",
  12516. "spatie/flare-client-php": "^1.7",
  12517. "symfony/console": "^5.4|^6.0|^7.0",
  12518. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  12519. },
  12520. "require-dev": {
  12521. "illuminate/cache": "^9.52|^10.0|^11.0",
  12522. "mockery/mockery": "^1.4",
  12523. "pestphp/pest": "^1.20|^2.0",
  12524. "phpstan/extension-installer": "^1.1",
  12525. "phpstan/phpstan-deprecation-rules": "^1.0",
  12526. "phpstan/phpstan-phpunit": "^1.0",
  12527. "psr/simple-cache-implementation": "*",
  12528. "symfony/cache": "^5.4|^6.0|^7.0",
  12529. "symfony/process": "^5.4|^6.0|^7.0",
  12530. "vlucas/phpdotenv": "^5.5"
  12531. },
  12532. "suggest": {
  12533. "openai-php/client": "Require get solutions from OpenAI",
  12534. "simple-cache-implementation": "To cache solutions from OpenAI"
  12535. },
  12536. "type": "library",
  12537. "extra": {
  12538. "branch-alias": {
  12539. "dev-main": "1.5.x-dev"
  12540. }
  12541. },
  12542. "autoload": {
  12543. "psr-4": {
  12544. "Spatie\\Ignition\\": "src"
  12545. }
  12546. },
  12547. "notification-url": "https://packagist.org/downloads/",
  12548. "license": [
  12549. "MIT"
  12550. ],
  12551. "authors": [
  12552. {
  12553. "name": "Spatie",
  12554. "email": "info@spatie.be",
  12555. "role": "Developer"
  12556. }
  12557. ],
  12558. "description": "A beautiful error page for PHP applications.",
  12559. "homepage": "https://flareapp.io/ignition",
  12560. "keywords": [
  12561. "error",
  12562. "flare",
  12563. "laravel",
  12564. "page"
  12565. ],
  12566. "support": {
  12567. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12568. "forum": "https://twitter.com/flareappio",
  12569. "issues": "https://github.com/spatie/ignition/issues",
  12570. "source": "https://github.com/spatie/ignition"
  12571. },
  12572. "funding": [
  12573. {
  12574. "url": "https://github.com/spatie",
  12575. "type": "github"
  12576. }
  12577. ],
  12578. "time": "2024-06-12T14:55:22+00:00"
  12579. },
  12580. {
  12581. "name": "spatie/laravel-ignition",
  12582. "version": "2.9.0",
  12583. "source": {
  12584. "type": "git",
  12585. "url": "https://github.com/spatie/laravel-ignition.git",
  12586. "reference": "62042df15314b829d0f26e02108f559018e2aad0"
  12587. },
  12588. "dist": {
  12589. "type": "zip",
  12590. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/62042df15314b829d0f26e02108f559018e2aad0",
  12591. "reference": "62042df15314b829d0f26e02108f559018e2aad0",
  12592. "shasum": ""
  12593. },
  12594. "require": {
  12595. "ext-curl": "*",
  12596. "ext-json": "*",
  12597. "ext-mbstring": "*",
  12598. "illuminate/support": "^10.0|^11.0",
  12599. "php": "^8.1",
  12600. "spatie/ignition": "^1.15",
  12601. "symfony/console": "^6.2.3|^7.0",
  12602. "symfony/var-dumper": "^6.2.3|^7.0"
  12603. },
  12604. "require-dev": {
  12605. "livewire/livewire": "^2.11|^3.3.5",
  12606. "mockery/mockery": "^1.5.1",
  12607. "openai-php/client": "^0.8.1",
  12608. "orchestra/testbench": "8.22.3|^9.0",
  12609. "pestphp/pest": "^2.34",
  12610. "phpstan/extension-installer": "^1.3.1",
  12611. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  12612. "phpstan/phpstan-phpunit": "^1.3.16",
  12613. "vlucas/phpdotenv": "^5.5"
  12614. },
  12615. "suggest": {
  12616. "openai-php/client": "Require get solutions from OpenAI",
  12617. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  12618. },
  12619. "type": "library",
  12620. "extra": {
  12621. "laravel": {
  12622. "aliases": {
  12623. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  12624. },
  12625. "providers": [
  12626. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  12627. ]
  12628. }
  12629. },
  12630. "autoload": {
  12631. "files": [
  12632. "src/helpers.php"
  12633. ],
  12634. "psr-4": {
  12635. "Spatie\\LaravelIgnition\\": "src"
  12636. }
  12637. },
  12638. "notification-url": "https://packagist.org/downloads/",
  12639. "license": [
  12640. "MIT"
  12641. ],
  12642. "authors": [
  12643. {
  12644. "name": "Spatie",
  12645. "email": "info@spatie.be",
  12646. "role": "Developer"
  12647. }
  12648. ],
  12649. "description": "A beautiful error page for Laravel applications.",
  12650. "homepage": "https://flareapp.io/ignition",
  12651. "keywords": [
  12652. "error",
  12653. "flare",
  12654. "laravel",
  12655. "page"
  12656. ],
  12657. "support": {
  12658. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12659. "forum": "https://twitter.com/flareappio",
  12660. "issues": "https://github.com/spatie/laravel-ignition/issues",
  12661. "source": "https://github.com/spatie/laravel-ignition"
  12662. },
  12663. "funding": [
  12664. {
  12665. "url": "https://github.com/spatie",
  12666. "type": "github"
  12667. }
  12668. ],
  12669. "time": "2024-12-02T08:43:31+00:00"
  12670. },
  12671. {
  12672. "name": "spatie/laravel-ray",
  12673. "version": "1.39.0",
  12674. "source": {
  12675. "type": "git",
  12676. "url": "https://github.com/spatie/laravel-ray.git",
  12677. "reference": "31b601f98590606d20e76b5dd68578dc1642cd2c"
  12678. },
  12679. "dist": {
  12680. "type": "zip",
  12681. "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/31b601f98590606d20e76b5dd68578dc1642cd2c",
  12682. "reference": "31b601f98590606d20e76b5dd68578dc1642cd2c",
  12683. "shasum": ""
  12684. },
  12685. "require": {
  12686. "composer-runtime-api": "^2.2",
  12687. "ext-json": "*",
  12688. "illuminate/contracts": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12689. "illuminate/database": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12690. "illuminate/queue": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12691. "illuminate/support": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12692. "php": "^7.4 || ^8.0",
  12693. "spatie/backtrace": "^1.0",
  12694. "spatie/ray": "^1.41.3",
  12695. "symfony/stopwatch": "4.2 || ^5.1 || ^6.0 || ^7.0",
  12696. "zbateson/mail-mime-parser": "^1.3.1 || ^2.0 || ^3.0"
  12697. },
  12698. "require-dev": {
  12699. "guzzlehttp/guzzle": "^7.3",
  12700. "laravel/framework": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12701. "orchestra/testbench-core": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  12702. "pestphp/pest": "^1.22 || ^2.0",
  12703. "phpstan/phpstan": "^1.10.57 || ^2.0.2",
  12704. "phpunit/phpunit": "^9.3 || ^10.1",
  12705. "rector/rector": "dev-main",
  12706. "spatie/pest-plugin-snapshots": "^1.1 || ^2.0",
  12707. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12708. },
  12709. "type": "library",
  12710. "extra": {
  12711. "laravel": {
  12712. "providers": [
  12713. "Spatie\\LaravelRay\\RayServiceProvider"
  12714. ]
  12715. },
  12716. "branch-alias": {
  12717. "dev-main": "1.x-dev"
  12718. }
  12719. },
  12720. "autoload": {
  12721. "psr-4": {
  12722. "Spatie\\LaravelRay\\": "src"
  12723. }
  12724. },
  12725. "notification-url": "https://packagist.org/downloads/",
  12726. "license": [
  12727. "MIT"
  12728. ],
  12729. "authors": [
  12730. {
  12731. "name": "Freek Van der Herten",
  12732. "email": "freek@spatie.be",
  12733. "homepage": "https://spatie.be",
  12734. "role": "Developer"
  12735. }
  12736. ],
  12737. "description": "Easily debug Laravel apps",
  12738. "homepage": "https://github.com/spatie/laravel-ray",
  12739. "keywords": [
  12740. "laravel-ray",
  12741. "spatie"
  12742. ],
  12743. "support": {
  12744. "issues": "https://github.com/spatie/laravel-ray/issues",
  12745. "source": "https://github.com/spatie/laravel-ray/tree/1.39.0"
  12746. },
  12747. "funding": [
  12748. {
  12749. "url": "https://github.com/sponsors/spatie",
  12750. "type": "github"
  12751. },
  12752. {
  12753. "url": "https://spatie.be/open-source/support-us",
  12754. "type": "other"
  12755. }
  12756. ],
  12757. "time": "2024-12-11T09:34:41+00:00"
  12758. },
  12759. {
  12760. "name": "spatie/macroable",
  12761. "version": "2.0.0",
  12762. "source": {
  12763. "type": "git",
  12764. "url": "https://github.com/spatie/macroable.git",
  12765. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072"
  12766. },
  12767. "dist": {
  12768. "type": "zip",
  12769. "url": "https://api.github.com/repos/spatie/macroable/zipball/ec2c320f932e730607aff8052c44183cf3ecb072",
  12770. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072",
  12771. "shasum": ""
  12772. },
  12773. "require": {
  12774. "php": "^8.0"
  12775. },
  12776. "require-dev": {
  12777. "phpunit/phpunit": "^8.0|^9.3"
  12778. },
  12779. "type": "library",
  12780. "autoload": {
  12781. "psr-4": {
  12782. "Spatie\\Macroable\\": "src"
  12783. }
  12784. },
  12785. "notification-url": "https://packagist.org/downloads/",
  12786. "license": [
  12787. "MIT"
  12788. ],
  12789. "authors": [
  12790. {
  12791. "name": "Freek Van der Herten",
  12792. "email": "freek@spatie.be",
  12793. "homepage": "https://spatie.be",
  12794. "role": "Developer"
  12795. }
  12796. ],
  12797. "description": "A trait to dynamically add methods to a class",
  12798. "homepage": "https://github.com/spatie/macroable",
  12799. "keywords": [
  12800. "macroable",
  12801. "spatie"
  12802. ],
  12803. "support": {
  12804. "issues": "https://github.com/spatie/macroable/issues",
  12805. "source": "https://github.com/spatie/macroable/tree/2.0.0"
  12806. },
  12807. "time": "2021-03-26T22:39:02+00:00"
  12808. },
  12809. {
  12810. "name": "spatie/ray",
  12811. "version": "1.41.4",
  12812. "source": {
  12813. "type": "git",
  12814. "url": "https://github.com/spatie/ray.git",
  12815. "reference": "c5dbda0548c1881b30549ccc0b6d485f7471aaa5"
  12816. },
  12817. "dist": {
  12818. "type": "zip",
  12819. "url": "https://api.github.com/repos/spatie/ray/zipball/c5dbda0548c1881b30549ccc0b6d485f7471aaa5",
  12820. "reference": "c5dbda0548c1881b30549ccc0b6d485f7471aaa5",
  12821. "shasum": ""
  12822. },
  12823. "require": {
  12824. "ext-curl": "*",
  12825. "ext-json": "*",
  12826. "php": "^7.4 || ^8.0",
  12827. "ramsey/uuid": "^3.0 || ^4.1",
  12828. "spatie/backtrace": "^1.1",
  12829. "spatie/macroable": "^1.0 || ^2.0",
  12830. "symfony/stopwatch": "^4.2 || ^5.1 || ^6.0 || ^7.0",
  12831. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12832. },
  12833. "require-dev": {
  12834. "illuminate/support": "^7.20 || ^8.18 || ^9.0 || ^10.0 || ^11.0",
  12835. "nesbot/carbon": "^2.63",
  12836. "pestphp/pest": "^1.22",
  12837. "phpstan/phpstan": "^1.10.57 || ^2.0.2",
  12838. "phpunit/phpunit": "^9.5",
  12839. "rector/rector": "dev-main",
  12840. "spatie/phpunit-snapshot-assertions": "^4.2",
  12841. "spatie/test-time": "^1.2"
  12842. },
  12843. "bin": [
  12844. "bin/remove-ray.sh"
  12845. ],
  12846. "type": "library",
  12847. "extra": {
  12848. "branch-alias": {
  12849. "dev-main": "1.x-dev"
  12850. }
  12851. },
  12852. "autoload": {
  12853. "files": [
  12854. "src/helpers.php"
  12855. ],
  12856. "psr-4": {
  12857. "Spatie\\Ray\\": "src"
  12858. }
  12859. },
  12860. "notification-url": "https://packagist.org/downloads/",
  12861. "license": [
  12862. "MIT"
  12863. ],
  12864. "authors": [
  12865. {
  12866. "name": "Freek Van der Herten",
  12867. "email": "freek@spatie.be",
  12868. "homepage": "https://spatie.be",
  12869. "role": "Developer"
  12870. }
  12871. ],
  12872. "description": "Debug with Ray to fix problems faster",
  12873. "homepage": "https://github.com/spatie/ray",
  12874. "keywords": [
  12875. "ray",
  12876. "spatie"
  12877. ],
  12878. "support": {
  12879. "issues": "https://github.com/spatie/ray/issues",
  12880. "source": "https://github.com/spatie/ray/tree/1.41.4"
  12881. },
  12882. "funding": [
  12883. {
  12884. "url": "https://github.com/sponsors/spatie",
  12885. "type": "github"
  12886. },
  12887. {
  12888. "url": "https://spatie.be/open-source/support-us",
  12889. "type": "other"
  12890. }
  12891. ],
  12892. "time": "2024-12-09T11:32:15+00:00"
  12893. },
  12894. {
  12895. "name": "staabm/side-effects-detector",
  12896. "version": "1.0.5",
  12897. "source": {
  12898. "type": "git",
  12899. "url": "https://github.com/staabm/side-effects-detector.git",
  12900. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  12901. },
  12902. "dist": {
  12903. "type": "zip",
  12904. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  12905. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  12906. "shasum": ""
  12907. },
  12908. "require": {
  12909. "ext-tokenizer": "*",
  12910. "php": "^7.4 || ^8.0"
  12911. },
  12912. "require-dev": {
  12913. "phpstan/extension-installer": "^1.4.3",
  12914. "phpstan/phpstan": "^1.12.6",
  12915. "phpunit/phpunit": "^9.6.21",
  12916. "symfony/var-dumper": "^5.4.43",
  12917. "tomasvotruba/type-coverage": "1.0.0",
  12918. "tomasvotruba/unused-public": "1.0.0"
  12919. },
  12920. "type": "library",
  12921. "autoload": {
  12922. "classmap": [
  12923. "lib/"
  12924. ]
  12925. },
  12926. "notification-url": "https://packagist.org/downloads/",
  12927. "license": [
  12928. "MIT"
  12929. ],
  12930. "description": "A static analysis tool to detect side effects in PHP code",
  12931. "keywords": [
  12932. "static analysis"
  12933. ],
  12934. "support": {
  12935. "issues": "https://github.com/staabm/side-effects-detector/issues",
  12936. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  12937. },
  12938. "funding": [
  12939. {
  12940. "url": "https://github.com/staabm",
  12941. "type": "github"
  12942. }
  12943. ],
  12944. "time": "2024-10-20T05:08:20+00:00"
  12945. },
  12946. {
  12947. "name": "symfony/polyfill-iconv",
  12948. "version": "v1.31.0",
  12949. "source": {
  12950. "type": "git",
  12951. "url": "https://github.com/symfony/polyfill-iconv.git",
  12952. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  12953. },
  12954. "dist": {
  12955. "type": "zip",
  12956. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  12957. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  12958. "shasum": ""
  12959. },
  12960. "require": {
  12961. "php": ">=7.2"
  12962. },
  12963. "provide": {
  12964. "ext-iconv": "*"
  12965. },
  12966. "suggest": {
  12967. "ext-iconv": "For best performance"
  12968. },
  12969. "type": "library",
  12970. "extra": {
  12971. "thanks": {
  12972. "url": "https://github.com/symfony/polyfill",
  12973. "name": "symfony/polyfill"
  12974. }
  12975. },
  12976. "autoload": {
  12977. "files": [
  12978. "bootstrap.php"
  12979. ],
  12980. "psr-4": {
  12981. "Symfony\\Polyfill\\Iconv\\": ""
  12982. }
  12983. },
  12984. "notification-url": "https://packagist.org/downloads/",
  12985. "license": [
  12986. "MIT"
  12987. ],
  12988. "authors": [
  12989. {
  12990. "name": "Nicolas Grekas",
  12991. "email": "p@tchwork.com"
  12992. },
  12993. {
  12994. "name": "Symfony Community",
  12995. "homepage": "https://symfony.com/contributors"
  12996. }
  12997. ],
  12998. "description": "Symfony polyfill for the Iconv extension",
  12999. "homepage": "https://symfony.com",
  13000. "keywords": [
  13001. "compatibility",
  13002. "iconv",
  13003. "polyfill",
  13004. "portable",
  13005. "shim"
  13006. ],
  13007. "support": {
  13008. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  13009. },
  13010. "funding": [
  13011. {
  13012. "url": "https://symfony.com/sponsor",
  13013. "type": "custom"
  13014. },
  13015. {
  13016. "url": "https://github.com/fabpot",
  13017. "type": "github"
  13018. },
  13019. {
  13020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13021. "type": "tidelift"
  13022. }
  13023. ],
  13024. "time": "2024-09-09T11:45:10+00:00"
  13025. },
  13026. {
  13027. "name": "symfony/stopwatch",
  13028. "version": "v7.2.2",
  13029. "source": {
  13030. "type": "git",
  13031. "url": "https://github.com/symfony/stopwatch.git",
  13032. "reference": "e46690d5b9d7164a6d061cab1e8d46141b9f49df"
  13033. },
  13034. "dist": {
  13035. "type": "zip",
  13036. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/e46690d5b9d7164a6d061cab1e8d46141b9f49df",
  13037. "reference": "e46690d5b9d7164a6d061cab1e8d46141b9f49df",
  13038. "shasum": ""
  13039. },
  13040. "require": {
  13041. "php": ">=8.2",
  13042. "symfony/service-contracts": "^2.5|^3"
  13043. },
  13044. "type": "library",
  13045. "autoload": {
  13046. "psr-4": {
  13047. "Symfony\\Component\\Stopwatch\\": ""
  13048. },
  13049. "exclude-from-classmap": [
  13050. "/Tests/"
  13051. ]
  13052. },
  13053. "notification-url": "https://packagist.org/downloads/",
  13054. "license": [
  13055. "MIT"
  13056. ],
  13057. "authors": [
  13058. {
  13059. "name": "Fabien Potencier",
  13060. "email": "fabien@symfony.com"
  13061. },
  13062. {
  13063. "name": "Symfony Community",
  13064. "homepage": "https://symfony.com/contributors"
  13065. }
  13066. ],
  13067. "description": "Provides a way to profile code",
  13068. "homepage": "https://symfony.com",
  13069. "support": {
  13070. "source": "https://github.com/symfony/stopwatch/tree/v7.2.2"
  13071. },
  13072. "funding": [
  13073. {
  13074. "url": "https://symfony.com/sponsor",
  13075. "type": "custom"
  13076. },
  13077. {
  13078. "url": "https://github.com/fabpot",
  13079. "type": "github"
  13080. },
  13081. {
  13082. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13083. "type": "tidelift"
  13084. }
  13085. ],
  13086. "time": "2024-12-18T14:28:33+00:00"
  13087. },
  13088. {
  13089. "name": "symfony/yaml",
  13090. "version": "v7.2.3",
  13091. "source": {
  13092. "type": "git",
  13093. "url": "https://github.com/symfony/yaml.git",
  13094. "reference": "ac238f173df0c9c1120f862d0f599e17535a87ec"
  13095. },
  13096. "dist": {
  13097. "type": "zip",
  13098. "url": "https://api.github.com/repos/symfony/yaml/zipball/ac238f173df0c9c1120f862d0f599e17535a87ec",
  13099. "reference": "ac238f173df0c9c1120f862d0f599e17535a87ec",
  13100. "shasum": ""
  13101. },
  13102. "require": {
  13103. "php": ">=8.2",
  13104. "symfony/deprecation-contracts": "^2.5|^3.0",
  13105. "symfony/polyfill-ctype": "^1.8"
  13106. },
  13107. "conflict": {
  13108. "symfony/console": "<6.4"
  13109. },
  13110. "require-dev": {
  13111. "symfony/console": "^6.4|^7.0"
  13112. },
  13113. "bin": [
  13114. "Resources/bin/yaml-lint"
  13115. ],
  13116. "type": "library",
  13117. "autoload": {
  13118. "psr-4": {
  13119. "Symfony\\Component\\Yaml\\": ""
  13120. },
  13121. "exclude-from-classmap": [
  13122. "/Tests/"
  13123. ]
  13124. },
  13125. "notification-url": "https://packagist.org/downloads/",
  13126. "license": [
  13127. "MIT"
  13128. ],
  13129. "authors": [
  13130. {
  13131. "name": "Fabien Potencier",
  13132. "email": "fabien@symfony.com"
  13133. },
  13134. {
  13135. "name": "Symfony Community",
  13136. "homepage": "https://symfony.com/contributors"
  13137. }
  13138. ],
  13139. "description": "Loads and dumps YAML files",
  13140. "homepage": "https://symfony.com",
  13141. "support": {
  13142. "source": "https://github.com/symfony/yaml/tree/v7.2.3"
  13143. },
  13144. "funding": [
  13145. {
  13146. "url": "https://symfony.com/sponsor",
  13147. "type": "custom"
  13148. },
  13149. {
  13150. "url": "https://github.com/fabpot",
  13151. "type": "github"
  13152. },
  13153. {
  13154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13155. "type": "tidelift"
  13156. }
  13157. ],
  13158. "time": "2025-01-07T12:55:42+00:00"
  13159. },
  13160. {
  13161. "name": "ta-tikoma/phpunit-architecture-test",
  13162. "version": "0.8.4",
  13163. "source": {
  13164. "type": "git",
  13165. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  13166. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636"
  13167. },
  13168. "dist": {
  13169. "type": "zip",
  13170. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13171. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13172. "shasum": ""
  13173. },
  13174. "require": {
  13175. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  13176. "php": "^8.1.0",
  13177. "phpdocumentor/reflection-docblock": "^5.3.0",
  13178. "phpunit/phpunit": "^10.5.5 || ^11.0.0",
  13179. "symfony/finder": "^6.4.0 || ^7.0.0"
  13180. },
  13181. "require-dev": {
  13182. "laravel/pint": "^1.13.7",
  13183. "phpstan/phpstan": "^1.10.52"
  13184. },
  13185. "type": "library",
  13186. "autoload": {
  13187. "psr-4": {
  13188. "PHPUnit\\Architecture\\": "src/"
  13189. }
  13190. },
  13191. "notification-url": "https://packagist.org/downloads/",
  13192. "license": [
  13193. "MIT"
  13194. ],
  13195. "authors": [
  13196. {
  13197. "name": "Ni Shi",
  13198. "email": "futik0ma011@gmail.com"
  13199. },
  13200. {
  13201. "name": "Nuno Maduro",
  13202. "email": "enunomaduro@gmail.com"
  13203. }
  13204. ],
  13205. "description": "Methods for testing application architecture",
  13206. "keywords": [
  13207. "architecture",
  13208. "phpunit",
  13209. "stucture",
  13210. "test",
  13211. "testing"
  13212. ],
  13213. "support": {
  13214. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  13215. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.4"
  13216. },
  13217. "time": "2024-01-05T14:10:56+00:00"
  13218. },
  13219. {
  13220. "name": "theseer/tokenizer",
  13221. "version": "1.2.3",
  13222. "source": {
  13223. "type": "git",
  13224. "url": "https://github.com/theseer/tokenizer.git",
  13225. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13226. },
  13227. "dist": {
  13228. "type": "zip",
  13229. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13230. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13231. "shasum": ""
  13232. },
  13233. "require": {
  13234. "ext-dom": "*",
  13235. "ext-tokenizer": "*",
  13236. "ext-xmlwriter": "*",
  13237. "php": "^7.2 || ^8.0"
  13238. },
  13239. "type": "library",
  13240. "autoload": {
  13241. "classmap": [
  13242. "src/"
  13243. ]
  13244. },
  13245. "notification-url": "https://packagist.org/downloads/",
  13246. "license": [
  13247. "BSD-3-Clause"
  13248. ],
  13249. "authors": [
  13250. {
  13251. "name": "Arne Blankerts",
  13252. "email": "arne@blankerts.de",
  13253. "role": "Developer"
  13254. }
  13255. ],
  13256. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13257. "support": {
  13258. "issues": "https://github.com/theseer/tokenizer/issues",
  13259. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13260. },
  13261. "funding": [
  13262. {
  13263. "url": "https://github.com/theseer",
  13264. "type": "github"
  13265. }
  13266. ],
  13267. "time": "2024-03-03T12:36:25+00:00"
  13268. },
  13269. {
  13270. "name": "zbateson/mail-mime-parser",
  13271. "version": "3.0.3",
  13272. "source": {
  13273. "type": "git",
  13274. "url": "https://github.com/zbateson/mail-mime-parser.git",
  13275. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19"
  13276. },
  13277. "dist": {
  13278. "type": "zip",
  13279. "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/e0d4423fe27850c9dd301190767dbc421acc2f19",
  13280. "reference": "e0d4423fe27850c9dd301190767dbc421acc2f19",
  13281. "shasum": ""
  13282. },
  13283. "require": {
  13284. "guzzlehttp/psr7": "^2.5",
  13285. "php": ">=8.0",
  13286. "php-di/php-di": "^6.0|^7.0",
  13287. "psr/log": "^1|^2|^3",
  13288. "zbateson/mb-wrapper": "^2.0",
  13289. "zbateson/stream-decorators": "^2.1"
  13290. },
  13291. "require-dev": {
  13292. "friendsofphp/php-cs-fixer": "*",
  13293. "monolog/monolog": "^2|^3",
  13294. "phpstan/phpstan": "*",
  13295. "phpunit/phpunit": "^9.6"
  13296. },
  13297. "suggest": {
  13298. "ext-iconv": "For best support/performance",
  13299. "ext-mbstring": "For best support/performance"
  13300. },
  13301. "type": "library",
  13302. "autoload": {
  13303. "psr-4": {
  13304. "ZBateson\\MailMimeParser\\": "src/"
  13305. }
  13306. },
  13307. "notification-url": "https://packagist.org/downloads/",
  13308. "license": [
  13309. "BSD-2-Clause"
  13310. ],
  13311. "authors": [
  13312. {
  13313. "name": "Zaahid Bateson"
  13314. },
  13315. {
  13316. "name": "Contributors",
  13317. "homepage": "https://github.com/zbateson/mail-mime-parser/graphs/contributors"
  13318. }
  13319. ],
  13320. "description": "MIME email message parser",
  13321. "homepage": "https://mail-mime-parser.org",
  13322. "keywords": [
  13323. "MimeMailParser",
  13324. "email",
  13325. "mail",
  13326. "mailparse",
  13327. "mime",
  13328. "mimeparse",
  13329. "parser",
  13330. "php-imap"
  13331. ],
  13332. "support": {
  13333. "docs": "https://mail-mime-parser.org/#usage-guide",
  13334. "issues": "https://github.com/zbateson/mail-mime-parser/issues",
  13335. "source": "https://github.com/zbateson/mail-mime-parser"
  13336. },
  13337. "funding": [
  13338. {
  13339. "url": "https://github.com/zbateson",
  13340. "type": "github"
  13341. }
  13342. ],
  13343. "time": "2024-08-10T18:44:09+00:00"
  13344. },
  13345. {
  13346. "name": "zbateson/mb-wrapper",
  13347. "version": "2.0.1",
  13348. "source": {
  13349. "type": "git",
  13350. "url": "https://github.com/zbateson/mb-wrapper.git",
  13351. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff"
  13352. },
  13353. "dist": {
  13354. "type": "zip",
  13355. "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13356. "reference": "50a14c0c9537f978a61cde9fdc192a0267cc9cff",
  13357. "shasum": ""
  13358. },
  13359. "require": {
  13360. "php": ">=8.0",
  13361. "symfony/polyfill-iconv": "^1.9",
  13362. "symfony/polyfill-mbstring": "^1.9"
  13363. },
  13364. "require-dev": {
  13365. "friendsofphp/php-cs-fixer": "*",
  13366. "phpstan/phpstan": "*",
  13367. "phpunit/phpunit": "^9.6|^10.0"
  13368. },
  13369. "suggest": {
  13370. "ext-iconv": "For best support/performance",
  13371. "ext-mbstring": "For best support/performance"
  13372. },
  13373. "type": "library",
  13374. "autoload": {
  13375. "psr-4": {
  13376. "ZBateson\\MbWrapper\\": "src/"
  13377. }
  13378. },
  13379. "notification-url": "https://packagist.org/downloads/",
  13380. "license": [
  13381. "BSD-2-Clause"
  13382. ],
  13383. "authors": [
  13384. {
  13385. "name": "Zaahid Bateson"
  13386. }
  13387. ],
  13388. "description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
  13389. "keywords": [
  13390. "charset",
  13391. "encoding",
  13392. "http",
  13393. "iconv",
  13394. "mail",
  13395. "mb",
  13396. "mb_convert_encoding",
  13397. "mbstring",
  13398. "mime",
  13399. "multibyte",
  13400. "string"
  13401. ],
  13402. "support": {
  13403. "issues": "https://github.com/zbateson/mb-wrapper/issues",
  13404. "source": "https://github.com/zbateson/mb-wrapper/tree/2.0.1"
  13405. },
  13406. "funding": [
  13407. {
  13408. "url": "https://github.com/zbateson",
  13409. "type": "github"
  13410. }
  13411. ],
  13412. "time": "2024-12-20T22:05:33+00:00"
  13413. },
  13414. {
  13415. "name": "zbateson/stream-decorators",
  13416. "version": "2.1.1",
  13417. "source": {
  13418. "type": "git",
  13419. "url": "https://github.com/zbateson/stream-decorators.git",
  13420. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5"
  13421. },
  13422. "dist": {
  13423. "type": "zip",
  13424. "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13425. "reference": "32a2a62fb0f26313395c996ebd658d33c3f9c4e5",
  13426. "shasum": ""
  13427. },
  13428. "require": {
  13429. "guzzlehttp/psr7": "^2.5",
  13430. "php": ">=8.0",
  13431. "zbateson/mb-wrapper": "^2.0"
  13432. },
  13433. "require-dev": {
  13434. "friendsofphp/php-cs-fixer": "*",
  13435. "phpstan/phpstan": "*",
  13436. "phpunit/phpunit": "^9.6|^10.0"
  13437. },
  13438. "type": "library",
  13439. "autoload": {
  13440. "psr-4": {
  13441. "ZBateson\\StreamDecorators\\": "src/"
  13442. }
  13443. },
  13444. "notification-url": "https://packagist.org/downloads/",
  13445. "license": [
  13446. "BSD-2-Clause"
  13447. ],
  13448. "authors": [
  13449. {
  13450. "name": "Zaahid Bateson"
  13451. }
  13452. ],
  13453. "description": "PHP psr7 stream decorators for mime message part streams",
  13454. "keywords": [
  13455. "base64",
  13456. "charset",
  13457. "decorators",
  13458. "mail",
  13459. "mime",
  13460. "psr7",
  13461. "quoted-printable",
  13462. "stream",
  13463. "uuencode"
  13464. ],
  13465. "support": {
  13466. "issues": "https://github.com/zbateson/stream-decorators/issues",
  13467. "source": "https://github.com/zbateson/stream-decorators/tree/2.1.1"
  13468. },
  13469. "funding": [
  13470. {
  13471. "url": "https://github.com/zbateson",
  13472. "type": "github"
  13473. }
  13474. ],
  13475. "time": "2024-04-29T21:42:39+00:00"
  13476. }
  13477. ],
  13478. "aliases": [],
  13479. "minimum-stability": "stable",
  13480. "stability-flags": {},
  13481. "prefer-stable": true,
  13482. "prefer-lowest": false,
  13483. "platform": {
  13484. "php": "^8.2",
  13485. "ext-bcmath": "*",
  13486. "ext-intl": "*"
  13487. },
  13488. "platform-dev": {},
  13489. "plugin-api-version": "2.6.0"
  13490. }