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.

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400134011340213403134041340513406134071340813409134101341113412134131341413415134161341713418134191342013421134221342313424134251342613427134281342913430134311343213433134341343513436134371343813439134401344113442134431344413445134461344713448134491345013451134521345313454134551345613457134581345913460134611346213463134641346513466134671346813469134701347113472134731347413475134761347713478134791348013481
  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": "decc627f2a7bd0c6546114ebb1f500f9",
  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.6",
  81. "source": {
  82. "type": "git",
  83. "url": "https://github.com/andrewdwallo/filament-companies.git",
  84. "reference": "d45c96f2a1baff0b1579513e4ef176b59322b8bb"
  85. },
  86. "dist": {
  87. "type": "zip",
  88. "url": "https://api.github.com/repos/andrewdwallo/filament-companies/zipball/d45c96f2a1baff0b1579513e4ef176b59322b8bb",
  89. "reference": "d45c96f2a1baff0b1579513e4ef176b59322b8bb",
  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.6"
  154. },
  155. "time": "2024-11-13T23:20:24+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.0",
  224. "source": {
  225. "type": "git",
  226. "url": "https://github.com/andrewdwallo/transmatic.git",
  227. "reference": "fabd11ba0b9ed2813cd60556f7e8d3f0d236c329"
  228. },
  229. "dist": {
  230. "type": "zip",
  231. "url": "https://api.github.com/repos/andrewdwallo/transmatic/zipball/fabd11ba0b9ed2813cd60556f7e8d3f0d236c329",
  232. "reference": "fabd11ba0b9ed2813cd60556f7e8d3f0d236c329",
  233. "shasum": ""
  234. },
  235. "require": {
  236. "aws/aws-sdk-php-laravel": "^3.8",
  237. "ext-intl": "*",
  238. "ext-json": "*",
  239. "illuminate/contracts": "^10.0|^11.0",
  240. "php": "^8.1",
  241. "spatie/laravel-package-tools": "^1.14.0"
  242. },
  243. "require-dev": {
  244. "larastan/larastan": "^2.9",
  245. "laravel/pint": "^1.0",
  246. "nunomaduro/collision": "^7.8|^8.0",
  247. "orchestra/testbench": "^8.8|^9.0",
  248. "pestphp/pest": "^2.20",
  249. "pestphp/pest-plugin-arch": "^2.0",
  250. "pestphp/pest-plugin-laravel": "^2.0",
  251. "phpstan/extension-installer": "^1.1",
  252. "phpstan/phpstan-deprecation-rules": "^1.0",
  253. "phpstan/phpstan-phpunit": "^1.0",
  254. "spatie/laravel-ray": "^1.26"
  255. },
  256. "type": "library",
  257. "extra": {
  258. "laravel": {
  259. "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.0"
  300. },
  301. "time": "2024-03-22T21:31:50+00:00"
  302. },
  303. {
  304. "name": "anourvalar/eloquent-serialize",
  305. "version": "1.2.27",
  306. "source": {
  307. "type": "git",
  308. "url": "https://github.com/AnourValar/eloquent-serialize.git",
  309. "reference": "f1c4fcd41a6db1467ed75bc295b62f582d6fd0fe"
  310. },
  311. "dist": {
  312. "type": "zip",
  313. "url": "https://api.github.com/repos/AnourValar/eloquent-serialize/zipball/f1c4fcd41a6db1467ed75bc295b62f582d6fd0fe",
  314. "reference": "f1c4fcd41a6db1467ed75bc295b62f582d6fd0fe",
  315. "shasum": ""
  316. },
  317. "require": {
  318. "laravel/framework": "^8.0|^9.0|^10.0|^11.0",
  319. "php": "^7.4|^8.0"
  320. },
  321. "require-dev": {
  322. "friendsofphp/php-cs-fixer": "^3.26",
  323. "laravel/legacy-factories": "^1.1",
  324. "orchestra/testbench": "^6.0|^7.0|^8.0|^9.0",
  325. "phpstan/phpstan": "^1.10",
  326. "phpunit/phpunit": "^9.5|^10.5",
  327. "psalm/plugin-laravel": "^2.8",
  328. "squizlabs/php_codesniffer": "^3.7"
  329. },
  330. "type": "library",
  331. "extra": {
  332. "laravel": {
  333. "aliases": {
  334. "EloquentSerialize": "AnourValar\\EloquentSerialize\\Facades\\EloquentSerializeFacade"
  335. }
  336. }
  337. },
  338. "autoload": {
  339. "psr-4": {
  340. "AnourValar\\EloquentSerialize\\": "src/"
  341. }
  342. },
  343. "notification-url": "https://packagist.org/downloads/",
  344. "license": [
  345. "MIT"
  346. ],
  347. "description": "Laravel Query Builder (Eloquent) serialization",
  348. "homepage": "https://github.com/AnourValar/eloquent-serialize",
  349. "keywords": [
  350. "anourvalar",
  351. "builder",
  352. "copy",
  353. "eloquent",
  354. "job",
  355. "laravel",
  356. "query",
  357. "querybuilder",
  358. "queue",
  359. "serializable",
  360. "serialization",
  361. "serialize"
  362. ],
  363. "support": {
  364. "issues": "https://github.com/AnourValar/eloquent-serialize/issues",
  365. "source": "https://github.com/AnourValar/eloquent-serialize/tree/1.2.27"
  366. },
  367. "time": "2024-11-30T08:27:24+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.337.2",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "f885dd803a257da9d54e72a4750bba73e1196aee"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/f885dd803a257da9d54e72a4750bba73e1196aee",
  509. "reference": "f885dd803a257da9d54e72a4750bba73e1196aee",
  510. "shasum": ""
  511. },
  512. "require": {
  513. "aws/aws-crt-php": "^1.2.3",
  514. "ext-json": "*",
  515. "ext-pcre": "*",
  516. "ext-simplexml": "*",
  517. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  518. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  519. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  520. "mtdowling/jmespath.php": "^2.6",
  521. "php": ">=7.2.5",
  522. "psr/http-message": "^1.0 || ^2.0"
  523. },
  524. "require-dev": {
  525. "andrewsville/php-token-reflection": "^1.4",
  526. "aws/aws-php-sns-message-validator": "~1.0",
  527. "behat/behat": "~3.0",
  528. "composer/composer": "^1.10.22",
  529. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  530. "doctrine/cache": "~1.4",
  531. "ext-dom": "*",
  532. "ext-openssl": "*",
  533. "ext-pcntl": "*",
  534. "ext-sockets": "*",
  535. "nette/neon": "^2.3",
  536. "paragonie/random_compat": ">= 2",
  537. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  538. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  539. "psr/simple-cache": "^1.0 || ^2.0 || ^3.0",
  540. "sebastian/comparator": "^1.2.3 || ^4.0",
  541. "yoast/phpunit-polyfills": "^1.0"
  542. },
  543. "suggest": {
  544. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  545. "doctrine/cache": "To use the DoctrineCacheAdapter",
  546. "ext-curl": "To send requests using cURL",
  547. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  548. "ext-sockets": "To use client-side monitoring"
  549. },
  550. "type": "library",
  551. "extra": {
  552. "branch-alias": {
  553. "dev-master": "3.0-dev"
  554. }
  555. },
  556. "autoload": {
  557. "files": [
  558. "src/functions.php"
  559. ],
  560. "psr-4": {
  561. "Aws\\": "src/"
  562. },
  563. "exclude-from-classmap": [
  564. "src/data/"
  565. ]
  566. },
  567. "notification-url": "https://packagist.org/downloads/",
  568. "license": [
  569. "Apache-2.0"
  570. ],
  571. "authors": [
  572. {
  573. "name": "Amazon Web Services",
  574. "homepage": "http://aws.amazon.com"
  575. }
  576. ],
  577. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  578. "homepage": "http://aws.amazon.com/sdkforphp",
  579. "keywords": [
  580. "amazon",
  581. "aws",
  582. "cloud",
  583. "dynamodb",
  584. "ec2",
  585. "glacier",
  586. "s3",
  587. "sdk"
  588. ],
  589. "support": {
  590. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  591. "issues": "https://github.com/aws/aws-sdk-php/issues",
  592. "source": "https://github.com/aws/aws-sdk-php/tree/3.337.2"
  593. },
  594. "time": "2025-01-17T19:10:04+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.15",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/CodeWithDennis/filament-simple-alert.git",
  1036. "reference": "8fd7dfa48bb98061bcc3f5fbaacb82dce7a09c7b"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/CodeWithDennis/filament-simple-alert/zipball/8fd7dfa48bb98061bcc3f5fbaacb82dce7a09c7b",
  1041. "reference": "8fd7dfa48bb98061bcc3f5fbaacb82dce7a09c7b",
  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": "2024-12-03T16:17:47+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.0",
  1157. "source": {
  1158. "type": "git",
  1159. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  1160. "reference": "0d9c1890174b3d1857dba6ce76de7c178fe20283"
  1161. },
  1162. "dist": {
  1163. "type": "zip",
  1164. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/0d9c1890174b3d1857dba6ce76de7c178fe20283",
  1165. "reference": "0d9c1890174b3d1857dba6ce76de7c178fe20283",
  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": "2024-11-24T16:57:47+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.133",
  1737. "source": {
  1738. "type": "git",
  1739. "url": "https://github.com/filamentphp/actions.git",
  1740. "reference": "33464f1583217b5eb12364b617b27abe5315eb88"
  1741. },
  1742. "dist": {
  1743. "type": "zip",
  1744. "url": "https://api.github.com/repos/filamentphp/actions/zipball/33464f1583217b5eb12364b617b27abe5315eb88",
  1745. "reference": "33464f1583217b5eb12364b617b27abe5315eb88",
  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-10T12:47:49+00:00"
  1786. },
  1787. {
  1788. "name": "filament/filament",
  1789. "version": "v3.2.133",
  1790. "source": {
  1791. "type": "git",
  1792. "url": "https://github.com/filamentphp/panels.git",
  1793. "reference": "74550888c1c79761218aece3c339ca0e0cc260e8"
  1794. },
  1795. "dist": {
  1796. "type": "zip",
  1797. "url": "https://api.github.com/repos/filamentphp/panels/zipball/74550888c1c79761218aece3c339ca0e0cc260e8",
  1798. "reference": "74550888c1c79761218aece3c339ca0e0cc260e8",
  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-10T12:48:32+00:00"
  1851. },
  1852. {
  1853. "name": "filament/forms",
  1854. "version": "v3.2.133",
  1855. "source": {
  1856. "type": "git",
  1857. "url": "https://github.com/filamentphp/forms.git",
  1858. "reference": "20473c9eec7afa3ee618d2f86c7c449b3723d9fb"
  1859. },
  1860. "dist": {
  1861. "type": "zip",
  1862. "url": "https://api.github.com/repos/filamentphp/forms/zipball/20473c9eec7afa3ee618d2f86c7c449b3723d9fb",
  1863. "reference": "20473c9eec7afa3ee618d2f86c7c449b3723d9fb",
  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-10T12:47:50+00:00"
  1907. },
  1908. {
  1909. "name": "filament/infolists",
  1910. "version": "v3.2.133",
  1911. "source": {
  1912. "type": "git",
  1913. "url": "https://github.com/filamentphp/infolists.git",
  1914. "reference": "d3ee1eb508561f2b101c69cdb45c309539948d86"
  1915. },
  1916. "dist": {
  1917. "type": "zip",
  1918. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/d3ee1eb508561f2b101c69cdb45c309539948d86",
  1919. "reference": "d3ee1eb508561f2b101c69cdb45c309539948d86",
  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-10T12:48:11+00:00"
  1958. },
  1959. {
  1960. "name": "filament/notifications",
  1961. "version": "v3.2.133",
  1962. "source": {
  1963. "type": "git",
  1964. "url": "https://github.com/filamentphp/notifications.git",
  1965. "reference": "16cf5dbcbaf88cd9fff8d06aad866cb314b8bb64"
  1966. },
  1967. "dist": {
  1968. "type": "zip",
  1969. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/16cf5dbcbaf88cd9fff8d06aad866cb314b8bb64",
  1970. "reference": "16cf5dbcbaf88cd9fff8d06aad866cb314b8bb64",
  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-10T12:48:23+00:00"
  2010. },
  2011. {
  2012. "name": "filament/support",
  2013. "version": "v3.2.133",
  2014. "source": {
  2015. "type": "git",
  2016. "url": "https://github.com/filamentphp/support.git",
  2017. "reference": "38fd76ae4f96b53e6f98cbb7bad3f05ad5032cee"
  2018. },
  2019. "dist": {
  2020. "type": "zip",
  2021. "url": "https://api.github.com/repos/filamentphp/support/zipball/38fd76ae4f96b53e6f98cbb7bad3f05ad5032cee",
  2022. "reference": "38fd76ae4f96b53e6f98cbb7bad3f05ad5032cee",
  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-10T12:48:52+00:00"
  2069. },
  2070. {
  2071. "name": "filament/tables",
  2072. "version": "v3.2.133",
  2073. "source": {
  2074. "type": "git",
  2075. "url": "https://github.com/filamentphp/tables.git",
  2076. "reference": "6cbbea0bfd966ca2f26988c0fac4e02caebddf4a"
  2077. },
  2078. "dist": {
  2079. "type": "zip",
  2080. "url": "https://api.github.com/repos/filamentphp/tables/zipball/6cbbea0bfd966ca2f26988c0fac4e02caebddf4a",
  2081. "reference": "6cbbea0bfd966ca2f26988c0fac4e02caebddf4a",
  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-10T12:48:48+00:00"
  2121. },
  2122. {
  2123. "name": "filament/widgets",
  2124. "version": "v3.2.133",
  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.10.2",
  2169. "source": {
  2170. "type": "git",
  2171. "url": "https://github.com/firebase/php-jwt.git",
  2172. "reference": "30c19ed0f3264cb660ea496895cfb6ef7ee3653b"
  2173. },
  2174. "dist": {
  2175. "type": "zip",
  2176. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/30c19ed0f3264cb660ea496895cfb6ef7ee3653b",
  2177. "reference": "30c19ed0f3264cb660ea496895cfb6ef7ee3653b",
  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.10.2"
  2226. },
  2227. "time": "2024-11-24T11:22:49+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.38.2",
  3055. "source": {
  3056. "type": "git",
  3057. "url": "https://github.com/laravel/framework.git",
  3058. "reference": "9d290aa90fcad44048bedca5219d2b872e98772a"
  3059. },
  3060. "dist": {
  3061. "type": "zip",
  3062. "url": "https://api.github.com/repos/laravel/framework/zipball/9d290aa90fcad44048bedca5219d2b872e98772a",
  3063. "reference": "9d290aa90fcad44048bedca5219d2b872e98772a",
  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.2|^3.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. "league/flysystem-aws-s3-v3": "^3.25.1",
  3165. "league/flysystem-ftp": "^3.25.1",
  3166. "league/flysystem-path-prefixing": "^3.25.1",
  3167. "league/flysystem-read-only": "^3.25.1",
  3168. "league/flysystem-sftp-v3": "^3.25.1",
  3169. "mockery/mockery": "^1.6.10",
  3170. "orchestra/testbench-core": "^9.6",
  3171. "pda/pheanstalk": "^5.0.6",
  3172. "php-http/discovery": "^1.15",
  3173. "phpstan/phpstan": "^1.11.5",
  3174. "phpunit/phpunit": "^10.5.35|^11.3.6",
  3175. "predis/predis": "^2.3",
  3176. "resend/resend-php": "^0.10.0",
  3177. "symfony/cache": "^7.0.3",
  3178. "symfony/http-client": "^7.0.3",
  3179. "symfony/psr-http-message-bridge": "^7.0.3",
  3180. "symfony/translation": "^7.0.3"
  3181. },
  3182. "suggest": {
  3183. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3184. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  3185. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3186. "ext-apcu": "Required to use the APC cache driver.",
  3187. "ext-fileinfo": "Required to use the Filesystem class.",
  3188. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3189. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3190. "ext-memcached": "Required to use the memcache cache driver.",
  3191. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3192. "ext-pdo": "Required to use all database features.",
  3193. "ext-posix": "Required to use all features of the queue worker.",
  3194. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3195. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3196. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3197. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3198. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  3199. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  3200. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  3201. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  3202. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  3203. "mockery/mockery": "Required to use mocking (^1.6).",
  3204. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3205. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  3206. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  3207. "predis/predis": "Required to use the predis connector (^2.3).",
  3208. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3209. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3210. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3211. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3212. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3213. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3214. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3215. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3216. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3217. },
  3218. "type": "library",
  3219. "extra": {
  3220. "branch-alias": {
  3221. "dev-master": "11.x-dev"
  3222. }
  3223. },
  3224. "autoload": {
  3225. "files": [
  3226. "src/Illuminate/Collections/functions.php",
  3227. "src/Illuminate/Collections/helpers.php",
  3228. "src/Illuminate/Events/functions.php",
  3229. "src/Illuminate/Filesystem/functions.php",
  3230. "src/Illuminate/Foundation/helpers.php",
  3231. "src/Illuminate/Log/functions.php",
  3232. "src/Illuminate/Support/functions.php",
  3233. "src/Illuminate/Support/helpers.php"
  3234. ],
  3235. "psr-4": {
  3236. "Illuminate\\": "src/Illuminate/",
  3237. "Illuminate\\Support\\": [
  3238. "src/Illuminate/Macroable/",
  3239. "src/Illuminate/Collections/",
  3240. "src/Illuminate/Conditionable/"
  3241. ]
  3242. }
  3243. },
  3244. "notification-url": "https://packagist.org/downloads/",
  3245. "license": [
  3246. "MIT"
  3247. ],
  3248. "authors": [
  3249. {
  3250. "name": "Taylor Otwell",
  3251. "email": "taylor@laravel.com"
  3252. }
  3253. ],
  3254. "description": "The Laravel Framework.",
  3255. "homepage": "https://laravel.com",
  3256. "keywords": [
  3257. "framework",
  3258. "laravel"
  3259. ],
  3260. "support": {
  3261. "issues": "https://github.com/laravel/framework/issues",
  3262. "source": "https://github.com/laravel/framework"
  3263. },
  3264. "time": "2025-01-15T00:06:46+00:00"
  3265. },
  3266. {
  3267. "name": "laravel/prompts",
  3268. "version": "v0.3.3",
  3269. "source": {
  3270. "type": "git",
  3271. "url": "https://github.com/laravel/prompts.git",
  3272. "reference": "749395fcd5f8f7530fe1f00dfa84eb22c83d94ea"
  3273. },
  3274. "dist": {
  3275. "type": "zip",
  3276. "url": "https://api.github.com/repos/laravel/prompts/zipball/749395fcd5f8f7530fe1f00dfa84eb22c83d94ea",
  3277. "reference": "749395fcd5f8f7530fe1f00dfa84eb22c83d94ea",
  3278. "shasum": ""
  3279. },
  3280. "require": {
  3281. "composer-runtime-api": "^2.2",
  3282. "ext-mbstring": "*",
  3283. "php": "^8.1",
  3284. "symfony/console": "^6.2|^7.0"
  3285. },
  3286. "conflict": {
  3287. "illuminate/console": ">=10.17.0 <10.25.0",
  3288. "laravel/framework": ">=10.17.0 <10.25.0"
  3289. },
  3290. "require-dev": {
  3291. "illuminate/collections": "^10.0|^11.0",
  3292. "mockery/mockery": "^1.5",
  3293. "pestphp/pest": "^2.3|^3.4",
  3294. "phpstan/phpstan": "^1.11",
  3295. "phpstan/phpstan-mockery": "^1.1"
  3296. },
  3297. "suggest": {
  3298. "ext-pcntl": "Required for the spinner to be animated."
  3299. },
  3300. "type": "library",
  3301. "extra": {
  3302. "branch-alias": {
  3303. "dev-main": "0.3.x-dev"
  3304. }
  3305. },
  3306. "autoload": {
  3307. "files": [
  3308. "src/helpers.php"
  3309. ],
  3310. "psr-4": {
  3311. "Laravel\\Prompts\\": "src/"
  3312. }
  3313. },
  3314. "notification-url": "https://packagist.org/downloads/",
  3315. "license": [
  3316. "MIT"
  3317. ],
  3318. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3319. "support": {
  3320. "issues": "https://github.com/laravel/prompts/issues",
  3321. "source": "https://github.com/laravel/prompts/tree/v0.3.3"
  3322. },
  3323. "time": "2024-12-30T15:53:31+00:00"
  3324. },
  3325. {
  3326. "name": "laravel/sanctum",
  3327. "version": "v4.0.7",
  3328. "source": {
  3329. "type": "git",
  3330. "url": "https://github.com/laravel/sanctum.git",
  3331. "reference": "698064236a46df016e64a7eb059b1414e0b281df"
  3332. },
  3333. "dist": {
  3334. "type": "zip",
  3335. "url": "https://api.github.com/repos/laravel/sanctum/zipball/698064236a46df016e64a7eb059b1414e0b281df",
  3336. "reference": "698064236a46df016e64a7eb059b1414e0b281df",
  3337. "shasum": ""
  3338. },
  3339. "require": {
  3340. "ext-json": "*",
  3341. "illuminate/console": "^11.0",
  3342. "illuminate/contracts": "^11.0",
  3343. "illuminate/database": "^11.0",
  3344. "illuminate/support": "^11.0",
  3345. "php": "^8.2",
  3346. "symfony/console": "^7.0"
  3347. },
  3348. "require-dev": {
  3349. "mockery/mockery": "^1.6",
  3350. "orchestra/testbench": "^9.0",
  3351. "phpstan/phpstan": "^1.10",
  3352. "phpunit/phpunit": "^10.5"
  3353. },
  3354. "type": "library",
  3355. "extra": {
  3356. "laravel": {
  3357. "providers": [
  3358. "Laravel\\Sanctum\\SanctumServiceProvider"
  3359. ]
  3360. }
  3361. },
  3362. "autoload": {
  3363. "psr-4": {
  3364. "Laravel\\Sanctum\\": "src/"
  3365. }
  3366. },
  3367. "notification-url": "https://packagist.org/downloads/",
  3368. "license": [
  3369. "MIT"
  3370. ],
  3371. "authors": [
  3372. {
  3373. "name": "Taylor Otwell",
  3374. "email": "taylor@laravel.com"
  3375. }
  3376. ],
  3377. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3378. "keywords": [
  3379. "auth",
  3380. "laravel",
  3381. "sanctum"
  3382. ],
  3383. "support": {
  3384. "issues": "https://github.com/laravel/sanctum/issues",
  3385. "source": "https://github.com/laravel/sanctum"
  3386. },
  3387. "time": "2024-12-11T16:40:21+00:00"
  3388. },
  3389. {
  3390. "name": "laravel/serializable-closure",
  3391. "version": "v2.0.1",
  3392. "source": {
  3393. "type": "git",
  3394. "url": "https://github.com/laravel/serializable-closure.git",
  3395. "reference": "613b2d4998f85564d40497e05e89cb6d9bd1cbe8"
  3396. },
  3397. "dist": {
  3398. "type": "zip",
  3399. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/613b2d4998f85564d40497e05e89cb6d9bd1cbe8",
  3400. "reference": "613b2d4998f85564d40497e05e89cb6d9bd1cbe8",
  3401. "shasum": ""
  3402. },
  3403. "require": {
  3404. "php": "^8.1"
  3405. },
  3406. "require-dev": {
  3407. "illuminate/support": "^10.0|^11.0",
  3408. "nesbot/carbon": "^2.67|^3.0",
  3409. "pestphp/pest": "^2.36",
  3410. "phpstan/phpstan": "^2.0",
  3411. "symfony/var-dumper": "^6.2.0|^7.0.0"
  3412. },
  3413. "type": "library",
  3414. "extra": {
  3415. "branch-alias": {
  3416. "dev-master": "2.x-dev"
  3417. }
  3418. },
  3419. "autoload": {
  3420. "psr-4": {
  3421. "Laravel\\SerializableClosure\\": "src/"
  3422. }
  3423. },
  3424. "notification-url": "https://packagist.org/downloads/",
  3425. "license": [
  3426. "MIT"
  3427. ],
  3428. "authors": [
  3429. {
  3430. "name": "Taylor Otwell",
  3431. "email": "taylor@laravel.com"
  3432. },
  3433. {
  3434. "name": "Nuno Maduro",
  3435. "email": "nuno@laravel.com"
  3436. }
  3437. ],
  3438. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3439. "keywords": [
  3440. "closure",
  3441. "laravel",
  3442. "serializable"
  3443. ],
  3444. "support": {
  3445. "issues": "https://github.com/laravel/serializable-closure/issues",
  3446. "source": "https://github.com/laravel/serializable-closure"
  3447. },
  3448. "time": "2024-12-16T15:26:28+00:00"
  3449. },
  3450. {
  3451. "name": "laravel/socialite",
  3452. "version": "v5.16.1",
  3453. "source": {
  3454. "type": "git",
  3455. "url": "https://github.com/laravel/socialite.git",
  3456. "reference": "4e5be83c0b3ecf81b2ffa47092e917d1f79dce71"
  3457. },
  3458. "dist": {
  3459. "type": "zip",
  3460. "url": "https://api.github.com/repos/laravel/socialite/zipball/4e5be83c0b3ecf81b2ffa47092e917d1f79dce71",
  3461. "reference": "4e5be83c0b3ecf81b2ffa47092e917d1f79dce71",
  3462. "shasum": ""
  3463. },
  3464. "require": {
  3465. "ext-json": "*",
  3466. "firebase/php-jwt": "^6.4",
  3467. "guzzlehttp/guzzle": "^6.0|^7.0",
  3468. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3469. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3470. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3471. "league/oauth1-client": "^1.11",
  3472. "php": "^7.2|^8.0",
  3473. "phpseclib/phpseclib": "^3.0"
  3474. },
  3475. "require-dev": {
  3476. "mockery/mockery": "^1.0",
  3477. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3478. "phpstan/phpstan": "^1.10",
  3479. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  3480. },
  3481. "type": "library",
  3482. "extra": {
  3483. "laravel": {
  3484. "aliases": {
  3485. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3486. },
  3487. "providers": [
  3488. "Laravel\\Socialite\\SocialiteServiceProvider"
  3489. ]
  3490. },
  3491. "branch-alias": {
  3492. "dev-master": "5.x-dev"
  3493. }
  3494. },
  3495. "autoload": {
  3496. "psr-4": {
  3497. "Laravel\\Socialite\\": "src/"
  3498. }
  3499. },
  3500. "notification-url": "https://packagist.org/downloads/",
  3501. "license": [
  3502. "MIT"
  3503. ],
  3504. "authors": [
  3505. {
  3506. "name": "Taylor Otwell",
  3507. "email": "taylor@laravel.com"
  3508. }
  3509. ],
  3510. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3511. "homepage": "https://laravel.com",
  3512. "keywords": [
  3513. "laravel",
  3514. "oauth"
  3515. ],
  3516. "support": {
  3517. "issues": "https://github.com/laravel/socialite/issues",
  3518. "source": "https://github.com/laravel/socialite"
  3519. },
  3520. "time": "2024-12-11T16:43:51+00:00"
  3521. },
  3522. {
  3523. "name": "laravel/tinker",
  3524. "version": "v2.10.0",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://github.com/laravel/tinker.git",
  3528. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  3533. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  3534. "shasum": ""
  3535. },
  3536. "require": {
  3537. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3538. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3539. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3540. "php": "^7.2.5|^8.0",
  3541. "psy/psysh": "^0.11.1|^0.12.0",
  3542. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3543. },
  3544. "require-dev": {
  3545. "mockery/mockery": "~1.3.3|^1.4.2",
  3546. "phpstan/phpstan": "^1.10",
  3547. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3548. },
  3549. "suggest": {
  3550. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  3551. },
  3552. "type": "library",
  3553. "extra": {
  3554. "laravel": {
  3555. "providers": [
  3556. "Laravel\\Tinker\\TinkerServiceProvider"
  3557. ]
  3558. }
  3559. },
  3560. "autoload": {
  3561. "psr-4": {
  3562. "Laravel\\Tinker\\": "src/"
  3563. }
  3564. },
  3565. "notification-url": "https://packagist.org/downloads/",
  3566. "license": [
  3567. "MIT"
  3568. ],
  3569. "authors": [
  3570. {
  3571. "name": "Taylor Otwell",
  3572. "email": "taylor@laravel.com"
  3573. }
  3574. ],
  3575. "description": "Powerful REPL for the Laravel framework.",
  3576. "keywords": [
  3577. "REPL",
  3578. "Tinker",
  3579. "laravel",
  3580. "psysh"
  3581. ],
  3582. "support": {
  3583. "issues": "https://github.com/laravel/tinker/issues",
  3584. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  3585. },
  3586. "time": "2024-09-23T13:32:56+00:00"
  3587. },
  3588. {
  3589. "name": "league/commonmark",
  3590. "version": "2.6.1",
  3591. "source": {
  3592. "type": "git",
  3593. "url": "https://github.com/thephpleague/commonmark.git",
  3594. "reference": "d990688c91cedfb69753ffc2512727ec646df2ad"
  3595. },
  3596. "dist": {
  3597. "type": "zip",
  3598. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d990688c91cedfb69753ffc2512727ec646df2ad",
  3599. "reference": "d990688c91cedfb69753ffc2512727ec646df2ad",
  3600. "shasum": ""
  3601. },
  3602. "require": {
  3603. "ext-mbstring": "*",
  3604. "league/config": "^1.1.1",
  3605. "php": "^7.4 || ^8.0",
  3606. "psr/event-dispatcher": "^1.0",
  3607. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3608. "symfony/polyfill-php80": "^1.16"
  3609. },
  3610. "require-dev": {
  3611. "cebe/markdown": "^1.0",
  3612. "commonmark/cmark": "0.31.1",
  3613. "commonmark/commonmark.js": "0.31.1",
  3614. "composer/package-versions-deprecated": "^1.8",
  3615. "embed/embed": "^4.4",
  3616. "erusev/parsedown": "^1.0",
  3617. "ext-json": "*",
  3618. "github/gfm": "0.29.0",
  3619. "michelf/php-markdown": "^1.4 || ^2.0",
  3620. "nyholm/psr7": "^1.5",
  3621. "phpstan/phpstan": "^1.8.2",
  3622. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3623. "scrutinizer/ocular": "^1.8.1",
  3624. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  3625. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  3626. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  3627. "unleashedtech/php-coding-standard": "^3.1.1",
  3628. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3629. },
  3630. "suggest": {
  3631. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3632. },
  3633. "type": "library",
  3634. "extra": {
  3635. "branch-alias": {
  3636. "dev-main": "2.7-dev"
  3637. }
  3638. },
  3639. "autoload": {
  3640. "psr-4": {
  3641. "League\\CommonMark\\": "src"
  3642. }
  3643. },
  3644. "notification-url": "https://packagist.org/downloads/",
  3645. "license": [
  3646. "BSD-3-Clause"
  3647. ],
  3648. "authors": [
  3649. {
  3650. "name": "Colin O'Dell",
  3651. "email": "colinodell@gmail.com",
  3652. "homepage": "https://www.colinodell.com",
  3653. "role": "Lead Developer"
  3654. }
  3655. ],
  3656. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3657. "homepage": "https://commonmark.thephpleague.com",
  3658. "keywords": [
  3659. "commonmark",
  3660. "flavored",
  3661. "gfm",
  3662. "github",
  3663. "github-flavored",
  3664. "markdown",
  3665. "md",
  3666. "parser"
  3667. ],
  3668. "support": {
  3669. "docs": "https://commonmark.thephpleague.com/",
  3670. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3671. "issues": "https://github.com/thephpleague/commonmark/issues",
  3672. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3673. "source": "https://github.com/thephpleague/commonmark"
  3674. },
  3675. "funding": [
  3676. {
  3677. "url": "https://www.colinodell.com/sponsor",
  3678. "type": "custom"
  3679. },
  3680. {
  3681. "url": "https://www.paypal.me/colinpodell/10.00",
  3682. "type": "custom"
  3683. },
  3684. {
  3685. "url": "https://github.com/colinodell",
  3686. "type": "github"
  3687. },
  3688. {
  3689. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3690. "type": "tidelift"
  3691. }
  3692. ],
  3693. "time": "2024-12-29T14:10:59+00:00"
  3694. },
  3695. {
  3696. "name": "league/config",
  3697. "version": "v1.2.0",
  3698. "source": {
  3699. "type": "git",
  3700. "url": "https://github.com/thephpleague/config.git",
  3701. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3702. },
  3703. "dist": {
  3704. "type": "zip",
  3705. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3706. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3707. "shasum": ""
  3708. },
  3709. "require": {
  3710. "dflydev/dot-access-data": "^3.0.1",
  3711. "nette/schema": "^1.2",
  3712. "php": "^7.4 || ^8.0"
  3713. },
  3714. "require-dev": {
  3715. "phpstan/phpstan": "^1.8.2",
  3716. "phpunit/phpunit": "^9.5.5",
  3717. "scrutinizer/ocular": "^1.8.1",
  3718. "unleashedtech/php-coding-standard": "^3.1",
  3719. "vimeo/psalm": "^4.7.3"
  3720. },
  3721. "type": "library",
  3722. "extra": {
  3723. "branch-alias": {
  3724. "dev-main": "1.2-dev"
  3725. }
  3726. },
  3727. "autoload": {
  3728. "psr-4": {
  3729. "League\\Config\\": "src"
  3730. }
  3731. },
  3732. "notification-url": "https://packagist.org/downloads/",
  3733. "license": [
  3734. "BSD-3-Clause"
  3735. ],
  3736. "authors": [
  3737. {
  3738. "name": "Colin O'Dell",
  3739. "email": "colinodell@gmail.com",
  3740. "homepage": "https://www.colinodell.com",
  3741. "role": "Lead Developer"
  3742. }
  3743. ],
  3744. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3745. "homepage": "https://config.thephpleague.com",
  3746. "keywords": [
  3747. "array",
  3748. "config",
  3749. "configuration",
  3750. "dot",
  3751. "dot-access",
  3752. "nested",
  3753. "schema"
  3754. ],
  3755. "support": {
  3756. "docs": "https://config.thephpleague.com/",
  3757. "issues": "https://github.com/thephpleague/config/issues",
  3758. "rss": "https://github.com/thephpleague/config/releases.atom",
  3759. "source": "https://github.com/thephpleague/config"
  3760. },
  3761. "funding": [
  3762. {
  3763. "url": "https://www.colinodell.com/sponsor",
  3764. "type": "custom"
  3765. },
  3766. {
  3767. "url": "https://www.paypal.me/colinpodell/10.00",
  3768. "type": "custom"
  3769. },
  3770. {
  3771. "url": "https://github.com/colinodell",
  3772. "type": "github"
  3773. }
  3774. ],
  3775. "time": "2022-12-11T20:36:23+00:00"
  3776. },
  3777. {
  3778. "name": "league/csv",
  3779. "version": "9.21.0",
  3780. "source": {
  3781. "type": "git",
  3782. "url": "https://github.com/thephpleague/csv.git",
  3783. "reference": "72196d11ebba22d868954cb39c0c7346207430cc"
  3784. },
  3785. "dist": {
  3786. "type": "zip",
  3787. "url": "https://api.github.com/repos/thephpleague/csv/zipball/72196d11ebba22d868954cb39c0c7346207430cc",
  3788. "reference": "72196d11ebba22d868954cb39c0c7346207430cc",
  3789. "shasum": ""
  3790. },
  3791. "require": {
  3792. "ext-filter": "*",
  3793. "php": "^8.1.2"
  3794. },
  3795. "require-dev": {
  3796. "ext-dom": "*",
  3797. "ext-xdebug": "*",
  3798. "friendsofphp/php-cs-fixer": "^3.64.0",
  3799. "phpbench/phpbench": "^1.3.1",
  3800. "phpstan/phpstan": "^1.12.11",
  3801. "phpstan/phpstan-deprecation-rules": "^1.2.1",
  3802. "phpstan/phpstan-phpunit": "^1.4.1",
  3803. "phpstan/phpstan-strict-rules": "^1.6.1",
  3804. "phpunit/phpunit": "^10.5.16 || ^11.4.3",
  3805. "symfony/var-dumper": "^6.4.8 || ^7.1.8"
  3806. },
  3807. "suggest": {
  3808. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  3809. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
  3810. "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters"
  3811. },
  3812. "type": "library",
  3813. "extra": {
  3814. "branch-alias": {
  3815. "dev-master": "9.x-dev"
  3816. }
  3817. },
  3818. "autoload": {
  3819. "files": [
  3820. "src/functions_include.php"
  3821. ],
  3822. "psr-4": {
  3823. "League\\Csv\\": "src/"
  3824. }
  3825. },
  3826. "notification-url": "https://packagist.org/downloads/",
  3827. "license": [
  3828. "MIT"
  3829. ],
  3830. "authors": [
  3831. {
  3832. "name": "Ignace Nyamagana Butera",
  3833. "email": "nyamsprod@gmail.com",
  3834. "homepage": "https://github.com/nyamsprod/",
  3835. "role": "Developer"
  3836. }
  3837. ],
  3838. "description": "CSV data manipulation made easy in PHP",
  3839. "homepage": "https://csv.thephpleague.com",
  3840. "keywords": [
  3841. "convert",
  3842. "csv",
  3843. "export",
  3844. "filter",
  3845. "import",
  3846. "read",
  3847. "transform",
  3848. "write"
  3849. ],
  3850. "support": {
  3851. "docs": "https://csv.thephpleague.com",
  3852. "issues": "https://github.com/thephpleague/csv/issues",
  3853. "rss": "https://github.com/thephpleague/csv/releases.atom",
  3854. "source": "https://github.com/thephpleague/csv"
  3855. },
  3856. "funding": [
  3857. {
  3858. "url": "https://github.com/sponsors/nyamsprod",
  3859. "type": "github"
  3860. }
  3861. ],
  3862. "time": "2025-01-08T19:27:58+00:00"
  3863. },
  3864. {
  3865. "name": "league/flysystem",
  3866. "version": "3.29.1",
  3867. "source": {
  3868. "type": "git",
  3869. "url": "https://github.com/thephpleague/flysystem.git",
  3870. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  3871. },
  3872. "dist": {
  3873. "type": "zip",
  3874. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3875. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3876. "shasum": ""
  3877. },
  3878. "require": {
  3879. "league/flysystem-local": "^3.0.0",
  3880. "league/mime-type-detection": "^1.0.0",
  3881. "php": "^8.0.2"
  3882. },
  3883. "conflict": {
  3884. "async-aws/core": "<1.19.0",
  3885. "async-aws/s3": "<1.14.0",
  3886. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3887. "guzzlehttp/guzzle": "<7.0",
  3888. "guzzlehttp/ringphp": "<1.1.1",
  3889. "phpseclib/phpseclib": "3.0.15",
  3890. "symfony/http-client": "<5.2"
  3891. },
  3892. "require-dev": {
  3893. "async-aws/s3": "^1.5 || ^2.0",
  3894. "async-aws/simple-s3": "^1.1 || ^2.0",
  3895. "aws/aws-sdk-php": "^3.295.10",
  3896. "composer/semver": "^3.0",
  3897. "ext-fileinfo": "*",
  3898. "ext-ftp": "*",
  3899. "ext-mongodb": "^1.3",
  3900. "ext-zip": "*",
  3901. "friendsofphp/php-cs-fixer": "^3.5",
  3902. "google/cloud-storage": "^1.23",
  3903. "guzzlehttp/psr7": "^2.6",
  3904. "microsoft/azure-storage-blob": "^1.1",
  3905. "mongodb/mongodb": "^1.2",
  3906. "phpseclib/phpseclib": "^3.0.36",
  3907. "phpstan/phpstan": "^1.10",
  3908. "phpunit/phpunit": "^9.5.11|^10.0",
  3909. "sabre/dav": "^4.6.0"
  3910. },
  3911. "type": "library",
  3912. "autoload": {
  3913. "psr-4": {
  3914. "League\\Flysystem\\": "src"
  3915. }
  3916. },
  3917. "notification-url": "https://packagist.org/downloads/",
  3918. "license": [
  3919. "MIT"
  3920. ],
  3921. "authors": [
  3922. {
  3923. "name": "Frank de Jonge",
  3924. "email": "info@frankdejonge.nl"
  3925. }
  3926. ],
  3927. "description": "File storage abstraction for PHP",
  3928. "keywords": [
  3929. "WebDAV",
  3930. "aws",
  3931. "cloud",
  3932. "file",
  3933. "files",
  3934. "filesystem",
  3935. "filesystems",
  3936. "ftp",
  3937. "s3",
  3938. "sftp",
  3939. "storage"
  3940. ],
  3941. "support": {
  3942. "issues": "https://github.com/thephpleague/flysystem/issues",
  3943. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  3944. },
  3945. "time": "2024-10-08T08:58:34+00:00"
  3946. },
  3947. {
  3948. "name": "league/flysystem-local",
  3949. "version": "3.29.0",
  3950. "source": {
  3951. "type": "git",
  3952. "url": "https://github.com/thephpleague/flysystem-local.git",
  3953. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  3954. },
  3955. "dist": {
  3956. "type": "zip",
  3957. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3958. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3959. "shasum": ""
  3960. },
  3961. "require": {
  3962. "ext-fileinfo": "*",
  3963. "league/flysystem": "^3.0.0",
  3964. "league/mime-type-detection": "^1.0.0",
  3965. "php": "^8.0.2"
  3966. },
  3967. "type": "library",
  3968. "autoload": {
  3969. "psr-4": {
  3970. "League\\Flysystem\\Local\\": ""
  3971. }
  3972. },
  3973. "notification-url": "https://packagist.org/downloads/",
  3974. "license": [
  3975. "MIT"
  3976. ],
  3977. "authors": [
  3978. {
  3979. "name": "Frank de Jonge",
  3980. "email": "info@frankdejonge.nl"
  3981. }
  3982. ],
  3983. "description": "Local filesystem adapter for Flysystem.",
  3984. "keywords": [
  3985. "Flysystem",
  3986. "file",
  3987. "files",
  3988. "filesystem",
  3989. "local"
  3990. ],
  3991. "support": {
  3992. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  3993. },
  3994. "time": "2024-08-09T21:24:39+00:00"
  3995. },
  3996. {
  3997. "name": "league/mime-type-detection",
  3998. "version": "1.16.0",
  3999. "source": {
  4000. "type": "git",
  4001. "url": "https://github.com/thephpleague/mime-type-detection.git",
  4002. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  4003. },
  4004. "dist": {
  4005. "type": "zip",
  4006. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  4007. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  4008. "shasum": ""
  4009. },
  4010. "require": {
  4011. "ext-fileinfo": "*",
  4012. "php": "^7.4 || ^8.0"
  4013. },
  4014. "require-dev": {
  4015. "friendsofphp/php-cs-fixer": "^3.2",
  4016. "phpstan/phpstan": "^0.12.68",
  4017. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  4018. },
  4019. "type": "library",
  4020. "autoload": {
  4021. "psr-4": {
  4022. "League\\MimeTypeDetection\\": "src"
  4023. }
  4024. },
  4025. "notification-url": "https://packagist.org/downloads/",
  4026. "license": [
  4027. "MIT"
  4028. ],
  4029. "authors": [
  4030. {
  4031. "name": "Frank de Jonge",
  4032. "email": "info@frankdejonge.nl"
  4033. }
  4034. ],
  4035. "description": "Mime-type detection for Flysystem",
  4036. "support": {
  4037. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  4038. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  4039. },
  4040. "funding": [
  4041. {
  4042. "url": "https://github.com/frankdejonge",
  4043. "type": "github"
  4044. },
  4045. {
  4046. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  4047. "type": "tidelift"
  4048. }
  4049. ],
  4050. "time": "2024-09-21T08:32:55+00:00"
  4051. },
  4052. {
  4053. "name": "league/oauth1-client",
  4054. "version": "v1.11.0",
  4055. "source": {
  4056. "type": "git",
  4057. "url": "https://github.com/thephpleague/oauth1-client.git",
  4058. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055"
  4059. },
  4060. "dist": {
  4061. "type": "zip",
  4062. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4063. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  4064. "shasum": ""
  4065. },
  4066. "require": {
  4067. "ext-json": "*",
  4068. "ext-openssl": "*",
  4069. "guzzlehttp/guzzle": "^6.0|^7.0",
  4070. "guzzlehttp/psr7": "^1.7|^2.0",
  4071. "php": ">=7.1||>=8.0"
  4072. },
  4073. "require-dev": {
  4074. "ext-simplexml": "*",
  4075. "friendsofphp/php-cs-fixer": "^2.17",
  4076. "mockery/mockery": "^1.3.3",
  4077. "phpstan/phpstan": "^0.12.42",
  4078. "phpunit/phpunit": "^7.5||9.5"
  4079. },
  4080. "suggest": {
  4081. "ext-simplexml": "For decoding XML-based responses."
  4082. },
  4083. "type": "library",
  4084. "extra": {
  4085. "branch-alias": {
  4086. "dev-master": "1.0-dev",
  4087. "dev-develop": "2.0-dev"
  4088. }
  4089. },
  4090. "autoload": {
  4091. "psr-4": {
  4092. "League\\OAuth1\\Client\\": "src/"
  4093. }
  4094. },
  4095. "notification-url": "https://packagist.org/downloads/",
  4096. "license": [
  4097. "MIT"
  4098. ],
  4099. "authors": [
  4100. {
  4101. "name": "Ben Corlett",
  4102. "email": "bencorlett@me.com",
  4103. "homepage": "http://www.webcomm.com.au",
  4104. "role": "Developer"
  4105. }
  4106. ],
  4107. "description": "OAuth 1.0 Client Library",
  4108. "keywords": [
  4109. "Authentication",
  4110. "SSO",
  4111. "authorization",
  4112. "bitbucket",
  4113. "identity",
  4114. "idp",
  4115. "oauth",
  4116. "oauth1",
  4117. "single sign on",
  4118. "trello",
  4119. "tumblr",
  4120. "twitter"
  4121. ],
  4122. "support": {
  4123. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4124. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.11.0"
  4125. },
  4126. "time": "2024-12-10T19:59:05+00:00"
  4127. },
  4128. {
  4129. "name": "league/uri",
  4130. "version": "7.5.1",
  4131. "source": {
  4132. "type": "git",
  4133. "url": "https://github.com/thephpleague/uri.git",
  4134. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  4135. },
  4136. "dist": {
  4137. "type": "zip",
  4138. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  4139. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  4140. "shasum": ""
  4141. },
  4142. "require": {
  4143. "league/uri-interfaces": "^7.5",
  4144. "php": "^8.1"
  4145. },
  4146. "conflict": {
  4147. "league/uri-schemes": "^1.0"
  4148. },
  4149. "suggest": {
  4150. "ext-bcmath": "to improve IPV4 host parsing",
  4151. "ext-fileinfo": "to create Data URI from file contennts",
  4152. "ext-gmp": "to improve IPV4 host parsing",
  4153. "ext-intl": "to handle IDN host with the best performance",
  4154. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4155. "league/uri-components": "Needed to easily manipulate URI objects components",
  4156. "php-64bit": "to improve IPV4 host parsing",
  4157. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4158. },
  4159. "type": "library",
  4160. "extra": {
  4161. "branch-alias": {
  4162. "dev-master": "7.x-dev"
  4163. }
  4164. },
  4165. "autoload": {
  4166. "psr-4": {
  4167. "League\\Uri\\": ""
  4168. }
  4169. },
  4170. "notification-url": "https://packagist.org/downloads/",
  4171. "license": [
  4172. "MIT"
  4173. ],
  4174. "authors": [
  4175. {
  4176. "name": "Ignace Nyamagana Butera",
  4177. "email": "nyamsprod@gmail.com",
  4178. "homepage": "https://nyamsprod.com"
  4179. }
  4180. ],
  4181. "description": "URI manipulation library",
  4182. "homepage": "https://uri.thephpleague.com",
  4183. "keywords": [
  4184. "data-uri",
  4185. "file-uri",
  4186. "ftp",
  4187. "hostname",
  4188. "http",
  4189. "https",
  4190. "middleware",
  4191. "parse_str",
  4192. "parse_url",
  4193. "psr-7",
  4194. "query-string",
  4195. "querystring",
  4196. "rfc3986",
  4197. "rfc3987",
  4198. "rfc6570",
  4199. "uri",
  4200. "uri-template",
  4201. "url",
  4202. "ws"
  4203. ],
  4204. "support": {
  4205. "docs": "https://uri.thephpleague.com",
  4206. "forum": "https://thephpleague.slack.com",
  4207. "issues": "https://github.com/thephpleague/uri-src/issues",
  4208. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  4209. },
  4210. "funding": [
  4211. {
  4212. "url": "https://github.com/sponsors/nyamsprod",
  4213. "type": "github"
  4214. }
  4215. ],
  4216. "time": "2024-12-08T08:40:02+00:00"
  4217. },
  4218. {
  4219. "name": "league/uri-interfaces",
  4220. "version": "7.5.0",
  4221. "source": {
  4222. "type": "git",
  4223. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4224. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  4225. },
  4226. "dist": {
  4227. "type": "zip",
  4228. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4229. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4230. "shasum": ""
  4231. },
  4232. "require": {
  4233. "ext-filter": "*",
  4234. "php": "^8.1",
  4235. "psr/http-factory": "^1",
  4236. "psr/http-message": "^1.1 || ^2.0"
  4237. },
  4238. "suggest": {
  4239. "ext-bcmath": "to improve IPV4 host parsing",
  4240. "ext-gmp": "to improve IPV4 host parsing",
  4241. "ext-intl": "to handle IDN host with the best performance",
  4242. "php-64bit": "to improve IPV4 host parsing",
  4243. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4244. },
  4245. "type": "library",
  4246. "extra": {
  4247. "branch-alias": {
  4248. "dev-master": "7.x-dev"
  4249. }
  4250. },
  4251. "autoload": {
  4252. "psr-4": {
  4253. "League\\Uri\\": ""
  4254. }
  4255. },
  4256. "notification-url": "https://packagist.org/downloads/",
  4257. "license": [
  4258. "MIT"
  4259. ],
  4260. "authors": [
  4261. {
  4262. "name": "Ignace Nyamagana Butera",
  4263. "email": "nyamsprod@gmail.com",
  4264. "homepage": "https://nyamsprod.com"
  4265. }
  4266. ],
  4267. "description": "Common interfaces and classes for URI representation and interaction",
  4268. "homepage": "https://uri.thephpleague.com",
  4269. "keywords": [
  4270. "data-uri",
  4271. "file-uri",
  4272. "ftp",
  4273. "hostname",
  4274. "http",
  4275. "https",
  4276. "parse_str",
  4277. "parse_url",
  4278. "psr-7",
  4279. "query-string",
  4280. "querystring",
  4281. "rfc3986",
  4282. "rfc3987",
  4283. "rfc6570",
  4284. "uri",
  4285. "url",
  4286. "ws"
  4287. ],
  4288. "support": {
  4289. "docs": "https://uri.thephpleague.com",
  4290. "forum": "https://thephpleague.slack.com",
  4291. "issues": "https://github.com/thephpleague/uri-src/issues",
  4292. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  4293. },
  4294. "funding": [
  4295. {
  4296. "url": "https://github.com/sponsors/nyamsprod",
  4297. "type": "github"
  4298. }
  4299. ],
  4300. "time": "2024-12-08T08:18:47+00:00"
  4301. },
  4302. {
  4303. "name": "livewire/livewire",
  4304. "version": "v3.5.12",
  4305. "source": {
  4306. "type": "git",
  4307. "url": "https://github.com/livewire/livewire.git",
  4308. "reference": "3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d"
  4309. },
  4310. "dist": {
  4311. "type": "zip",
  4312. "url": "https://api.github.com/repos/livewire/livewire/zipball/3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d",
  4313. "reference": "3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d",
  4314. "shasum": ""
  4315. },
  4316. "require": {
  4317. "illuminate/database": "^10.0|^11.0",
  4318. "illuminate/routing": "^10.0|^11.0",
  4319. "illuminate/support": "^10.0|^11.0",
  4320. "illuminate/validation": "^10.0|^11.0",
  4321. "laravel/prompts": "^0.1.24|^0.2|^0.3",
  4322. "league/mime-type-detection": "^1.9",
  4323. "php": "^8.1",
  4324. "symfony/console": "^6.0|^7.0",
  4325. "symfony/http-kernel": "^6.2|^7.0"
  4326. },
  4327. "require-dev": {
  4328. "calebporzio/sushi": "^2.1",
  4329. "laravel/framework": "^10.15.0|^11.0",
  4330. "mockery/mockery": "^1.3.1",
  4331. "orchestra/testbench": "^8.21.0|^9.0",
  4332. "orchestra/testbench-dusk": "^8.24|^9.1",
  4333. "phpunit/phpunit": "^10.4",
  4334. "psy/psysh": "^0.11.22|^0.12"
  4335. },
  4336. "type": "library",
  4337. "extra": {
  4338. "laravel": {
  4339. "aliases": {
  4340. "Livewire": "Livewire\\Livewire"
  4341. },
  4342. "providers": [
  4343. "Livewire\\LivewireServiceProvider"
  4344. ]
  4345. }
  4346. },
  4347. "autoload": {
  4348. "files": [
  4349. "src/helpers.php"
  4350. ],
  4351. "psr-4": {
  4352. "Livewire\\": "src/"
  4353. }
  4354. },
  4355. "notification-url": "https://packagist.org/downloads/",
  4356. "license": [
  4357. "MIT"
  4358. ],
  4359. "authors": [
  4360. {
  4361. "name": "Caleb Porzio",
  4362. "email": "calebporzio@gmail.com"
  4363. }
  4364. ],
  4365. "description": "A front-end framework for Laravel.",
  4366. "support": {
  4367. "issues": "https://github.com/livewire/livewire/issues",
  4368. "source": "https://github.com/livewire/livewire/tree/v3.5.12"
  4369. },
  4370. "funding": [
  4371. {
  4372. "url": "https://github.com/livewire",
  4373. "type": "github"
  4374. }
  4375. ],
  4376. "time": "2024-10-15T19:35:06+00:00"
  4377. },
  4378. {
  4379. "name": "masterminds/html5",
  4380. "version": "2.9.0",
  4381. "source": {
  4382. "type": "git",
  4383. "url": "https://github.com/Masterminds/html5-php.git",
  4384. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  4385. },
  4386. "dist": {
  4387. "type": "zip",
  4388. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4389. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4390. "shasum": ""
  4391. },
  4392. "require": {
  4393. "ext-dom": "*",
  4394. "php": ">=5.3.0"
  4395. },
  4396. "require-dev": {
  4397. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4398. },
  4399. "type": "library",
  4400. "extra": {
  4401. "branch-alias": {
  4402. "dev-master": "2.7-dev"
  4403. }
  4404. },
  4405. "autoload": {
  4406. "psr-4": {
  4407. "Masterminds\\": "src"
  4408. }
  4409. },
  4410. "notification-url": "https://packagist.org/downloads/",
  4411. "license": [
  4412. "MIT"
  4413. ],
  4414. "authors": [
  4415. {
  4416. "name": "Matt Butcher",
  4417. "email": "technosophos@gmail.com"
  4418. },
  4419. {
  4420. "name": "Matt Farina",
  4421. "email": "matt@mattfarina.com"
  4422. },
  4423. {
  4424. "name": "Asmir Mustafic",
  4425. "email": "goetas@gmail.com"
  4426. }
  4427. ],
  4428. "description": "An HTML5 parser and serializer.",
  4429. "homepage": "http://masterminds.github.io/html5-php",
  4430. "keywords": [
  4431. "HTML5",
  4432. "dom",
  4433. "html",
  4434. "parser",
  4435. "querypath",
  4436. "serializer",
  4437. "xml"
  4438. ],
  4439. "support": {
  4440. "issues": "https://github.com/Masterminds/html5-php/issues",
  4441. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  4442. },
  4443. "time": "2024-03-31T07:05:07+00:00"
  4444. },
  4445. {
  4446. "name": "matomo/device-detector",
  4447. "version": "6.4.3",
  4448. "source": {
  4449. "type": "git",
  4450. "url": "https://github.com/matomo-org/device-detector.git",
  4451. "reference": "aa4586d495a7f59029d46d976f160b13eb769bb0"
  4452. },
  4453. "dist": {
  4454. "type": "zip",
  4455. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/aa4586d495a7f59029d46d976f160b13eb769bb0",
  4456. "reference": "aa4586d495a7f59029d46d976f160b13eb769bb0",
  4457. "shasum": ""
  4458. },
  4459. "require": {
  4460. "mustangostang/spyc": "*",
  4461. "php": "^7.2|^8.0"
  4462. },
  4463. "replace": {
  4464. "piwik/device-detector": "self.version"
  4465. },
  4466. "require-dev": {
  4467. "matthiasmullie/scrapbook": "^1.4.7",
  4468. "mayflower/mo4-coding-standard": "^v9.0.0",
  4469. "phpstan/phpstan": "^1.10.44",
  4470. "phpunit/phpunit": "^8.5.8",
  4471. "psr/cache": "^1.0.1",
  4472. "psr/simple-cache": "^1.0.1",
  4473. "symfony/yaml": "^5.1.7"
  4474. },
  4475. "suggest": {
  4476. "doctrine/cache": "Can directly be used for caching purpose",
  4477. "ext-yaml": "Necessary for using the Pecl YAML parser"
  4478. },
  4479. "type": "library",
  4480. "autoload": {
  4481. "psr-4": {
  4482. "DeviceDetector\\": ""
  4483. },
  4484. "exclude-from-classmap": [
  4485. "Tests/"
  4486. ]
  4487. },
  4488. "notification-url": "https://packagist.org/downloads/",
  4489. "license": [
  4490. "LGPL-3.0-or-later"
  4491. ],
  4492. "authors": [
  4493. {
  4494. "name": "The Matomo Team",
  4495. "email": "hello@matomo.org",
  4496. "homepage": "https://matomo.org/team/"
  4497. }
  4498. ],
  4499. "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.",
  4500. "homepage": "https://matomo.org",
  4501. "keywords": [
  4502. "devicedetection",
  4503. "parser",
  4504. "useragent"
  4505. ],
  4506. "support": {
  4507. "forum": "https://forum.matomo.org/",
  4508. "issues": "https://github.com/matomo-org/device-detector/issues",
  4509. "source": "https://github.com/matomo-org/matomo",
  4510. "wiki": "https://dev.matomo.org/"
  4511. },
  4512. "time": "2025-01-17T09:59:39+00:00"
  4513. },
  4514. {
  4515. "name": "monolog/monolog",
  4516. "version": "3.8.1",
  4517. "source": {
  4518. "type": "git",
  4519. "url": "https://github.com/Seldaek/monolog.git",
  4520. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  4521. },
  4522. "dist": {
  4523. "type": "zip",
  4524. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4525. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4526. "shasum": ""
  4527. },
  4528. "require": {
  4529. "php": ">=8.1",
  4530. "psr/log": "^2.0 || ^3.0"
  4531. },
  4532. "provide": {
  4533. "psr/log-implementation": "3.0.0"
  4534. },
  4535. "require-dev": {
  4536. "aws/aws-sdk-php": "^3.0",
  4537. "doctrine/couchdb": "~1.0@dev",
  4538. "elasticsearch/elasticsearch": "^7 || ^8",
  4539. "ext-json": "*",
  4540. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4541. "guzzlehttp/guzzle": "^7.4.5",
  4542. "guzzlehttp/psr7": "^2.2",
  4543. "mongodb/mongodb": "^1.8",
  4544. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4545. "php-console/php-console": "^3.1.8",
  4546. "phpstan/phpstan": "^2",
  4547. "phpstan/phpstan-deprecation-rules": "^2",
  4548. "phpstan/phpstan-strict-rules": "^2",
  4549. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4550. "predis/predis": "^1.1 || ^2",
  4551. "rollbar/rollbar": "^4.0",
  4552. "ruflin/elastica": "^7 || ^8",
  4553. "symfony/mailer": "^5.4 || ^6",
  4554. "symfony/mime": "^5.4 || ^6"
  4555. },
  4556. "suggest": {
  4557. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4558. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4559. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4560. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4561. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4562. "ext-mbstring": "Allow to work properly with unicode symbols",
  4563. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4564. "ext-openssl": "Required to send log messages using SSL",
  4565. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4566. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4567. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4568. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4569. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4570. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4571. },
  4572. "type": "library",
  4573. "extra": {
  4574. "branch-alias": {
  4575. "dev-main": "3.x-dev"
  4576. }
  4577. },
  4578. "autoload": {
  4579. "psr-4": {
  4580. "Monolog\\": "src/Monolog"
  4581. }
  4582. },
  4583. "notification-url": "https://packagist.org/downloads/",
  4584. "license": [
  4585. "MIT"
  4586. ],
  4587. "authors": [
  4588. {
  4589. "name": "Jordi Boggiano",
  4590. "email": "j.boggiano@seld.be",
  4591. "homepage": "https://seld.be"
  4592. }
  4593. ],
  4594. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4595. "homepage": "https://github.com/Seldaek/monolog",
  4596. "keywords": [
  4597. "log",
  4598. "logging",
  4599. "psr-3"
  4600. ],
  4601. "support": {
  4602. "issues": "https://github.com/Seldaek/monolog/issues",
  4603. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  4604. },
  4605. "funding": [
  4606. {
  4607. "url": "https://github.com/Seldaek",
  4608. "type": "github"
  4609. },
  4610. {
  4611. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4612. "type": "tidelift"
  4613. }
  4614. ],
  4615. "time": "2024-12-05T17:15:07+00:00"
  4616. },
  4617. {
  4618. "name": "mtdowling/jmespath.php",
  4619. "version": "2.8.0",
  4620. "source": {
  4621. "type": "git",
  4622. "url": "https://github.com/jmespath/jmespath.php.git",
  4623. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4624. },
  4625. "dist": {
  4626. "type": "zip",
  4627. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4628. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4629. "shasum": ""
  4630. },
  4631. "require": {
  4632. "php": "^7.2.5 || ^8.0",
  4633. "symfony/polyfill-mbstring": "^1.17"
  4634. },
  4635. "require-dev": {
  4636. "composer/xdebug-handler": "^3.0.3",
  4637. "phpunit/phpunit": "^8.5.33"
  4638. },
  4639. "bin": [
  4640. "bin/jp.php"
  4641. ],
  4642. "type": "library",
  4643. "extra": {
  4644. "branch-alias": {
  4645. "dev-master": "2.8-dev"
  4646. }
  4647. },
  4648. "autoload": {
  4649. "files": [
  4650. "src/JmesPath.php"
  4651. ],
  4652. "psr-4": {
  4653. "JmesPath\\": "src/"
  4654. }
  4655. },
  4656. "notification-url": "https://packagist.org/downloads/",
  4657. "license": [
  4658. "MIT"
  4659. ],
  4660. "authors": [
  4661. {
  4662. "name": "Graham Campbell",
  4663. "email": "hello@gjcampbell.co.uk",
  4664. "homepage": "https://github.com/GrahamCampbell"
  4665. },
  4666. {
  4667. "name": "Michael Dowling",
  4668. "email": "mtdowling@gmail.com",
  4669. "homepage": "https://github.com/mtdowling"
  4670. }
  4671. ],
  4672. "description": "Declaratively specify how to extract elements from a JSON document",
  4673. "keywords": [
  4674. "json",
  4675. "jsonpath"
  4676. ],
  4677. "support": {
  4678. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4679. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  4680. },
  4681. "time": "2024-09-04T18:46:31+00:00"
  4682. },
  4683. {
  4684. "name": "mustangostang/spyc",
  4685. "version": "0.6.3",
  4686. "source": {
  4687. "type": "git",
  4688. "url": "https://github.com/mustangostang/spyc.git",
  4689. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  4690. },
  4691. "dist": {
  4692. "type": "zip",
  4693. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  4694. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  4695. "shasum": ""
  4696. },
  4697. "require": {
  4698. "php": ">=5.3.1"
  4699. },
  4700. "require-dev": {
  4701. "phpunit/phpunit": "4.3.*@dev"
  4702. },
  4703. "type": "library",
  4704. "extra": {
  4705. "branch-alias": {
  4706. "dev-master": "0.5.x-dev"
  4707. }
  4708. },
  4709. "autoload": {
  4710. "files": [
  4711. "Spyc.php"
  4712. ]
  4713. },
  4714. "notification-url": "https://packagist.org/downloads/",
  4715. "license": [
  4716. "MIT"
  4717. ],
  4718. "authors": [
  4719. {
  4720. "name": "mustangostang",
  4721. "email": "vlad.andersen@gmail.com"
  4722. }
  4723. ],
  4724. "description": "A simple YAML loader/dumper class for PHP",
  4725. "homepage": "https://github.com/mustangostang/spyc/",
  4726. "keywords": [
  4727. "spyc",
  4728. "yaml",
  4729. "yml"
  4730. ],
  4731. "support": {
  4732. "issues": "https://github.com/mustangostang/spyc/issues",
  4733. "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
  4734. },
  4735. "time": "2019-09-10T13:16:29+00:00"
  4736. },
  4737. {
  4738. "name": "nesbot/carbon",
  4739. "version": "3.8.4",
  4740. "source": {
  4741. "type": "git",
  4742. "url": "https://github.com/CarbonPHP/carbon.git",
  4743. "reference": "129700ed449b1f02d70272d2ac802357c8c30c58"
  4744. },
  4745. "dist": {
  4746. "type": "zip",
  4747. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/129700ed449b1f02d70272d2ac802357c8c30c58",
  4748. "reference": "129700ed449b1f02d70272d2ac802357c8c30c58",
  4749. "shasum": ""
  4750. },
  4751. "require": {
  4752. "carbonphp/carbon-doctrine-types": "<100.0",
  4753. "ext-json": "*",
  4754. "php": "^8.1",
  4755. "psr/clock": "^1.0",
  4756. "symfony/clock": "^6.3 || ^7.0",
  4757. "symfony/polyfill-mbstring": "^1.0",
  4758. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  4759. },
  4760. "provide": {
  4761. "psr/clock-implementation": "1.0"
  4762. },
  4763. "require-dev": {
  4764. "doctrine/dbal": "^3.6.3 || ^4.0",
  4765. "doctrine/orm": "^2.15.2 || ^3.0",
  4766. "friendsofphp/php-cs-fixer": "^3.57.2",
  4767. "kylekatarnls/multi-tester": "^2.5.3",
  4768. "ondrejmirtes/better-reflection": "^6.25.0.4",
  4769. "phpmd/phpmd": "^2.15.0",
  4770. "phpstan/extension-installer": "^1.3.1",
  4771. "phpstan/phpstan": "^1.11.2",
  4772. "phpunit/phpunit": "^10.5.20",
  4773. "squizlabs/php_codesniffer": "^3.9.0"
  4774. },
  4775. "bin": [
  4776. "bin/carbon"
  4777. ],
  4778. "type": "library",
  4779. "extra": {
  4780. "laravel": {
  4781. "providers": [
  4782. "Carbon\\Laravel\\ServiceProvider"
  4783. ]
  4784. },
  4785. "phpstan": {
  4786. "includes": [
  4787. "extension.neon"
  4788. ]
  4789. },
  4790. "branch-alias": {
  4791. "dev-2.x": "2.x-dev",
  4792. "dev-master": "3.x-dev"
  4793. }
  4794. },
  4795. "autoload": {
  4796. "psr-4": {
  4797. "Carbon\\": "src/Carbon/"
  4798. }
  4799. },
  4800. "notification-url": "https://packagist.org/downloads/",
  4801. "license": [
  4802. "MIT"
  4803. ],
  4804. "authors": [
  4805. {
  4806. "name": "Brian Nesbitt",
  4807. "email": "brian@nesbot.com",
  4808. "homepage": "https://markido.com"
  4809. },
  4810. {
  4811. "name": "kylekatarnls",
  4812. "homepage": "https://github.com/kylekatarnls"
  4813. }
  4814. ],
  4815. "description": "An API extension for DateTime that supports 281 different languages.",
  4816. "homepage": "https://carbon.nesbot.com",
  4817. "keywords": [
  4818. "date",
  4819. "datetime",
  4820. "time"
  4821. ],
  4822. "support": {
  4823. "docs": "https://carbon.nesbot.com/docs",
  4824. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4825. "source": "https://github.com/briannesbitt/Carbon"
  4826. },
  4827. "funding": [
  4828. {
  4829. "url": "https://github.com/sponsors/kylekatarnls",
  4830. "type": "github"
  4831. },
  4832. {
  4833. "url": "https://opencollective.com/Carbon#sponsor",
  4834. "type": "opencollective"
  4835. },
  4836. {
  4837. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4838. "type": "tidelift"
  4839. }
  4840. ],
  4841. "time": "2024-12-27T09:25:35+00:00"
  4842. },
  4843. {
  4844. "name": "nette/schema",
  4845. "version": "v1.3.2",
  4846. "source": {
  4847. "type": "git",
  4848. "url": "https://github.com/nette/schema.git",
  4849. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  4850. },
  4851. "dist": {
  4852. "type": "zip",
  4853. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  4854. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  4855. "shasum": ""
  4856. },
  4857. "require": {
  4858. "nette/utils": "^4.0",
  4859. "php": "8.1 - 8.4"
  4860. },
  4861. "require-dev": {
  4862. "nette/tester": "^2.5.2",
  4863. "phpstan/phpstan-nette": "^1.0",
  4864. "tracy/tracy": "^2.8"
  4865. },
  4866. "type": "library",
  4867. "extra": {
  4868. "branch-alias": {
  4869. "dev-master": "1.3-dev"
  4870. }
  4871. },
  4872. "autoload": {
  4873. "classmap": [
  4874. "src/"
  4875. ]
  4876. },
  4877. "notification-url": "https://packagist.org/downloads/",
  4878. "license": [
  4879. "BSD-3-Clause",
  4880. "GPL-2.0-only",
  4881. "GPL-3.0-only"
  4882. ],
  4883. "authors": [
  4884. {
  4885. "name": "David Grudl",
  4886. "homepage": "https://davidgrudl.com"
  4887. },
  4888. {
  4889. "name": "Nette Community",
  4890. "homepage": "https://nette.org/contributors"
  4891. }
  4892. ],
  4893. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4894. "homepage": "https://nette.org",
  4895. "keywords": [
  4896. "config",
  4897. "nette"
  4898. ],
  4899. "support": {
  4900. "issues": "https://github.com/nette/schema/issues",
  4901. "source": "https://github.com/nette/schema/tree/v1.3.2"
  4902. },
  4903. "time": "2024-10-06T23:10:23+00:00"
  4904. },
  4905. {
  4906. "name": "nette/utils",
  4907. "version": "v4.0.5",
  4908. "source": {
  4909. "type": "git",
  4910. "url": "https://github.com/nette/utils.git",
  4911. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  4912. },
  4913. "dist": {
  4914. "type": "zip",
  4915. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4916. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4917. "shasum": ""
  4918. },
  4919. "require": {
  4920. "php": "8.0 - 8.4"
  4921. },
  4922. "conflict": {
  4923. "nette/finder": "<3",
  4924. "nette/schema": "<1.2.2"
  4925. },
  4926. "require-dev": {
  4927. "jetbrains/phpstorm-attributes": "dev-master",
  4928. "nette/tester": "^2.5",
  4929. "phpstan/phpstan": "^1.0",
  4930. "tracy/tracy": "^2.9"
  4931. },
  4932. "suggest": {
  4933. "ext-gd": "to use Image",
  4934. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4935. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4936. "ext-json": "to use Nette\\Utils\\Json",
  4937. "ext-mbstring": "to use Strings::lower() etc...",
  4938. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4939. },
  4940. "type": "library",
  4941. "extra": {
  4942. "branch-alias": {
  4943. "dev-master": "4.0-dev"
  4944. }
  4945. },
  4946. "autoload": {
  4947. "classmap": [
  4948. "src/"
  4949. ]
  4950. },
  4951. "notification-url": "https://packagist.org/downloads/",
  4952. "license": [
  4953. "BSD-3-Clause",
  4954. "GPL-2.0-only",
  4955. "GPL-3.0-only"
  4956. ],
  4957. "authors": [
  4958. {
  4959. "name": "David Grudl",
  4960. "homepage": "https://davidgrudl.com"
  4961. },
  4962. {
  4963. "name": "Nette Community",
  4964. "homepage": "https://nette.org/contributors"
  4965. }
  4966. ],
  4967. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4968. "homepage": "https://nette.org",
  4969. "keywords": [
  4970. "array",
  4971. "core",
  4972. "datetime",
  4973. "images",
  4974. "json",
  4975. "nette",
  4976. "paginator",
  4977. "password",
  4978. "slugify",
  4979. "string",
  4980. "unicode",
  4981. "utf-8",
  4982. "utility",
  4983. "validation"
  4984. ],
  4985. "support": {
  4986. "issues": "https://github.com/nette/utils/issues",
  4987. "source": "https://github.com/nette/utils/tree/v4.0.5"
  4988. },
  4989. "time": "2024-08-07T15:39:19+00:00"
  4990. },
  4991. {
  4992. "name": "nikic/php-parser",
  4993. "version": "v5.4.0",
  4994. "source": {
  4995. "type": "git",
  4996. "url": "https://github.com/nikic/PHP-Parser.git",
  4997. "reference": "447a020a1f875a434d62f2a401f53b82a396e494"
  4998. },
  4999. "dist": {
  5000. "type": "zip",
  5001. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494",
  5002. "reference": "447a020a1f875a434d62f2a401f53b82a396e494",
  5003. "shasum": ""
  5004. },
  5005. "require": {
  5006. "ext-ctype": "*",
  5007. "ext-json": "*",
  5008. "ext-tokenizer": "*",
  5009. "php": ">=7.4"
  5010. },
  5011. "require-dev": {
  5012. "ircmaxell/php-yacc": "^0.0.7",
  5013. "phpunit/phpunit": "^9.0"
  5014. },
  5015. "bin": [
  5016. "bin/php-parse"
  5017. ],
  5018. "type": "library",
  5019. "extra": {
  5020. "branch-alias": {
  5021. "dev-master": "5.0-dev"
  5022. }
  5023. },
  5024. "autoload": {
  5025. "psr-4": {
  5026. "PhpParser\\": "lib/PhpParser"
  5027. }
  5028. },
  5029. "notification-url": "https://packagist.org/downloads/",
  5030. "license": [
  5031. "BSD-3-Clause"
  5032. ],
  5033. "authors": [
  5034. {
  5035. "name": "Nikita Popov"
  5036. }
  5037. ],
  5038. "description": "A PHP parser written in PHP",
  5039. "keywords": [
  5040. "parser",
  5041. "php"
  5042. ],
  5043. "support": {
  5044. "issues": "https://github.com/nikic/PHP-Parser/issues",
  5045. "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0"
  5046. },
  5047. "time": "2024-12-30T11:07:19+00:00"
  5048. },
  5049. {
  5050. "name": "nunomaduro/termwind",
  5051. "version": "v2.3.0",
  5052. "source": {
  5053. "type": "git",
  5054. "url": "https://github.com/nunomaduro/termwind.git",
  5055. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  5056. },
  5057. "dist": {
  5058. "type": "zip",
  5059. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  5060. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  5061. "shasum": ""
  5062. },
  5063. "require": {
  5064. "ext-mbstring": "*",
  5065. "php": "^8.2",
  5066. "symfony/console": "^7.1.8"
  5067. },
  5068. "require-dev": {
  5069. "illuminate/console": "^11.33.2",
  5070. "laravel/pint": "^1.18.2",
  5071. "mockery/mockery": "^1.6.12",
  5072. "pestphp/pest": "^2.36.0",
  5073. "phpstan/phpstan": "^1.12.11",
  5074. "phpstan/phpstan-strict-rules": "^1.6.1",
  5075. "symfony/var-dumper": "^7.1.8",
  5076. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  5077. },
  5078. "type": "library",
  5079. "extra": {
  5080. "laravel": {
  5081. "providers": [
  5082. "Termwind\\Laravel\\TermwindServiceProvider"
  5083. ]
  5084. },
  5085. "branch-alias": {
  5086. "dev-2.x": "2.x-dev"
  5087. }
  5088. },
  5089. "autoload": {
  5090. "files": [
  5091. "src/Functions.php"
  5092. ],
  5093. "psr-4": {
  5094. "Termwind\\": "src/"
  5095. }
  5096. },
  5097. "notification-url": "https://packagist.org/downloads/",
  5098. "license": [
  5099. "MIT"
  5100. ],
  5101. "authors": [
  5102. {
  5103. "name": "Nuno Maduro",
  5104. "email": "enunomaduro@gmail.com"
  5105. }
  5106. ],
  5107. "description": "Its like Tailwind CSS, but for the console.",
  5108. "keywords": [
  5109. "cli",
  5110. "console",
  5111. "css",
  5112. "package",
  5113. "php",
  5114. "style"
  5115. ],
  5116. "support": {
  5117. "issues": "https://github.com/nunomaduro/termwind/issues",
  5118. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  5119. },
  5120. "funding": [
  5121. {
  5122. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5123. "type": "custom"
  5124. },
  5125. {
  5126. "url": "https://github.com/nunomaduro",
  5127. "type": "github"
  5128. },
  5129. {
  5130. "url": "https://github.com/xiCO2k",
  5131. "type": "github"
  5132. }
  5133. ],
  5134. "time": "2024-11-21T10:39:51+00:00"
  5135. },
  5136. {
  5137. "name": "openspout/openspout",
  5138. "version": "v4.28.4",
  5139. "source": {
  5140. "type": "git",
  5141. "url": "https://github.com/openspout/openspout.git",
  5142. "reference": "68d58235c7c1164b3d231b798975b9b0b2b79b15"
  5143. },
  5144. "dist": {
  5145. "type": "zip",
  5146. "url": "https://api.github.com/repos/openspout/openspout/zipball/68d58235c7c1164b3d231b798975b9b0b2b79b15",
  5147. "reference": "68d58235c7c1164b3d231b798975b9b0b2b79b15",
  5148. "shasum": ""
  5149. },
  5150. "require": {
  5151. "ext-dom": "*",
  5152. "ext-fileinfo": "*",
  5153. "ext-filter": "*",
  5154. "ext-libxml": "*",
  5155. "ext-xmlreader": "*",
  5156. "ext-zip": "*",
  5157. "php": "~8.2.0 || ~8.3.0 || ~8.4.0"
  5158. },
  5159. "require-dev": {
  5160. "ext-zlib": "*",
  5161. "friendsofphp/php-cs-fixer": "^3.66.1",
  5162. "infection/infection": "^0.29.10",
  5163. "phpbench/phpbench": "^1.3.1",
  5164. "phpstan/phpstan": "^2.1.1",
  5165. "phpstan/phpstan-phpunit": "^2.0.3",
  5166. "phpstan/phpstan-strict-rules": "^2",
  5167. "phpunit/phpunit": "^11.5.2"
  5168. },
  5169. "suggest": {
  5170. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5171. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5172. },
  5173. "type": "library",
  5174. "extra": {
  5175. "branch-alias": {
  5176. "dev-master": "3.3.x-dev"
  5177. }
  5178. },
  5179. "autoload": {
  5180. "psr-4": {
  5181. "OpenSpout\\": "src/"
  5182. }
  5183. },
  5184. "notification-url": "https://packagist.org/downloads/",
  5185. "license": [
  5186. "MIT"
  5187. ],
  5188. "authors": [
  5189. {
  5190. "name": "Adrien Loison",
  5191. "email": "adrien@box.com"
  5192. }
  5193. ],
  5194. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5195. "homepage": "https://github.com/openspout/openspout",
  5196. "keywords": [
  5197. "OOXML",
  5198. "csv",
  5199. "excel",
  5200. "memory",
  5201. "odf",
  5202. "ods",
  5203. "office",
  5204. "open",
  5205. "php",
  5206. "read",
  5207. "scale",
  5208. "spreadsheet",
  5209. "stream",
  5210. "write",
  5211. "xlsx"
  5212. ],
  5213. "support": {
  5214. "issues": "https://github.com/openspout/openspout/issues",
  5215. "source": "https://github.com/openspout/openspout/tree/v4.28.4"
  5216. },
  5217. "funding": [
  5218. {
  5219. "url": "https://paypal.me/filippotessarotto",
  5220. "type": "custom"
  5221. },
  5222. {
  5223. "url": "https://github.com/Slamdunk",
  5224. "type": "github"
  5225. }
  5226. ],
  5227. "time": "2025-01-07T11:48:34+00:00"
  5228. },
  5229. {
  5230. "name": "paragonie/constant_time_encoding",
  5231. "version": "v3.0.0",
  5232. "source": {
  5233. "type": "git",
  5234. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5235. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5236. },
  5237. "dist": {
  5238. "type": "zip",
  5239. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5240. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5241. "shasum": ""
  5242. },
  5243. "require": {
  5244. "php": "^8"
  5245. },
  5246. "require-dev": {
  5247. "phpunit/phpunit": "^9",
  5248. "vimeo/psalm": "^4|^5"
  5249. },
  5250. "type": "library",
  5251. "autoload": {
  5252. "psr-4": {
  5253. "ParagonIE\\ConstantTime\\": "src/"
  5254. }
  5255. },
  5256. "notification-url": "https://packagist.org/downloads/",
  5257. "license": [
  5258. "MIT"
  5259. ],
  5260. "authors": [
  5261. {
  5262. "name": "Paragon Initiative Enterprises",
  5263. "email": "security@paragonie.com",
  5264. "homepage": "https://paragonie.com",
  5265. "role": "Maintainer"
  5266. },
  5267. {
  5268. "name": "Steve 'Sc00bz' Thomas",
  5269. "email": "steve@tobtu.com",
  5270. "homepage": "https://www.tobtu.com",
  5271. "role": "Original Developer"
  5272. }
  5273. ],
  5274. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5275. "keywords": [
  5276. "base16",
  5277. "base32",
  5278. "base32_decode",
  5279. "base32_encode",
  5280. "base64",
  5281. "base64_decode",
  5282. "base64_encode",
  5283. "bin2hex",
  5284. "encoding",
  5285. "hex",
  5286. "hex2bin",
  5287. "rfc4648"
  5288. ],
  5289. "support": {
  5290. "email": "info@paragonie.com",
  5291. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5292. "source": "https://github.com/paragonie/constant_time_encoding"
  5293. },
  5294. "time": "2024-05-08T12:36:18+00:00"
  5295. },
  5296. {
  5297. "name": "paragonie/random_compat",
  5298. "version": "v9.99.100",
  5299. "source": {
  5300. "type": "git",
  5301. "url": "https://github.com/paragonie/random_compat.git",
  5302. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5303. },
  5304. "dist": {
  5305. "type": "zip",
  5306. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5307. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5308. "shasum": ""
  5309. },
  5310. "require": {
  5311. "php": ">= 7"
  5312. },
  5313. "require-dev": {
  5314. "phpunit/phpunit": "4.*|5.*",
  5315. "vimeo/psalm": "^1"
  5316. },
  5317. "suggest": {
  5318. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5319. },
  5320. "type": "library",
  5321. "notification-url": "https://packagist.org/downloads/",
  5322. "license": [
  5323. "MIT"
  5324. ],
  5325. "authors": [
  5326. {
  5327. "name": "Paragon Initiative Enterprises",
  5328. "email": "security@paragonie.com",
  5329. "homepage": "https://paragonie.com"
  5330. }
  5331. ],
  5332. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5333. "keywords": [
  5334. "csprng",
  5335. "polyfill",
  5336. "pseudorandom",
  5337. "random"
  5338. ],
  5339. "support": {
  5340. "email": "info@paragonie.com",
  5341. "issues": "https://github.com/paragonie/random_compat/issues",
  5342. "source": "https://github.com/paragonie/random_compat"
  5343. },
  5344. "time": "2020-10-15T08:29:30+00:00"
  5345. },
  5346. {
  5347. "name": "phpoption/phpoption",
  5348. "version": "1.9.3",
  5349. "source": {
  5350. "type": "git",
  5351. "url": "https://github.com/schmittjoh/php-option.git",
  5352. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5353. },
  5354. "dist": {
  5355. "type": "zip",
  5356. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5357. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5358. "shasum": ""
  5359. },
  5360. "require": {
  5361. "php": "^7.2.5 || ^8.0"
  5362. },
  5363. "require-dev": {
  5364. "bamarni/composer-bin-plugin": "^1.8.2",
  5365. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5366. },
  5367. "type": "library",
  5368. "extra": {
  5369. "bamarni-bin": {
  5370. "bin-links": true,
  5371. "forward-command": false
  5372. },
  5373. "branch-alias": {
  5374. "dev-master": "1.9-dev"
  5375. }
  5376. },
  5377. "autoload": {
  5378. "psr-4": {
  5379. "PhpOption\\": "src/PhpOption/"
  5380. }
  5381. },
  5382. "notification-url": "https://packagist.org/downloads/",
  5383. "license": [
  5384. "Apache-2.0"
  5385. ],
  5386. "authors": [
  5387. {
  5388. "name": "Johannes M. Schmitt",
  5389. "email": "schmittjoh@gmail.com",
  5390. "homepage": "https://github.com/schmittjoh"
  5391. },
  5392. {
  5393. "name": "Graham Campbell",
  5394. "email": "hello@gjcampbell.co.uk",
  5395. "homepage": "https://github.com/GrahamCampbell"
  5396. }
  5397. ],
  5398. "description": "Option Type for PHP",
  5399. "keywords": [
  5400. "language",
  5401. "option",
  5402. "php",
  5403. "type"
  5404. ],
  5405. "support": {
  5406. "issues": "https://github.com/schmittjoh/php-option/issues",
  5407. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5408. },
  5409. "funding": [
  5410. {
  5411. "url": "https://github.com/GrahamCampbell",
  5412. "type": "github"
  5413. },
  5414. {
  5415. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5416. "type": "tidelift"
  5417. }
  5418. ],
  5419. "time": "2024-07-20T21:41:07+00:00"
  5420. },
  5421. {
  5422. "name": "phpseclib/phpseclib",
  5423. "version": "3.0.43",
  5424. "source": {
  5425. "type": "git",
  5426. "url": "https://github.com/phpseclib/phpseclib.git",
  5427. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  5428. },
  5429. "dist": {
  5430. "type": "zip",
  5431. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  5432. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  5433. "shasum": ""
  5434. },
  5435. "require": {
  5436. "paragonie/constant_time_encoding": "^1|^2|^3",
  5437. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5438. "php": ">=5.6.1"
  5439. },
  5440. "require-dev": {
  5441. "phpunit/phpunit": "*"
  5442. },
  5443. "suggest": {
  5444. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5445. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5446. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5447. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5448. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5449. },
  5450. "type": "library",
  5451. "autoload": {
  5452. "files": [
  5453. "phpseclib/bootstrap.php"
  5454. ],
  5455. "psr-4": {
  5456. "phpseclib3\\": "phpseclib/"
  5457. }
  5458. },
  5459. "notification-url": "https://packagist.org/downloads/",
  5460. "license": [
  5461. "MIT"
  5462. ],
  5463. "authors": [
  5464. {
  5465. "name": "Jim Wigginton",
  5466. "email": "terrafrost@php.net",
  5467. "role": "Lead Developer"
  5468. },
  5469. {
  5470. "name": "Patrick Monnerat",
  5471. "email": "pm@datasphere.ch",
  5472. "role": "Developer"
  5473. },
  5474. {
  5475. "name": "Andreas Fischer",
  5476. "email": "bantu@phpbb.com",
  5477. "role": "Developer"
  5478. },
  5479. {
  5480. "name": "Hans-Jürgen Petrich",
  5481. "email": "petrich@tronic-media.com",
  5482. "role": "Developer"
  5483. },
  5484. {
  5485. "name": "Graham Campbell",
  5486. "email": "graham@alt-three.com",
  5487. "role": "Developer"
  5488. }
  5489. ],
  5490. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5491. "homepage": "http://phpseclib.sourceforge.net",
  5492. "keywords": [
  5493. "BigInteger",
  5494. "aes",
  5495. "asn.1",
  5496. "asn1",
  5497. "blowfish",
  5498. "crypto",
  5499. "cryptography",
  5500. "encryption",
  5501. "rsa",
  5502. "security",
  5503. "sftp",
  5504. "signature",
  5505. "signing",
  5506. "ssh",
  5507. "twofish",
  5508. "x.509",
  5509. "x509"
  5510. ],
  5511. "support": {
  5512. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5513. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  5514. },
  5515. "funding": [
  5516. {
  5517. "url": "https://github.com/terrafrost",
  5518. "type": "github"
  5519. },
  5520. {
  5521. "url": "https://www.patreon.com/phpseclib",
  5522. "type": "patreon"
  5523. },
  5524. {
  5525. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5526. "type": "tidelift"
  5527. }
  5528. ],
  5529. "time": "2024-12-14T21:12:59+00:00"
  5530. },
  5531. {
  5532. "name": "psr/cache",
  5533. "version": "3.0.0",
  5534. "source": {
  5535. "type": "git",
  5536. "url": "https://github.com/php-fig/cache.git",
  5537. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5538. },
  5539. "dist": {
  5540. "type": "zip",
  5541. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5542. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5543. "shasum": ""
  5544. },
  5545. "require": {
  5546. "php": ">=8.0.0"
  5547. },
  5548. "type": "library",
  5549. "extra": {
  5550. "branch-alias": {
  5551. "dev-master": "1.0.x-dev"
  5552. }
  5553. },
  5554. "autoload": {
  5555. "psr-4": {
  5556. "Psr\\Cache\\": "src/"
  5557. }
  5558. },
  5559. "notification-url": "https://packagist.org/downloads/",
  5560. "license": [
  5561. "MIT"
  5562. ],
  5563. "authors": [
  5564. {
  5565. "name": "PHP-FIG",
  5566. "homepage": "https://www.php-fig.org/"
  5567. }
  5568. ],
  5569. "description": "Common interface for caching libraries",
  5570. "keywords": [
  5571. "cache",
  5572. "psr",
  5573. "psr-6"
  5574. ],
  5575. "support": {
  5576. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5577. },
  5578. "time": "2021-02-03T23:26:27+00:00"
  5579. },
  5580. {
  5581. "name": "psr/clock",
  5582. "version": "1.0.0",
  5583. "source": {
  5584. "type": "git",
  5585. "url": "https://github.com/php-fig/clock.git",
  5586. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5587. },
  5588. "dist": {
  5589. "type": "zip",
  5590. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5591. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5592. "shasum": ""
  5593. },
  5594. "require": {
  5595. "php": "^7.0 || ^8.0"
  5596. },
  5597. "type": "library",
  5598. "autoload": {
  5599. "psr-4": {
  5600. "Psr\\Clock\\": "src/"
  5601. }
  5602. },
  5603. "notification-url": "https://packagist.org/downloads/",
  5604. "license": [
  5605. "MIT"
  5606. ],
  5607. "authors": [
  5608. {
  5609. "name": "PHP-FIG",
  5610. "homepage": "https://www.php-fig.org/"
  5611. }
  5612. ],
  5613. "description": "Common interface for reading the clock.",
  5614. "homepage": "https://github.com/php-fig/clock",
  5615. "keywords": [
  5616. "clock",
  5617. "now",
  5618. "psr",
  5619. "psr-20",
  5620. "time"
  5621. ],
  5622. "support": {
  5623. "issues": "https://github.com/php-fig/clock/issues",
  5624. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5625. },
  5626. "time": "2022-11-25T14:36:26+00:00"
  5627. },
  5628. {
  5629. "name": "psr/container",
  5630. "version": "2.0.2",
  5631. "source": {
  5632. "type": "git",
  5633. "url": "https://github.com/php-fig/container.git",
  5634. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5635. },
  5636. "dist": {
  5637. "type": "zip",
  5638. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5639. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5640. "shasum": ""
  5641. },
  5642. "require": {
  5643. "php": ">=7.4.0"
  5644. },
  5645. "type": "library",
  5646. "extra": {
  5647. "branch-alias": {
  5648. "dev-master": "2.0.x-dev"
  5649. }
  5650. },
  5651. "autoload": {
  5652. "psr-4": {
  5653. "Psr\\Container\\": "src/"
  5654. }
  5655. },
  5656. "notification-url": "https://packagist.org/downloads/",
  5657. "license": [
  5658. "MIT"
  5659. ],
  5660. "authors": [
  5661. {
  5662. "name": "PHP-FIG",
  5663. "homepage": "https://www.php-fig.org/"
  5664. }
  5665. ],
  5666. "description": "Common Container Interface (PHP FIG PSR-11)",
  5667. "homepage": "https://github.com/php-fig/container",
  5668. "keywords": [
  5669. "PSR-11",
  5670. "container",
  5671. "container-interface",
  5672. "container-interop",
  5673. "psr"
  5674. ],
  5675. "support": {
  5676. "issues": "https://github.com/php-fig/container/issues",
  5677. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5678. },
  5679. "time": "2021-11-05T16:47:00+00:00"
  5680. },
  5681. {
  5682. "name": "psr/event-dispatcher",
  5683. "version": "1.0.0",
  5684. "source": {
  5685. "type": "git",
  5686. "url": "https://github.com/php-fig/event-dispatcher.git",
  5687. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5688. },
  5689. "dist": {
  5690. "type": "zip",
  5691. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5692. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5693. "shasum": ""
  5694. },
  5695. "require": {
  5696. "php": ">=7.2.0"
  5697. },
  5698. "type": "library",
  5699. "extra": {
  5700. "branch-alias": {
  5701. "dev-master": "1.0.x-dev"
  5702. }
  5703. },
  5704. "autoload": {
  5705. "psr-4": {
  5706. "Psr\\EventDispatcher\\": "src/"
  5707. }
  5708. },
  5709. "notification-url": "https://packagist.org/downloads/",
  5710. "license": [
  5711. "MIT"
  5712. ],
  5713. "authors": [
  5714. {
  5715. "name": "PHP-FIG",
  5716. "homepage": "http://www.php-fig.org/"
  5717. }
  5718. ],
  5719. "description": "Standard interfaces for event handling.",
  5720. "keywords": [
  5721. "events",
  5722. "psr",
  5723. "psr-14"
  5724. ],
  5725. "support": {
  5726. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5727. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5728. },
  5729. "time": "2019-01-08T18:20:26+00:00"
  5730. },
  5731. {
  5732. "name": "psr/http-client",
  5733. "version": "1.0.3",
  5734. "source": {
  5735. "type": "git",
  5736. "url": "https://github.com/php-fig/http-client.git",
  5737. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5738. },
  5739. "dist": {
  5740. "type": "zip",
  5741. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5742. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5743. "shasum": ""
  5744. },
  5745. "require": {
  5746. "php": "^7.0 || ^8.0",
  5747. "psr/http-message": "^1.0 || ^2.0"
  5748. },
  5749. "type": "library",
  5750. "extra": {
  5751. "branch-alias": {
  5752. "dev-master": "1.0.x-dev"
  5753. }
  5754. },
  5755. "autoload": {
  5756. "psr-4": {
  5757. "Psr\\Http\\Client\\": "src/"
  5758. }
  5759. },
  5760. "notification-url": "https://packagist.org/downloads/",
  5761. "license": [
  5762. "MIT"
  5763. ],
  5764. "authors": [
  5765. {
  5766. "name": "PHP-FIG",
  5767. "homepage": "https://www.php-fig.org/"
  5768. }
  5769. ],
  5770. "description": "Common interface for HTTP clients",
  5771. "homepage": "https://github.com/php-fig/http-client",
  5772. "keywords": [
  5773. "http",
  5774. "http-client",
  5775. "psr",
  5776. "psr-18"
  5777. ],
  5778. "support": {
  5779. "source": "https://github.com/php-fig/http-client"
  5780. },
  5781. "time": "2023-09-23T14:17:50+00:00"
  5782. },
  5783. {
  5784. "name": "psr/http-factory",
  5785. "version": "1.1.0",
  5786. "source": {
  5787. "type": "git",
  5788. "url": "https://github.com/php-fig/http-factory.git",
  5789. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5790. },
  5791. "dist": {
  5792. "type": "zip",
  5793. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5794. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5795. "shasum": ""
  5796. },
  5797. "require": {
  5798. "php": ">=7.1",
  5799. "psr/http-message": "^1.0 || ^2.0"
  5800. },
  5801. "type": "library",
  5802. "extra": {
  5803. "branch-alias": {
  5804. "dev-master": "1.0.x-dev"
  5805. }
  5806. },
  5807. "autoload": {
  5808. "psr-4": {
  5809. "Psr\\Http\\Message\\": "src/"
  5810. }
  5811. },
  5812. "notification-url": "https://packagist.org/downloads/",
  5813. "license": [
  5814. "MIT"
  5815. ],
  5816. "authors": [
  5817. {
  5818. "name": "PHP-FIG",
  5819. "homepage": "https://www.php-fig.org/"
  5820. }
  5821. ],
  5822. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5823. "keywords": [
  5824. "factory",
  5825. "http",
  5826. "message",
  5827. "psr",
  5828. "psr-17",
  5829. "psr-7",
  5830. "request",
  5831. "response"
  5832. ],
  5833. "support": {
  5834. "source": "https://github.com/php-fig/http-factory"
  5835. },
  5836. "time": "2024-04-15T12:06:14+00:00"
  5837. },
  5838. {
  5839. "name": "psr/http-message",
  5840. "version": "2.0",
  5841. "source": {
  5842. "type": "git",
  5843. "url": "https://github.com/php-fig/http-message.git",
  5844. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5845. },
  5846. "dist": {
  5847. "type": "zip",
  5848. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5849. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5850. "shasum": ""
  5851. },
  5852. "require": {
  5853. "php": "^7.2 || ^8.0"
  5854. },
  5855. "type": "library",
  5856. "extra": {
  5857. "branch-alias": {
  5858. "dev-master": "2.0.x-dev"
  5859. }
  5860. },
  5861. "autoload": {
  5862. "psr-4": {
  5863. "Psr\\Http\\Message\\": "src/"
  5864. }
  5865. },
  5866. "notification-url": "https://packagist.org/downloads/",
  5867. "license": [
  5868. "MIT"
  5869. ],
  5870. "authors": [
  5871. {
  5872. "name": "PHP-FIG",
  5873. "homepage": "https://www.php-fig.org/"
  5874. }
  5875. ],
  5876. "description": "Common interface for HTTP messages",
  5877. "homepage": "https://github.com/php-fig/http-message",
  5878. "keywords": [
  5879. "http",
  5880. "http-message",
  5881. "psr",
  5882. "psr-7",
  5883. "request",
  5884. "response"
  5885. ],
  5886. "support": {
  5887. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5888. },
  5889. "time": "2023-04-04T09:54:51+00:00"
  5890. },
  5891. {
  5892. "name": "psr/log",
  5893. "version": "3.0.2",
  5894. "source": {
  5895. "type": "git",
  5896. "url": "https://github.com/php-fig/log.git",
  5897. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5898. },
  5899. "dist": {
  5900. "type": "zip",
  5901. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5902. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5903. "shasum": ""
  5904. },
  5905. "require": {
  5906. "php": ">=8.0.0"
  5907. },
  5908. "type": "library",
  5909. "extra": {
  5910. "branch-alias": {
  5911. "dev-master": "3.x-dev"
  5912. }
  5913. },
  5914. "autoload": {
  5915. "psr-4": {
  5916. "Psr\\Log\\": "src"
  5917. }
  5918. },
  5919. "notification-url": "https://packagist.org/downloads/",
  5920. "license": [
  5921. "MIT"
  5922. ],
  5923. "authors": [
  5924. {
  5925. "name": "PHP-FIG",
  5926. "homepage": "https://www.php-fig.org/"
  5927. }
  5928. ],
  5929. "description": "Common interface for logging libraries",
  5930. "homepage": "https://github.com/php-fig/log",
  5931. "keywords": [
  5932. "log",
  5933. "psr",
  5934. "psr-3"
  5935. ],
  5936. "support": {
  5937. "source": "https://github.com/php-fig/log/tree/3.0.2"
  5938. },
  5939. "time": "2024-09-11T13:17:53+00:00"
  5940. },
  5941. {
  5942. "name": "psr/simple-cache",
  5943. "version": "3.0.0",
  5944. "source": {
  5945. "type": "git",
  5946. "url": "https://github.com/php-fig/simple-cache.git",
  5947. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5948. },
  5949. "dist": {
  5950. "type": "zip",
  5951. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5952. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5953. "shasum": ""
  5954. },
  5955. "require": {
  5956. "php": ">=8.0.0"
  5957. },
  5958. "type": "library",
  5959. "extra": {
  5960. "branch-alias": {
  5961. "dev-master": "3.0.x-dev"
  5962. }
  5963. },
  5964. "autoload": {
  5965. "psr-4": {
  5966. "Psr\\SimpleCache\\": "src/"
  5967. }
  5968. },
  5969. "notification-url": "https://packagist.org/downloads/",
  5970. "license": [
  5971. "MIT"
  5972. ],
  5973. "authors": [
  5974. {
  5975. "name": "PHP-FIG",
  5976. "homepage": "https://www.php-fig.org/"
  5977. }
  5978. ],
  5979. "description": "Common interfaces for simple caching",
  5980. "keywords": [
  5981. "cache",
  5982. "caching",
  5983. "psr",
  5984. "psr-16",
  5985. "simple-cache"
  5986. ],
  5987. "support": {
  5988. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5989. },
  5990. "time": "2021-10-29T13:26:27+00:00"
  5991. },
  5992. {
  5993. "name": "psy/psysh",
  5994. "version": "v0.12.7",
  5995. "source": {
  5996. "type": "git",
  5997. "url": "https://github.com/bobthecow/psysh.git",
  5998. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c"
  5999. },
  6000. "dist": {
  6001. "type": "zip",
  6002. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  6003. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  6004. "shasum": ""
  6005. },
  6006. "require": {
  6007. "ext-json": "*",
  6008. "ext-tokenizer": "*",
  6009. "nikic/php-parser": "^5.0 || ^4.0",
  6010. "php": "^8.0 || ^7.4",
  6011. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6012. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6013. },
  6014. "conflict": {
  6015. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6016. },
  6017. "require-dev": {
  6018. "bamarni/composer-bin-plugin": "^1.2"
  6019. },
  6020. "suggest": {
  6021. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6022. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6023. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6024. },
  6025. "bin": [
  6026. "bin/psysh"
  6027. ],
  6028. "type": "library",
  6029. "extra": {
  6030. "bamarni-bin": {
  6031. "bin-links": false,
  6032. "forward-command": false
  6033. },
  6034. "branch-alias": {
  6035. "dev-main": "0.12.x-dev"
  6036. }
  6037. },
  6038. "autoload": {
  6039. "files": [
  6040. "src/functions.php"
  6041. ],
  6042. "psr-4": {
  6043. "Psy\\": "src/"
  6044. }
  6045. },
  6046. "notification-url": "https://packagist.org/downloads/",
  6047. "license": [
  6048. "MIT"
  6049. ],
  6050. "authors": [
  6051. {
  6052. "name": "Justin Hileman",
  6053. "email": "justin@justinhileman.info",
  6054. "homepage": "http://justinhileman.com"
  6055. }
  6056. ],
  6057. "description": "An interactive shell for modern PHP.",
  6058. "homepage": "http://psysh.org",
  6059. "keywords": [
  6060. "REPL",
  6061. "console",
  6062. "interactive",
  6063. "shell"
  6064. ],
  6065. "support": {
  6066. "issues": "https://github.com/bobthecow/psysh/issues",
  6067. "source": "https://github.com/bobthecow/psysh/tree/v0.12.7"
  6068. },
  6069. "time": "2024-12-10T01:58:33+00:00"
  6070. },
  6071. {
  6072. "name": "ralouphie/getallheaders",
  6073. "version": "3.0.3",
  6074. "source": {
  6075. "type": "git",
  6076. "url": "https://github.com/ralouphie/getallheaders.git",
  6077. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6078. },
  6079. "dist": {
  6080. "type": "zip",
  6081. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6082. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6083. "shasum": ""
  6084. },
  6085. "require": {
  6086. "php": ">=5.6"
  6087. },
  6088. "require-dev": {
  6089. "php-coveralls/php-coveralls": "^2.1",
  6090. "phpunit/phpunit": "^5 || ^6.5"
  6091. },
  6092. "type": "library",
  6093. "autoload": {
  6094. "files": [
  6095. "src/getallheaders.php"
  6096. ]
  6097. },
  6098. "notification-url": "https://packagist.org/downloads/",
  6099. "license": [
  6100. "MIT"
  6101. ],
  6102. "authors": [
  6103. {
  6104. "name": "Ralph Khattar",
  6105. "email": "ralph.khattar@gmail.com"
  6106. }
  6107. ],
  6108. "description": "A polyfill for getallheaders.",
  6109. "support": {
  6110. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6111. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6112. },
  6113. "time": "2019-03-08T08:55:37+00:00"
  6114. },
  6115. {
  6116. "name": "ramsey/collection",
  6117. "version": "2.0.0",
  6118. "source": {
  6119. "type": "git",
  6120. "url": "https://github.com/ramsey/collection.git",
  6121. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  6122. },
  6123. "dist": {
  6124. "type": "zip",
  6125. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6126. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6127. "shasum": ""
  6128. },
  6129. "require": {
  6130. "php": "^8.1"
  6131. },
  6132. "require-dev": {
  6133. "captainhook/plugin-composer": "^5.3",
  6134. "ergebnis/composer-normalize": "^2.28.3",
  6135. "fakerphp/faker": "^1.21",
  6136. "hamcrest/hamcrest-php": "^2.0",
  6137. "jangregor/phpstan-prophecy": "^1.0",
  6138. "mockery/mockery": "^1.5",
  6139. "php-parallel-lint/php-console-highlighter": "^1.0",
  6140. "php-parallel-lint/php-parallel-lint": "^1.3",
  6141. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6142. "phpspec/prophecy-phpunit": "^2.0",
  6143. "phpstan/extension-installer": "^1.2",
  6144. "phpstan/phpstan": "^1.9",
  6145. "phpstan/phpstan-mockery": "^1.1",
  6146. "phpstan/phpstan-phpunit": "^1.3",
  6147. "phpunit/phpunit": "^9.5",
  6148. "psalm/plugin-mockery": "^1.1",
  6149. "psalm/plugin-phpunit": "^0.18.4",
  6150. "ramsey/coding-standard": "^2.0.3",
  6151. "ramsey/conventional-commits": "^1.3",
  6152. "vimeo/psalm": "^5.4"
  6153. },
  6154. "type": "library",
  6155. "extra": {
  6156. "captainhook": {
  6157. "force-install": true
  6158. },
  6159. "ramsey/conventional-commits": {
  6160. "configFile": "conventional-commits.json"
  6161. }
  6162. },
  6163. "autoload": {
  6164. "psr-4": {
  6165. "Ramsey\\Collection\\": "src/"
  6166. }
  6167. },
  6168. "notification-url": "https://packagist.org/downloads/",
  6169. "license": [
  6170. "MIT"
  6171. ],
  6172. "authors": [
  6173. {
  6174. "name": "Ben Ramsey",
  6175. "email": "ben@benramsey.com",
  6176. "homepage": "https://benramsey.com"
  6177. }
  6178. ],
  6179. "description": "A PHP library for representing and manipulating collections.",
  6180. "keywords": [
  6181. "array",
  6182. "collection",
  6183. "hash",
  6184. "map",
  6185. "queue",
  6186. "set"
  6187. ],
  6188. "support": {
  6189. "issues": "https://github.com/ramsey/collection/issues",
  6190. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  6191. },
  6192. "funding": [
  6193. {
  6194. "url": "https://github.com/ramsey",
  6195. "type": "github"
  6196. },
  6197. {
  6198. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6199. "type": "tidelift"
  6200. }
  6201. ],
  6202. "time": "2022-12-31T21:50:55+00:00"
  6203. },
  6204. {
  6205. "name": "ramsey/uuid",
  6206. "version": "4.7.6",
  6207. "source": {
  6208. "type": "git",
  6209. "url": "https://github.com/ramsey/uuid.git",
  6210. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6211. },
  6212. "dist": {
  6213. "type": "zip",
  6214. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6215. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6216. "shasum": ""
  6217. },
  6218. "require": {
  6219. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  6220. "ext-json": "*",
  6221. "php": "^8.0",
  6222. "ramsey/collection": "^1.2 || ^2.0"
  6223. },
  6224. "replace": {
  6225. "rhumsaa/uuid": "self.version"
  6226. },
  6227. "require-dev": {
  6228. "captainhook/captainhook": "^5.10",
  6229. "captainhook/plugin-composer": "^5.3",
  6230. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6231. "doctrine/annotations": "^1.8",
  6232. "ergebnis/composer-normalize": "^2.15",
  6233. "mockery/mockery": "^1.3",
  6234. "paragonie/random-lib": "^2",
  6235. "php-mock/php-mock": "^2.2",
  6236. "php-mock/php-mock-mockery": "^1.3",
  6237. "php-parallel-lint/php-parallel-lint": "^1.1",
  6238. "phpbench/phpbench": "^1.0",
  6239. "phpstan/extension-installer": "^1.1",
  6240. "phpstan/phpstan": "^1.8",
  6241. "phpstan/phpstan-mockery": "^1.1",
  6242. "phpstan/phpstan-phpunit": "^1.1",
  6243. "phpunit/phpunit": "^8.5 || ^9",
  6244. "ramsey/composer-repl": "^1.4",
  6245. "slevomat/coding-standard": "^8.4",
  6246. "squizlabs/php_codesniffer": "^3.5",
  6247. "vimeo/psalm": "^4.9"
  6248. },
  6249. "suggest": {
  6250. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6251. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6252. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6253. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6254. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6255. },
  6256. "type": "library",
  6257. "extra": {
  6258. "captainhook": {
  6259. "force-install": true
  6260. }
  6261. },
  6262. "autoload": {
  6263. "files": [
  6264. "src/functions.php"
  6265. ],
  6266. "psr-4": {
  6267. "Ramsey\\Uuid\\": "src/"
  6268. }
  6269. },
  6270. "notification-url": "https://packagist.org/downloads/",
  6271. "license": [
  6272. "MIT"
  6273. ],
  6274. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6275. "keywords": [
  6276. "guid",
  6277. "identifier",
  6278. "uuid"
  6279. ],
  6280. "support": {
  6281. "issues": "https://github.com/ramsey/uuid/issues",
  6282. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6283. },
  6284. "funding": [
  6285. {
  6286. "url": "https://github.com/ramsey",
  6287. "type": "github"
  6288. },
  6289. {
  6290. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6291. "type": "tidelift"
  6292. }
  6293. ],
  6294. "time": "2024-04-27T21:32:50+00:00"
  6295. },
  6296. {
  6297. "name": "ryangjchandler/blade-capture-directive",
  6298. "version": "v1.0.0",
  6299. "source": {
  6300. "type": "git",
  6301. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6302. "reference": "cb6f58663d97f17bece176295240b740835e14f1"
  6303. },
  6304. "dist": {
  6305. "type": "zip",
  6306. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/cb6f58663d97f17bece176295240b740835e14f1",
  6307. "reference": "cb6f58663d97f17bece176295240b740835e14f1",
  6308. "shasum": ""
  6309. },
  6310. "require": {
  6311. "illuminate/contracts": "^10.0|^11.0",
  6312. "php": "^8.1",
  6313. "spatie/laravel-package-tools": "^1.9.2"
  6314. },
  6315. "require-dev": {
  6316. "nunomaduro/collision": "^7.0|^8.0",
  6317. "nunomaduro/larastan": "^2.0",
  6318. "orchestra/testbench": "^8.0|^9.0",
  6319. "pestphp/pest": "^2.0",
  6320. "pestphp/pest-plugin-laravel": "^2.0",
  6321. "phpstan/extension-installer": "^1.1",
  6322. "phpstan/phpstan-deprecation-rules": "^1.0",
  6323. "phpstan/phpstan-phpunit": "^1.0",
  6324. "phpunit/phpunit": "^10.0",
  6325. "spatie/laravel-ray": "^1.26"
  6326. },
  6327. "type": "library",
  6328. "extra": {
  6329. "laravel": {
  6330. "aliases": {
  6331. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6332. },
  6333. "providers": [
  6334. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6335. ]
  6336. }
  6337. },
  6338. "autoload": {
  6339. "psr-4": {
  6340. "RyanChandler\\BladeCaptureDirective\\": "src",
  6341. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6342. }
  6343. },
  6344. "notification-url": "https://packagist.org/downloads/",
  6345. "license": [
  6346. "MIT"
  6347. ],
  6348. "authors": [
  6349. {
  6350. "name": "Ryan Chandler",
  6351. "email": "support@ryangjchandler.co.uk",
  6352. "role": "Developer"
  6353. }
  6354. ],
  6355. "description": "Create inline partials in your Blade templates with ease.",
  6356. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6357. "keywords": [
  6358. "blade-capture-directive",
  6359. "laravel",
  6360. "ryangjchandler"
  6361. ],
  6362. "support": {
  6363. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6364. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.0.0"
  6365. },
  6366. "funding": [
  6367. {
  6368. "url": "https://github.com/ryangjchandler",
  6369. "type": "github"
  6370. }
  6371. ],
  6372. "time": "2024-02-26T18:08:49+00:00"
  6373. },
  6374. {
  6375. "name": "spatie/color",
  6376. "version": "1.7.0",
  6377. "source": {
  6378. "type": "git",
  6379. "url": "https://github.com/spatie/color.git",
  6380. "reference": "614f1e0674262c620db908998a11eacd16494835"
  6381. },
  6382. "dist": {
  6383. "type": "zip",
  6384. "url": "https://api.github.com/repos/spatie/color/zipball/614f1e0674262c620db908998a11eacd16494835",
  6385. "reference": "614f1e0674262c620db908998a11eacd16494835",
  6386. "shasum": ""
  6387. },
  6388. "require": {
  6389. "php": "^7.3|^8.0"
  6390. },
  6391. "require-dev": {
  6392. "pestphp/pest": "^1.22",
  6393. "phpunit/phpunit": "^6.5||^9.0"
  6394. },
  6395. "type": "library",
  6396. "autoload": {
  6397. "psr-4": {
  6398. "Spatie\\Color\\": "src"
  6399. }
  6400. },
  6401. "notification-url": "https://packagist.org/downloads/",
  6402. "license": [
  6403. "MIT"
  6404. ],
  6405. "authors": [
  6406. {
  6407. "name": "Sebastian De Deyne",
  6408. "email": "sebastian@spatie.be",
  6409. "homepage": "https://spatie.be",
  6410. "role": "Developer"
  6411. }
  6412. ],
  6413. "description": "A little library to handle color conversions",
  6414. "homepage": "https://github.com/spatie/color",
  6415. "keywords": [
  6416. "color",
  6417. "conversion",
  6418. "rgb",
  6419. "spatie"
  6420. ],
  6421. "support": {
  6422. "issues": "https://github.com/spatie/color/issues",
  6423. "source": "https://github.com/spatie/color/tree/1.7.0"
  6424. },
  6425. "funding": [
  6426. {
  6427. "url": "https://github.com/spatie",
  6428. "type": "github"
  6429. }
  6430. ],
  6431. "time": "2024-12-30T14:23:15+00:00"
  6432. },
  6433. {
  6434. "name": "spatie/invade",
  6435. "version": "2.1.0",
  6436. "source": {
  6437. "type": "git",
  6438. "url": "https://github.com/spatie/invade.git",
  6439. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  6440. },
  6441. "dist": {
  6442. "type": "zip",
  6443. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6444. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6445. "shasum": ""
  6446. },
  6447. "require": {
  6448. "php": "^8.0"
  6449. },
  6450. "require-dev": {
  6451. "pestphp/pest": "^1.20",
  6452. "phpstan/phpstan": "^1.4",
  6453. "spatie/ray": "^1.28"
  6454. },
  6455. "type": "library",
  6456. "autoload": {
  6457. "files": [
  6458. "src/functions.php"
  6459. ],
  6460. "psr-4": {
  6461. "Spatie\\Invade\\": "src"
  6462. }
  6463. },
  6464. "notification-url": "https://packagist.org/downloads/",
  6465. "license": [
  6466. "MIT"
  6467. ],
  6468. "authors": [
  6469. {
  6470. "name": "Freek Van der Herten",
  6471. "email": "freek@spatie.be",
  6472. "role": "Developer"
  6473. }
  6474. ],
  6475. "description": "A PHP function to work with private properties and methods",
  6476. "homepage": "https://github.com/spatie/invade",
  6477. "keywords": [
  6478. "invade",
  6479. "spatie"
  6480. ],
  6481. "support": {
  6482. "source": "https://github.com/spatie/invade/tree/2.1.0"
  6483. },
  6484. "funding": [
  6485. {
  6486. "url": "https://github.com/spatie",
  6487. "type": "github"
  6488. }
  6489. ],
  6490. "time": "2024-05-17T09:06:10+00:00"
  6491. },
  6492. {
  6493. "name": "spatie/laravel-package-tools",
  6494. "version": "1.18.0",
  6495. "source": {
  6496. "type": "git",
  6497. "url": "https://github.com/spatie/laravel-package-tools.git",
  6498. "reference": "8332205b90d17164913244f4a8e13ab7e6761d29"
  6499. },
  6500. "dist": {
  6501. "type": "zip",
  6502. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/8332205b90d17164913244f4a8e13ab7e6761d29",
  6503. "reference": "8332205b90d17164913244f4a8e13ab7e6761d29",
  6504. "shasum": ""
  6505. },
  6506. "require": {
  6507. "illuminate/contracts": "^9.28|^10.0|^11.0",
  6508. "php": "^8.0"
  6509. },
  6510. "require-dev": {
  6511. "mockery/mockery": "^1.5",
  6512. "orchestra/testbench": "^7.7|^8.0|^9.0",
  6513. "pestphp/pest": "^1.22|^2",
  6514. "phpunit/phpunit": "^9.5.24|^10.5",
  6515. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  6516. },
  6517. "type": "library",
  6518. "autoload": {
  6519. "psr-4": {
  6520. "Spatie\\LaravelPackageTools\\": "src"
  6521. }
  6522. },
  6523. "notification-url": "https://packagist.org/downloads/",
  6524. "license": [
  6525. "MIT"
  6526. ],
  6527. "authors": [
  6528. {
  6529. "name": "Freek Van der Herten",
  6530. "email": "freek@spatie.be",
  6531. "role": "Developer"
  6532. }
  6533. ],
  6534. "description": "Tools for creating Laravel packages",
  6535. "homepage": "https://github.com/spatie/laravel-package-tools",
  6536. "keywords": [
  6537. "laravel-package-tools",
  6538. "spatie"
  6539. ],
  6540. "support": {
  6541. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6542. "source": "https://github.com/spatie/laravel-package-tools/tree/1.18.0"
  6543. },
  6544. "funding": [
  6545. {
  6546. "url": "https://github.com/spatie",
  6547. "type": "github"
  6548. }
  6549. ],
  6550. "time": "2024-12-30T13:13:39+00:00"
  6551. },
  6552. {
  6553. "name": "spatie/laravel-view-models",
  6554. "version": "1.6.0",
  6555. "source": {
  6556. "type": "git",
  6557. "url": "https://github.com/spatie/laravel-view-models.git",
  6558. "reference": "c8c74e26e2cc78d04e581867ce74c8b772279015"
  6559. },
  6560. "dist": {
  6561. "type": "zip",
  6562. "url": "https://api.github.com/repos/spatie/laravel-view-models/zipball/c8c74e26e2cc78d04e581867ce74c8b772279015",
  6563. "reference": "c8c74e26e2cc78d04e581867ce74c8b772279015",
  6564. "shasum": ""
  6565. },
  6566. "require": {
  6567. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6568. "php": "^7.3|^8.0"
  6569. },
  6570. "require-dev": {
  6571. "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0",
  6572. "pestphp/pest": "^1.22|^2.34"
  6573. },
  6574. "type": "library",
  6575. "extra": {
  6576. "laravel": {
  6577. "providers": [
  6578. "Spatie\\ViewModels\\Providers\\ViewModelsServiceProvider"
  6579. ]
  6580. }
  6581. },
  6582. "autoload": {
  6583. "psr-4": {
  6584. "Spatie\\ViewModels\\": "src"
  6585. }
  6586. },
  6587. "notification-url": "https://packagist.org/downloads/",
  6588. "license": [
  6589. "MIT"
  6590. ],
  6591. "authors": [
  6592. {
  6593. "name": "Brent Roose",
  6594. "email": "brent@spatie.be",
  6595. "homepage": "https://spatie.be",
  6596. "role": "Developer"
  6597. }
  6598. ],
  6599. "description": "View models in Laravel",
  6600. "homepage": "https://github.com/spatie/laravel-view-models",
  6601. "keywords": [
  6602. "laravel-view-models",
  6603. "spatie"
  6604. ],
  6605. "support": {
  6606. "issues": "https://github.com/spatie/laravel-view-models/issues",
  6607. "source": "https://github.com/spatie/laravel-view-models/tree/1.6.0"
  6608. },
  6609. "funding": [
  6610. {
  6611. "url": "https://spatie.be/open-source/support-us",
  6612. "type": "custom"
  6613. },
  6614. {
  6615. "url": "https://github.com/spatie",
  6616. "type": "github"
  6617. }
  6618. ],
  6619. "time": "2024-03-13T17:58:20+00:00"
  6620. },
  6621. {
  6622. "name": "squirephp/model",
  6623. "version": "v3.7.0",
  6624. "source": {
  6625. "type": "git",
  6626. "url": "https://github.com/squirephp/model.git",
  6627. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce"
  6628. },
  6629. "dist": {
  6630. "type": "zip",
  6631. "url": "https://api.github.com/repos/squirephp/model/zipball/9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6632. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6633. "shasum": ""
  6634. },
  6635. "require": {
  6636. "ext-pdo_sqlite": "*",
  6637. "illuminate/database": "^8.40|^9.0|^10.0|^11.0",
  6638. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6639. "php": "^8.0"
  6640. },
  6641. "type": "library",
  6642. "extra": {
  6643. "laravel": {
  6644. "providers": [
  6645. "Squire\\ModelServiceProvider"
  6646. ]
  6647. }
  6648. },
  6649. "autoload": {
  6650. "psr-4": {
  6651. "Squire\\": "src"
  6652. }
  6653. },
  6654. "notification-url": "https://packagist.org/downloads/",
  6655. "license": [
  6656. "MIT"
  6657. ],
  6658. "authors": [
  6659. {
  6660. "name": "Dan Harrin",
  6661. "email": "dan@danharrin.com"
  6662. }
  6663. ],
  6664. "description": "A library containing the base Squire model class.",
  6665. "homepage": "https://github.com/squirephp",
  6666. "keywords": [
  6667. "squire"
  6668. ],
  6669. "support": {
  6670. "issues": "https://github.com/squirephp/squire/issues",
  6671. "source": "https://github.com/squirephp/squire"
  6672. },
  6673. "time": "2024-03-11T11:06:10+00:00"
  6674. },
  6675. {
  6676. "name": "squirephp/repository",
  6677. "version": "v3.7.0",
  6678. "source": {
  6679. "type": "git",
  6680. "url": "https://github.com/squirephp/repository.git",
  6681. "reference": "c7cf78011f32904905638f4689975cbbbc78501c"
  6682. },
  6683. "dist": {
  6684. "type": "zip",
  6685. "url": "https://api.github.com/repos/squirephp/repository/zipball/c7cf78011f32904905638f4689975cbbbc78501c",
  6686. "reference": "c7cf78011f32904905638f4689975cbbbc78501c",
  6687. "shasum": ""
  6688. },
  6689. "require": {
  6690. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6691. "php": "^8.0"
  6692. },
  6693. "type": "library",
  6694. "extra": {
  6695. "laravel": {
  6696. "aliases": {
  6697. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6698. },
  6699. "providers": [
  6700. "Squire\\RepositoryServiceProvider"
  6701. ]
  6702. }
  6703. },
  6704. "autoload": {
  6705. "psr-4": {
  6706. "Squire\\": "src"
  6707. }
  6708. },
  6709. "notification-url": "https://packagist.org/downloads/",
  6710. "license": [
  6711. "MIT"
  6712. ],
  6713. "authors": [
  6714. {
  6715. "name": "Dan Harrin",
  6716. "email": "dan@danharrin.com"
  6717. }
  6718. ],
  6719. "description": "A library containing the Squire repository.",
  6720. "homepage": "https://github.com/squirephp",
  6721. "keywords": [
  6722. "squire"
  6723. ],
  6724. "support": {
  6725. "issues": "https://github.com/squirephp/squire/issues",
  6726. "source": "https://github.com/squirephp/squire"
  6727. },
  6728. "time": "2024-03-11T11:06:10+00:00"
  6729. },
  6730. {
  6731. "name": "symfony/clock",
  6732. "version": "v7.2.0",
  6733. "source": {
  6734. "type": "git",
  6735. "url": "https://github.com/symfony/clock.git",
  6736. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  6737. },
  6738. "dist": {
  6739. "type": "zip",
  6740. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6741. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6742. "shasum": ""
  6743. },
  6744. "require": {
  6745. "php": ">=8.2",
  6746. "psr/clock": "^1.0",
  6747. "symfony/polyfill-php83": "^1.28"
  6748. },
  6749. "provide": {
  6750. "psr/clock-implementation": "1.0"
  6751. },
  6752. "type": "library",
  6753. "autoload": {
  6754. "files": [
  6755. "Resources/now.php"
  6756. ],
  6757. "psr-4": {
  6758. "Symfony\\Component\\Clock\\": ""
  6759. },
  6760. "exclude-from-classmap": [
  6761. "/Tests/"
  6762. ]
  6763. },
  6764. "notification-url": "https://packagist.org/downloads/",
  6765. "license": [
  6766. "MIT"
  6767. ],
  6768. "authors": [
  6769. {
  6770. "name": "Nicolas Grekas",
  6771. "email": "p@tchwork.com"
  6772. },
  6773. {
  6774. "name": "Symfony Community",
  6775. "homepage": "https://symfony.com/contributors"
  6776. }
  6777. ],
  6778. "description": "Decouples applications from the system clock",
  6779. "homepage": "https://symfony.com",
  6780. "keywords": [
  6781. "clock",
  6782. "psr20",
  6783. "time"
  6784. ],
  6785. "support": {
  6786. "source": "https://github.com/symfony/clock/tree/v7.2.0"
  6787. },
  6788. "funding": [
  6789. {
  6790. "url": "https://symfony.com/sponsor",
  6791. "type": "custom"
  6792. },
  6793. {
  6794. "url": "https://github.com/fabpot",
  6795. "type": "github"
  6796. },
  6797. {
  6798. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6799. "type": "tidelift"
  6800. }
  6801. ],
  6802. "time": "2024-09-25T14:21:43+00:00"
  6803. },
  6804. {
  6805. "name": "symfony/console",
  6806. "version": "v7.2.1",
  6807. "source": {
  6808. "type": "git",
  6809. "url": "https://github.com/symfony/console.git",
  6810. "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3"
  6811. },
  6812. "dist": {
  6813. "type": "zip",
  6814. "url": "https://api.github.com/repos/symfony/console/zipball/fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
  6815. "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
  6816. "shasum": ""
  6817. },
  6818. "require": {
  6819. "php": ">=8.2",
  6820. "symfony/polyfill-mbstring": "~1.0",
  6821. "symfony/service-contracts": "^2.5|^3",
  6822. "symfony/string": "^6.4|^7.0"
  6823. },
  6824. "conflict": {
  6825. "symfony/dependency-injection": "<6.4",
  6826. "symfony/dotenv": "<6.4",
  6827. "symfony/event-dispatcher": "<6.4",
  6828. "symfony/lock": "<6.4",
  6829. "symfony/process": "<6.4"
  6830. },
  6831. "provide": {
  6832. "psr/log-implementation": "1.0|2.0|3.0"
  6833. },
  6834. "require-dev": {
  6835. "psr/log": "^1|^2|^3",
  6836. "symfony/config": "^6.4|^7.0",
  6837. "symfony/dependency-injection": "^6.4|^7.0",
  6838. "symfony/event-dispatcher": "^6.4|^7.0",
  6839. "symfony/http-foundation": "^6.4|^7.0",
  6840. "symfony/http-kernel": "^6.4|^7.0",
  6841. "symfony/lock": "^6.4|^7.0",
  6842. "symfony/messenger": "^6.4|^7.0",
  6843. "symfony/process": "^6.4|^7.0",
  6844. "symfony/stopwatch": "^6.4|^7.0",
  6845. "symfony/var-dumper": "^6.4|^7.0"
  6846. },
  6847. "type": "library",
  6848. "autoload": {
  6849. "psr-4": {
  6850. "Symfony\\Component\\Console\\": ""
  6851. },
  6852. "exclude-from-classmap": [
  6853. "/Tests/"
  6854. ]
  6855. },
  6856. "notification-url": "https://packagist.org/downloads/",
  6857. "license": [
  6858. "MIT"
  6859. ],
  6860. "authors": [
  6861. {
  6862. "name": "Fabien Potencier",
  6863. "email": "fabien@symfony.com"
  6864. },
  6865. {
  6866. "name": "Symfony Community",
  6867. "homepage": "https://symfony.com/contributors"
  6868. }
  6869. ],
  6870. "description": "Eases the creation of beautiful and testable command line interfaces",
  6871. "homepage": "https://symfony.com",
  6872. "keywords": [
  6873. "cli",
  6874. "command-line",
  6875. "console",
  6876. "terminal"
  6877. ],
  6878. "support": {
  6879. "source": "https://github.com/symfony/console/tree/v7.2.1"
  6880. },
  6881. "funding": [
  6882. {
  6883. "url": "https://symfony.com/sponsor",
  6884. "type": "custom"
  6885. },
  6886. {
  6887. "url": "https://github.com/fabpot",
  6888. "type": "github"
  6889. },
  6890. {
  6891. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6892. "type": "tidelift"
  6893. }
  6894. ],
  6895. "time": "2024-12-11T03:49:26+00:00"
  6896. },
  6897. {
  6898. "name": "symfony/css-selector",
  6899. "version": "v7.2.0",
  6900. "source": {
  6901. "type": "git",
  6902. "url": "https://github.com/symfony/css-selector.git",
  6903. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  6904. },
  6905. "dist": {
  6906. "type": "zip",
  6907. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6908. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6909. "shasum": ""
  6910. },
  6911. "require": {
  6912. "php": ">=8.2"
  6913. },
  6914. "type": "library",
  6915. "autoload": {
  6916. "psr-4": {
  6917. "Symfony\\Component\\CssSelector\\": ""
  6918. },
  6919. "exclude-from-classmap": [
  6920. "/Tests/"
  6921. ]
  6922. },
  6923. "notification-url": "https://packagist.org/downloads/",
  6924. "license": [
  6925. "MIT"
  6926. ],
  6927. "authors": [
  6928. {
  6929. "name": "Fabien Potencier",
  6930. "email": "fabien@symfony.com"
  6931. },
  6932. {
  6933. "name": "Jean-François Simon",
  6934. "email": "jeanfrancois.simon@sensiolabs.com"
  6935. },
  6936. {
  6937. "name": "Symfony Community",
  6938. "homepage": "https://symfony.com/contributors"
  6939. }
  6940. ],
  6941. "description": "Converts CSS selectors to XPath expressions",
  6942. "homepage": "https://symfony.com",
  6943. "support": {
  6944. "source": "https://github.com/symfony/css-selector/tree/v7.2.0"
  6945. },
  6946. "funding": [
  6947. {
  6948. "url": "https://symfony.com/sponsor",
  6949. "type": "custom"
  6950. },
  6951. {
  6952. "url": "https://github.com/fabpot",
  6953. "type": "github"
  6954. },
  6955. {
  6956. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6957. "type": "tidelift"
  6958. }
  6959. ],
  6960. "time": "2024-09-25T14:21:43+00:00"
  6961. },
  6962. {
  6963. "name": "symfony/deprecation-contracts",
  6964. "version": "v3.5.1",
  6965. "source": {
  6966. "type": "git",
  6967. "url": "https://github.com/symfony/deprecation-contracts.git",
  6968. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6969. },
  6970. "dist": {
  6971. "type": "zip",
  6972. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6973. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6974. "shasum": ""
  6975. },
  6976. "require": {
  6977. "php": ">=8.1"
  6978. },
  6979. "type": "library",
  6980. "extra": {
  6981. "thanks": {
  6982. "url": "https://github.com/symfony/contracts",
  6983. "name": "symfony/contracts"
  6984. },
  6985. "branch-alias": {
  6986. "dev-main": "3.5-dev"
  6987. }
  6988. },
  6989. "autoload": {
  6990. "files": [
  6991. "function.php"
  6992. ]
  6993. },
  6994. "notification-url": "https://packagist.org/downloads/",
  6995. "license": [
  6996. "MIT"
  6997. ],
  6998. "authors": [
  6999. {
  7000. "name": "Nicolas Grekas",
  7001. "email": "p@tchwork.com"
  7002. },
  7003. {
  7004. "name": "Symfony Community",
  7005. "homepage": "https://symfony.com/contributors"
  7006. }
  7007. ],
  7008. "description": "A generic function and convention to trigger deprecation notices",
  7009. "homepage": "https://symfony.com",
  7010. "support": {
  7011. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  7012. },
  7013. "funding": [
  7014. {
  7015. "url": "https://symfony.com/sponsor",
  7016. "type": "custom"
  7017. },
  7018. {
  7019. "url": "https://github.com/fabpot",
  7020. "type": "github"
  7021. },
  7022. {
  7023. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7024. "type": "tidelift"
  7025. }
  7026. ],
  7027. "time": "2024-09-25T14:20:29+00:00"
  7028. },
  7029. {
  7030. "name": "symfony/error-handler",
  7031. "version": "v7.2.1",
  7032. "source": {
  7033. "type": "git",
  7034. "url": "https://github.com/symfony/error-handler.git",
  7035. "reference": "6150b89186573046167796fa5f3f76601d5145f8"
  7036. },
  7037. "dist": {
  7038. "type": "zip",
  7039. "url": "https://api.github.com/repos/symfony/error-handler/zipball/6150b89186573046167796fa5f3f76601d5145f8",
  7040. "reference": "6150b89186573046167796fa5f3f76601d5145f8",
  7041. "shasum": ""
  7042. },
  7043. "require": {
  7044. "php": ">=8.2",
  7045. "psr/log": "^1|^2|^3",
  7046. "symfony/var-dumper": "^6.4|^7.0"
  7047. },
  7048. "conflict": {
  7049. "symfony/deprecation-contracts": "<2.5",
  7050. "symfony/http-kernel": "<6.4"
  7051. },
  7052. "require-dev": {
  7053. "symfony/deprecation-contracts": "^2.5|^3",
  7054. "symfony/http-kernel": "^6.4|^7.0",
  7055. "symfony/serializer": "^6.4|^7.0"
  7056. },
  7057. "bin": [
  7058. "Resources/bin/patch-type-declarations"
  7059. ],
  7060. "type": "library",
  7061. "autoload": {
  7062. "psr-4": {
  7063. "Symfony\\Component\\ErrorHandler\\": ""
  7064. },
  7065. "exclude-from-classmap": [
  7066. "/Tests/"
  7067. ]
  7068. },
  7069. "notification-url": "https://packagist.org/downloads/",
  7070. "license": [
  7071. "MIT"
  7072. ],
  7073. "authors": [
  7074. {
  7075. "name": "Fabien Potencier",
  7076. "email": "fabien@symfony.com"
  7077. },
  7078. {
  7079. "name": "Symfony Community",
  7080. "homepage": "https://symfony.com/contributors"
  7081. }
  7082. ],
  7083. "description": "Provides tools to manage errors and ease debugging PHP code",
  7084. "homepage": "https://symfony.com",
  7085. "support": {
  7086. "source": "https://github.com/symfony/error-handler/tree/v7.2.1"
  7087. },
  7088. "funding": [
  7089. {
  7090. "url": "https://symfony.com/sponsor",
  7091. "type": "custom"
  7092. },
  7093. {
  7094. "url": "https://github.com/fabpot",
  7095. "type": "github"
  7096. },
  7097. {
  7098. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7099. "type": "tidelift"
  7100. }
  7101. ],
  7102. "time": "2024-12-07T08:50:44+00:00"
  7103. },
  7104. {
  7105. "name": "symfony/event-dispatcher",
  7106. "version": "v7.2.0",
  7107. "source": {
  7108. "type": "git",
  7109. "url": "https://github.com/symfony/event-dispatcher.git",
  7110. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
  7111. },
  7112. "dist": {
  7113. "type": "zip",
  7114. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
  7115. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
  7116. "shasum": ""
  7117. },
  7118. "require": {
  7119. "php": ">=8.2",
  7120. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7121. },
  7122. "conflict": {
  7123. "symfony/dependency-injection": "<6.4",
  7124. "symfony/service-contracts": "<2.5"
  7125. },
  7126. "provide": {
  7127. "psr/event-dispatcher-implementation": "1.0",
  7128. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7129. },
  7130. "require-dev": {
  7131. "psr/log": "^1|^2|^3",
  7132. "symfony/config": "^6.4|^7.0",
  7133. "symfony/dependency-injection": "^6.4|^7.0",
  7134. "symfony/error-handler": "^6.4|^7.0",
  7135. "symfony/expression-language": "^6.4|^7.0",
  7136. "symfony/http-foundation": "^6.4|^7.0",
  7137. "symfony/service-contracts": "^2.5|^3",
  7138. "symfony/stopwatch": "^6.4|^7.0"
  7139. },
  7140. "type": "library",
  7141. "autoload": {
  7142. "psr-4": {
  7143. "Symfony\\Component\\EventDispatcher\\": ""
  7144. },
  7145. "exclude-from-classmap": [
  7146. "/Tests/"
  7147. ]
  7148. },
  7149. "notification-url": "https://packagist.org/downloads/",
  7150. "license": [
  7151. "MIT"
  7152. ],
  7153. "authors": [
  7154. {
  7155. "name": "Fabien Potencier",
  7156. "email": "fabien@symfony.com"
  7157. },
  7158. {
  7159. "name": "Symfony Community",
  7160. "homepage": "https://symfony.com/contributors"
  7161. }
  7162. ],
  7163. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7164. "homepage": "https://symfony.com",
  7165. "support": {
  7166. "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0"
  7167. },
  7168. "funding": [
  7169. {
  7170. "url": "https://symfony.com/sponsor",
  7171. "type": "custom"
  7172. },
  7173. {
  7174. "url": "https://github.com/fabpot",
  7175. "type": "github"
  7176. },
  7177. {
  7178. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7179. "type": "tidelift"
  7180. }
  7181. ],
  7182. "time": "2024-09-25T14:21:43+00:00"
  7183. },
  7184. {
  7185. "name": "symfony/event-dispatcher-contracts",
  7186. "version": "v3.5.1",
  7187. "source": {
  7188. "type": "git",
  7189. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7190. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  7191. },
  7192. "dist": {
  7193. "type": "zip",
  7194. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7195. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7196. "shasum": ""
  7197. },
  7198. "require": {
  7199. "php": ">=8.1",
  7200. "psr/event-dispatcher": "^1"
  7201. },
  7202. "type": "library",
  7203. "extra": {
  7204. "thanks": {
  7205. "url": "https://github.com/symfony/contracts",
  7206. "name": "symfony/contracts"
  7207. },
  7208. "branch-alias": {
  7209. "dev-main": "3.5-dev"
  7210. }
  7211. },
  7212. "autoload": {
  7213. "psr-4": {
  7214. "Symfony\\Contracts\\EventDispatcher\\": ""
  7215. }
  7216. },
  7217. "notification-url": "https://packagist.org/downloads/",
  7218. "license": [
  7219. "MIT"
  7220. ],
  7221. "authors": [
  7222. {
  7223. "name": "Nicolas Grekas",
  7224. "email": "p@tchwork.com"
  7225. },
  7226. {
  7227. "name": "Symfony Community",
  7228. "homepage": "https://symfony.com/contributors"
  7229. }
  7230. ],
  7231. "description": "Generic abstractions related to dispatching event",
  7232. "homepage": "https://symfony.com",
  7233. "keywords": [
  7234. "abstractions",
  7235. "contracts",
  7236. "decoupling",
  7237. "interfaces",
  7238. "interoperability",
  7239. "standards"
  7240. ],
  7241. "support": {
  7242. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  7243. },
  7244. "funding": [
  7245. {
  7246. "url": "https://symfony.com/sponsor",
  7247. "type": "custom"
  7248. },
  7249. {
  7250. "url": "https://github.com/fabpot",
  7251. "type": "github"
  7252. },
  7253. {
  7254. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7255. "type": "tidelift"
  7256. }
  7257. ],
  7258. "time": "2024-09-25T14:20:29+00:00"
  7259. },
  7260. {
  7261. "name": "symfony/finder",
  7262. "version": "v7.2.2",
  7263. "source": {
  7264. "type": "git",
  7265. "url": "https://github.com/symfony/finder.git",
  7266. "reference": "87a71856f2f56e4100373e92529eed3171695cfb"
  7267. },
  7268. "dist": {
  7269. "type": "zip",
  7270. "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb",
  7271. "reference": "87a71856f2f56e4100373e92529eed3171695cfb",
  7272. "shasum": ""
  7273. },
  7274. "require": {
  7275. "php": ">=8.2"
  7276. },
  7277. "require-dev": {
  7278. "symfony/filesystem": "^6.4|^7.0"
  7279. },
  7280. "type": "library",
  7281. "autoload": {
  7282. "psr-4": {
  7283. "Symfony\\Component\\Finder\\": ""
  7284. },
  7285. "exclude-from-classmap": [
  7286. "/Tests/"
  7287. ]
  7288. },
  7289. "notification-url": "https://packagist.org/downloads/",
  7290. "license": [
  7291. "MIT"
  7292. ],
  7293. "authors": [
  7294. {
  7295. "name": "Fabien Potencier",
  7296. "email": "fabien@symfony.com"
  7297. },
  7298. {
  7299. "name": "Symfony Community",
  7300. "homepage": "https://symfony.com/contributors"
  7301. }
  7302. ],
  7303. "description": "Finds files and directories via an intuitive fluent interface",
  7304. "homepage": "https://symfony.com",
  7305. "support": {
  7306. "source": "https://github.com/symfony/finder/tree/v7.2.2"
  7307. },
  7308. "funding": [
  7309. {
  7310. "url": "https://symfony.com/sponsor",
  7311. "type": "custom"
  7312. },
  7313. {
  7314. "url": "https://github.com/fabpot",
  7315. "type": "github"
  7316. },
  7317. {
  7318. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7319. "type": "tidelift"
  7320. }
  7321. ],
  7322. "time": "2024-12-30T19:00:17+00:00"
  7323. },
  7324. {
  7325. "name": "symfony/html-sanitizer",
  7326. "version": "v7.2.2",
  7327. "source": {
  7328. "type": "git",
  7329. "url": "https://github.com/symfony/html-sanitizer.git",
  7330. "reference": "f6bc679b024e30f27e33815930a5b8b304c79813"
  7331. },
  7332. "dist": {
  7333. "type": "zip",
  7334. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/f6bc679b024e30f27e33815930a5b8b304c79813",
  7335. "reference": "f6bc679b024e30f27e33815930a5b8b304c79813",
  7336. "shasum": ""
  7337. },
  7338. "require": {
  7339. "ext-dom": "*",
  7340. "league/uri": "^6.5|^7.0",
  7341. "masterminds/html5": "^2.7.2",
  7342. "php": ">=8.2"
  7343. },
  7344. "type": "library",
  7345. "autoload": {
  7346. "psr-4": {
  7347. "Symfony\\Component\\HtmlSanitizer\\": ""
  7348. },
  7349. "exclude-from-classmap": [
  7350. "/Tests/"
  7351. ]
  7352. },
  7353. "notification-url": "https://packagist.org/downloads/",
  7354. "license": [
  7355. "MIT"
  7356. ],
  7357. "authors": [
  7358. {
  7359. "name": "Titouan Galopin",
  7360. "email": "galopintitouan@gmail.com"
  7361. },
  7362. {
  7363. "name": "Symfony Community",
  7364. "homepage": "https://symfony.com/contributors"
  7365. }
  7366. ],
  7367. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7368. "homepage": "https://symfony.com",
  7369. "keywords": [
  7370. "Purifier",
  7371. "html",
  7372. "sanitizer"
  7373. ],
  7374. "support": {
  7375. "source": "https://github.com/symfony/html-sanitizer/tree/v7.2.2"
  7376. },
  7377. "funding": [
  7378. {
  7379. "url": "https://symfony.com/sponsor",
  7380. "type": "custom"
  7381. },
  7382. {
  7383. "url": "https://github.com/fabpot",
  7384. "type": "github"
  7385. },
  7386. {
  7387. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7388. "type": "tidelift"
  7389. }
  7390. ],
  7391. "time": "2024-12-30T18:35:15+00:00"
  7392. },
  7393. {
  7394. "name": "symfony/http-foundation",
  7395. "version": "v7.2.2",
  7396. "source": {
  7397. "type": "git",
  7398. "url": "https://github.com/symfony/http-foundation.git",
  7399. "reference": "62d1a43796ca3fea3f83a8470dfe63a4af3bc588"
  7400. },
  7401. "dist": {
  7402. "type": "zip",
  7403. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/62d1a43796ca3fea3f83a8470dfe63a4af3bc588",
  7404. "reference": "62d1a43796ca3fea3f83a8470dfe63a4af3bc588",
  7405. "shasum": ""
  7406. },
  7407. "require": {
  7408. "php": ">=8.2",
  7409. "symfony/deprecation-contracts": "^2.5|^3.0",
  7410. "symfony/polyfill-mbstring": "~1.1",
  7411. "symfony/polyfill-php83": "^1.27"
  7412. },
  7413. "conflict": {
  7414. "doctrine/dbal": "<3.6",
  7415. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  7416. },
  7417. "require-dev": {
  7418. "doctrine/dbal": "^3.6|^4",
  7419. "predis/predis": "^1.1|^2.0",
  7420. "symfony/cache": "^6.4.12|^7.1.5",
  7421. "symfony/dependency-injection": "^6.4|^7.0",
  7422. "symfony/expression-language": "^6.4|^7.0",
  7423. "symfony/http-kernel": "^6.4|^7.0",
  7424. "symfony/mime": "^6.4|^7.0",
  7425. "symfony/rate-limiter": "^6.4|^7.0"
  7426. },
  7427. "type": "library",
  7428. "autoload": {
  7429. "psr-4": {
  7430. "Symfony\\Component\\HttpFoundation\\": ""
  7431. },
  7432. "exclude-from-classmap": [
  7433. "/Tests/"
  7434. ]
  7435. },
  7436. "notification-url": "https://packagist.org/downloads/",
  7437. "license": [
  7438. "MIT"
  7439. ],
  7440. "authors": [
  7441. {
  7442. "name": "Fabien Potencier",
  7443. "email": "fabien@symfony.com"
  7444. },
  7445. {
  7446. "name": "Symfony Community",
  7447. "homepage": "https://symfony.com/contributors"
  7448. }
  7449. ],
  7450. "description": "Defines an object-oriented layer for the HTTP specification",
  7451. "homepage": "https://symfony.com",
  7452. "support": {
  7453. "source": "https://github.com/symfony/http-foundation/tree/v7.2.2"
  7454. },
  7455. "funding": [
  7456. {
  7457. "url": "https://symfony.com/sponsor",
  7458. "type": "custom"
  7459. },
  7460. {
  7461. "url": "https://github.com/fabpot",
  7462. "type": "github"
  7463. },
  7464. {
  7465. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7466. "type": "tidelift"
  7467. }
  7468. ],
  7469. "time": "2024-12-30T19:00:17+00:00"
  7470. },
  7471. {
  7472. "name": "symfony/http-kernel",
  7473. "version": "v7.2.2",
  7474. "source": {
  7475. "type": "git",
  7476. "url": "https://github.com/symfony/http-kernel.git",
  7477. "reference": "3c432966bd8c7ec7429663105f5a02d7e75b4306"
  7478. },
  7479. "dist": {
  7480. "type": "zip",
  7481. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/3c432966bd8c7ec7429663105f5a02d7e75b4306",
  7482. "reference": "3c432966bd8c7ec7429663105f5a02d7e75b4306",
  7483. "shasum": ""
  7484. },
  7485. "require": {
  7486. "php": ">=8.2",
  7487. "psr/log": "^1|^2|^3",
  7488. "symfony/deprecation-contracts": "^2.5|^3",
  7489. "symfony/error-handler": "^6.4|^7.0",
  7490. "symfony/event-dispatcher": "^6.4|^7.0",
  7491. "symfony/http-foundation": "^6.4|^7.0",
  7492. "symfony/polyfill-ctype": "^1.8"
  7493. },
  7494. "conflict": {
  7495. "symfony/browser-kit": "<6.4",
  7496. "symfony/cache": "<6.4",
  7497. "symfony/config": "<6.4",
  7498. "symfony/console": "<6.4",
  7499. "symfony/dependency-injection": "<6.4",
  7500. "symfony/doctrine-bridge": "<6.4",
  7501. "symfony/form": "<6.4",
  7502. "symfony/http-client": "<6.4",
  7503. "symfony/http-client-contracts": "<2.5",
  7504. "symfony/mailer": "<6.4",
  7505. "symfony/messenger": "<6.4",
  7506. "symfony/translation": "<6.4",
  7507. "symfony/translation-contracts": "<2.5",
  7508. "symfony/twig-bridge": "<6.4",
  7509. "symfony/validator": "<6.4",
  7510. "symfony/var-dumper": "<6.4",
  7511. "twig/twig": "<3.12"
  7512. },
  7513. "provide": {
  7514. "psr/log-implementation": "1.0|2.0|3.0"
  7515. },
  7516. "require-dev": {
  7517. "psr/cache": "^1.0|^2.0|^3.0",
  7518. "symfony/browser-kit": "^6.4|^7.0",
  7519. "symfony/clock": "^6.4|^7.0",
  7520. "symfony/config": "^6.4|^7.0",
  7521. "symfony/console": "^6.4|^7.0",
  7522. "symfony/css-selector": "^6.4|^7.0",
  7523. "symfony/dependency-injection": "^6.4|^7.0",
  7524. "symfony/dom-crawler": "^6.4|^7.0",
  7525. "symfony/expression-language": "^6.4|^7.0",
  7526. "symfony/finder": "^6.4|^7.0",
  7527. "symfony/http-client-contracts": "^2.5|^3",
  7528. "symfony/process": "^6.4|^7.0",
  7529. "symfony/property-access": "^7.1",
  7530. "symfony/routing": "^6.4|^7.0",
  7531. "symfony/serializer": "^7.1",
  7532. "symfony/stopwatch": "^6.4|^7.0",
  7533. "symfony/translation": "^6.4|^7.0",
  7534. "symfony/translation-contracts": "^2.5|^3",
  7535. "symfony/uid": "^6.4|^7.0",
  7536. "symfony/validator": "^6.4|^7.0",
  7537. "symfony/var-dumper": "^6.4|^7.0",
  7538. "symfony/var-exporter": "^6.4|^7.0",
  7539. "twig/twig": "^3.12"
  7540. },
  7541. "type": "library",
  7542. "autoload": {
  7543. "psr-4": {
  7544. "Symfony\\Component\\HttpKernel\\": ""
  7545. },
  7546. "exclude-from-classmap": [
  7547. "/Tests/"
  7548. ]
  7549. },
  7550. "notification-url": "https://packagist.org/downloads/",
  7551. "license": [
  7552. "MIT"
  7553. ],
  7554. "authors": [
  7555. {
  7556. "name": "Fabien Potencier",
  7557. "email": "fabien@symfony.com"
  7558. },
  7559. {
  7560. "name": "Symfony Community",
  7561. "homepage": "https://symfony.com/contributors"
  7562. }
  7563. ],
  7564. "description": "Provides a structured process for converting a Request into a Response",
  7565. "homepage": "https://symfony.com",
  7566. "support": {
  7567. "source": "https://github.com/symfony/http-kernel/tree/v7.2.2"
  7568. },
  7569. "funding": [
  7570. {
  7571. "url": "https://symfony.com/sponsor",
  7572. "type": "custom"
  7573. },
  7574. {
  7575. "url": "https://github.com/fabpot",
  7576. "type": "github"
  7577. },
  7578. {
  7579. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7580. "type": "tidelift"
  7581. }
  7582. ],
  7583. "time": "2024-12-31T14:59:40+00:00"
  7584. },
  7585. {
  7586. "name": "symfony/intl",
  7587. "version": "v6.4.15",
  7588. "source": {
  7589. "type": "git",
  7590. "url": "https://github.com/symfony/intl.git",
  7591. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6"
  7592. },
  7593. "dist": {
  7594. "type": "zip",
  7595. "url": "https://api.github.com/repos/symfony/intl/zipball/b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  7596. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  7597. "shasum": ""
  7598. },
  7599. "require": {
  7600. "php": ">=8.1"
  7601. },
  7602. "require-dev": {
  7603. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7604. "symfony/finder": "^5.4|^6.0|^7.0",
  7605. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7606. },
  7607. "type": "library",
  7608. "autoload": {
  7609. "psr-4": {
  7610. "Symfony\\Component\\Intl\\": ""
  7611. },
  7612. "exclude-from-classmap": [
  7613. "/Tests/",
  7614. "/Resources/data/"
  7615. ]
  7616. },
  7617. "notification-url": "https://packagist.org/downloads/",
  7618. "license": [
  7619. "MIT"
  7620. ],
  7621. "authors": [
  7622. {
  7623. "name": "Bernhard Schussek",
  7624. "email": "bschussek@gmail.com"
  7625. },
  7626. {
  7627. "name": "Eriksen Costa",
  7628. "email": "eriksen.costa@infranology.com.br"
  7629. },
  7630. {
  7631. "name": "Igor Wiedler",
  7632. "email": "igor@wiedler.ch"
  7633. },
  7634. {
  7635. "name": "Symfony Community",
  7636. "homepage": "https://symfony.com/contributors"
  7637. }
  7638. ],
  7639. "description": "Provides access to the localization data of the ICU library",
  7640. "homepage": "https://symfony.com",
  7641. "keywords": [
  7642. "i18n",
  7643. "icu",
  7644. "internationalization",
  7645. "intl",
  7646. "l10n",
  7647. "localization"
  7648. ],
  7649. "support": {
  7650. "source": "https://github.com/symfony/intl/tree/v6.4.15"
  7651. },
  7652. "funding": [
  7653. {
  7654. "url": "https://symfony.com/sponsor",
  7655. "type": "custom"
  7656. },
  7657. {
  7658. "url": "https://github.com/fabpot",
  7659. "type": "github"
  7660. },
  7661. {
  7662. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7663. "type": "tidelift"
  7664. }
  7665. ],
  7666. "time": "2024-11-08T15:28:48+00:00"
  7667. },
  7668. {
  7669. "name": "symfony/mailer",
  7670. "version": "v7.2.0",
  7671. "source": {
  7672. "type": "git",
  7673. "url": "https://github.com/symfony/mailer.git",
  7674. "reference": "e4d358702fb66e4c8a2af08e90e7271a62de39cc"
  7675. },
  7676. "dist": {
  7677. "type": "zip",
  7678. "url": "https://api.github.com/repos/symfony/mailer/zipball/e4d358702fb66e4c8a2af08e90e7271a62de39cc",
  7679. "reference": "e4d358702fb66e4c8a2af08e90e7271a62de39cc",
  7680. "shasum": ""
  7681. },
  7682. "require": {
  7683. "egulias/email-validator": "^2.1.10|^3|^4",
  7684. "php": ">=8.2",
  7685. "psr/event-dispatcher": "^1",
  7686. "psr/log": "^1|^2|^3",
  7687. "symfony/event-dispatcher": "^6.4|^7.0",
  7688. "symfony/mime": "^7.2",
  7689. "symfony/service-contracts": "^2.5|^3"
  7690. },
  7691. "conflict": {
  7692. "symfony/http-client-contracts": "<2.5",
  7693. "symfony/http-kernel": "<6.4",
  7694. "symfony/messenger": "<6.4",
  7695. "symfony/mime": "<6.4",
  7696. "symfony/twig-bridge": "<6.4"
  7697. },
  7698. "require-dev": {
  7699. "symfony/console": "^6.4|^7.0",
  7700. "symfony/http-client": "^6.4|^7.0",
  7701. "symfony/messenger": "^6.4|^7.0",
  7702. "symfony/twig-bridge": "^6.4|^7.0"
  7703. },
  7704. "type": "library",
  7705. "autoload": {
  7706. "psr-4": {
  7707. "Symfony\\Component\\Mailer\\": ""
  7708. },
  7709. "exclude-from-classmap": [
  7710. "/Tests/"
  7711. ]
  7712. },
  7713. "notification-url": "https://packagist.org/downloads/",
  7714. "license": [
  7715. "MIT"
  7716. ],
  7717. "authors": [
  7718. {
  7719. "name": "Fabien Potencier",
  7720. "email": "fabien@symfony.com"
  7721. },
  7722. {
  7723. "name": "Symfony Community",
  7724. "homepage": "https://symfony.com/contributors"
  7725. }
  7726. ],
  7727. "description": "Helps sending emails",
  7728. "homepage": "https://symfony.com",
  7729. "support": {
  7730. "source": "https://github.com/symfony/mailer/tree/v7.2.0"
  7731. },
  7732. "funding": [
  7733. {
  7734. "url": "https://symfony.com/sponsor",
  7735. "type": "custom"
  7736. },
  7737. {
  7738. "url": "https://github.com/fabpot",
  7739. "type": "github"
  7740. },
  7741. {
  7742. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7743. "type": "tidelift"
  7744. }
  7745. ],
  7746. "time": "2024-11-25T15:21:05+00:00"
  7747. },
  7748. {
  7749. "name": "symfony/mime",
  7750. "version": "v7.2.1",
  7751. "source": {
  7752. "type": "git",
  7753. "url": "https://github.com/symfony/mime.git",
  7754. "reference": "7f9617fcf15cb61be30f8b252695ed5e2bfac283"
  7755. },
  7756. "dist": {
  7757. "type": "zip",
  7758. "url": "https://api.github.com/repos/symfony/mime/zipball/7f9617fcf15cb61be30f8b252695ed5e2bfac283",
  7759. "reference": "7f9617fcf15cb61be30f8b252695ed5e2bfac283",
  7760. "shasum": ""
  7761. },
  7762. "require": {
  7763. "php": ">=8.2",
  7764. "symfony/polyfill-intl-idn": "^1.10",
  7765. "symfony/polyfill-mbstring": "^1.0"
  7766. },
  7767. "conflict": {
  7768. "egulias/email-validator": "~3.0.0",
  7769. "phpdocumentor/reflection-docblock": "<3.2.2",
  7770. "phpdocumentor/type-resolver": "<1.4.0",
  7771. "symfony/mailer": "<6.4",
  7772. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7773. },
  7774. "require-dev": {
  7775. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7776. "league/html-to-markdown": "^5.0",
  7777. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7778. "symfony/dependency-injection": "^6.4|^7.0",
  7779. "symfony/process": "^6.4|^7.0",
  7780. "symfony/property-access": "^6.4|^7.0",
  7781. "symfony/property-info": "^6.4|^7.0",
  7782. "symfony/serializer": "^6.4.3|^7.0.3"
  7783. },
  7784. "type": "library",
  7785. "autoload": {
  7786. "psr-4": {
  7787. "Symfony\\Component\\Mime\\": ""
  7788. },
  7789. "exclude-from-classmap": [
  7790. "/Tests/"
  7791. ]
  7792. },
  7793. "notification-url": "https://packagist.org/downloads/",
  7794. "license": [
  7795. "MIT"
  7796. ],
  7797. "authors": [
  7798. {
  7799. "name": "Fabien Potencier",
  7800. "email": "fabien@symfony.com"
  7801. },
  7802. {
  7803. "name": "Symfony Community",
  7804. "homepage": "https://symfony.com/contributors"
  7805. }
  7806. ],
  7807. "description": "Allows manipulating MIME messages",
  7808. "homepage": "https://symfony.com",
  7809. "keywords": [
  7810. "mime",
  7811. "mime-type"
  7812. ],
  7813. "support": {
  7814. "source": "https://github.com/symfony/mime/tree/v7.2.1"
  7815. },
  7816. "funding": [
  7817. {
  7818. "url": "https://symfony.com/sponsor",
  7819. "type": "custom"
  7820. },
  7821. {
  7822. "url": "https://github.com/fabpot",
  7823. "type": "github"
  7824. },
  7825. {
  7826. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7827. "type": "tidelift"
  7828. }
  7829. ],
  7830. "time": "2024-12-07T08:50:44+00:00"
  7831. },
  7832. {
  7833. "name": "symfony/polyfill-ctype",
  7834. "version": "v1.31.0",
  7835. "source": {
  7836. "type": "git",
  7837. "url": "https://github.com/symfony/polyfill-ctype.git",
  7838. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7839. },
  7840. "dist": {
  7841. "type": "zip",
  7842. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7843. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7844. "shasum": ""
  7845. },
  7846. "require": {
  7847. "php": ">=7.2"
  7848. },
  7849. "provide": {
  7850. "ext-ctype": "*"
  7851. },
  7852. "suggest": {
  7853. "ext-ctype": "For best performance"
  7854. },
  7855. "type": "library",
  7856. "extra": {
  7857. "thanks": {
  7858. "url": "https://github.com/symfony/polyfill",
  7859. "name": "symfony/polyfill"
  7860. }
  7861. },
  7862. "autoload": {
  7863. "files": [
  7864. "bootstrap.php"
  7865. ],
  7866. "psr-4": {
  7867. "Symfony\\Polyfill\\Ctype\\": ""
  7868. }
  7869. },
  7870. "notification-url": "https://packagist.org/downloads/",
  7871. "license": [
  7872. "MIT"
  7873. ],
  7874. "authors": [
  7875. {
  7876. "name": "Gert de Pagter",
  7877. "email": "BackEndTea@gmail.com"
  7878. },
  7879. {
  7880. "name": "Symfony Community",
  7881. "homepage": "https://symfony.com/contributors"
  7882. }
  7883. ],
  7884. "description": "Symfony polyfill for ctype functions",
  7885. "homepage": "https://symfony.com",
  7886. "keywords": [
  7887. "compatibility",
  7888. "ctype",
  7889. "polyfill",
  7890. "portable"
  7891. ],
  7892. "support": {
  7893. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7894. },
  7895. "funding": [
  7896. {
  7897. "url": "https://symfony.com/sponsor",
  7898. "type": "custom"
  7899. },
  7900. {
  7901. "url": "https://github.com/fabpot",
  7902. "type": "github"
  7903. },
  7904. {
  7905. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7906. "type": "tidelift"
  7907. }
  7908. ],
  7909. "time": "2024-09-09T11:45:10+00:00"
  7910. },
  7911. {
  7912. "name": "symfony/polyfill-intl-grapheme",
  7913. "version": "v1.31.0",
  7914. "source": {
  7915. "type": "git",
  7916. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7917. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7918. },
  7919. "dist": {
  7920. "type": "zip",
  7921. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7922. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7923. "shasum": ""
  7924. },
  7925. "require": {
  7926. "php": ">=7.2"
  7927. },
  7928. "suggest": {
  7929. "ext-intl": "For best performance"
  7930. },
  7931. "type": "library",
  7932. "extra": {
  7933. "thanks": {
  7934. "url": "https://github.com/symfony/polyfill",
  7935. "name": "symfony/polyfill"
  7936. }
  7937. },
  7938. "autoload": {
  7939. "files": [
  7940. "bootstrap.php"
  7941. ],
  7942. "psr-4": {
  7943. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7944. }
  7945. },
  7946. "notification-url": "https://packagist.org/downloads/",
  7947. "license": [
  7948. "MIT"
  7949. ],
  7950. "authors": [
  7951. {
  7952. "name": "Nicolas Grekas",
  7953. "email": "p@tchwork.com"
  7954. },
  7955. {
  7956. "name": "Symfony Community",
  7957. "homepage": "https://symfony.com/contributors"
  7958. }
  7959. ],
  7960. "description": "Symfony polyfill for intl's grapheme_* functions",
  7961. "homepage": "https://symfony.com",
  7962. "keywords": [
  7963. "compatibility",
  7964. "grapheme",
  7965. "intl",
  7966. "polyfill",
  7967. "portable",
  7968. "shim"
  7969. ],
  7970. "support": {
  7971. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7972. },
  7973. "funding": [
  7974. {
  7975. "url": "https://symfony.com/sponsor",
  7976. "type": "custom"
  7977. },
  7978. {
  7979. "url": "https://github.com/fabpot",
  7980. "type": "github"
  7981. },
  7982. {
  7983. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7984. "type": "tidelift"
  7985. }
  7986. ],
  7987. "time": "2024-09-09T11:45:10+00:00"
  7988. },
  7989. {
  7990. "name": "symfony/polyfill-intl-idn",
  7991. "version": "v1.31.0",
  7992. "source": {
  7993. "type": "git",
  7994. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7995. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7996. },
  7997. "dist": {
  7998. "type": "zip",
  7999. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  8000. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  8001. "shasum": ""
  8002. },
  8003. "require": {
  8004. "php": ">=7.2",
  8005. "symfony/polyfill-intl-normalizer": "^1.10"
  8006. },
  8007. "suggest": {
  8008. "ext-intl": "For best performance"
  8009. },
  8010. "type": "library",
  8011. "extra": {
  8012. "thanks": {
  8013. "url": "https://github.com/symfony/polyfill",
  8014. "name": "symfony/polyfill"
  8015. }
  8016. },
  8017. "autoload": {
  8018. "files": [
  8019. "bootstrap.php"
  8020. ],
  8021. "psr-4": {
  8022. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8023. }
  8024. },
  8025. "notification-url": "https://packagist.org/downloads/",
  8026. "license": [
  8027. "MIT"
  8028. ],
  8029. "authors": [
  8030. {
  8031. "name": "Laurent Bassin",
  8032. "email": "laurent@bassin.info"
  8033. },
  8034. {
  8035. "name": "Trevor Rowbotham",
  8036. "email": "trevor.rowbotham@pm.me"
  8037. },
  8038. {
  8039. "name": "Symfony Community",
  8040. "homepage": "https://symfony.com/contributors"
  8041. }
  8042. ],
  8043. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8044. "homepage": "https://symfony.com",
  8045. "keywords": [
  8046. "compatibility",
  8047. "idn",
  8048. "intl",
  8049. "polyfill",
  8050. "portable",
  8051. "shim"
  8052. ],
  8053. "support": {
  8054. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  8055. },
  8056. "funding": [
  8057. {
  8058. "url": "https://symfony.com/sponsor",
  8059. "type": "custom"
  8060. },
  8061. {
  8062. "url": "https://github.com/fabpot",
  8063. "type": "github"
  8064. },
  8065. {
  8066. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8067. "type": "tidelift"
  8068. }
  8069. ],
  8070. "time": "2024-09-09T11:45:10+00:00"
  8071. },
  8072. {
  8073. "name": "symfony/polyfill-intl-normalizer",
  8074. "version": "v1.31.0",
  8075. "source": {
  8076. "type": "git",
  8077. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8078. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8079. },
  8080. "dist": {
  8081. "type": "zip",
  8082. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8083. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8084. "shasum": ""
  8085. },
  8086. "require": {
  8087. "php": ">=7.2"
  8088. },
  8089. "suggest": {
  8090. "ext-intl": "For best performance"
  8091. },
  8092. "type": "library",
  8093. "extra": {
  8094. "thanks": {
  8095. "url": "https://github.com/symfony/polyfill",
  8096. "name": "symfony/polyfill"
  8097. }
  8098. },
  8099. "autoload": {
  8100. "files": [
  8101. "bootstrap.php"
  8102. ],
  8103. "psr-4": {
  8104. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  8105. },
  8106. "classmap": [
  8107. "Resources/stubs"
  8108. ]
  8109. },
  8110. "notification-url": "https://packagist.org/downloads/",
  8111. "license": [
  8112. "MIT"
  8113. ],
  8114. "authors": [
  8115. {
  8116. "name": "Nicolas Grekas",
  8117. "email": "p@tchwork.com"
  8118. },
  8119. {
  8120. "name": "Symfony Community",
  8121. "homepage": "https://symfony.com/contributors"
  8122. }
  8123. ],
  8124. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  8125. "homepage": "https://symfony.com",
  8126. "keywords": [
  8127. "compatibility",
  8128. "intl",
  8129. "normalizer",
  8130. "polyfill",
  8131. "portable",
  8132. "shim"
  8133. ],
  8134. "support": {
  8135. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  8136. },
  8137. "funding": [
  8138. {
  8139. "url": "https://symfony.com/sponsor",
  8140. "type": "custom"
  8141. },
  8142. {
  8143. "url": "https://github.com/fabpot",
  8144. "type": "github"
  8145. },
  8146. {
  8147. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8148. "type": "tidelift"
  8149. }
  8150. ],
  8151. "time": "2024-09-09T11:45:10+00:00"
  8152. },
  8153. {
  8154. "name": "symfony/polyfill-mbstring",
  8155. "version": "v1.31.0",
  8156. "source": {
  8157. "type": "git",
  8158. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8159. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  8160. },
  8161. "dist": {
  8162. "type": "zip",
  8163. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8164. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8165. "shasum": ""
  8166. },
  8167. "require": {
  8168. "php": ">=7.2"
  8169. },
  8170. "provide": {
  8171. "ext-mbstring": "*"
  8172. },
  8173. "suggest": {
  8174. "ext-mbstring": "For best performance"
  8175. },
  8176. "type": "library",
  8177. "extra": {
  8178. "thanks": {
  8179. "url": "https://github.com/symfony/polyfill",
  8180. "name": "symfony/polyfill"
  8181. }
  8182. },
  8183. "autoload": {
  8184. "files": [
  8185. "bootstrap.php"
  8186. ],
  8187. "psr-4": {
  8188. "Symfony\\Polyfill\\Mbstring\\": ""
  8189. }
  8190. },
  8191. "notification-url": "https://packagist.org/downloads/",
  8192. "license": [
  8193. "MIT"
  8194. ],
  8195. "authors": [
  8196. {
  8197. "name": "Nicolas Grekas",
  8198. "email": "p@tchwork.com"
  8199. },
  8200. {
  8201. "name": "Symfony Community",
  8202. "homepage": "https://symfony.com/contributors"
  8203. }
  8204. ],
  8205. "description": "Symfony polyfill for the Mbstring extension",
  8206. "homepage": "https://symfony.com",
  8207. "keywords": [
  8208. "compatibility",
  8209. "mbstring",
  8210. "polyfill",
  8211. "portable",
  8212. "shim"
  8213. ],
  8214. "support": {
  8215. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  8216. },
  8217. "funding": [
  8218. {
  8219. "url": "https://symfony.com/sponsor",
  8220. "type": "custom"
  8221. },
  8222. {
  8223. "url": "https://github.com/fabpot",
  8224. "type": "github"
  8225. },
  8226. {
  8227. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8228. "type": "tidelift"
  8229. }
  8230. ],
  8231. "time": "2024-09-09T11:45:10+00:00"
  8232. },
  8233. {
  8234. "name": "symfony/polyfill-php80",
  8235. "version": "v1.31.0",
  8236. "source": {
  8237. "type": "git",
  8238. "url": "https://github.com/symfony/polyfill-php80.git",
  8239. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8240. },
  8241. "dist": {
  8242. "type": "zip",
  8243. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8244. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8245. "shasum": ""
  8246. },
  8247. "require": {
  8248. "php": ">=7.2"
  8249. },
  8250. "type": "library",
  8251. "extra": {
  8252. "thanks": {
  8253. "url": "https://github.com/symfony/polyfill",
  8254. "name": "symfony/polyfill"
  8255. }
  8256. },
  8257. "autoload": {
  8258. "files": [
  8259. "bootstrap.php"
  8260. ],
  8261. "psr-4": {
  8262. "Symfony\\Polyfill\\Php80\\": ""
  8263. },
  8264. "classmap": [
  8265. "Resources/stubs"
  8266. ]
  8267. },
  8268. "notification-url": "https://packagist.org/downloads/",
  8269. "license": [
  8270. "MIT"
  8271. ],
  8272. "authors": [
  8273. {
  8274. "name": "Ion Bazan",
  8275. "email": "ion.bazan@gmail.com"
  8276. },
  8277. {
  8278. "name": "Nicolas Grekas",
  8279. "email": "p@tchwork.com"
  8280. },
  8281. {
  8282. "name": "Symfony Community",
  8283. "homepage": "https://symfony.com/contributors"
  8284. }
  8285. ],
  8286. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8287. "homepage": "https://symfony.com",
  8288. "keywords": [
  8289. "compatibility",
  8290. "polyfill",
  8291. "portable",
  8292. "shim"
  8293. ],
  8294. "support": {
  8295. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8296. },
  8297. "funding": [
  8298. {
  8299. "url": "https://symfony.com/sponsor",
  8300. "type": "custom"
  8301. },
  8302. {
  8303. "url": "https://github.com/fabpot",
  8304. "type": "github"
  8305. },
  8306. {
  8307. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8308. "type": "tidelift"
  8309. }
  8310. ],
  8311. "time": "2024-09-09T11:45:10+00:00"
  8312. },
  8313. {
  8314. "name": "symfony/polyfill-php83",
  8315. "version": "v1.31.0",
  8316. "source": {
  8317. "type": "git",
  8318. "url": "https://github.com/symfony/polyfill-php83.git",
  8319. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  8320. },
  8321. "dist": {
  8322. "type": "zip",
  8323. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  8324. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  8325. "shasum": ""
  8326. },
  8327. "require": {
  8328. "php": ">=7.2"
  8329. },
  8330. "type": "library",
  8331. "extra": {
  8332. "thanks": {
  8333. "url": "https://github.com/symfony/polyfill",
  8334. "name": "symfony/polyfill"
  8335. }
  8336. },
  8337. "autoload": {
  8338. "files": [
  8339. "bootstrap.php"
  8340. ],
  8341. "psr-4": {
  8342. "Symfony\\Polyfill\\Php83\\": ""
  8343. },
  8344. "classmap": [
  8345. "Resources/stubs"
  8346. ]
  8347. },
  8348. "notification-url": "https://packagist.org/downloads/",
  8349. "license": [
  8350. "MIT"
  8351. ],
  8352. "authors": [
  8353. {
  8354. "name": "Nicolas Grekas",
  8355. "email": "p@tchwork.com"
  8356. },
  8357. {
  8358. "name": "Symfony Community",
  8359. "homepage": "https://symfony.com/contributors"
  8360. }
  8361. ],
  8362. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8363. "homepage": "https://symfony.com",
  8364. "keywords": [
  8365. "compatibility",
  8366. "polyfill",
  8367. "portable",
  8368. "shim"
  8369. ],
  8370. "support": {
  8371. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  8372. },
  8373. "funding": [
  8374. {
  8375. "url": "https://symfony.com/sponsor",
  8376. "type": "custom"
  8377. },
  8378. {
  8379. "url": "https://github.com/fabpot",
  8380. "type": "github"
  8381. },
  8382. {
  8383. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8384. "type": "tidelift"
  8385. }
  8386. ],
  8387. "time": "2024-09-09T11:45:10+00:00"
  8388. },
  8389. {
  8390. "name": "symfony/polyfill-uuid",
  8391. "version": "v1.31.0",
  8392. "source": {
  8393. "type": "git",
  8394. "url": "https://github.com/symfony/polyfill-uuid.git",
  8395. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  8396. },
  8397. "dist": {
  8398. "type": "zip",
  8399. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8400. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8401. "shasum": ""
  8402. },
  8403. "require": {
  8404. "php": ">=7.2"
  8405. },
  8406. "provide": {
  8407. "ext-uuid": "*"
  8408. },
  8409. "suggest": {
  8410. "ext-uuid": "For best performance"
  8411. },
  8412. "type": "library",
  8413. "extra": {
  8414. "thanks": {
  8415. "url": "https://github.com/symfony/polyfill",
  8416. "name": "symfony/polyfill"
  8417. }
  8418. },
  8419. "autoload": {
  8420. "files": [
  8421. "bootstrap.php"
  8422. ],
  8423. "psr-4": {
  8424. "Symfony\\Polyfill\\Uuid\\": ""
  8425. }
  8426. },
  8427. "notification-url": "https://packagist.org/downloads/",
  8428. "license": [
  8429. "MIT"
  8430. ],
  8431. "authors": [
  8432. {
  8433. "name": "Grégoire Pineau",
  8434. "email": "lyrixx@lyrixx.info"
  8435. },
  8436. {
  8437. "name": "Symfony Community",
  8438. "homepage": "https://symfony.com/contributors"
  8439. }
  8440. ],
  8441. "description": "Symfony polyfill for uuid functions",
  8442. "homepage": "https://symfony.com",
  8443. "keywords": [
  8444. "compatibility",
  8445. "polyfill",
  8446. "portable",
  8447. "uuid"
  8448. ],
  8449. "support": {
  8450. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  8451. },
  8452. "funding": [
  8453. {
  8454. "url": "https://symfony.com/sponsor",
  8455. "type": "custom"
  8456. },
  8457. {
  8458. "url": "https://github.com/fabpot",
  8459. "type": "github"
  8460. },
  8461. {
  8462. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8463. "type": "tidelift"
  8464. }
  8465. ],
  8466. "time": "2024-09-09T11:45:10+00:00"
  8467. },
  8468. {
  8469. "name": "symfony/process",
  8470. "version": "v7.2.0",
  8471. "source": {
  8472. "type": "git",
  8473. "url": "https://github.com/symfony/process.git",
  8474. "reference": "d34b22ba9390ec19d2dd966c40aa9e8462f27a7e"
  8475. },
  8476. "dist": {
  8477. "type": "zip",
  8478. "url": "https://api.github.com/repos/symfony/process/zipball/d34b22ba9390ec19d2dd966c40aa9e8462f27a7e",
  8479. "reference": "d34b22ba9390ec19d2dd966c40aa9e8462f27a7e",
  8480. "shasum": ""
  8481. },
  8482. "require": {
  8483. "php": ">=8.2"
  8484. },
  8485. "type": "library",
  8486. "autoload": {
  8487. "psr-4": {
  8488. "Symfony\\Component\\Process\\": ""
  8489. },
  8490. "exclude-from-classmap": [
  8491. "/Tests/"
  8492. ]
  8493. },
  8494. "notification-url": "https://packagist.org/downloads/",
  8495. "license": [
  8496. "MIT"
  8497. ],
  8498. "authors": [
  8499. {
  8500. "name": "Fabien Potencier",
  8501. "email": "fabien@symfony.com"
  8502. },
  8503. {
  8504. "name": "Symfony Community",
  8505. "homepage": "https://symfony.com/contributors"
  8506. }
  8507. ],
  8508. "description": "Executes commands in sub-processes",
  8509. "homepage": "https://symfony.com",
  8510. "support": {
  8511. "source": "https://github.com/symfony/process/tree/v7.2.0"
  8512. },
  8513. "funding": [
  8514. {
  8515. "url": "https://symfony.com/sponsor",
  8516. "type": "custom"
  8517. },
  8518. {
  8519. "url": "https://github.com/fabpot",
  8520. "type": "github"
  8521. },
  8522. {
  8523. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8524. "type": "tidelift"
  8525. }
  8526. ],
  8527. "time": "2024-11-06T14:24:19+00:00"
  8528. },
  8529. {
  8530. "name": "symfony/routing",
  8531. "version": "v7.2.0",
  8532. "source": {
  8533. "type": "git",
  8534. "url": "https://github.com/symfony/routing.git",
  8535. "reference": "e10a2450fa957af6c448b9b93c9010a4e4c0725e"
  8536. },
  8537. "dist": {
  8538. "type": "zip",
  8539. "url": "https://api.github.com/repos/symfony/routing/zipball/e10a2450fa957af6c448b9b93c9010a4e4c0725e",
  8540. "reference": "e10a2450fa957af6c448b9b93c9010a4e4c0725e",
  8541. "shasum": ""
  8542. },
  8543. "require": {
  8544. "php": ">=8.2",
  8545. "symfony/deprecation-contracts": "^2.5|^3"
  8546. },
  8547. "conflict": {
  8548. "symfony/config": "<6.4",
  8549. "symfony/dependency-injection": "<6.4",
  8550. "symfony/yaml": "<6.4"
  8551. },
  8552. "require-dev": {
  8553. "psr/log": "^1|^2|^3",
  8554. "symfony/config": "^6.4|^7.0",
  8555. "symfony/dependency-injection": "^6.4|^7.0",
  8556. "symfony/expression-language": "^6.4|^7.0",
  8557. "symfony/http-foundation": "^6.4|^7.0",
  8558. "symfony/yaml": "^6.4|^7.0"
  8559. },
  8560. "type": "library",
  8561. "autoload": {
  8562. "psr-4": {
  8563. "Symfony\\Component\\Routing\\": ""
  8564. },
  8565. "exclude-from-classmap": [
  8566. "/Tests/"
  8567. ]
  8568. },
  8569. "notification-url": "https://packagist.org/downloads/",
  8570. "license": [
  8571. "MIT"
  8572. ],
  8573. "authors": [
  8574. {
  8575. "name": "Fabien Potencier",
  8576. "email": "fabien@symfony.com"
  8577. },
  8578. {
  8579. "name": "Symfony Community",
  8580. "homepage": "https://symfony.com/contributors"
  8581. }
  8582. ],
  8583. "description": "Maps an HTTP request to a set of configuration variables",
  8584. "homepage": "https://symfony.com",
  8585. "keywords": [
  8586. "router",
  8587. "routing",
  8588. "uri",
  8589. "url"
  8590. ],
  8591. "support": {
  8592. "source": "https://github.com/symfony/routing/tree/v7.2.0"
  8593. },
  8594. "funding": [
  8595. {
  8596. "url": "https://symfony.com/sponsor",
  8597. "type": "custom"
  8598. },
  8599. {
  8600. "url": "https://github.com/fabpot",
  8601. "type": "github"
  8602. },
  8603. {
  8604. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8605. "type": "tidelift"
  8606. }
  8607. ],
  8608. "time": "2024-11-25T11:08:51+00:00"
  8609. },
  8610. {
  8611. "name": "symfony/service-contracts",
  8612. "version": "v3.5.1",
  8613. "source": {
  8614. "type": "git",
  8615. "url": "https://github.com/symfony/service-contracts.git",
  8616. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  8617. },
  8618. "dist": {
  8619. "type": "zip",
  8620. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8621. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8622. "shasum": ""
  8623. },
  8624. "require": {
  8625. "php": ">=8.1",
  8626. "psr/container": "^1.1|^2.0",
  8627. "symfony/deprecation-contracts": "^2.5|^3"
  8628. },
  8629. "conflict": {
  8630. "ext-psr": "<1.1|>=2"
  8631. },
  8632. "type": "library",
  8633. "extra": {
  8634. "thanks": {
  8635. "url": "https://github.com/symfony/contracts",
  8636. "name": "symfony/contracts"
  8637. },
  8638. "branch-alias": {
  8639. "dev-main": "3.5-dev"
  8640. }
  8641. },
  8642. "autoload": {
  8643. "psr-4": {
  8644. "Symfony\\Contracts\\Service\\": ""
  8645. },
  8646. "exclude-from-classmap": [
  8647. "/Test/"
  8648. ]
  8649. },
  8650. "notification-url": "https://packagist.org/downloads/",
  8651. "license": [
  8652. "MIT"
  8653. ],
  8654. "authors": [
  8655. {
  8656. "name": "Nicolas Grekas",
  8657. "email": "p@tchwork.com"
  8658. },
  8659. {
  8660. "name": "Symfony Community",
  8661. "homepage": "https://symfony.com/contributors"
  8662. }
  8663. ],
  8664. "description": "Generic abstractions related to writing services",
  8665. "homepage": "https://symfony.com",
  8666. "keywords": [
  8667. "abstractions",
  8668. "contracts",
  8669. "decoupling",
  8670. "interfaces",
  8671. "interoperability",
  8672. "standards"
  8673. ],
  8674. "support": {
  8675. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  8676. },
  8677. "funding": [
  8678. {
  8679. "url": "https://symfony.com/sponsor",
  8680. "type": "custom"
  8681. },
  8682. {
  8683. "url": "https://github.com/fabpot",
  8684. "type": "github"
  8685. },
  8686. {
  8687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8688. "type": "tidelift"
  8689. }
  8690. ],
  8691. "time": "2024-09-25T14:20:29+00:00"
  8692. },
  8693. {
  8694. "name": "symfony/string",
  8695. "version": "v7.2.0",
  8696. "source": {
  8697. "type": "git",
  8698. "url": "https://github.com/symfony/string.git",
  8699. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82"
  8700. },
  8701. "dist": {
  8702. "type": "zip",
  8703. "url": "https://api.github.com/repos/symfony/string/zipball/446e0d146f991dde3e73f45f2c97a9faad773c82",
  8704. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82",
  8705. "shasum": ""
  8706. },
  8707. "require": {
  8708. "php": ">=8.2",
  8709. "symfony/polyfill-ctype": "~1.8",
  8710. "symfony/polyfill-intl-grapheme": "~1.0",
  8711. "symfony/polyfill-intl-normalizer": "~1.0",
  8712. "symfony/polyfill-mbstring": "~1.0"
  8713. },
  8714. "conflict": {
  8715. "symfony/translation-contracts": "<2.5"
  8716. },
  8717. "require-dev": {
  8718. "symfony/emoji": "^7.1",
  8719. "symfony/error-handler": "^6.4|^7.0",
  8720. "symfony/http-client": "^6.4|^7.0",
  8721. "symfony/intl": "^6.4|^7.0",
  8722. "symfony/translation-contracts": "^2.5|^3.0",
  8723. "symfony/var-exporter": "^6.4|^7.0"
  8724. },
  8725. "type": "library",
  8726. "autoload": {
  8727. "files": [
  8728. "Resources/functions.php"
  8729. ],
  8730. "psr-4": {
  8731. "Symfony\\Component\\String\\": ""
  8732. },
  8733. "exclude-from-classmap": [
  8734. "/Tests/"
  8735. ]
  8736. },
  8737. "notification-url": "https://packagist.org/downloads/",
  8738. "license": [
  8739. "MIT"
  8740. ],
  8741. "authors": [
  8742. {
  8743. "name": "Nicolas Grekas",
  8744. "email": "p@tchwork.com"
  8745. },
  8746. {
  8747. "name": "Symfony Community",
  8748. "homepage": "https://symfony.com/contributors"
  8749. }
  8750. ],
  8751. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8752. "homepage": "https://symfony.com",
  8753. "keywords": [
  8754. "grapheme",
  8755. "i18n",
  8756. "string",
  8757. "unicode",
  8758. "utf-8",
  8759. "utf8"
  8760. ],
  8761. "support": {
  8762. "source": "https://github.com/symfony/string/tree/v7.2.0"
  8763. },
  8764. "funding": [
  8765. {
  8766. "url": "https://symfony.com/sponsor",
  8767. "type": "custom"
  8768. },
  8769. {
  8770. "url": "https://github.com/fabpot",
  8771. "type": "github"
  8772. },
  8773. {
  8774. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8775. "type": "tidelift"
  8776. }
  8777. ],
  8778. "time": "2024-11-13T13:31:26+00:00"
  8779. },
  8780. {
  8781. "name": "symfony/translation",
  8782. "version": "v7.2.2",
  8783. "source": {
  8784. "type": "git",
  8785. "url": "https://github.com/symfony/translation.git",
  8786. "reference": "e2674a30132b7cc4d74540d6c2573aa363f05923"
  8787. },
  8788. "dist": {
  8789. "type": "zip",
  8790. "url": "https://api.github.com/repos/symfony/translation/zipball/e2674a30132b7cc4d74540d6c2573aa363f05923",
  8791. "reference": "e2674a30132b7cc4d74540d6c2573aa363f05923",
  8792. "shasum": ""
  8793. },
  8794. "require": {
  8795. "php": ">=8.2",
  8796. "symfony/deprecation-contracts": "^2.5|^3",
  8797. "symfony/polyfill-mbstring": "~1.0",
  8798. "symfony/translation-contracts": "^2.5|^3.0"
  8799. },
  8800. "conflict": {
  8801. "symfony/config": "<6.4",
  8802. "symfony/console": "<6.4",
  8803. "symfony/dependency-injection": "<6.4",
  8804. "symfony/http-client-contracts": "<2.5",
  8805. "symfony/http-kernel": "<6.4",
  8806. "symfony/service-contracts": "<2.5",
  8807. "symfony/twig-bundle": "<6.4",
  8808. "symfony/yaml": "<6.4"
  8809. },
  8810. "provide": {
  8811. "symfony/translation-implementation": "2.3|3.0"
  8812. },
  8813. "require-dev": {
  8814. "nikic/php-parser": "^4.18|^5.0",
  8815. "psr/log": "^1|^2|^3",
  8816. "symfony/config": "^6.4|^7.0",
  8817. "symfony/console": "^6.4|^7.0",
  8818. "symfony/dependency-injection": "^6.4|^7.0",
  8819. "symfony/finder": "^6.4|^7.0",
  8820. "symfony/http-client-contracts": "^2.5|^3.0",
  8821. "symfony/http-kernel": "^6.4|^7.0",
  8822. "symfony/intl": "^6.4|^7.0",
  8823. "symfony/polyfill-intl-icu": "^1.21",
  8824. "symfony/routing": "^6.4|^7.0",
  8825. "symfony/service-contracts": "^2.5|^3",
  8826. "symfony/yaml": "^6.4|^7.0"
  8827. },
  8828. "type": "library",
  8829. "autoload": {
  8830. "files": [
  8831. "Resources/functions.php"
  8832. ],
  8833. "psr-4": {
  8834. "Symfony\\Component\\Translation\\": ""
  8835. },
  8836. "exclude-from-classmap": [
  8837. "/Tests/"
  8838. ]
  8839. },
  8840. "notification-url": "https://packagist.org/downloads/",
  8841. "license": [
  8842. "MIT"
  8843. ],
  8844. "authors": [
  8845. {
  8846. "name": "Fabien Potencier",
  8847. "email": "fabien@symfony.com"
  8848. },
  8849. {
  8850. "name": "Symfony Community",
  8851. "homepage": "https://symfony.com/contributors"
  8852. }
  8853. ],
  8854. "description": "Provides tools to internationalize your application",
  8855. "homepage": "https://symfony.com",
  8856. "support": {
  8857. "source": "https://github.com/symfony/translation/tree/v7.2.2"
  8858. },
  8859. "funding": [
  8860. {
  8861. "url": "https://symfony.com/sponsor",
  8862. "type": "custom"
  8863. },
  8864. {
  8865. "url": "https://github.com/fabpot",
  8866. "type": "github"
  8867. },
  8868. {
  8869. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8870. "type": "tidelift"
  8871. }
  8872. ],
  8873. "time": "2024-12-07T08:18:10+00:00"
  8874. },
  8875. {
  8876. "name": "symfony/translation-contracts",
  8877. "version": "v3.5.1",
  8878. "source": {
  8879. "type": "git",
  8880. "url": "https://github.com/symfony/translation-contracts.git",
  8881. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  8882. },
  8883. "dist": {
  8884. "type": "zip",
  8885. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  8886. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  8887. "shasum": ""
  8888. },
  8889. "require": {
  8890. "php": ">=8.1"
  8891. },
  8892. "type": "library",
  8893. "extra": {
  8894. "thanks": {
  8895. "url": "https://github.com/symfony/contracts",
  8896. "name": "symfony/contracts"
  8897. },
  8898. "branch-alias": {
  8899. "dev-main": "3.5-dev"
  8900. }
  8901. },
  8902. "autoload": {
  8903. "psr-4": {
  8904. "Symfony\\Contracts\\Translation\\": ""
  8905. },
  8906. "exclude-from-classmap": [
  8907. "/Test/"
  8908. ]
  8909. },
  8910. "notification-url": "https://packagist.org/downloads/",
  8911. "license": [
  8912. "MIT"
  8913. ],
  8914. "authors": [
  8915. {
  8916. "name": "Nicolas Grekas",
  8917. "email": "p@tchwork.com"
  8918. },
  8919. {
  8920. "name": "Symfony Community",
  8921. "homepage": "https://symfony.com/contributors"
  8922. }
  8923. ],
  8924. "description": "Generic abstractions related to translation",
  8925. "homepage": "https://symfony.com",
  8926. "keywords": [
  8927. "abstractions",
  8928. "contracts",
  8929. "decoupling",
  8930. "interfaces",
  8931. "interoperability",
  8932. "standards"
  8933. ],
  8934. "support": {
  8935. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  8936. },
  8937. "funding": [
  8938. {
  8939. "url": "https://symfony.com/sponsor",
  8940. "type": "custom"
  8941. },
  8942. {
  8943. "url": "https://github.com/fabpot",
  8944. "type": "github"
  8945. },
  8946. {
  8947. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8948. "type": "tidelift"
  8949. }
  8950. ],
  8951. "time": "2024-09-25T14:20:29+00:00"
  8952. },
  8953. {
  8954. "name": "symfony/uid",
  8955. "version": "v7.2.0",
  8956. "source": {
  8957. "type": "git",
  8958. "url": "https://github.com/symfony/uid.git",
  8959. "reference": "2d294d0c48df244c71c105a169d0190bfb080426"
  8960. },
  8961. "dist": {
  8962. "type": "zip",
  8963. "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426",
  8964. "reference": "2d294d0c48df244c71c105a169d0190bfb080426",
  8965. "shasum": ""
  8966. },
  8967. "require": {
  8968. "php": ">=8.2",
  8969. "symfony/polyfill-uuid": "^1.15"
  8970. },
  8971. "require-dev": {
  8972. "symfony/console": "^6.4|^7.0"
  8973. },
  8974. "type": "library",
  8975. "autoload": {
  8976. "psr-4": {
  8977. "Symfony\\Component\\Uid\\": ""
  8978. },
  8979. "exclude-from-classmap": [
  8980. "/Tests/"
  8981. ]
  8982. },
  8983. "notification-url": "https://packagist.org/downloads/",
  8984. "license": [
  8985. "MIT"
  8986. ],
  8987. "authors": [
  8988. {
  8989. "name": "Grégoire Pineau",
  8990. "email": "lyrixx@lyrixx.info"
  8991. },
  8992. {
  8993. "name": "Nicolas Grekas",
  8994. "email": "p@tchwork.com"
  8995. },
  8996. {
  8997. "name": "Symfony Community",
  8998. "homepage": "https://symfony.com/contributors"
  8999. }
  9000. ],
  9001. "description": "Provides an object-oriented API to generate and represent UIDs",
  9002. "homepage": "https://symfony.com",
  9003. "keywords": [
  9004. "UID",
  9005. "ulid",
  9006. "uuid"
  9007. ],
  9008. "support": {
  9009. "source": "https://github.com/symfony/uid/tree/v7.2.0"
  9010. },
  9011. "funding": [
  9012. {
  9013. "url": "https://symfony.com/sponsor",
  9014. "type": "custom"
  9015. },
  9016. {
  9017. "url": "https://github.com/fabpot",
  9018. "type": "github"
  9019. },
  9020. {
  9021. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9022. "type": "tidelift"
  9023. }
  9024. ],
  9025. "time": "2024-09-25T14:21:43+00:00"
  9026. },
  9027. {
  9028. "name": "symfony/var-dumper",
  9029. "version": "v7.2.0",
  9030. "source": {
  9031. "type": "git",
  9032. "url": "https://github.com/symfony/var-dumper.git",
  9033. "reference": "c6a22929407dec8765d6e2b6ff85b800b245879c"
  9034. },
  9035. "dist": {
  9036. "type": "zip",
  9037. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c6a22929407dec8765d6e2b6ff85b800b245879c",
  9038. "reference": "c6a22929407dec8765d6e2b6ff85b800b245879c",
  9039. "shasum": ""
  9040. },
  9041. "require": {
  9042. "php": ">=8.2",
  9043. "symfony/polyfill-mbstring": "~1.0"
  9044. },
  9045. "conflict": {
  9046. "symfony/console": "<6.4"
  9047. },
  9048. "require-dev": {
  9049. "ext-iconv": "*",
  9050. "symfony/console": "^6.4|^7.0",
  9051. "symfony/http-kernel": "^6.4|^7.0",
  9052. "symfony/process": "^6.4|^7.0",
  9053. "symfony/uid": "^6.4|^7.0",
  9054. "twig/twig": "^3.12"
  9055. },
  9056. "bin": [
  9057. "Resources/bin/var-dump-server"
  9058. ],
  9059. "type": "library",
  9060. "autoload": {
  9061. "files": [
  9062. "Resources/functions/dump.php"
  9063. ],
  9064. "psr-4": {
  9065. "Symfony\\Component\\VarDumper\\": ""
  9066. },
  9067. "exclude-from-classmap": [
  9068. "/Tests/"
  9069. ]
  9070. },
  9071. "notification-url": "https://packagist.org/downloads/",
  9072. "license": [
  9073. "MIT"
  9074. ],
  9075. "authors": [
  9076. {
  9077. "name": "Nicolas Grekas",
  9078. "email": "p@tchwork.com"
  9079. },
  9080. {
  9081. "name": "Symfony Community",
  9082. "homepage": "https://symfony.com/contributors"
  9083. }
  9084. ],
  9085. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  9086. "homepage": "https://symfony.com",
  9087. "keywords": [
  9088. "debug",
  9089. "dump"
  9090. ],
  9091. "support": {
  9092. "source": "https://github.com/symfony/var-dumper/tree/v7.2.0"
  9093. },
  9094. "funding": [
  9095. {
  9096. "url": "https://symfony.com/sponsor",
  9097. "type": "custom"
  9098. },
  9099. {
  9100. "url": "https://github.com/fabpot",
  9101. "type": "github"
  9102. },
  9103. {
  9104. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9105. "type": "tidelift"
  9106. }
  9107. ],
  9108. "time": "2024-11-08T15:48:14+00:00"
  9109. },
  9110. {
  9111. "name": "tijsverkoyen/css-to-inline-styles",
  9112. "version": "v2.3.0",
  9113. "source": {
  9114. "type": "git",
  9115. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  9116. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  9117. },
  9118. "dist": {
  9119. "type": "zip",
  9120. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  9121. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  9122. "shasum": ""
  9123. },
  9124. "require": {
  9125. "ext-dom": "*",
  9126. "ext-libxml": "*",
  9127. "php": "^7.4 || ^8.0",
  9128. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  9129. },
  9130. "require-dev": {
  9131. "phpstan/phpstan": "^2.0",
  9132. "phpstan/phpstan-phpunit": "^2.0",
  9133. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  9134. },
  9135. "type": "library",
  9136. "extra": {
  9137. "branch-alias": {
  9138. "dev-master": "2.x-dev"
  9139. }
  9140. },
  9141. "autoload": {
  9142. "psr-4": {
  9143. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9144. }
  9145. },
  9146. "notification-url": "https://packagist.org/downloads/",
  9147. "license": [
  9148. "BSD-3-Clause"
  9149. ],
  9150. "authors": [
  9151. {
  9152. "name": "Tijs Verkoyen",
  9153. "email": "css_to_inline_styles@verkoyen.eu",
  9154. "role": "Developer"
  9155. }
  9156. ],
  9157. "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.",
  9158. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9159. "support": {
  9160. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9161. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  9162. },
  9163. "time": "2024-12-21T16:25:41+00:00"
  9164. },
  9165. {
  9166. "name": "vlucas/phpdotenv",
  9167. "version": "v5.6.1",
  9168. "source": {
  9169. "type": "git",
  9170. "url": "https://github.com/vlucas/phpdotenv.git",
  9171. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  9172. },
  9173. "dist": {
  9174. "type": "zip",
  9175. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9176. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9177. "shasum": ""
  9178. },
  9179. "require": {
  9180. "ext-pcre": "*",
  9181. "graham-campbell/result-type": "^1.1.3",
  9182. "php": "^7.2.5 || ^8.0",
  9183. "phpoption/phpoption": "^1.9.3",
  9184. "symfony/polyfill-ctype": "^1.24",
  9185. "symfony/polyfill-mbstring": "^1.24",
  9186. "symfony/polyfill-php80": "^1.24"
  9187. },
  9188. "require-dev": {
  9189. "bamarni/composer-bin-plugin": "^1.8.2",
  9190. "ext-filter": "*",
  9191. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9192. },
  9193. "suggest": {
  9194. "ext-filter": "Required to use the boolean validator."
  9195. },
  9196. "type": "library",
  9197. "extra": {
  9198. "bamarni-bin": {
  9199. "bin-links": true,
  9200. "forward-command": false
  9201. },
  9202. "branch-alias": {
  9203. "dev-master": "5.6-dev"
  9204. }
  9205. },
  9206. "autoload": {
  9207. "psr-4": {
  9208. "Dotenv\\": "src/"
  9209. }
  9210. },
  9211. "notification-url": "https://packagist.org/downloads/",
  9212. "license": [
  9213. "BSD-3-Clause"
  9214. ],
  9215. "authors": [
  9216. {
  9217. "name": "Graham Campbell",
  9218. "email": "hello@gjcampbell.co.uk",
  9219. "homepage": "https://github.com/GrahamCampbell"
  9220. },
  9221. {
  9222. "name": "Vance Lucas",
  9223. "email": "vance@vancelucas.com",
  9224. "homepage": "https://github.com/vlucas"
  9225. }
  9226. ],
  9227. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9228. "keywords": [
  9229. "dotenv",
  9230. "env",
  9231. "environment"
  9232. ],
  9233. "support": {
  9234. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9235. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  9236. },
  9237. "funding": [
  9238. {
  9239. "url": "https://github.com/GrahamCampbell",
  9240. "type": "github"
  9241. },
  9242. {
  9243. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9244. "type": "tidelift"
  9245. }
  9246. ],
  9247. "time": "2024-07-20T21:52:34+00:00"
  9248. },
  9249. {
  9250. "name": "voku/portable-ascii",
  9251. "version": "2.0.3",
  9252. "source": {
  9253. "type": "git",
  9254. "url": "https://github.com/voku/portable-ascii.git",
  9255. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  9256. },
  9257. "dist": {
  9258. "type": "zip",
  9259. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9260. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9261. "shasum": ""
  9262. },
  9263. "require": {
  9264. "php": ">=7.0.0"
  9265. },
  9266. "require-dev": {
  9267. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9268. },
  9269. "suggest": {
  9270. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9271. },
  9272. "type": "library",
  9273. "autoload": {
  9274. "psr-4": {
  9275. "voku\\": "src/voku/"
  9276. }
  9277. },
  9278. "notification-url": "https://packagist.org/downloads/",
  9279. "license": [
  9280. "MIT"
  9281. ],
  9282. "authors": [
  9283. {
  9284. "name": "Lars Moelleken",
  9285. "homepage": "https://www.moelleken.org/"
  9286. }
  9287. ],
  9288. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9289. "homepage": "https://github.com/voku/portable-ascii",
  9290. "keywords": [
  9291. "ascii",
  9292. "clean",
  9293. "php"
  9294. ],
  9295. "support": {
  9296. "issues": "https://github.com/voku/portable-ascii/issues",
  9297. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  9298. },
  9299. "funding": [
  9300. {
  9301. "url": "https://www.paypal.me/moelleken",
  9302. "type": "custom"
  9303. },
  9304. {
  9305. "url": "https://github.com/voku",
  9306. "type": "github"
  9307. },
  9308. {
  9309. "url": "https://opencollective.com/portable-ascii",
  9310. "type": "open_collective"
  9311. },
  9312. {
  9313. "url": "https://www.patreon.com/voku",
  9314. "type": "patreon"
  9315. },
  9316. {
  9317. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9318. "type": "tidelift"
  9319. }
  9320. ],
  9321. "time": "2024-11-21T01:49:47+00:00"
  9322. },
  9323. {
  9324. "name": "webmozart/assert",
  9325. "version": "1.11.0",
  9326. "source": {
  9327. "type": "git",
  9328. "url": "https://github.com/webmozarts/assert.git",
  9329. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9330. },
  9331. "dist": {
  9332. "type": "zip",
  9333. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9334. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9335. "shasum": ""
  9336. },
  9337. "require": {
  9338. "ext-ctype": "*",
  9339. "php": "^7.2 || ^8.0"
  9340. },
  9341. "conflict": {
  9342. "phpstan/phpstan": "<0.12.20",
  9343. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9344. },
  9345. "require-dev": {
  9346. "phpunit/phpunit": "^8.5.13"
  9347. },
  9348. "type": "library",
  9349. "extra": {
  9350. "branch-alias": {
  9351. "dev-master": "1.10-dev"
  9352. }
  9353. },
  9354. "autoload": {
  9355. "psr-4": {
  9356. "Webmozart\\Assert\\": "src/"
  9357. }
  9358. },
  9359. "notification-url": "https://packagist.org/downloads/",
  9360. "license": [
  9361. "MIT"
  9362. ],
  9363. "authors": [
  9364. {
  9365. "name": "Bernhard Schussek",
  9366. "email": "bschussek@gmail.com"
  9367. }
  9368. ],
  9369. "description": "Assertions to validate method input/output with nice error messages.",
  9370. "keywords": [
  9371. "assert",
  9372. "check",
  9373. "validate"
  9374. ],
  9375. "support": {
  9376. "issues": "https://github.com/webmozarts/assert/issues",
  9377. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9378. },
  9379. "time": "2022-06-03T18:03:27+00:00"
  9380. }
  9381. ],
  9382. "packages-dev": [
  9383. {
  9384. "name": "brianium/paratest",
  9385. "version": "v7.7.0",
  9386. "source": {
  9387. "type": "git",
  9388. "url": "https://github.com/paratestphp/paratest.git",
  9389. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf"
  9390. },
  9391. "dist": {
  9392. "type": "zip",
  9393. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  9394. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  9395. "shasum": ""
  9396. },
  9397. "require": {
  9398. "ext-dom": "*",
  9399. "ext-pcre": "*",
  9400. "ext-reflection": "*",
  9401. "ext-simplexml": "*",
  9402. "fidry/cpu-core-counter": "^1.2.0",
  9403. "jean85/pretty-package-versions": "^2.1.0",
  9404. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  9405. "phpunit/php-code-coverage": "^11.0.8",
  9406. "phpunit/php-file-iterator": "^5.1.0",
  9407. "phpunit/php-timer": "^7.0.1",
  9408. "phpunit/phpunit": "^11.5.1",
  9409. "sebastian/environment": "^7.2.0",
  9410. "symfony/console": "^6.4.14 || ^7.2.1",
  9411. "symfony/process": "^6.4.14 || ^7.2.0"
  9412. },
  9413. "require-dev": {
  9414. "doctrine/coding-standard": "^12.0.0",
  9415. "ext-pcov": "*",
  9416. "ext-posix": "*",
  9417. "phpstan/phpstan": "^2.0.3",
  9418. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  9419. "phpstan/phpstan-phpunit": "^2.0.1",
  9420. "phpstan/phpstan-strict-rules": "^2",
  9421. "squizlabs/php_codesniffer": "^3.11.1",
  9422. "symfony/filesystem": "^6.4.13 || ^7.2.0"
  9423. },
  9424. "bin": [
  9425. "bin/paratest",
  9426. "bin/paratest_for_phpstorm"
  9427. ],
  9428. "type": "library",
  9429. "autoload": {
  9430. "psr-4": {
  9431. "ParaTest\\": [
  9432. "src/"
  9433. ]
  9434. }
  9435. },
  9436. "notification-url": "https://packagist.org/downloads/",
  9437. "license": [
  9438. "MIT"
  9439. ],
  9440. "authors": [
  9441. {
  9442. "name": "Brian Scaturro",
  9443. "email": "scaturrob@gmail.com",
  9444. "role": "Developer"
  9445. },
  9446. {
  9447. "name": "Filippo Tessarotto",
  9448. "email": "zoeslam@gmail.com",
  9449. "role": "Developer"
  9450. }
  9451. ],
  9452. "description": "Parallel testing for PHP",
  9453. "homepage": "https://github.com/paratestphp/paratest",
  9454. "keywords": [
  9455. "concurrent",
  9456. "parallel",
  9457. "phpunit",
  9458. "testing"
  9459. ],
  9460. "support": {
  9461. "issues": "https://github.com/paratestphp/paratest/issues",
  9462. "source": "https://github.com/paratestphp/paratest/tree/v7.7.0"
  9463. },
  9464. "funding": [
  9465. {
  9466. "url": "https://github.com/sponsors/Slamdunk",
  9467. "type": "github"
  9468. },
  9469. {
  9470. "url": "https://paypal.me/filippotessarotto",
  9471. "type": "paypal"
  9472. }
  9473. ],
  9474. "time": "2024-12-11T14:50:44+00:00"
  9475. },
  9476. {
  9477. "name": "fakerphp/faker",
  9478. "version": "v1.24.1",
  9479. "source": {
  9480. "type": "git",
  9481. "url": "https://github.com/FakerPHP/Faker.git",
  9482. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  9483. },
  9484. "dist": {
  9485. "type": "zip",
  9486. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9487. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9488. "shasum": ""
  9489. },
  9490. "require": {
  9491. "php": "^7.4 || ^8.0",
  9492. "psr/container": "^1.0 || ^2.0",
  9493. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9494. },
  9495. "conflict": {
  9496. "fzaninotto/faker": "*"
  9497. },
  9498. "require-dev": {
  9499. "bamarni/composer-bin-plugin": "^1.4.1",
  9500. "doctrine/persistence": "^1.3 || ^2.0",
  9501. "ext-intl": "*",
  9502. "phpunit/phpunit": "^9.5.26",
  9503. "symfony/phpunit-bridge": "^5.4.16"
  9504. },
  9505. "suggest": {
  9506. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9507. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9508. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9509. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9510. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9511. },
  9512. "type": "library",
  9513. "autoload": {
  9514. "psr-4": {
  9515. "Faker\\": "src/Faker/"
  9516. }
  9517. },
  9518. "notification-url": "https://packagist.org/downloads/",
  9519. "license": [
  9520. "MIT"
  9521. ],
  9522. "authors": [
  9523. {
  9524. "name": "François Zaninotto"
  9525. }
  9526. ],
  9527. "description": "Faker is a PHP library that generates fake data for you.",
  9528. "keywords": [
  9529. "data",
  9530. "faker",
  9531. "fixtures"
  9532. ],
  9533. "support": {
  9534. "issues": "https://github.com/FakerPHP/Faker/issues",
  9535. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  9536. },
  9537. "time": "2024-11-21T13:46:39+00:00"
  9538. },
  9539. {
  9540. "name": "fidry/cpu-core-counter",
  9541. "version": "1.2.0",
  9542. "source": {
  9543. "type": "git",
  9544. "url": "https://github.com/theofidry/cpu-core-counter.git",
  9545. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  9546. },
  9547. "dist": {
  9548. "type": "zip",
  9549. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  9550. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  9551. "shasum": ""
  9552. },
  9553. "require": {
  9554. "php": "^7.2 || ^8.0"
  9555. },
  9556. "require-dev": {
  9557. "fidry/makefile": "^0.2.0",
  9558. "fidry/php-cs-fixer-config": "^1.1.2",
  9559. "phpstan/extension-installer": "^1.2.0",
  9560. "phpstan/phpstan": "^1.9.2",
  9561. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  9562. "phpstan/phpstan-phpunit": "^1.2.2",
  9563. "phpstan/phpstan-strict-rules": "^1.4.4",
  9564. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  9565. "webmozarts/strict-phpunit": "^7.5"
  9566. },
  9567. "type": "library",
  9568. "autoload": {
  9569. "psr-4": {
  9570. "Fidry\\CpuCoreCounter\\": "src/"
  9571. }
  9572. },
  9573. "notification-url": "https://packagist.org/downloads/",
  9574. "license": [
  9575. "MIT"
  9576. ],
  9577. "authors": [
  9578. {
  9579. "name": "Théo FIDRY",
  9580. "email": "theo.fidry@gmail.com"
  9581. }
  9582. ],
  9583. "description": "Tiny utility to get the number of CPU cores.",
  9584. "keywords": [
  9585. "CPU",
  9586. "core"
  9587. ],
  9588. "support": {
  9589. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  9590. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  9591. },
  9592. "funding": [
  9593. {
  9594. "url": "https://github.com/theofidry",
  9595. "type": "github"
  9596. }
  9597. ],
  9598. "time": "2024-08-06T10:04:20+00:00"
  9599. },
  9600. {
  9601. "name": "filp/whoops",
  9602. "version": "2.16.0",
  9603. "source": {
  9604. "type": "git",
  9605. "url": "https://github.com/filp/whoops.git",
  9606. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  9607. },
  9608. "dist": {
  9609. "type": "zip",
  9610. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  9611. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  9612. "shasum": ""
  9613. },
  9614. "require": {
  9615. "php": "^7.1 || ^8.0",
  9616. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9617. },
  9618. "require-dev": {
  9619. "mockery/mockery": "^1.0",
  9620. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  9621. "symfony/var-dumper": "^4.0 || ^5.0"
  9622. },
  9623. "suggest": {
  9624. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9625. "whoops/soap": "Formats errors as SOAP responses"
  9626. },
  9627. "type": "library",
  9628. "extra": {
  9629. "branch-alias": {
  9630. "dev-master": "2.7-dev"
  9631. }
  9632. },
  9633. "autoload": {
  9634. "psr-4": {
  9635. "Whoops\\": "src/Whoops/"
  9636. }
  9637. },
  9638. "notification-url": "https://packagist.org/downloads/",
  9639. "license": [
  9640. "MIT"
  9641. ],
  9642. "authors": [
  9643. {
  9644. "name": "Filipe Dobreira",
  9645. "homepage": "https://github.com/filp",
  9646. "role": "Developer"
  9647. }
  9648. ],
  9649. "description": "php error handling for cool kids",
  9650. "homepage": "https://filp.github.io/whoops/",
  9651. "keywords": [
  9652. "error",
  9653. "exception",
  9654. "handling",
  9655. "library",
  9656. "throwable",
  9657. "whoops"
  9658. ],
  9659. "support": {
  9660. "issues": "https://github.com/filp/whoops/issues",
  9661. "source": "https://github.com/filp/whoops/tree/2.16.0"
  9662. },
  9663. "funding": [
  9664. {
  9665. "url": "https://github.com/denis-sokolov",
  9666. "type": "github"
  9667. }
  9668. ],
  9669. "time": "2024-09-25T12:00:00+00:00"
  9670. },
  9671. {
  9672. "name": "hamcrest/hamcrest-php",
  9673. "version": "v2.0.1",
  9674. "source": {
  9675. "type": "git",
  9676. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9677. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9678. },
  9679. "dist": {
  9680. "type": "zip",
  9681. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9682. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9683. "shasum": ""
  9684. },
  9685. "require": {
  9686. "php": "^5.3|^7.0|^8.0"
  9687. },
  9688. "replace": {
  9689. "cordoval/hamcrest-php": "*",
  9690. "davedevelopment/hamcrest-php": "*",
  9691. "kodova/hamcrest-php": "*"
  9692. },
  9693. "require-dev": {
  9694. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9695. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9696. },
  9697. "type": "library",
  9698. "extra": {
  9699. "branch-alias": {
  9700. "dev-master": "2.1-dev"
  9701. }
  9702. },
  9703. "autoload": {
  9704. "classmap": [
  9705. "hamcrest"
  9706. ]
  9707. },
  9708. "notification-url": "https://packagist.org/downloads/",
  9709. "license": [
  9710. "BSD-3-Clause"
  9711. ],
  9712. "description": "This is the PHP port of Hamcrest Matchers",
  9713. "keywords": [
  9714. "test"
  9715. ],
  9716. "support": {
  9717. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9718. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9719. },
  9720. "time": "2020-07-09T08:09:16+00:00"
  9721. },
  9722. {
  9723. "name": "jean85/pretty-package-versions",
  9724. "version": "2.1.0",
  9725. "source": {
  9726. "type": "git",
  9727. "url": "https://github.com/Jean85/pretty-package-versions.git",
  9728. "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10"
  9729. },
  9730. "dist": {
  9731. "type": "zip",
  9732. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10",
  9733. "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10",
  9734. "shasum": ""
  9735. },
  9736. "require": {
  9737. "composer-runtime-api": "^2.1.0",
  9738. "php": "^7.4|^8.0"
  9739. },
  9740. "require-dev": {
  9741. "friendsofphp/php-cs-fixer": "^3.2",
  9742. "jean85/composer-provided-replaced-stub-package": "^1.0",
  9743. "phpstan/phpstan": "^1.4",
  9744. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  9745. "vimeo/psalm": "^4.3 || ^5.0"
  9746. },
  9747. "type": "library",
  9748. "extra": {
  9749. "branch-alias": {
  9750. "dev-master": "1.x-dev"
  9751. }
  9752. },
  9753. "autoload": {
  9754. "psr-4": {
  9755. "Jean85\\": "src/"
  9756. }
  9757. },
  9758. "notification-url": "https://packagist.org/downloads/",
  9759. "license": [
  9760. "MIT"
  9761. ],
  9762. "authors": [
  9763. {
  9764. "name": "Alessandro Lai",
  9765. "email": "alessandro.lai85@gmail.com"
  9766. }
  9767. ],
  9768. "description": "A library to get pretty versions strings of installed dependencies",
  9769. "keywords": [
  9770. "composer",
  9771. "package",
  9772. "release",
  9773. "versions"
  9774. ],
  9775. "support": {
  9776. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  9777. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0"
  9778. },
  9779. "time": "2024-11-18T16:19:46+00:00"
  9780. },
  9781. {
  9782. "name": "laravel/pint",
  9783. "version": "v1.20.0",
  9784. "source": {
  9785. "type": "git",
  9786. "url": "https://github.com/laravel/pint.git",
  9787. "reference": "53072e8ea22213a7ed168a8a15b96fbb8b82d44b"
  9788. },
  9789. "dist": {
  9790. "type": "zip",
  9791. "url": "https://api.github.com/repos/laravel/pint/zipball/53072e8ea22213a7ed168a8a15b96fbb8b82d44b",
  9792. "reference": "53072e8ea22213a7ed168a8a15b96fbb8b82d44b",
  9793. "shasum": ""
  9794. },
  9795. "require": {
  9796. "ext-json": "*",
  9797. "ext-mbstring": "*",
  9798. "ext-tokenizer": "*",
  9799. "ext-xml": "*",
  9800. "php": "^8.1.0"
  9801. },
  9802. "require-dev": {
  9803. "friendsofphp/php-cs-fixer": "^3.66.0",
  9804. "illuminate/view": "^10.48.25",
  9805. "larastan/larastan": "^2.9.12",
  9806. "laravel-zero/framework": "^10.48.25",
  9807. "mockery/mockery": "^1.6.12",
  9808. "nunomaduro/termwind": "^1.17.0",
  9809. "pestphp/pest": "^2.36.0"
  9810. },
  9811. "bin": [
  9812. "builds/pint"
  9813. ],
  9814. "type": "project",
  9815. "autoload": {
  9816. "psr-4": {
  9817. "App\\": "app/",
  9818. "Database\\Seeders\\": "database/seeders/",
  9819. "Database\\Factories\\": "database/factories/"
  9820. }
  9821. },
  9822. "notification-url": "https://packagist.org/downloads/",
  9823. "license": [
  9824. "MIT"
  9825. ],
  9826. "authors": [
  9827. {
  9828. "name": "Nuno Maduro",
  9829. "email": "enunomaduro@gmail.com"
  9830. }
  9831. ],
  9832. "description": "An opinionated code formatter for PHP.",
  9833. "homepage": "https://laravel.com",
  9834. "keywords": [
  9835. "format",
  9836. "formatter",
  9837. "lint",
  9838. "linter",
  9839. "php"
  9840. ],
  9841. "support": {
  9842. "issues": "https://github.com/laravel/pint/issues",
  9843. "source": "https://github.com/laravel/pint"
  9844. },
  9845. "time": "2025-01-14T16:20:53+00:00"
  9846. },
  9847. {
  9848. "name": "laravel/sail",
  9849. "version": "v1.40.0",
  9850. "source": {
  9851. "type": "git",
  9852. "url": "https://github.com/laravel/sail.git",
  9853. "reference": "237e70656d8eface4839de51d101284bd5d0cf71"
  9854. },
  9855. "dist": {
  9856. "type": "zip",
  9857. "url": "https://api.github.com/repos/laravel/sail/zipball/237e70656d8eface4839de51d101284bd5d0cf71",
  9858. "reference": "237e70656d8eface4839de51d101284bd5d0cf71",
  9859. "shasum": ""
  9860. },
  9861. "require": {
  9862. "illuminate/console": "^9.52.16|^10.0|^11.0",
  9863. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  9864. "illuminate/support": "^9.52.16|^10.0|^11.0",
  9865. "php": "^8.0",
  9866. "symfony/console": "^6.0|^7.0",
  9867. "symfony/yaml": "^6.0|^7.0"
  9868. },
  9869. "require-dev": {
  9870. "orchestra/testbench": "^7.0|^8.0|^9.0",
  9871. "phpstan/phpstan": "^1.10"
  9872. },
  9873. "bin": [
  9874. "bin/sail"
  9875. ],
  9876. "type": "library",
  9877. "extra": {
  9878. "laravel": {
  9879. "providers": [
  9880. "Laravel\\Sail\\SailServiceProvider"
  9881. ]
  9882. }
  9883. },
  9884. "autoload": {
  9885. "psr-4": {
  9886. "Laravel\\Sail\\": "src/"
  9887. }
  9888. },
  9889. "notification-url": "https://packagist.org/downloads/",
  9890. "license": [
  9891. "MIT"
  9892. ],
  9893. "authors": [
  9894. {
  9895. "name": "Taylor Otwell",
  9896. "email": "taylor@laravel.com"
  9897. }
  9898. ],
  9899. "description": "Docker files for running a basic Laravel application.",
  9900. "keywords": [
  9901. "docker",
  9902. "laravel"
  9903. ],
  9904. "support": {
  9905. "issues": "https://github.com/laravel/sail/issues",
  9906. "source": "https://github.com/laravel/sail"
  9907. },
  9908. "time": "2025-01-13T16:57:11+00:00"
  9909. },
  9910. {
  9911. "name": "mockery/mockery",
  9912. "version": "1.6.12",
  9913. "source": {
  9914. "type": "git",
  9915. "url": "https://github.com/mockery/mockery.git",
  9916. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9917. },
  9918. "dist": {
  9919. "type": "zip",
  9920. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9921. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9922. "shasum": ""
  9923. },
  9924. "require": {
  9925. "hamcrest/hamcrest-php": "^2.0.1",
  9926. "lib-pcre": ">=7.0",
  9927. "php": ">=7.3"
  9928. },
  9929. "conflict": {
  9930. "phpunit/phpunit": "<8.0"
  9931. },
  9932. "require-dev": {
  9933. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9934. "symplify/easy-coding-standard": "^12.1.14"
  9935. },
  9936. "type": "library",
  9937. "autoload": {
  9938. "files": [
  9939. "library/helpers.php",
  9940. "library/Mockery.php"
  9941. ],
  9942. "psr-4": {
  9943. "Mockery\\": "library/Mockery"
  9944. }
  9945. },
  9946. "notification-url": "https://packagist.org/downloads/",
  9947. "license": [
  9948. "BSD-3-Clause"
  9949. ],
  9950. "authors": [
  9951. {
  9952. "name": "Pádraic Brady",
  9953. "email": "padraic.brady@gmail.com",
  9954. "homepage": "https://github.com/padraic",
  9955. "role": "Author"
  9956. },
  9957. {
  9958. "name": "Dave Marshall",
  9959. "email": "dave.marshall@atstsolutions.co.uk",
  9960. "homepage": "https://davedevelopment.co.uk",
  9961. "role": "Developer"
  9962. },
  9963. {
  9964. "name": "Nathanael Esayeas",
  9965. "email": "nathanael.esayeas@protonmail.com",
  9966. "homepage": "https://github.com/ghostwriter",
  9967. "role": "Lead Developer"
  9968. }
  9969. ],
  9970. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9971. "homepage": "https://github.com/mockery/mockery",
  9972. "keywords": [
  9973. "BDD",
  9974. "TDD",
  9975. "library",
  9976. "mock",
  9977. "mock objects",
  9978. "mockery",
  9979. "stub",
  9980. "test",
  9981. "test double",
  9982. "testing"
  9983. ],
  9984. "support": {
  9985. "docs": "https://docs.mockery.io/",
  9986. "issues": "https://github.com/mockery/mockery/issues",
  9987. "rss": "https://github.com/mockery/mockery/releases.atom",
  9988. "security": "https://github.com/mockery/mockery/security/advisories",
  9989. "source": "https://github.com/mockery/mockery"
  9990. },
  9991. "time": "2024-05-16T03:13:13+00:00"
  9992. },
  9993. {
  9994. "name": "myclabs/deep-copy",
  9995. "version": "1.12.1",
  9996. "source": {
  9997. "type": "git",
  9998. "url": "https://github.com/myclabs/DeepCopy.git",
  9999. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  10000. },
  10001. "dist": {
  10002. "type": "zip",
  10003. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  10004. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  10005. "shasum": ""
  10006. },
  10007. "require": {
  10008. "php": "^7.1 || ^8.0"
  10009. },
  10010. "conflict": {
  10011. "doctrine/collections": "<1.6.8",
  10012. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  10013. },
  10014. "require-dev": {
  10015. "doctrine/collections": "^1.6.8",
  10016. "doctrine/common": "^2.13.3 || ^3.2.2",
  10017. "phpspec/prophecy": "^1.10",
  10018. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10019. },
  10020. "type": "library",
  10021. "autoload": {
  10022. "files": [
  10023. "src/DeepCopy/deep_copy.php"
  10024. ],
  10025. "psr-4": {
  10026. "DeepCopy\\": "src/DeepCopy/"
  10027. }
  10028. },
  10029. "notification-url": "https://packagist.org/downloads/",
  10030. "license": [
  10031. "MIT"
  10032. ],
  10033. "description": "Create deep copies (clones) of your objects",
  10034. "keywords": [
  10035. "clone",
  10036. "copy",
  10037. "duplicate",
  10038. "object",
  10039. "object graph"
  10040. ],
  10041. "support": {
  10042. "issues": "https://github.com/myclabs/DeepCopy/issues",
  10043. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  10044. },
  10045. "funding": [
  10046. {
  10047. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  10048. "type": "tidelift"
  10049. }
  10050. ],
  10051. "time": "2024-11-08T17:47:46+00:00"
  10052. },
  10053. {
  10054. "name": "nunomaduro/collision",
  10055. "version": "v8.5.0",
  10056. "source": {
  10057. "type": "git",
  10058. "url": "https://github.com/nunomaduro/collision.git",
  10059. "reference": "f5c101b929c958e849a633283adff296ed5f38f5"
  10060. },
  10061. "dist": {
  10062. "type": "zip",
  10063. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f5c101b929c958e849a633283adff296ed5f38f5",
  10064. "reference": "f5c101b929c958e849a633283adff296ed5f38f5",
  10065. "shasum": ""
  10066. },
  10067. "require": {
  10068. "filp/whoops": "^2.16.0",
  10069. "nunomaduro/termwind": "^2.1.0",
  10070. "php": "^8.2.0",
  10071. "symfony/console": "^7.1.5"
  10072. },
  10073. "conflict": {
  10074. "laravel/framework": "<11.0.0 || >=12.0.0",
  10075. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  10076. },
  10077. "require-dev": {
  10078. "larastan/larastan": "^2.9.8",
  10079. "laravel/framework": "^11.28.0",
  10080. "laravel/pint": "^1.18.1",
  10081. "laravel/sail": "^1.36.0",
  10082. "laravel/sanctum": "^4.0.3",
  10083. "laravel/tinker": "^2.10.0",
  10084. "orchestra/testbench-core": "^9.5.3",
  10085. "pestphp/pest": "^2.36.0 || ^3.4.0",
  10086. "sebastian/environment": "^6.1.0 || ^7.2.0"
  10087. },
  10088. "type": "library",
  10089. "extra": {
  10090. "laravel": {
  10091. "providers": [
  10092. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  10093. ]
  10094. },
  10095. "branch-alias": {
  10096. "dev-8.x": "8.x-dev"
  10097. }
  10098. },
  10099. "autoload": {
  10100. "files": [
  10101. "./src/Adapters/Phpunit/Autoload.php"
  10102. ],
  10103. "psr-4": {
  10104. "NunoMaduro\\Collision\\": "src/"
  10105. }
  10106. },
  10107. "notification-url": "https://packagist.org/downloads/",
  10108. "license": [
  10109. "MIT"
  10110. ],
  10111. "authors": [
  10112. {
  10113. "name": "Nuno Maduro",
  10114. "email": "enunomaduro@gmail.com"
  10115. }
  10116. ],
  10117. "description": "Cli error handling for console/command-line PHP applications.",
  10118. "keywords": [
  10119. "artisan",
  10120. "cli",
  10121. "command-line",
  10122. "console",
  10123. "error",
  10124. "handling",
  10125. "laravel",
  10126. "laravel-zero",
  10127. "php",
  10128. "symfony"
  10129. ],
  10130. "support": {
  10131. "issues": "https://github.com/nunomaduro/collision/issues",
  10132. "source": "https://github.com/nunomaduro/collision"
  10133. },
  10134. "funding": [
  10135. {
  10136. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10137. "type": "custom"
  10138. },
  10139. {
  10140. "url": "https://github.com/nunomaduro",
  10141. "type": "github"
  10142. },
  10143. {
  10144. "url": "https://www.patreon.com/nunomaduro",
  10145. "type": "patreon"
  10146. }
  10147. ],
  10148. "time": "2024-10-15T16:06:32+00:00"
  10149. },
  10150. {
  10151. "name": "pestphp/pest",
  10152. "version": "v3.7.1",
  10153. "source": {
  10154. "type": "git",
  10155. "url": "https://github.com/pestphp/pest.git",
  10156. "reference": "bf3178473dcaa53b0458f21dfdb271306ea62512"
  10157. },
  10158. "dist": {
  10159. "type": "zip",
  10160. "url": "https://api.github.com/repos/pestphp/pest/zipball/bf3178473dcaa53b0458f21dfdb271306ea62512",
  10161. "reference": "bf3178473dcaa53b0458f21dfdb271306ea62512",
  10162. "shasum": ""
  10163. },
  10164. "require": {
  10165. "brianium/paratest": "^7.7.0",
  10166. "nunomaduro/collision": "^8.5.0",
  10167. "nunomaduro/termwind": "^2.3.0",
  10168. "pestphp/pest-plugin": "^3.0.0",
  10169. "pestphp/pest-plugin-arch": "^3.0.0",
  10170. "pestphp/pest-plugin-mutate": "^3.0.5",
  10171. "php": "^8.2.0",
  10172. "phpunit/phpunit": "^11.5.1"
  10173. },
  10174. "conflict": {
  10175. "filp/whoops": "<2.16.0",
  10176. "phpunit/phpunit": ">11.5.1",
  10177. "sebastian/exporter": "<6.0.0",
  10178. "webmozart/assert": "<1.11.0"
  10179. },
  10180. "require-dev": {
  10181. "pestphp/pest-dev-tools": "^3.3.0",
  10182. "pestphp/pest-plugin-type-coverage": "^3.2.0",
  10183. "symfony/process": "^7.2.0"
  10184. },
  10185. "bin": [
  10186. "bin/pest"
  10187. ],
  10188. "type": "library",
  10189. "extra": {
  10190. "pest": {
  10191. "plugins": [
  10192. "Pest\\Mutate\\Plugins\\Mutate",
  10193. "Pest\\Plugins\\Configuration",
  10194. "Pest\\Plugins\\Bail",
  10195. "Pest\\Plugins\\Cache",
  10196. "Pest\\Plugins\\Coverage",
  10197. "Pest\\Plugins\\Init",
  10198. "Pest\\Plugins\\Environment",
  10199. "Pest\\Plugins\\Help",
  10200. "Pest\\Plugins\\Memory",
  10201. "Pest\\Plugins\\Only",
  10202. "Pest\\Plugins\\Printer",
  10203. "Pest\\Plugins\\ProcessIsolation",
  10204. "Pest\\Plugins\\Profile",
  10205. "Pest\\Plugins\\Retry",
  10206. "Pest\\Plugins\\Snapshot",
  10207. "Pest\\Plugins\\Verbose",
  10208. "Pest\\Plugins\\Version",
  10209. "Pest\\Plugins\\Parallel"
  10210. ]
  10211. },
  10212. "phpstan": {
  10213. "includes": [
  10214. "extension.neon"
  10215. ]
  10216. }
  10217. },
  10218. "autoload": {
  10219. "files": [
  10220. "src/Functions.php",
  10221. "src/Pest.php"
  10222. ],
  10223. "psr-4": {
  10224. "Pest\\": "src/"
  10225. }
  10226. },
  10227. "notification-url": "https://packagist.org/downloads/",
  10228. "license": [
  10229. "MIT"
  10230. ],
  10231. "authors": [
  10232. {
  10233. "name": "Nuno Maduro",
  10234. "email": "enunomaduro@gmail.com"
  10235. }
  10236. ],
  10237. "description": "The elegant PHP Testing Framework.",
  10238. "keywords": [
  10239. "framework",
  10240. "pest",
  10241. "php",
  10242. "test",
  10243. "testing",
  10244. "unit"
  10245. ],
  10246. "support": {
  10247. "issues": "https://github.com/pestphp/pest/issues",
  10248. "source": "https://github.com/pestphp/pest/tree/v3.7.1"
  10249. },
  10250. "funding": [
  10251. {
  10252. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10253. "type": "custom"
  10254. },
  10255. {
  10256. "url": "https://github.com/nunomaduro",
  10257. "type": "github"
  10258. }
  10259. ],
  10260. "time": "2024-12-12T11:52:01+00:00"
  10261. },
  10262. {
  10263. "name": "pestphp/pest-plugin",
  10264. "version": "v3.0.0",
  10265. "source": {
  10266. "type": "git",
  10267. "url": "https://github.com/pestphp/pest-plugin.git",
  10268. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  10269. },
  10270. "dist": {
  10271. "type": "zip",
  10272. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10273. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10274. "shasum": ""
  10275. },
  10276. "require": {
  10277. "composer-plugin-api": "^2.0.0",
  10278. "composer-runtime-api": "^2.2.2",
  10279. "php": "^8.2"
  10280. },
  10281. "conflict": {
  10282. "pestphp/pest": "<3.0.0"
  10283. },
  10284. "require-dev": {
  10285. "composer/composer": "^2.7.9",
  10286. "pestphp/pest": "^3.0.0",
  10287. "pestphp/pest-dev-tools": "^3.0.0"
  10288. },
  10289. "type": "composer-plugin",
  10290. "extra": {
  10291. "class": "Pest\\Plugin\\Manager"
  10292. },
  10293. "autoload": {
  10294. "psr-4": {
  10295. "Pest\\Plugin\\": "src/"
  10296. }
  10297. },
  10298. "notification-url": "https://packagist.org/downloads/",
  10299. "license": [
  10300. "MIT"
  10301. ],
  10302. "description": "The Pest plugin manager",
  10303. "keywords": [
  10304. "framework",
  10305. "manager",
  10306. "pest",
  10307. "php",
  10308. "plugin",
  10309. "test",
  10310. "testing",
  10311. "unit"
  10312. ],
  10313. "support": {
  10314. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  10315. },
  10316. "funding": [
  10317. {
  10318. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10319. "type": "custom"
  10320. },
  10321. {
  10322. "url": "https://github.com/nunomaduro",
  10323. "type": "github"
  10324. },
  10325. {
  10326. "url": "https://www.patreon.com/nunomaduro",
  10327. "type": "patreon"
  10328. }
  10329. ],
  10330. "time": "2024-09-08T23:21:41+00:00"
  10331. },
  10332. {
  10333. "name": "pestphp/pest-plugin-arch",
  10334. "version": "v3.0.0",
  10335. "source": {
  10336. "type": "git",
  10337. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  10338. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0"
  10339. },
  10340. "dist": {
  10341. "type": "zip",
  10342. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  10343. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  10344. "shasum": ""
  10345. },
  10346. "require": {
  10347. "pestphp/pest-plugin": "^3.0.0",
  10348. "php": "^8.2",
  10349. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  10350. },
  10351. "require-dev": {
  10352. "pestphp/pest": "^3.0.0",
  10353. "pestphp/pest-dev-tools": "^3.0.0"
  10354. },
  10355. "type": "library",
  10356. "extra": {
  10357. "pest": {
  10358. "plugins": [
  10359. "Pest\\Arch\\Plugin"
  10360. ]
  10361. }
  10362. },
  10363. "autoload": {
  10364. "files": [
  10365. "src/Autoload.php"
  10366. ],
  10367. "psr-4": {
  10368. "Pest\\Arch\\": "src/"
  10369. }
  10370. },
  10371. "notification-url": "https://packagist.org/downloads/",
  10372. "license": [
  10373. "MIT"
  10374. ],
  10375. "description": "The Arch plugin for Pest PHP.",
  10376. "keywords": [
  10377. "arch",
  10378. "architecture",
  10379. "framework",
  10380. "pest",
  10381. "php",
  10382. "plugin",
  10383. "test",
  10384. "testing",
  10385. "unit"
  10386. ],
  10387. "support": {
  10388. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.0.0"
  10389. },
  10390. "funding": [
  10391. {
  10392. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10393. "type": "custom"
  10394. },
  10395. {
  10396. "url": "https://github.com/nunomaduro",
  10397. "type": "github"
  10398. }
  10399. ],
  10400. "time": "2024-09-08T23:23:55+00:00"
  10401. },
  10402. {
  10403. "name": "pestphp/pest-plugin-livewire",
  10404. "version": "v3.0.0",
  10405. "source": {
  10406. "type": "git",
  10407. "url": "https://github.com/pestphp/pest-plugin-livewire.git",
  10408. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89"
  10409. },
  10410. "dist": {
  10411. "type": "zip",
  10412. "url": "https://api.github.com/repos/pestphp/pest-plugin-livewire/zipball/e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10413. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10414. "shasum": ""
  10415. },
  10416. "require": {
  10417. "livewire/livewire": "^3.5.6",
  10418. "pestphp/pest": "^3.0.0",
  10419. "php": "^8.1"
  10420. },
  10421. "require-dev": {
  10422. "orchestra/testbench": "^9.4.0",
  10423. "pestphp/pest-dev-tools": "^3.0.0"
  10424. },
  10425. "type": "library",
  10426. "autoload": {
  10427. "files": [
  10428. "src/Autoload.php"
  10429. ],
  10430. "psr-4": {
  10431. "Pest\\Livewire\\": "src/"
  10432. }
  10433. },
  10434. "notification-url": "https://packagist.org/downloads/",
  10435. "license": [
  10436. "MIT"
  10437. ],
  10438. "description": "The Pest Livewire Plugin",
  10439. "keywords": [
  10440. "framework",
  10441. "livewire",
  10442. "pest",
  10443. "php",
  10444. "plugin",
  10445. "test",
  10446. "testing",
  10447. "unit"
  10448. ],
  10449. "support": {
  10450. "source": "https://github.com/pestphp/pest-plugin-livewire/tree/v3.0.0"
  10451. },
  10452. "funding": [
  10453. {
  10454. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10455. "type": "custom"
  10456. },
  10457. {
  10458. "url": "https://github.com/nunomaduro",
  10459. "type": "github"
  10460. },
  10461. {
  10462. "url": "https://www.patreon.com/nunomaduro",
  10463. "type": "patreon"
  10464. }
  10465. ],
  10466. "time": "2024-09-09T00:05:59+00:00"
  10467. },
  10468. {
  10469. "name": "pestphp/pest-plugin-mutate",
  10470. "version": "v3.0.5",
  10471. "source": {
  10472. "type": "git",
  10473. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  10474. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  10475. },
  10476. "dist": {
  10477. "type": "zip",
  10478. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10479. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10480. "shasum": ""
  10481. },
  10482. "require": {
  10483. "nikic/php-parser": "^5.2.0",
  10484. "pestphp/pest-plugin": "^3.0.0",
  10485. "php": "^8.2",
  10486. "psr/simple-cache": "^3.0.0"
  10487. },
  10488. "require-dev": {
  10489. "pestphp/pest": "^3.0.8",
  10490. "pestphp/pest-dev-tools": "^3.0.0",
  10491. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  10492. },
  10493. "type": "library",
  10494. "autoload": {
  10495. "psr-4": {
  10496. "Pest\\Mutate\\": "src/"
  10497. }
  10498. },
  10499. "notification-url": "https://packagist.org/downloads/",
  10500. "license": [
  10501. "MIT"
  10502. ],
  10503. "authors": [
  10504. {
  10505. "name": "Sandro Gehri",
  10506. "email": "sandrogehri@gmail.com"
  10507. }
  10508. ],
  10509. "description": "Mutates your code to find untested cases",
  10510. "keywords": [
  10511. "framework",
  10512. "mutate",
  10513. "mutation",
  10514. "pest",
  10515. "php",
  10516. "plugin",
  10517. "test",
  10518. "testing",
  10519. "unit"
  10520. ],
  10521. "support": {
  10522. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  10523. },
  10524. "funding": [
  10525. {
  10526. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10527. "type": "custom"
  10528. },
  10529. {
  10530. "url": "https://github.com/gehrisandro",
  10531. "type": "github"
  10532. },
  10533. {
  10534. "url": "https://github.com/nunomaduro",
  10535. "type": "github"
  10536. }
  10537. ],
  10538. "time": "2024-09-22T07:54:40+00:00"
  10539. },
  10540. {
  10541. "name": "phar-io/manifest",
  10542. "version": "2.0.4",
  10543. "source": {
  10544. "type": "git",
  10545. "url": "https://github.com/phar-io/manifest.git",
  10546. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10547. },
  10548. "dist": {
  10549. "type": "zip",
  10550. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10551. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10552. "shasum": ""
  10553. },
  10554. "require": {
  10555. "ext-dom": "*",
  10556. "ext-libxml": "*",
  10557. "ext-phar": "*",
  10558. "ext-xmlwriter": "*",
  10559. "phar-io/version": "^3.0.1",
  10560. "php": "^7.2 || ^8.0"
  10561. },
  10562. "type": "library",
  10563. "extra": {
  10564. "branch-alias": {
  10565. "dev-master": "2.0.x-dev"
  10566. }
  10567. },
  10568. "autoload": {
  10569. "classmap": [
  10570. "src/"
  10571. ]
  10572. },
  10573. "notification-url": "https://packagist.org/downloads/",
  10574. "license": [
  10575. "BSD-3-Clause"
  10576. ],
  10577. "authors": [
  10578. {
  10579. "name": "Arne Blankerts",
  10580. "email": "arne@blankerts.de",
  10581. "role": "Developer"
  10582. },
  10583. {
  10584. "name": "Sebastian Heuer",
  10585. "email": "sebastian@phpeople.de",
  10586. "role": "Developer"
  10587. },
  10588. {
  10589. "name": "Sebastian Bergmann",
  10590. "email": "sebastian@phpunit.de",
  10591. "role": "Developer"
  10592. }
  10593. ],
  10594. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10595. "support": {
  10596. "issues": "https://github.com/phar-io/manifest/issues",
  10597. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10598. },
  10599. "funding": [
  10600. {
  10601. "url": "https://github.com/theseer",
  10602. "type": "github"
  10603. }
  10604. ],
  10605. "time": "2024-03-03T12:33:53+00:00"
  10606. },
  10607. {
  10608. "name": "phar-io/version",
  10609. "version": "3.2.1",
  10610. "source": {
  10611. "type": "git",
  10612. "url": "https://github.com/phar-io/version.git",
  10613. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10614. },
  10615. "dist": {
  10616. "type": "zip",
  10617. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10618. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10619. "shasum": ""
  10620. },
  10621. "require": {
  10622. "php": "^7.2 || ^8.0"
  10623. },
  10624. "type": "library",
  10625. "autoload": {
  10626. "classmap": [
  10627. "src/"
  10628. ]
  10629. },
  10630. "notification-url": "https://packagist.org/downloads/",
  10631. "license": [
  10632. "BSD-3-Clause"
  10633. ],
  10634. "authors": [
  10635. {
  10636. "name": "Arne Blankerts",
  10637. "email": "arne@blankerts.de",
  10638. "role": "Developer"
  10639. },
  10640. {
  10641. "name": "Sebastian Heuer",
  10642. "email": "sebastian@phpeople.de",
  10643. "role": "Developer"
  10644. },
  10645. {
  10646. "name": "Sebastian Bergmann",
  10647. "email": "sebastian@phpunit.de",
  10648. "role": "Developer"
  10649. }
  10650. ],
  10651. "description": "Library for handling version information and constraints",
  10652. "support": {
  10653. "issues": "https://github.com/phar-io/version/issues",
  10654. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10655. },
  10656. "time": "2022-02-21T01:04:05+00:00"
  10657. },
  10658. {
  10659. "name": "phpdocumentor/reflection-common",
  10660. "version": "2.2.0",
  10661. "source": {
  10662. "type": "git",
  10663. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10664. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  10665. },
  10666. "dist": {
  10667. "type": "zip",
  10668. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10669. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10670. "shasum": ""
  10671. },
  10672. "require": {
  10673. "php": "^7.2 || ^8.0"
  10674. },
  10675. "type": "library",
  10676. "extra": {
  10677. "branch-alias": {
  10678. "dev-2.x": "2.x-dev"
  10679. }
  10680. },
  10681. "autoload": {
  10682. "psr-4": {
  10683. "phpDocumentor\\Reflection\\": "src/"
  10684. }
  10685. },
  10686. "notification-url": "https://packagist.org/downloads/",
  10687. "license": [
  10688. "MIT"
  10689. ],
  10690. "authors": [
  10691. {
  10692. "name": "Jaap van Otterdijk",
  10693. "email": "opensource@ijaap.nl"
  10694. }
  10695. ],
  10696. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10697. "homepage": "http://www.phpdoc.org",
  10698. "keywords": [
  10699. "FQSEN",
  10700. "phpDocumentor",
  10701. "phpdoc",
  10702. "reflection",
  10703. "static analysis"
  10704. ],
  10705. "support": {
  10706. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  10707. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  10708. },
  10709. "time": "2020-06-27T09:03:43+00:00"
  10710. },
  10711. {
  10712. "name": "phpdocumentor/reflection-docblock",
  10713. "version": "5.6.1",
  10714. "source": {
  10715. "type": "git",
  10716. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  10717. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8"
  10718. },
  10719. "dist": {
  10720. "type": "zip",
  10721. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  10722. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  10723. "shasum": ""
  10724. },
  10725. "require": {
  10726. "doctrine/deprecations": "^1.1",
  10727. "ext-filter": "*",
  10728. "php": "^7.4 || ^8.0",
  10729. "phpdocumentor/reflection-common": "^2.2",
  10730. "phpdocumentor/type-resolver": "^1.7",
  10731. "phpstan/phpdoc-parser": "^1.7|^2.0",
  10732. "webmozart/assert": "^1.9.1"
  10733. },
  10734. "require-dev": {
  10735. "mockery/mockery": "~1.3.5 || ~1.6.0",
  10736. "phpstan/extension-installer": "^1.1",
  10737. "phpstan/phpstan": "^1.8",
  10738. "phpstan/phpstan-mockery": "^1.1",
  10739. "phpstan/phpstan-webmozart-assert": "^1.2",
  10740. "phpunit/phpunit": "^9.5",
  10741. "psalm/phar": "^5.26"
  10742. },
  10743. "type": "library",
  10744. "extra": {
  10745. "branch-alias": {
  10746. "dev-master": "5.x-dev"
  10747. }
  10748. },
  10749. "autoload": {
  10750. "psr-4": {
  10751. "phpDocumentor\\Reflection\\": "src"
  10752. }
  10753. },
  10754. "notification-url": "https://packagist.org/downloads/",
  10755. "license": [
  10756. "MIT"
  10757. ],
  10758. "authors": [
  10759. {
  10760. "name": "Mike van Riel",
  10761. "email": "me@mikevanriel.com"
  10762. },
  10763. {
  10764. "name": "Jaap van Otterdijk",
  10765. "email": "opensource@ijaap.nl"
  10766. }
  10767. ],
  10768. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  10769. "support": {
  10770. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  10771. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.1"
  10772. },
  10773. "time": "2024-12-07T09:39:29+00:00"
  10774. },
  10775. {
  10776. "name": "phpdocumentor/type-resolver",
  10777. "version": "1.10.0",
  10778. "source": {
  10779. "type": "git",
  10780. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10781. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  10782. },
  10783. "dist": {
  10784. "type": "zip",
  10785. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10786. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10787. "shasum": ""
  10788. },
  10789. "require": {
  10790. "doctrine/deprecations": "^1.0",
  10791. "php": "^7.3 || ^8.0",
  10792. "phpdocumentor/reflection-common": "^2.0",
  10793. "phpstan/phpdoc-parser": "^1.18|^2.0"
  10794. },
  10795. "require-dev": {
  10796. "ext-tokenizer": "*",
  10797. "phpbench/phpbench": "^1.2",
  10798. "phpstan/extension-installer": "^1.1",
  10799. "phpstan/phpstan": "^1.8",
  10800. "phpstan/phpstan-phpunit": "^1.1",
  10801. "phpunit/phpunit": "^9.5",
  10802. "rector/rector": "^0.13.9",
  10803. "vimeo/psalm": "^4.25"
  10804. },
  10805. "type": "library",
  10806. "extra": {
  10807. "branch-alias": {
  10808. "dev-1.x": "1.x-dev"
  10809. }
  10810. },
  10811. "autoload": {
  10812. "psr-4": {
  10813. "phpDocumentor\\Reflection\\": "src"
  10814. }
  10815. },
  10816. "notification-url": "https://packagist.org/downloads/",
  10817. "license": [
  10818. "MIT"
  10819. ],
  10820. "authors": [
  10821. {
  10822. "name": "Mike van Riel",
  10823. "email": "me@mikevanriel.com"
  10824. }
  10825. ],
  10826. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  10827. "support": {
  10828. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  10829. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  10830. },
  10831. "time": "2024-11-09T15:12:26+00:00"
  10832. },
  10833. {
  10834. "name": "phpstan/phpdoc-parser",
  10835. "version": "2.0.0",
  10836. "source": {
  10837. "type": "git",
  10838. "url": "https://github.com/phpstan/phpdoc-parser.git",
  10839. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299"
  10840. },
  10841. "dist": {
  10842. "type": "zip",
  10843. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299",
  10844. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299",
  10845. "shasum": ""
  10846. },
  10847. "require": {
  10848. "php": "^7.4 || ^8.0"
  10849. },
  10850. "require-dev": {
  10851. "doctrine/annotations": "^2.0",
  10852. "nikic/php-parser": "^5.3.0",
  10853. "php-parallel-lint/php-parallel-lint": "^1.2",
  10854. "phpstan/extension-installer": "^1.0",
  10855. "phpstan/phpstan": "^2.0",
  10856. "phpstan/phpstan-phpunit": "^2.0",
  10857. "phpstan/phpstan-strict-rules": "^2.0",
  10858. "phpunit/phpunit": "^9.6",
  10859. "symfony/process": "^5.2"
  10860. },
  10861. "type": "library",
  10862. "autoload": {
  10863. "psr-4": {
  10864. "PHPStan\\PhpDocParser\\": [
  10865. "src/"
  10866. ]
  10867. }
  10868. },
  10869. "notification-url": "https://packagist.org/downloads/",
  10870. "license": [
  10871. "MIT"
  10872. ],
  10873. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  10874. "support": {
  10875. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  10876. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0"
  10877. },
  10878. "time": "2024-10-13T11:29:49+00:00"
  10879. },
  10880. {
  10881. "name": "phpunit/php-code-coverage",
  10882. "version": "11.0.8",
  10883. "source": {
  10884. "type": "git",
  10885. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10886. "reference": "418c59fd080954f8c4aa5631d9502ecda2387118"
  10887. },
  10888. "dist": {
  10889. "type": "zip",
  10890. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/418c59fd080954f8c4aa5631d9502ecda2387118",
  10891. "reference": "418c59fd080954f8c4aa5631d9502ecda2387118",
  10892. "shasum": ""
  10893. },
  10894. "require": {
  10895. "ext-dom": "*",
  10896. "ext-libxml": "*",
  10897. "ext-xmlwriter": "*",
  10898. "nikic/php-parser": "^5.3.1",
  10899. "php": ">=8.2",
  10900. "phpunit/php-file-iterator": "^5.1.0",
  10901. "phpunit/php-text-template": "^4.0.1",
  10902. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  10903. "sebastian/complexity": "^4.0.1",
  10904. "sebastian/environment": "^7.2.0",
  10905. "sebastian/lines-of-code": "^3.0.1",
  10906. "sebastian/version": "^5.0.2",
  10907. "theseer/tokenizer": "^1.2.3"
  10908. },
  10909. "require-dev": {
  10910. "phpunit/phpunit": "^11.5.0"
  10911. },
  10912. "suggest": {
  10913. "ext-pcov": "PHP extension that provides line coverage",
  10914. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10915. },
  10916. "type": "library",
  10917. "extra": {
  10918. "branch-alias": {
  10919. "dev-main": "11.0.x-dev"
  10920. }
  10921. },
  10922. "autoload": {
  10923. "classmap": [
  10924. "src/"
  10925. ]
  10926. },
  10927. "notification-url": "https://packagist.org/downloads/",
  10928. "license": [
  10929. "BSD-3-Clause"
  10930. ],
  10931. "authors": [
  10932. {
  10933. "name": "Sebastian Bergmann",
  10934. "email": "sebastian@phpunit.de",
  10935. "role": "lead"
  10936. }
  10937. ],
  10938. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10939. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10940. "keywords": [
  10941. "coverage",
  10942. "testing",
  10943. "xunit"
  10944. ],
  10945. "support": {
  10946. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10947. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  10948. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.8"
  10949. },
  10950. "funding": [
  10951. {
  10952. "url": "https://github.com/sebastianbergmann",
  10953. "type": "github"
  10954. }
  10955. ],
  10956. "time": "2024-12-11T12:34:27+00:00"
  10957. },
  10958. {
  10959. "name": "phpunit/php-file-iterator",
  10960. "version": "5.1.0",
  10961. "source": {
  10962. "type": "git",
  10963. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10964. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  10965. },
  10966. "dist": {
  10967. "type": "zip",
  10968. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  10969. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  10970. "shasum": ""
  10971. },
  10972. "require": {
  10973. "php": ">=8.2"
  10974. },
  10975. "require-dev": {
  10976. "phpunit/phpunit": "^11.0"
  10977. },
  10978. "type": "library",
  10979. "extra": {
  10980. "branch-alias": {
  10981. "dev-main": "5.0-dev"
  10982. }
  10983. },
  10984. "autoload": {
  10985. "classmap": [
  10986. "src/"
  10987. ]
  10988. },
  10989. "notification-url": "https://packagist.org/downloads/",
  10990. "license": [
  10991. "BSD-3-Clause"
  10992. ],
  10993. "authors": [
  10994. {
  10995. "name": "Sebastian Bergmann",
  10996. "email": "sebastian@phpunit.de",
  10997. "role": "lead"
  10998. }
  10999. ],
  11000. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11001. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11002. "keywords": [
  11003. "filesystem",
  11004. "iterator"
  11005. ],
  11006. "support": {
  11007. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11008. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  11009. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  11010. },
  11011. "funding": [
  11012. {
  11013. "url": "https://github.com/sebastianbergmann",
  11014. "type": "github"
  11015. }
  11016. ],
  11017. "time": "2024-08-27T05:02:59+00:00"
  11018. },
  11019. {
  11020. "name": "phpunit/php-invoker",
  11021. "version": "5.0.1",
  11022. "source": {
  11023. "type": "git",
  11024. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11025. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  11026. },
  11027. "dist": {
  11028. "type": "zip",
  11029. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11030. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11031. "shasum": ""
  11032. },
  11033. "require": {
  11034. "php": ">=8.2"
  11035. },
  11036. "require-dev": {
  11037. "ext-pcntl": "*",
  11038. "phpunit/phpunit": "^11.0"
  11039. },
  11040. "suggest": {
  11041. "ext-pcntl": "*"
  11042. },
  11043. "type": "library",
  11044. "extra": {
  11045. "branch-alias": {
  11046. "dev-main": "5.0-dev"
  11047. }
  11048. },
  11049. "autoload": {
  11050. "classmap": [
  11051. "src/"
  11052. ]
  11053. },
  11054. "notification-url": "https://packagist.org/downloads/",
  11055. "license": [
  11056. "BSD-3-Clause"
  11057. ],
  11058. "authors": [
  11059. {
  11060. "name": "Sebastian Bergmann",
  11061. "email": "sebastian@phpunit.de",
  11062. "role": "lead"
  11063. }
  11064. ],
  11065. "description": "Invoke callables with a timeout",
  11066. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11067. "keywords": [
  11068. "process"
  11069. ],
  11070. "support": {
  11071. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11072. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  11073. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  11074. },
  11075. "funding": [
  11076. {
  11077. "url": "https://github.com/sebastianbergmann",
  11078. "type": "github"
  11079. }
  11080. ],
  11081. "time": "2024-07-03T05:07:44+00:00"
  11082. },
  11083. {
  11084. "name": "phpunit/php-text-template",
  11085. "version": "4.0.1",
  11086. "source": {
  11087. "type": "git",
  11088. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11089. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  11090. },
  11091. "dist": {
  11092. "type": "zip",
  11093. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11094. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11095. "shasum": ""
  11096. },
  11097. "require": {
  11098. "php": ">=8.2"
  11099. },
  11100. "require-dev": {
  11101. "phpunit/phpunit": "^11.0"
  11102. },
  11103. "type": "library",
  11104. "extra": {
  11105. "branch-alias": {
  11106. "dev-main": "4.0-dev"
  11107. }
  11108. },
  11109. "autoload": {
  11110. "classmap": [
  11111. "src/"
  11112. ]
  11113. },
  11114. "notification-url": "https://packagist.org/downloads/",
  11115. "license": [
  11116. "BSD-3-Clause"
  11117. ],
  11118. "authors": [
  11119. {
  11120. "name": "Sebastian Bergmann",
  11121. "email": "sebastian@phpunit.de",
  11122. "role": "lead"
  11123. }
  11124. ],
  11125. "description": "Simple template engine.",
  11126. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11127. "keywords": [
  11128. "template"
  11129. ],
  11130. "support": {
  11131. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11132. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  11133. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  11134. },
  11135. "funding": [
  11136. {
  11137. "url": "https://github.com/sebastianbergmann",
  11138. "type": "github"
  11139. }
  11140. ],
  11141. "time": "2024-07-03T05:08:43+00:00"
  11142. },
  11143. {
  11144. "name": "phpunit/php-timer",
  11145. "version": "7.0.1",
  11146. "source": {
  11147. "type": "git",
  11148. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11149. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  11150. },
  11151. "dist": {
  11152. "type": "zip",
  11153. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11154. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11155. "shasum": ""
  11156. },
  11157. "require": {
  11158. "php": ">=8.2"
  11159. },
  11160. "require-dev": {
  11161. "phpunit/phpunit": "^11.0"
  11162. },
  11163. "type": "library",
  11164. "extra": {
  11165. "branch-alias": {
  11166. "dev-main": "7.0-dev"
  11167. }
  11168. },
  11169. "autoload": {
  11170. "classmap": [
  11171. "src/"
  11172. ]
  11173. },
  11174. "notification-url": "https://packagist.org/downloads/",
  11175. "license": [
  11176. "BSD-3-Clause"
  11177. ],
  11178. "authors": [
  11179. {
  11180. "name": "Sebastian Bergmann",
  11181. "email": "sebastian@phpunit.de",
  11182. "role": "lead"
  11183. }
  11184. ],
  11185. "description": "Utility class for timing",
  11186. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11187. "keywords": [
  11188. "timer"
  11189. ],
  11190. "support": {
  11191. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11192. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  11193. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  11194. },
  11195. "funding": [
  11196. {
  11197. "url": "https://github.com/sebastianbergmann",
  11198. "type": "github"
  11199. }
  11200. ],
  11201. "time": "2024-07-03T05:09:35+00:00"
  11202. },
  11203. {
  11204. "name": "phpunit/phpunit",
  11205. "version": "11.5.1",
  11206. "source": {
  11207. "type": "git",
  11208. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11209. "reference": "2b94d4f2450b9869fa64a46fd8a6a41997aef56a"
  11210. },
  11211. "dist": {
  11212. "type": "zip",
  11213. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/2b94d4f2450b9869fa64a46fd8a6a41997aef56a",
  11214. "reference": "2b94d4f2450b9869fa64a46fd8a6a41997aef56a",
  11215. "shasum": ""
  11216. },
  11217. "require": {
  11218. "ext-dom": "*",
  11219. "ext-json": "*",
  11220. "ext-libxml": "*",
  11221. "ext-mbstring": "*",
  11222. "ext-xml": "*",
  11223. "ext-xmlwriter": "*",
  11224. "myclabs/deep-copy": "^1.12.1",
  11225. "phar-io/manifest": "^2.0.4",
  11226. "phar-io/version": "^3.2.1",
  11227. "php": ">=8.2",
  11228. "phpunit/php-code-coverage": "^11.0.7",
  11229. "phpunit/php-file-iterator": "^5.1.0",
  11230. "phpunit/php-invoker": "^5.0.1",
  11231. "phpunit/php-text-template": "^4.0.1",
  11232. "phpunit/php-timer": "^7.0.1",
  11233. "sebastian/cli-parser": "^3.0.2",
  11234. "sebastian/code-unit": "^3.0.1",
  11235. "sebastian/comparator": "^6.2.1",
  11236. "sebastian/diff": "^6.0.2",
  11237. "sebastian/environment": "^7.2.0",
  11238. "sebastian/exporter": "^6.3.0",
  11239. "sebastian/global-state": "^7.0.2",
  11240. "sebastian/object-enumerator": "^6.0.1",
  11241. "sebastian/type": "^5.1.0",
  11242. "sebastian/version": "^5.0.2",
  11243. "staabm/side-effects-detector": "^1.0.5"
  11244. },
  11245. "suggest": {
  11246. "ext-soap": "To be able to generate mocks based on WSDL files"
  11247. },
  11248. "bin": [
  11249. "phpunit"
  11250. ],
  11251. "type": "library",
  11252. "extra": {
  11253. "branch-alias": {
  11254. "dev-main": "11.5-dev"
  11255. }
  11256. },
  11257. "autoload": {
  11258. "files": [
  11259. "src/Framework/Assert/Functions.php"
  11260. ],
  11261. "classmap": [
  11262. "src/"
  11263. ]
  11264. },
  11265. "notification-url": "https://packagist.org/downloads/",
  11266. "license": [
  11267. "BSD-3-Clause"
  11268. ],
  11269. "authors": [
  11270. {
  11271. "name": "Sebastian Bergmann",
  11272. "email": "sebastian@phpunit.de",
  11273. "role": "lead"
  11274. }
  11275. ],
  11276. "description": "The PHP Unit Testing framework.",
  11277. "homepage": "https://phpunit.de/",
  11278. "keywords": [
  11279. "phpunit",
  11280. "testing",
  11281. "xunit"
  11282. ],
  11283. "support": {
  11284. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11285. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11286. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.1"
  11287. },
  11288. "funding": [
  11289. {
  11290. "url": "https://phpunit.de/sponsors.html",
  11291. "type": "custom"
  11292. },
  11293. {
  11294. "url": "https://github.com/sebastianbergmann",
  11295. "type": "github"
  11296. },
  11297. {
  11298. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11299. "type": "tidelift"
  11300. }
  11301. ],
  11302. "time": "2024-12-11T10:52:48+00:00"
  11303. },
  11304. {
  11305. "name": "pimple/pimple",
  11306. "version": "v3.5.0",
  11307. "source": {
  11308. "type": "git",
  11309. "url": "https://github.com/silexphp/Pimple.git",
  11310. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  11311. },
  11312. "dist": {
  11313. "type": "zip",
  11314. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  11315. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  11316. "shasum": ""
  11317. },
  11318. "require": {
  11319. "php": ">=7.2.5",
  11320. "psr/container": "^1.1 || ^2.0"
  11321. },
  11322. "require-dev": {
  11323. "symfony/phpunit-bridge": "^5.4@dev"
  11324. },
  11325. "type": "library",
  11326. "extra": {
  11327. "branch-alias": {
  11328. "dev-master": "3.4.x-dev"
  11329. }
  11330. },
  11331. "autoload": {
  11332. "psr-0": {
  11333. "Pimple": "src/"
  11334. }
  11335. },
  11336. "notification-url": "https://packagist.org/downloads/",
  11337. "license": [
  11338. "MIT"
  11339. ],
  11340. "authors": [
  11341. {
  11342. "name": "Fabien Potencier",
  11343. "email": "fabien@symfony.com"
  11344. }
  11345. ],
  11346. "description": "Pimple, a simple Dependency Injection Container",
  11347. "homepage": "https://pimple.symfony.com",
  11348. "keywords": [
  11349. "container",
  11350. "dependency injection"
  11351. ],
  11352. "support": {
  11353. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  11354. },
  11355. "time": "2021-10-28T11:13:42+00:00"
  11356. },
  11357. {
  11358. "name": "sebastian/cli-parser",
  11359. "version": "3.0.2",
  11360. "source": {
  11361. "type": "git",
  11362. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11363. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  11364. },
  11365. "dist": {
  11366. "type": "zip",
  11367. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11368. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11369. "shasum": ""
  11370. },
  11371. "require": {
  11372. "php": ">=8.2"
  11373. },
  11374. "require-dev": {
  11375. "phpunit/phpunit": "^11.0"
  11376. },
  11377. "type": "library",
  11378. "extra": {
  11379. "branch-alias": {
  11380. "dev-main": "3.0-dev"
  11381. }
  11382. },
  11383. "autoload": {
  11384. "classmap": [
  11385. "src/"
  11386. ]
  11387. },
  11388. "notification-url": "https://packagist.org/downloads/",
  11389. "license": [
  11390. "BSD-3-Clause"
  11391. ],
  11392. "authors": [
  11393. {
  11394. "name": "Sebastian Bergmann",
  11395. "email": "sebastian@phpunit.de",
  11396. "role": "lead"
  11397. }
  11398. ],
  11399. "description": "Library for parsing CLI options",
  11400. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11401. "support": {
  11402. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11403. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11404. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  11405. },
  11406. "funding": [
  11407. {
  11408. "url": "https://github.com/sebastianbergmann",
  11409. "type": "github"
  11410. }
  11411. ],
  11412. "time": "2024-07-03T04:41:36+00:00"
  11413. },
  11414. {
  11415. "name": "sebastian/code-unit",
  11416. "version": "3.0.2",
  11417. "source": {
  11418. "type": "git",
  11419. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11420. "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca"
  11421. },
  11422. "dist": {
  11423. "type": "zip",
  11424. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca",
  11425. "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca",
  11426. "shasum": ""
  11427. },
  11428. "require": {
  11429. "php": ">=8.2"
  11430. },
  11431. "require-dev": {
  11432. "phpunit/phpunit": "^11.5"
  11433. },
  11434. "type": "library",
  11435. "extra": {
  11436. "branch-alias": {
  11437. "dev-main": "3.0-dev"
  11438. }
  11439. },
  11440. "autoload": {
  11441. "classmap": [
  11442. "src/"
  11443. ]
  11444. },
  11445. "notification-url": "https://packagist.org/downloads/",
  11446. "license": [
  11447. "BSD-3-Clause"
  11448. ],
  11449. "authors": [
  11450. {
  11451. "name": "Sebastian Bergmann",
  11452. "email": "sebastian@phpunit.de",
  11453. "role": "lead"
  11454. }
  11455. ],
  11456. "description": "Collection of value objects that represent the PHP code units",
  11457. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11458. "support": {
  11459. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11460. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  11461. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.2"
  11462. },
  11463. "funding": [
  11464. {
  11465. "url": "https://github.com/sebastianbergmann",
  11466. "type": "github"
  11467. }
  11468. ],
  11469. "time": "2024-12-12T09:59:06+00:00"
  11470. },
  11471. {
  11472. "name": "sebastian/code-unit-reverse-lookup",
  11473. "version": "4.0.1",
  11474. "source": {
  11475. "type": "git",
  11476. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11477. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  11478. },
  11479. "dist": {
  11480. "type": "zip",
  11481. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  11482. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  11483. "shasum": ""
  11484. },
  11485. "require": {
  11486. "php": ">=8.2"
  11487. },
  11488. "require-dev": {
  11489. "phpunit/phpunit": "^11.0"
  11490. },
  11491. "type": "library",
  11492. "extra": {
  11493. "branch-alias": {
  11494. "dev-main": "4.0-dev"
  11495. }
  11496. },
  11497. "autoload": {
  11498. "classmap": [
  11499. "src/"
  11500. ]
  11501. },
  11502. "notification-url": "https://packagist.org/downloads/",
  11503. "license": [
  11504. "BSD-3-Clause"
  11505. ],
  11506. "authors": [
  11507. {
  11508. "name": "Sebastian Bergmann",
  11509. "email": "sebastian@phpunit.de"
  11510. }
  11511. ],
  11512. "description": "Looks up which function or method a line of code belongs to",
  11513. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11514. "support": {
  11515. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11516. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  11517. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  11518. },
  11519. "funding": [
  11520. {
  11521. "url": "https://github.com/sebastianbergmann",
  11522. "type": "github"
  11523. }
  11524. ],
  11525. "time": "2024-07-03T04:45:54+00:00"
  11526. },
  11527. {
  11528. "name": "sebastian/comparator",
  11529. "version": "6.3.0",
  11530. "source": {
  11531. "type": "git",
  11532. "url": "https://github.com/sebastianbergmann/comparator.git",
  11533. "reference": "d4e47a769525c4dd38cea90e5dcd435ddbbc7115"
  11534. },
  11535. "dist": {
  11536. "type": "zip",
  11537. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/d4e47a769525c4dd38cea90e5dcd435ddbbc7115",
  11538. "reference": "d4e47a769525c4dd38cea90e5dcd435ddbbc7115",
  11539. "shasum": ""
  11540. },
  11541. "require": {
  11542. "ext-dom": "*",
  11543. "ext-mbstring": "*",
  11544. "php": ">=8.2",
  11545. "sebastian/diff": "^6.0",
  11546. "sebastian/exporter": "^6.0"
  11547. },
  11548. "require-dev": {
  11549. "phpunit/phpunit": "^11.4"
  11550. },
  11551. "suggest": {
  11552. "ext-bcmath": "For comparing BcMath\\Number objects"
  11553. },
  11554. "type": "library",
  11555. "extra": {
  11556. "branch-alias": {
  11557. "dev-main": "6.2-dev"
  11558. }
  11559. },
  11560. "autoload": {
  11561. "classmap": [
  11562. "src/"
  11563. ]
  11564. },
  11565. "notification-url": "https://packagist.org/downloads/",
  11566. "license": [
  11567. "BSD-3-Clause"
  11568. ],
  11569. "authors": [
  11570. {
  11571. "name": "Sebastian Bergmann",
  11572. "email": "sebastian@phpunit.de"
  11573. },
  11574. {
  11575. "name": "Jeff Welch",
  11576. "email": "whatthejeff@gmail.com"
  11577. },
  11578. {
  11579. "name": "Volker Dusch",
  11580. "email": "github@wallbash.com"
  11581. },
  11582. {
  11583. "name": "Bernhard Schussek",
  11584. "email": "bschussek@2bepublished.at"
  11585. }
  11586. ],
  11587. "description": "Provides the functionality to compare PHP values for equality",
  11588. "homepage": "https://github.com/sebastianbergmann/comparator",
  11589. "keywords": [
  11590. "comparator",
  11591. "compare",
  11592. "equality"
  11593. ],
  11594. "support": {
  11595. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11596. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11597. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.0"
  11598. },
  11599. "funding": [
  11600. {
  11601. "url": "https://github.com/sebastianbergmann",
  11602. "type": "github"
  11603. }
  11604. ],
  11605. "time": "2025-01-06T10:28:19+00:00"
  11606. },
  11607. {
  11608. "name": "sebastian/complexity",
  11609. "version": "4.0.1",
  11610. "source": {
  11611. "type": "git",
  11612. "url": "https://github.com/sebastianbergmann/complexity.git",
  11613. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  11614. },
  11615. "dist": {
  11616. "type": "zip",
  11617. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  11618. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  11619. "shasum": ""
  11620. },
  11621. "require": {
  11622. "nikic/php-parser": "^5.0",
  11623. "php": ">=8.2"
  11624. },
  11625. "require-dev": {
  11626. "phpunit/phpunit": "^11.0"
  11627. },
  11628. "type": "library",
  11629. "extra": {
  11630. "branch-alias": {
  11631. "dev-main": "4.0-dev"
  11632. }
  11633. },
  11634. "autoload": {
  11635. "classmap": [
  11636. "src/"
  11637. ]
  11638. },
  11639. "notification-url": "https://packagist.org/downloads/",
  11640. "license": [
  11641. "BSD-3-Clause"
  11642. ],
  11643. "authors": [
  11644. {
  11645. "name": "Sebastian Bergmann",
  11646. "email": "sebastian@phpunit.de",
  11647. "role": "lead"
  11648. }
  11649. ],
  11650. "description": "Library for calculating the complexity of PHP code units",
  11651. "homepage": "https://github.com/sebastianbergmann/complexity",
  11652. "support": {
  11653. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11654. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11655. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  11656. },
  11657. "funding": [
  11658. {
  11659. "url": "https://github.com/sebastianbergmann",
  11660. "type": "github"
  11661. }
  11662. ],
  11663. "time": "2024-07-03T04:49:50+00:00"
  11664. },
  11665. {
  11666. "name": "sebastian/diff",
  11667. "version": "6.0.2",
  11668. "source": {
  11669. "type": "git",
  11670. "url": "https://github.com/sebastianbergmann/diff.git",
  11671. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  11672. },
  11673. "dist": {
  11674. "type": "zip",
  11675. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  11676. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  11677. "shasum": ""
  11678. },
  11679. "require": {
  11680. "php": ">=8.2"
  11681. },
  11682. "require-dev": {
  11683. "phpunit/phpunit": "^11.0",
  11684. "symfony/process": "^4.2 || ^5"
  11685. },
  11686. "type": "library",
  11687. "extra": {
  11688. "branch-alias": {
  11689. "dev-main": "6.0-dev"
  11690. }
  11691. },
  11692. "autoload": {
  11693. "classmap": [
  11694. "src/"
  11695. ]
  11696. },
  11697. "notification-url": "https://packagist.org/downloads/",
  11698. "license": [
  11699. "BSD-3-Clause"
  11700. ],
  11701. "authors": [
  11702. {
  11703. "name": "Sebastian Bergmann",
  11704. "email": "sebastian@phpunit.de"
  11705. },
  11706. {
  11707. "name": "Kore Nordmann",
  11708. "email": "mail@kore-nordmann.de"
  11709. }
  11710. ],
  11711. "description": "Diff implementation",
  11712. "homepage": "https://github.com/sebastianbergmann/diff",
  11713. "keywords": [
  11714. "diff",
  11715. "udiff",
  11716. "unidiff",
  11717. "unified diff"
  11718. ],
  11719. "support": {
  11720. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11721. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11722. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  11723. },
  11724. "funding": [
  11725. {
  11726. "url": "https://github.com/sebastianbergmann",
  11727. "type": "github"
  11728. }
  11729. ],
  11730. "time": "2024-07-03T04:53:05+00:00"
  11731. },
  11732. {
  11733. "name": "sebastian/environment",
  11734. "version": "7.2.0",
  11735. "source": {
  11736. "type": "git",
  11737. "url": "https://github.com/sebastianbergmann/environment.git",
  11738. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  11739. },
  11740. "dist": {
  11741. "type": "zip",
  11742. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11743. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11744. "shasum": ""
  11745. },
  11746. "require": {
  11747. "php": ">=8.2"
  11748. },
  11749. "require-dev": {
  11750. "phpunit/phpunit": "^11.0"
  11751. },
  11752. "suggest": {
  11753. "ext-posix": "*"
  11754. },
  11755. "type": "library",
  11756. "extra": {
  11757. "branch-alias": {
  11758. "dev-main": "7.2-dev"
  11759. }
  11760. },
  11761. "autoload": {
  11762. "classmap": [
  11763. "src/"
  11764. ]
  11765. },
  11766. "notification-url": "https://packagist.org/downloads/",
  11767. "license": [
  11768. "BSD-3-Clause"
  11769. ],
  11770. "authors": [
  11771. {
  11772. "name": "Sebastian Bergmann",
  11773. "email": "sebastian@phpunit.de"
  11774. }
  11775. ],
  11776. "description": "Provides functionality to handle HHVM/PHP environments",
  11777. "homepage": "https://github.com/sebastianbergmann/environment",
  11778. "keywords": [
  11779. "Xdebug",
  11780. "environment",
  11781. "hhvm"
  11782. ],
  11783. "support": {
  11784. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11785. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11786. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  11787. },
  11788. "funding": [
  11789. {
  11790. "url": "https://github.com/sebastianbergmann",
  11791. "type": "github"
  11792. }
  11793. ],
  11794. "time": "2024-07-03T04:54:44+00:00"
  11795. },
  11796. {
  11797. "name": "sebastian/exporter",
  11798. "version": "6.3.0",
  11799. "source": {
  11800. "type": "git",
  11801. "url": "https://github.com/sebastianbergmann/exporter.git",
  11802. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  11803. },
  11804. "dist": {
  11805. "type": "zip",
  11806. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11807. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11808. "shasum": ""
  11809. },
  11810. "require": {
  11811. "ext-mbstring": "*",
  11812. "php": ">=8.2",
  11813. "sebastian/recursion-context": "^6.0"
  11814. },
  11815. "require-dev": {
  11816. "phpunit/phpunit": "^11.3"
  11817. },
  11818. "type": "library",
  11819. "extra": {
  11820. "branch-alias": {
  11821. "dev-main": "6.1-dev"
  11822. }
  11823. },
  11824. "autoload": {
  11825. "classmap": [
  11826. "src/"
  11827. ]
  11828. },
  11829. "notification-url": "https://packagist.org/downloads/",
  11830. "license": [
  11831. "BSD-3-Clause"
  11832. ],
  11833. "authors": [
  11834. {
  11835. "name": "Sebastian Bergmann",
  11836. "email": "sebastian@phpunit.de"
  11837. },
  11838. {
  11839. "name": "Jeff Welch",
  11840. "email": "whatthejeff@gmail.com"
  11841. },
  11842. {
  11843. "name": "Volker Dusch",
  11844. "email": "github@wallbash.com"
  11845. },
  11846. {
  11847. "name": "Adam Harvey",
  11848. "email": "aharvey@php.net"
  11849. },
  11850. {
  11851. "name": "Bernhard Schussek",
  11852. "email": "bschussek@gmail.com"
  11853. }
  11854. ],
  11855. "description": "Provides the functionality to export PHP variables for visualization",
  11856. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11857. "keywords": [
  11858. "export",
  11859. "exporter"
  11860. ],
  11861. "support": {
  11862. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11863. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  11864. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  11865. },
  11866. "funding": [
  11867. {
  11868. "url": "https://github.com/sebastianbergmann",
  11869. "type": "github"
  11870. }
  11871. ],
  11872. "time": "2024-12-05T09:17:50+00:00"
  11873. },
  11874. {
  11875. "name": "sebastian/global-state",
  11876. "version": "7.0.2",
  11877. "source": {
  11878. "type": "git",
  11879. "url": "https://github.com/sebastianbergmann/global-state.git",
  11880. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  11881. },
  11882. "dist": {
  11883. "type": "zip",
  11884. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  11885. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  11886. "shasum": ""
  11887. },
  11888. "require": {
  11889. "php": ">=8.2",
  11890. "sebastian/object-reflector": "^4.0",
  11891. "sebastian/recursion-context": "^6.0"
  11892. },
  11893. "require-dev": {
  11894. "ext-dom": "*",
  11895. "phpunit/phpunit": "^11.0"
  11896. },
  11897. "type": "library",
  11898. "extra": {
  11899. "branch-alias": {
  11900. "dev-main": "7.0-dev"
  11901. }
  11902. },
  11903. "autoload": {
  11904. "classmap": [
  11905. "src/"
  11906. ]
  11907. },
  11908. "notification-url": "https://packagist.org/downloads/",
  11909. "license": [
  11910. "BSD-3-Clause"
  11911. ],
  11912. "authors": [
  11913. {
  11914. "name": "Sebastian Bergmann",
  11915. "email": "sebastian@phpunit.de"
  11916. }
  11917. ],
  11918. "description": "Snapshotting of global state",
  11919. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  11920. "keywords": [
  11921. "global state"
  11922. ],
  11923. "support": {
  11924. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11925. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  11926. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  11927. },
  11928. "funding": [
  11929. {
  11930. "url": "https://github.com/sebastianbergmann",
  11931. "type": "github"
  11932. }
  11933. ],
  11934. "time": "2024-07-03T04:57:36+00:00"
  11935. },
  11936. {
  11937. "name": "sebastian/lines-of-code",
  11938. "version": "3.0.1",
  11939. "source": {
  11940. "type": "git",
  11941. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11942. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  11943. },
  11944. "dist": {
  11945. "type": "zip",
  11946. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11947. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11948. "shasum": ""
  11949. },
  11950. "require": {
  11951. "nikic/php-parser": "^5.0",
  11952. "php": ">=8.2"
  11953. },
  11954. "require-dev": {
  11955. "phpunit/phpunit": "^11.0"
  11956. },
  11957. "type": "library",
  11958. "extra": {
  11959. "branch-alias": {
  11960. "dev-main": "3.0-dev"
  11961. }
  11962. },
  11963. "autoload": {
  11964. "classmap": [
  11965. "src/"
  11966. ]
  11967. },
  11968. "notification-url": "https://packagist.org/downloads/",
  11969. "license": [
  11970. "BSD-3-Clause"
  11971. ],
  11972. "authors": [
  11973. {
  11974. "name": "Sebastian Bergmann",
  11975. "email": "sebastian@phpunit.de",
  11976. "role": "lead"
  11977. }
  11978. ],
  11979. "description": "Library for counting the lines of code in PHP source code",
  11980. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11981. "support": {
  11982. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11983. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11984. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  11985. },
  11986. "funding": [
  11987. {
  11988. "url": "https://github.com/sebastianbergmann",
  11989. "type": "github"
  11990. }
  11991. ],
  11992. "time": "2024-07-03T04:58:38+00:00"
  11993. },
  11994. {
  11995. "name": "sebastian/object-enumerator",
  11996. "version": "6.0.1",
  11997. "source": {
  11998. "type": "git",
  11999. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12000. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  12001. },
  12002. "dist": {
  12003. "type": "zip",
  12004. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  12005. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  12006. "shasum": ""
  12007. },
  12008. "require": {
  12009. "php": ">=8.2",
  12010. "sebastian/object-reflector": "^4.0",
  12011. "sebastian/recursion-context": "^6.0"
  12012. },
  12013. "require-dev": {
  12014. "phpunit/phpunit": "^11.0"
  12015. },
  12016. "type": "library",
  12017. "extra": {
  12018. "branch-alias": {
  12019. "dev-main": "6.0-dev"
  12020. }
  12021. },
  12022. "autoload": {
  12023. "classmap": [
  12024. "src/"
  12025. ]
  12026. },
  12027. "notification-url": "https://packagist.org/downloads/",
  12028. "license": [
  12029. "BSD-3-Clause"
  12030. ],
  12031. "authors": [
  12032. {
  12033. "name": "Sebastian Bergmann",
  12034. "email": "sebastian@phpunit.de"
  12035. }
  12036. ],
  12037. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12038. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12039. "support": {
  12040. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12041. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  12042. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  12043. },
  12044. "funding": [
  12045. {
  12046. "url": "https://github.com/sebastianbergmann",
  12047. "type": "github"
  12048. }
  12049. ],
  12050. "time": "2024-07-03T05:00:13+00:00"
  12051. },
  12052. {
  12053. "name": "sebastian/object-reflector",
  12054. "version": "4.0.1",
  12055. "source": {
  12056. "type": "git",
  12057. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12058. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  12059. },
  12060. "dist": {
  12061. "type": "zip",
  12062. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12063. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12064. "shasum": ""
  12065. },
  12066. "require": {
  12067. "php": ">=8.2"
  12068. },
  12069. "require-dev": {
  12070. "phpunit/phpunit": "^11.0"
  12071. },
  12072. "type": "library",
  12073. "extra": {
  12074. "branch-alias": {
  12075. "dev-main": "4.0-dev"
  12076. }
  12077. },
  12078. "autoload": {
  12079. "classmap": [
  12080. "src/"
  12081. ]
  12082. },
  12083. "notification-url": "https://packagist.org/downloads/",
  12084. "license": [
  12085. "BSD-3-Clause"
  12086. ],
  12087. "authors": [
  12088. {
  12089. "name": "Sebastian Bergmann",
  12090. "email": "sebastian@phpunit.de"
  12091. }
  12092. ],
  12093. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12094. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12095. "support": {
  12096. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12097. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  12098. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  12099. },
  12100. "funding": [
  12101. {
  12102. "url": "https://github.com/sebastianbergmann",
  12103. "type": "github"
  12104. }
  12105. ],
  12106. "time": "2024-07-03T05:01:32+00:00"
  12107. },
  12108. {
  12109. "name": "sebastian/recursion-context",
  12110. "version": "6.0.2",
  12111. "source": {
  12112. "type": "git",
  12113. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12114. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  12115. },
  12116. "dist": {
  12117. "type": "zip",
  12118. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  12119. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  12120. "shasum": ""
  12121. },
  12122. "require": {
  12123. "php": ">=8.2"
  12124. },
  12125. "require-dev": {
  12126. "phpunit/phpunit": "^11.0"
  12127. },
  12128. "type": "library",
  12129. "extra": {
  12130. "branch-alias": {
  12131. "dev-main": "6.0-dev"
  12132. }
  12133. },
  12134. "autoload": {
  12135. "classmap": [
  12136. "src/"
  12137. ]
  12138. },
  12139. "notification-url": "https://packagist.org/downloads/",
  12140. "license": [
  12141. "BSD-3-Clause"
  12142. ],
  12143. "authors": [
  12144. {
  12145. "name": "Sebastian Bergmann",
  12146. "email": "sebastian@phpunit.de"
  12147. },
  12148. {
  12149. "name": "Jeff Welch",
  12150. "email": "whatthejeff@gmail.com"
  12151. },
  12152. {
  12153. "name": "Adam Harvey",
  12154. "email": "aharvey@php.net"
  12155. }
  12156. ],
  12157. "description": "Provides functionality to recursively process PHP variables",
  12158. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12159. "support": {
  12160. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12161. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  12162. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  12163. },
  12164. "funding": [
  12165. {
  12166. "url": "https://github.com/sebastianbergmann",
  12167. "type": "github"
  12168. }
  12169. ],
  12170. "time": "2024-07-03T05:10:34+00:00"
  12171. },
  12172. {
  12173. "name": "sebastian/type",
  12174. "version": "5.1.0",
  12175. "source": {
  12176. "type": "git",
  12177. "url": "https://github.com/sebastianbergmann/type.git",
  12178. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  12179. },
  12180. "dist": {
  12181. "type": "zip",
  12182. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12183. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12184. "shasum": ""
  12185. },
  12186. "require": {
  12187. "php": ">=8.2"
  12188. },
  12189. "require-dev": {
  12190. "phpunit/phpunit": "^11.3"
  12191. },
  12192. "type": "library",
  12193. "extra": {
  12194. "branch-alias": {
  12195. "dev-main": "5.1-dev"
  12196. }
  12197. },
  12198. "autoload": {
  12199. "classmap": [
  12200. "src/"
  12201. ]
  12202. },
  12203. "notification-url": "https://packagist.org/downloads/",
  12204. "license": [
  12205. "BSD-3-Clause"
  12206. ],
  12207. "authors": [
  12208. {
  12209. "name": "Sebastian Bergmann",
  12210. "email": "sebastian@phpunit.de",
  12211. "role": "lead"
  12212. }
  12213. ],
  12214. "description": "Collection of value objects that represent the types of the PHP type system",
  12215. "homepage": "https://github.com/sebastianbergmann/type",
  12216. "support": {
  12217. "issues": "https://github.com/sebastianbergmann/type/issues",
  12218. "security": "https://github.com/sebastianbergmann/type/security/policy",
  12219. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  12220. },
  12221. "funding": [
  12222. {
  12223. "url": "https://github.com/sebastianbergmann",
  12224. "type": "github"
  12225. }
  12226. ],
  12227. "time": "2024-09-17T13:12:04+00:00"
  12228. },
  12229. {
  12230. "name": "sebastian/version",
  12231. "version": "5.0.2",
  12232. "source": {
  12233. "type": "git",
  12234. "url": "https://github.com/sebastianbergmann/version.git",
  12235. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  12236. },
  12237. "dist": {
  12238. "type": "zip",
  12239. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12240. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12241. "shasum": ""
  12242. },
  12243. "require": {
  12244. "php": ">=8.2"
  12245. },
  12246. "type": "library",
  12247. "extra": {
  12248. "branch-alias": {
  12249. "dev-main": "5.0-dev"
  12250. }
  12251. },
  12252. "autoload": {
  12253. "classmap": [
  12254. "src/"
  12255. ]
  12256. },
  12257. "notification-url": "https://packagist.org/downloads/",
  12258. "license": [
  12259. "BSD-3-Clause"
  12260. ],
  12261. "authors": [
  12262. {
  12263. "name": "Sebastian Bergmann",
  12264. "email": "sebastian@phpunit.de",
  12265. "role": "lead"
  12266. }
  12267. ],
  12268. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12269. "homepage": "https://github.com/sebastianbergmann/version",
  12270. "support": {
  12271. "issues": "https://github.com/sebastianbergmann/version/issues",
  12272. "security": "https://github.com/sebastianbergmann/version/security/policy",
  12273. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  12274. },
  12275. "funding": [
  12276. {
  12277. "url": "https://github.com/sebastianbergmann",
  12278. "type": "github"
  12279. }
  12280. ],
  12281. "time": "2024-10-09T05:16:32+00:00"
  12282. },
  12283. {
  12284. "name": "spatie/backtrace",
  12285. "version": "1.7.1",
  12286. "source": {
  12287. "type": "git",
  12288. "url": "https://github.com/spatie/backtrace.git",
  12289. "reference": "0f2477c520e3729de58e061b8192f161c99f770b"
  12290. },
  12291. "dist": {
  12292. "type": "zip",
  12293. "url": "https://api.github.com/repos/spatie/backtrace/zipball/0f2477c520e3729de58e061b8192f161c99f770b",
  12294. "reference": "0f2477c520e3729de58e061b8192f161c99f770b",
  12295. "shasum": ""
  12296. },
  12297. "require": {
  12298. "php": "^7.3 || ^8.0"
  12299. },
  12300. "require-dev": {
  12301. "ext-json": "*",
  12302. "laravel/serializable-closure": "^1.3 || ^2.0",
  12303. "phpunit/phpunit": "^9.3 || ^11.4.3",
  12304. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6",
  12305. "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0"
  12306. },
  12307. "type": "library",
  12308. "autoload": {
  12309. "psr-4": {
  12310. "Spatie\\Backtrace\\": "src"
  12311. }
  12312. },
  12313. "notification-url": "https://packagist.org/downloads/",
  12314. "license": [
  12315. "MIT"
  12316. ],
  12317. "authors": [
  12318. {
  12319. "name": "Freek Van de Herten",
  12320. "email": "freek@spatie.be",
  12321. "homepage": "https://spatie.be",
  12322. "role": "Developer"
  12323. }
  12324. ],
  12325. "description": "A better backtrace",
  12326. "homepage": "https://github.com/spatie/backtrace",
  12327. "keywords": [
  12328. "Backtrace",
  12329. "spatie"
  12330. ],
  12331. "support": {
  12332. "source": "https://github.com/spatie/backtrace/tree/1.7.1"
  12333. },
  12334. "funding": [
  12335. {
  12336. "url": "https://github.com/sponsors/spatie",
  12337. "type": "github"
  12338. },
  12339. {
  12340. "url": "https://spatie.be/open-source/support-us",
  12341. "type": "other"
  12342. }
  12343. ],
  12344. "time": "2024-12-02T13:28:15+00:00"
  12345. },
  12346. {
  12347. "name": "spatie/error-solutions",
  12348. "version": "1.1.2",
  12349. "source": {
  12350. "type": "git",
  12351. "url": "https://github.com/spatie/error-solutions.git",
  12352. "reference": "d239a65235a1eb128dfa0a4e4c4ef032ea11b541"
  12353. },
  12354. "dist": {
  12355. "type": "zip",
  12356. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/d239a65235a1eb128dfa0a4e4c4ef032ea11b541",
  12357. "reference": "d239a65235a1eb128dfa0a4e4c4ef032ea11b541",
  12358. "shasum": ""
  12359. },
  12360. "require": {
  12361. "php": "^8.0"
  12362. },
  12363. "require-dev": {
  12364. "illuminate/broadcasting": "^10.0|^11.0",
  12365. "illuminate/cache": "^10.0|^11.0",
  12366. "illuminate/support": "^10.0|^11.0",
  12367. "livewire/livewire": "^2.11|^3.3.5",
  12368. "openai-php/client": "^0.10.1",
  12369. "orchestra/testbench": "^7.0|8.22.3|^9.0",
  12370. "pestphp/pest": "^2.20",
  12371. "phpstan/phpstan": "^1.11",
  12372. "psr/simple-cache": "^3.0",
  12373. "psr/simple-cache-implementation": "^3.0",
  12374. "spatie/ray": "^1.28",
  12375. "symfony/cache": "^5.4|^6.0|^7.0",
  12376. "symfony/process": "^5.4|^6.0|^7.0",
  12377. "vlucas/phpdotenv": "^5.5"
  12378. },
  12379. "suggest": {
  12380. "openai-php/client": "Require get solutions from OpenAI",
  12381. "simple-cache-implementation": "To cache solutions from OpenAI"
  12382. },
  12383. "type": "library",
  12384. "autoload": {
  12385. "psr-4": {
  12386. "Spatie\\Ignition\\": "legacy/ignition",
  12387. "Spatie\\ErrorSolutions\\": "src",
  12388. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  12389. }
  12390. },
  12391. "notification-url": "https://packagist.org/downloads/",
  12392. "license": [
  12393. "MIT"
  12394. ],
  12395. "authors": [
  12396. {
  12397. "name": "Ruben Van Assche",
  12398. "email": "ruben@spatie.be",
  12399. "role": "Developer"
  12400. }
  12401. ],
  12402. "description": "This is my package error-solutions",
  12403. "homepage": "https://github.com/spatie/error-solutions",
  12404. "keywords": [
  12405. "error-solutions",
  12406. "spatie"
  12407. ],
  12408. "support": {
  12409. "issues": "https://github.com/spatie/error-solutions/issues",
  12410. "source": "https://github.com/spatie/error-solutions/tree/1.1.2"
  12411. },
  12412. "funding": [
  12413. {
  12414. "url": "https://github.com/Spatie",
  12415. "type": "github"
  12416. }
  12417. ],
  12418. "time": "2024-12-11T09:51:56+00:00"
  12419. },
  12420. {
  12421. "name": "spatie/flare-client-php",
  12422. "version": "1.10.0",
  12423. "source": {
  12424. "type": "git",
  12425. "url": "https://github.com/spatie/flare-client-php.git",
  12426. "reference": "140a42b2c5d59ac4ecf8f5b493386a4f2eb28272"
  12427. },
  12428. "dist": {
  12429. "type": "zip",
  12430. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/140a42b2c5d59ac4ecf8f5b493386a4f2eb28272",
  12431. "reference": "140a42b2c5d59ac4ecf8f5b493386a4f2eb28272",
  12432. "shasum": ""
  12433. },
  12434. "require": {
  12435. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  12436. "php": "^8.0",
  12437. "spatie/backtrace": "^1.6.1",
  12438. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  12439. "symfony/mime": "^5.2|^6.0|^7.0",
  12440. "symfony/process": "^5.2|^6.0|^7.0",
  12441. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  12442. },
  12443. "require-dev": {
  12444. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  12445. "pestphp/pest": "^1.20|^2.0",
  12446. "phpstan/extension-installer": "^1.1",
  12447. "phpstan/phpstan-deprecation-rules": "^1.0",
  12448. "phpstan/phpstan-phpunit": "^1.0",
  12449. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  12450. },
  12451. "type": "library",
  12452. "extra": {
  12453. "branch-alias": {
  12454. "dev-main": "1.3.x-dev"
  12455. }
  12456. },
  12457. "autoload": {
  12458. "files": [
  12459. "src/helpers.php"
  12460. ],
  12461. "psr-4": {
  12462. "Spatie\\FlareClient\\": "src"
  12463. }
  12464. },
  12465. "notification-url": "https://packagist.org/downloads/",
  12466. "license": [
  12467. "MIT"
  12468. ],
  12469. "description": "Send PHP errors to Flare",
  12470. "homepage": "https://github.com/spatie/flare-client-php",
  12471. "keywords": [
  12472. "exception",
  12473. "flare",
  12474. "reporting",
  12475. "spatie"
  12476. ],
  12477. "support": {
  12478. "issues": "https://github.com/spatie/flare-client-php/issues",
  12479. "source": "https://github.com/spatie/flare-client-php/tree/1.10.0"
  12480. },
  12481. "funding": [
  12482. {
  12483. "url": "https://github.com/spatie",
  12484. "type": "github"
  12485. }
  12486. ],
  12487. "time": "2024-12-02T14:30:06+00:00"
  12488. },
  12489. {
  12490. "name": "spatie/ignition",
  12491. "version": "1.15.0",
  12492. "source": {
  12493. "type": "git",
  12494. "url": "https://github.com/spatie/ignition.git",
  12495. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2"
  12496. },
  12497. "dist": {
  12498. "type": "zip",
  12499. "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  12500. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  12501. "shasum": ""
  12502. },
  12503. "require": {
  12504. "ext-json": "*",
  12505. "ext-mbstring": "*",
  12506. "php": "^8.0",
  12507. "spatie/error-solutions": "^1.0",
  12508. "spatie/flare-client-php": "^1.7",
  12509. "symfony/console": "^5.4|^6.0|^7.0",
  12510. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  12511. },
  12512. "require-dev": {
  12513. "illuminate/cache": "^9.52|^10.0|^11.0",
  12514. "mockery/mockery": "^1.4",
  12515. "pestphp/pest": "^1.20|^2.0",
  12516. "phpstan/extension-installer": "^1.1",
  12517. "phpstan/phpstan-deprecation-rules": "^1.0",
  12518. "phpstan/phpstan-phpunit": "^1.0",
  12519. "psr/simple-cache-implementation": "*",
  12520. "symfony/cache": "^5.4|^6.0|^7.0",
  12521. "symfony/process": "^5.4|^6.0|^7.0",
  12522. "vlucas/phpdotenv": "^5.5"
  12523. },
  12524. "suggest": {
  12525. "openai-php/client": "Require get solutions from OpenAI",
  12526. "simple-cache-implementation": "To cache solutions from OpenAI"
  12527. },
  12528. "type": "library",
  12529. "extra": {
  12530. "branch-alias": {
  12531. "dev-main": "1.5.x-dev"
  12532. }
  12533. },
  12534. "autoload": {
  12535. "psr-4": {
  12536. "Spatie\\Ignition\\": "src"
  12537. }
  12538. },
  12539. "notification-url": "https://packagist.org/downloads/",
  12540. "license": [
  12541. "MIT"
  12542. ],
  12543. "authors": [
  12544. {
  12545. "name": "Spatie",
  12546. "email": "info@spatie.be",
  12547. "role": "Developer"
  12548. }
  12549. ],
  12550. "description": "A beautiful error page for PHP applications.",
  12551. "homepage": "https://flareapp.io/ignition",
  12552. "keywords": [
  12553. "error",
  12554. "flare",
  12555. "laravel",
  12556. "page"
  12557. ],
  12558. "support": {
  12559. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12560. "forum": "https://twitter.com/flareappio",
  12561. "issues": "https://github.com/spatie/ignition/issues",
  12562. "source": "https://github.com/spatie/ignition"
  12563. },
  12564. "funding": [
  12565. {
  12566. "url": "https://github.com/spatie",
  12567. "type": "github"
  12568. }
  12569. ],
  12570. "time": "2024-06-12T14:55:22+00:00"
  12571. },
  12572. {
  12573. "name": "spatie/laravel-ignition",
  12574. "version": "2.9.0",
  12575. "source": {
  12576. "type": "git",
  12577. "url": "https://github.com/spatie/laravel-ignition.git",
  12578. "reference": "62042df15314b829d0f26e02108f559018e2aad0"
  12579. },
  12580. "dist": {
  12581. "type": "zip",
  12582. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/62042df15314b829d0f26e02108f559018e2aad0",
  12583. "reference": "62042df15314b829d0f26e02108f559018e2aad0",
  12584. "shasum": ""
  12585. },
  12586. "require": {
  12587. "ext-curl": "*",
  12588. "ext-json": "*",
  12589. "ext-mbstring": "*",
  12590. "illuminate/support": "^10.0|^11.0",
  12591. "php": "^8.1",
  12592. "spatie/ignition": "^1.15",
  12593. "symfony/console": "^6.2.3|^7.0",
  12594. "symfony/var-dumper": "^6.2.3|^7.0"
  12595. },
  12596. "require-dev": {
  12597. "livewire/livewire": "^2.11|^3.3.5",
  12598. "mockery/mockery": "^1.5.1",
  12599. "openai-php/client": "^0.8.1",
  12600. "orchestra/testbench": "8.22.3|^9.0",
  12601. "pestphp/pest": "^2.34",
  12602. "phpstan/extension-installer": "^1.3.1",
  12603. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  12604. "phpstan/phpstan-phpunit": "^1.3.16",
  12605. "vlucas/phpdotenv": "^5.5"
  12606. },
  12607. "suggest": {
  12608. "openai-php/client": "Require get solutions from OpenAI",
  12609. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  12610. },
  12611. "type": "library",
  12612. "extra": {
  12613. "laravel": {
  12614. "aliases": {
  12615. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  12616. },
  12617. "providers": [
  12618. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  12619. ]
  12620. }
  12621. },
  12622. "autoload": {
  12623. "files": [
  12624. "src/helpers.php"
  12625. ],
  12626. "psr-4": {
  12627. "Spatie\\LaravelIgnition\\": "src"
  12628. }
  12629. },
  12630. "notification-url": "https://packagist.org/downloads/",
  12631. "license": [
  12632. "MIT"
  12633. ],
  12634. "authors": [
  12635. {
  12636. "name": "Spatie",
  12637. "email": "info@spatie.be",
  12638. "role": "Developer"
  12639. }
  12640. ],
  12641. "description": "A beautiful error page for Laravel applications.",
  12642. "homepage": "https://flareapp.io/ignition",
  12643. "keywords": [
  12644. "error",
  12645. "flare",
  12646. "laravel",
  12647. "page"
  12648. ],
  12649. "support": {
  12650. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12651. "forum": "https://twitter.com/flareappio",
  12652. "issues": "https://github.com/spatie/laravel-ignition/issues",
  12653. "source": "https://github.com/spatie/laravel-ignition"
  12654. },
  12655. "funding": [
  12656. {
  12657. "url": "https://github.com/spatie",
  12658. "type": "github"
  12659. }
  12660. ],
  12661. "time": "2024-12-02T08:43:31+00:00"
  12662. },
  12663. {
  12664. "name": "spatie/laravel-ray",
  12665. "version": "1.39.0",
  12666. "source": {
  12667. "type": "git",
  12668. "url": "https://github.com/spatie/laravel-ray.git",
  12669. "reference": "31b601f98590606d20e76b5dd68578dc1642cd2c"
  12670. },
  12671. "dist": {
  12672. "type": "zip",
  12673. "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/31b601f98590606d20e76b5dd68578dc1642cd2c",
  12674. "reference": "31b601f98590606d20e76b5dd68578dc1642cd2c",
  12675. "shasum": ""
  12676. },
  12677. "require": {
  12678. "composer-runtime-api": "^2.2",
  12679. "ext-json": "*",
  12680. "illuminate/contracts": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12681. "illuminate/database": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12682. "illuminate/queue": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12683. "illuminate/support": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12684. "php": "^7.4 || ^8.0",
  12685. "spatie/backtrace": "^1.0",
  12686. "spatie/ray": "^1.41.3",
  12687. "symfony/stopwatch": "4.2 || ^5.1 || ^6.0 || ^7.0",
  12688. "zbateson/mail-mime-parser": "^1.3.1 || ^2.0 || ^3.0"
  12689. },
  12690. "require-dev": {
  12691. "guzzlehttp/guzzle": "^7.3",
  12692. "laravel/framework": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12693. "orchestra/testbench-core": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  12694. "pestphp/pest": "^1.22 || ^2.0",
  12695. "phpstan/phpstan": "^1.10.57 || ^2.0.2",
  12696. "phpunit/phpunit": "^9.3 || ^10.1",
  12697. "rector/rector": "dev-main",
  12698. "spatie/pest-plugin-snapshots": "^1.1 || ^2.0",
  12699. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12700. },
  12701. "type": "library",
  12702. "extra": {
  12703. "laravel": {
  12704. "providers": [
  12705. "Spatie\\LaravelRay\\RayServiceProvider"
  12706. ]
  12707. },
  12708. "branch-alias": {
  12709. "dev-main": "1.x-dev"
  12710. }
  12711. },
  12712. "autoload": {
  12713. "psr-4": {
  12714. "Spatie\\LaravelRay\\": "src"
  12715. }
  12716. },
  12717. "notification-url": "https://packagist.org/downloads/",
  12718. "license": [
  12719. "MIT"
  12720. ],
  12721. "authors": [
  12722. {
  12723. "name": "Freek Van der Herten",
  12724. "email": "freek@spatie.be",
  12725. "homepage": "https://spatie.be",
  12726. "role": "Developer"
  12727. }
  12728. ],
  12729. "description": "Easily debug Laravel apps",
  12730. "homepage": "https://github.com/spatie/laravel-ray",
  12731. "keywords": [
  12732. "laravel-ray",
  12733. "spatie"
  12734. ],
  12735. "support": {
  12736. "issues": "https://github.com/spatie/laravel-ray/issues",
  12737. "source": "https://github.com/spatie/laravel-ray/tree/1.39.0"
  12738. },
  12739. "funding": [
  12740. {
  12741. "url": "https://github.com/sponsors/spatie",
  12742. "type": "github"
  12743. },
  12744. {
  12745. "url": "https://spatie.be/open-source/support-us",
  12746. "type": "other"
  12747. }
  12748. ],
  12749. "time": "2024-12-11T09:34:41+00:00"
  12750. },
  12751. {
  12752. "name": "spatie/macroable",
  12753. "version": "2.0.0",
  12754. "source": {
  12755. "type": "git",
  12756. "url": "https://github.com/spatie/macroable.git",
  12757. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072"
  12758. },
  12759. "dist": {
  12760. "type": "zip",
  12761. "url": "https://api.github.com/repos/spatie/macroable/zipball/ec2c320f932e730607aff8052c44183cf3ecb072",
  12762. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072",
  12763. "shasum": ""
  12764. },
  12765. "require": {
  12766. "php": "^8.0"
  12767. },
  12768. "require-dev": {
  12769. "phpunit/phpunit": "^8.0|^9.3"
  12770. },
  12771. "type": "library",
  12772. "autoload": {
  12773. "psr-4": {
  12774. "Spatie\\Macroable\\": "src"
  12775. }
  12776. },
  12777. "notification-url": "https://packagist.org/downloads/",
  12778. "license": [
  12779. "MIT"
  12780. ],
  12781. "authors": [
  12782. {
  12783. "name": "Freek Van der Herten",
  12784. "email": "freek@spatie.be",
  12785. "homepage": "https://spatie.be",
  12786. "role": "Developer"
  12787. }
  12788. ],
  12789. "description": "A trait to dynamically add methods to a class",
  12790. "homepage": "https://github.com/spatie/macroable",
  12791. "keywords": [
  12792. "macroable",
  12793. "spatie"
  12794. ],
  12795. "support": {
  12796. "issues": "https://github.com/spatie/macroable/issues",
  12797. "source": "https://github.com/spatie/macroable/tree/2.0.0"
  12798. },
  12799. "time": "2021-03-26T22:39:02+00:00"
  12800. },
  12801. {
  12802. "name": "spatie/ray",
  12803. "version": "1.41.4",
  12804. "source": {
  12805. "type": "git",
  12806. "url": "https://github.com/spatie/ray.git",
  12807. "reference": "c5dbda0548c1881b30549ccc0b6d485f7471aaa5"
  12808. },
  12809. "dist": {
  12810. "type": "zip",
  12811. "url": "https://api.github.com/repos/spatie/ray/zipball/c5dbda0548c1881b30549ccc0b6d485f7471aaa5",
  12812. "reference": "c5dbda0548c1881b30549ccc0b6d485f7471aaa5",
  12813. "shasum": ""
  12814. },
  12815. "require": {
  12816. "ext-curl": "*",
  12817. "ext-json": "*",
  12818. "php": "^7.4 || ^8.0",
  12819. "ramsey/uuid": "^3.0 || ^4.1",
  12820. "spatie/backtrace": "^1.1",
  12821. "spatie/macroable": "^1.0 || ^2.0",
  12822. "symfony/stopwatch": "^4.2 || ^5.1 || ^6.0 || ^7.0",
  12823. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12824. },
  12825. "require-dev": {
  12826. "illuminate/support": "^7.20 || ^8.18 || ^9.0 || ^10.0 || ^11.0",
  12827. "nesbot/carbon": "^2.63",
  12828. "pestphp/pest": "^1.22",
  12829. "phpstan/phpstan": "^1.10.57 || ^2.0.2",
  12830. "phpunit/phpunit": "^9.5",
  12831. "rector/rector": "dev-main",
  12832. "spatie/phpunit-snapshot-assertions": "^4.2",
  12833. "spatie/test-time": "^1.2"
  12834. },
  12835. "bin": [
  12836. "bin/remove-ray.sh"
  12837. ],
  12838. "type": "library",
  12839. "extra": {
  12840. "branch-alias": {
  12841. "dev-main": "1.x-dev"
  12842. }
  12843. },
  12844. "autoload": {
  12845. "files": [
  12846. "src/helpers.php"
  12847. ],
  12848. "psr-4": {
  12849. "Spatie\\Ray\\": "src"
  12850. }
  12851. },
  12852. "notification-url": "https://packagist.org/downloads/",
  12853. "license": [
  12854. "MIT"
  12855. ],
  12856. "authors": [
  12857. {
  12858. "name": "Freek Van der Herten",
  12859. "email": "freek@spatie.be",
  12860. "homepage": "https://spatie.be",
  12861. "role": "Developer"
  12862. }
  12863. ],
  12864. "description": "Debug with Ray to fix problems faster",
  12865. "homepage": "https://github.com/spatie/ray",
  12866. "keywords": [
  12867. "ray",
  12868. "spatie"
  12869. ],
  12870. "support": {
  12871. "issues": "https://github.com/spatie/ray/issues",
  12872. "source": "https://github.com/spatie/ray/tree/1.41.4"
  12873. },
  12874. "funding": [
  12875. {
  12876. "url": "https://github.com/sponsors/spatie",
  12877. "type": "github"
  12878. },
  12879. {
  12880. "url": "https://spatie.be/open-source/support-us",
  12881. "type": "other"
  12882. }
  12883. ],
  12884. "time": "2024-12-09T11:32:15+00:00"
  12885. },
  12886. {
  12887. "name": "staabm/side-effects-detector",
  12888. "version": "1.0.5",
  12889. "source": {
  12890. "type": "git",
  12891. "url": "https://github.com/staabm/side-effects-detector.git",
  12892. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  12893. },
  12894. "dist": {
  12895. "type": "zip",
  12896. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  12897. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  12898. "shasum": ""
  12899. },
  12900. "require": {
  12901. "ext-tokenizer": "*",
  12902. "php": "^7.4 || ^8.0"
  12903. },
  12904. "require-dev": {
  12905. "phpstan/extension-installer": "^1.4.3",
  12906. "phpstan/phpstan": "^1.12.6",
  12907. "phpunit/phpunit": "^9.6.21",
  12908. "symfony/var-dumper": "^5.4.43",
  12909. "tomasvotruba/type-coverage": "1.0.0",
  12910. "tomasvotruba/unused-public": "1.0.0"
  12911. },
  12912. "type": "library",
  12913. "autoload": {
  12914. "classmap": [
  12915. "lib/"
  12916. ]
  12917. },
  12918. "notification-url": "https://packagist.org/downloads/",
  12919. "license": [
  12920. "MIT"
  12921. ],
  12922. "description": "A static analysis tool to detect side effects in PHP code",
  12923. "keywords": [
  12924. "static analysis"
  12925. ],
  12926. "support": {
  12927. "issues": "https://github.com/staabm/side-effects-detector/issues",
  12928. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  12929. },
  12930. "funding": [
  12931. {
  12932. "url": "https://github.com/staabm",
  12933. "type": "github"
  12934. }
  12935. ],
  12936. "time": "2024-10-20T05:08:20+00:00"
  12937. },
  12938. {
  12939. "name": "symfony/polyfill-iconv",
  12940. "version": "v1.31.0",
  12941. "source": {
  12942. "type": "git",
  12943. "url": "https://github.com/symfony/polyfill-iconv.git",
  12944. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  12945. },
  12946. "dist": {
  12947. "type": "zip",
  12948. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  12949. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  12950. "shasum": ""
  12951. },
  12952. "require": {
  12953. "php": ">=7.2"
  12954. },
  12955. "provide": {
  12956. "ext-iconv": "*"
  12957. },
  12958. "suggest": {
  12959. "ext-iconv": "For best performance"
  12960. },
  12961. "type": "library",
  12962. "extra": {
  12963. "thanks": {
  12964. "url": "https://github.com/symfony/polyfill",
  12965. "name": "symfony/polyfill"
  12966. }
  12967. },
  12968. "autoload": {
  12969. "files": [
  12970. "bootstrap.php"
  12971. ],
  12972. "psr-4": {
  12973. "Symfony\\Polyfill\\Iconv\\": ""
  12974. }
  12975. },
  12976. "notification-url": "https://packagist.org/downloads/",
  12977. "license": [
  12978. "MIT"
  12979. ],
  12980. "authors": [
  12981. {
  12982. "name": "Nicolas Grekas",
  12983. "email": "p@tchwork.com"
  12984. },
  12985. {
  12986. "name": "Symfony Community",
  12987. "homepage": "https://symfony.com/contributors"
  12988. }
  12989. ],
  12990. "description": "Symfony polyfill for the Iconv extension",
  12991. "homepage": "https://symfony.com",
  12992. "keywords": [
  12993. "compatibility",
  12994. "iconv",
  12995. "polyfill",
  12996. "portable",
  12997. "shim"
  12998. ],
  12999. "support": {
  13000. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  13001. },
  13002. "funding": [
  13003. {
  13004. "url": "https://symfony.com/sponsor",
  13005. "type": "custom"
  13006. },
  13007. {
  13008. "url": "https://github.com/fabpot",
  13009. "type": "github"
  13010. },
  13011. {
  13012. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13013. "type": "tidelift"
  13014. }
  13015. ],
  13016. "time": "2024-09-09T11:45:10+00:00"
  13017. },
  13018. {
  13019. "name": "symfony/stopwatch",
  13020. "version": "v7.2.2",
  13021. "source": {
  13022. "type": "git",
  13023. "url": "https://github.com/symfony/stopwatch.git",
  13024. "reference": "e46690d5b9d7164a6d061cab1e8d46141b9f49df"
  13025. },
  13026. "dist": {
  13027. "type": "zip",
  13028. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/e46690d5b9d7164a6d061cab1e8d46141b9f49df",
  13029. "reference": "e46690d5b9d7164a6d061cab1e8d46141b9f49df",
  13030. "shasum": ""
  13031. },
  13032. "require": {
  13033. "php": ">=8.2",
  13034. "symfony/service-contracts": "^2.5|^3"
  13035. },
  13036. "type": "library",
  13037. "autoload": {
  13038. "psr-4": {
  13039. "Symfony\\Component\\Stopwatch\\": ""
  13040. },
  13041. "exclude-from-classmap": [
  13042. "/Tests/"
  13043. ]
  13044. },
  13045. "notification-url": "https://packagist.org/downloads/",
  13046. "license": [
  13047. "MIT"
  13048. ],
  13049. "authors": [
  13050. {
  13051. "name": "Fabien Potencier",
  13052. "email": "fabien@symfony.com"
  13053. },
  13054. {
  13055. "name": "Symfony Community",
  13056. "homepage": "https://symfony.com/contributors"
  13057. }
  13058. ],
  13059. "description": "Provides a way to profile code",
  13060. "homepage": "https://symfony.com",
  13061. "support": {
  13062. "source": "https://github.com/symfony/stopwatch/tree/v7.2.2"
  13063. },
  13064. "funding": [
  13065. {
  13066. "url": "https://symfony.com/sponsor",
  13067. "type": "custom"
  13068. },
  13069. {
  13070. "url": "https://github.com/fabpot",
  13071. "type": "github"
  13072. },
  13073. {
  13074. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13075. "type": "tidelift"
  13076. }
  13077. ],
  13078. "time": "2024-12-18T14:28:33+00:00"
  13079. },
  13080. {
  13081. "name": "symfony/yaml",
  13082. "version": "v7.2.0",
  13083. "source": {
  13084. "type": "git",
  13085. "url": "https://github.com/symfony/yaml.git",
  13086. "reference": "099581e99f557e9f16b43c5916c26380b54abb22"
  13087. },
  13088. "dist": {
  13089. "type": "zip",
  13090. "url": "https://api.github.com/repos/symfony/yaml/zipball/099581e99f557e9f16b43c5916c26380b54abb22",
  13091. "reference": "099581e99f557e9f16b43c5916c26380b54abb22",
  13092. "shasum": ""
  13093. },
  13094. "require": {
  13095. "php": ">=8.2",
  13096. "symfony/deprecation-contracts": "^2.5|^3.0",
  13097. "symfony/polyfill-ctype": "^1.8"
  13098. },
  13099. "conflict": {
  13100. "symfony/console": "<6.4"
  13101. },
  13102. "require-dev": {
  13103. "symfony/console": "^6.4|^7.0"
  13104. },
  13105. "bin": [
  13106. "Resources/bin/yaml-lint"
  13107. ],
  13108. "type": "library",
  13109. "autoload": {
  13110. "psr-4": {
  13111. "Symfony\\Component\\Yaml\\": ""
  13112. },
  13113. "exclude-from-classmap": [
  13114. "/Tests/"
  13115. ]
  13116. },
  13117. "notification-url": "https://packagist.org/downloads/",
  13118. "license": [
  13119. "MIT"
  13120. ],
  13121. "authors": [
  13122. {
  13123. "name": "Fabien Potencier",
  13124. "email": "fabien@symfony.com"
  13125. },
  13126. {
  13127. "name": "Symfony Community",
  13128. "homepage": "https://symfony.com/contributors"
  13129. }
  13130. ],
  13131. "description": "Loads and dumps YAML files",
  13132. "homepage": "https://symfony.com",
  13133. "support": {
  13134. "source": "https://github.com/symfony/yaml/tree/v7.2.0"
  13135. },
  13136. "funding": [
  13137. {
  13138. "url": "https://symfony.com/sponsor",
  13139. "type": "custom"
  13140. },
  13141. {
  13142. "url": "https://github.com/fabpot",
  13143. "type": "github"
  13144. },
  13145. {
  13146. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13147. "type": "tidelift"
  13148. }
  13149. ],
  13150. "time": "2024-10-23T06:56:12+00:00"
  13151. },
  13152. {
  13153. "name": "ta-tikoma/phpunit-architecture-test",
  13154. "version": "0.8.4",
  13155. "source": {
  13156. "type": "git",
  13157. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  13158. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636"
  13159. },
  13160. "dist": {
  13161. "type": "zip",
  13162. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13163. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13164. "shasum": ""
  13165. },
  13166. "require": {
  13167. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  13168. "php": "^8.1.0",
  13169. "phpdocumentor/reflection-docblock": "^5.3.0",
  13170. "phpunit/phpunit": "^10.5.5 || ^11.0.0",
  13171. "symfony/finder": "^6.4.0 || ^7.0.0"
  13172. },
  13173. "require-dev": {
  13174. "laravel/pint": "^1.13.7",
  13175. "phpstan/phpstan": "^1.10.52"
  13176. },
  13177. "type": "library",
  13178. "autoload": {
  13179. "psr-4": {
  13180. "PHPUnit\\Architecture\\": "src/"
  13181. }
  13182. },
  13183. "notification-url": "https://packagist.org/downloads/",
  13184. "license": [
  13185. "MIT"
  13186. ],
  13187. "authors": [
  13188. {
  13189. "name": "Ni Shi",
  13190. "email": "futik0ma011@gmail.com"
  13191. },
  13192. {
  13193. "name": "Nuno Maduro",
  13194. "email": "enunomaduro@gmail.com"
  13195. }
  13196. ],
  13197. "description": "Methods for testing application architecture",
  13198. "keywords": [
  13199. "architecture",
  13200. "phpunit",
  13201. "stucture",
  13202. "test",
  13203. "testing"
  13204. ],
  13205. "support": {
  13206. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  13207. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.4"
  13208. },
  13209. "time": "2024-01-05T14:10:56+00:00"
  13210. },
  13211. {
  13212. "name": "theseer/tokenizer",
  13213. "version": "1.2.3",
  13214. "source": {
  13215. "type": "git",
  13216. "url": "https://github.com/theseer/tokenizer.git",
  13217. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13218. },
  13219. "dist": {
  13220. "type": "zip",
  13221. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13222. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13223. "shasum": ""
  13224. },
  13225. "require": {
  13226. "ext-dom": "*",
  13227. "ext-tokenizer": "*",
  13228. "ext-xmlwriter": "*",
  13229. "php": "^7.2 || ^8.0"
  13230. },
  13231. "type": "library",
  13232. "autoload": {
  13233. "classmap": [
  13234. "src/"
  13235. ]
  13236. },
  13237. "notification-url": "https://packagist.org/downloads/",
  13238. "license": [
  13239. "BSD-3-Clause"
  13240. ],
  13241. "authors": [
  13242. {
  13243. "name": "Arne Blankerts",
  13244. "email": "arne@blankerts.de",
  13245. "role": "Developer"
  13246. }
  13247. ],
  13248. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13249. "support": {
  13250. "issues": "https://github.com/theseer/tokenizer/issues",
  13251. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13252. },
  13253. "funding": [
  13254. {
  13255. "url": "https://github.com/theseer",
  13256. "type": "github"
  13257. }
  13258. ],
  13259. "time": "2024-03-03T12:36:25+00:00"
  13260. },
  13261. {
  13262. "name": "zbateson/mail-mime-parser",
  13263. "version": "2.4.1",
  13264. "source": {
  13265. "type": "git",
  13266. "url": "https://github.com/zbateson/mail-mime-parser.git",
  13267. "reference": "ff49e02f6489b38f7cc3d1bd3971adc0f872569c"
  13268. },
  13269. "dist": {
  13270. "type": "zip",
  13271. "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/ff49e02f6489b38f7cc3d1bd3971adc0f872569c",
  13272. "reference": "ff49e02f6489b38f7cc3d1bd3971adc0f872569c",
  13273. "shasum": ""
  13274. },
  13275. "require": {
  13276. "guzzlehttp/psr7": "^1.7.0|^2.0",
  13277. "php": ">=7.1",
  13278. "pimple/pimple": "^3.0",
  13279. "zbateson/mb-wrapper": "^1.0.1",
  13280. "zbateson/stream-decorators": "^1.0.6"
  13281. },
  13282. "require-dev": {
  13283. "friendsofphp/php-cs-fixer": "*",
  13284. "mikey179/vfsstream": "^1.6.0",
  13285. "phpstan/phpstan": "*",
  13286. "phpunit/phpunit": "<10"
  13287. },
  13288. "suggest": {
  13289. "ext-iconv": "For best support/performance",
  13290. "ext-mbstring": "For best support/performance"
  13291. },
  13292. "type": "library",
  13293. "autoload": {
  13294. "psr-4": {
  13295. "ZBateson\\MailMimeParser\\": "src/"
  13296. }
  13297. },
  13298. "notification-url": "https://packagist.org/downloads/",
  13299. "license": [
  13300. "BSD-2-Clause"
  13301. ],
  13302. "authors": [
  13303. {
  13304. "name": "Zaahid Bateson"
  13305. },
  13306. {
  13307. "name": "Contributors",
  13308. "homepage": "https://github.com/zbateson/mail-mime-parser/graphs/contributors"
  13309. }
  13310. ],
  13311. "description": "MIME email message parser",
  13312. "homepage": "https://mail-mime-parser.org",
  13313. "keywords": [
  13314. "MimeMailParser",
  13315. "email",
  13316. "mail",
  13317. "mailparse",
  13318. "mime",
  13319. "mimeparse",
  13320. "parser",
  13321. "php-imap"
  13322. ],
  13323. "support": {
  13324. "docs": "https://mail-mime-parser.org/#usage-guide",
  13325. "issues": "https://github.com/zbateson/mail-mime-parser/issues",
  13326. "source": "https://github.com/zbateson/mail-mime-parser"
  13327. },
  13328. "funding": [
  13329. {
  13330. "url": "https://github.com/zbateson",
  13331. "type": "github"
  13332. }
  13333. ],
  13334. "time": "2024-04-28T00:58:54+00:00"
  13335. },
  13336. {
  13337. "name": "zbateson/mb-wrapper",
  13338. "version": "1.2.1",
  13339. "source": {
  13340. "type": "git",
  13341. "url": "https://github.com/zbateson/mb-wrapper.git",
  13342. "reference": "09a8b77eb94af3823a9a6623dcc94f8d988da67f"
  13343. },
  13344. "dist": {
  13345. "type": "zip",
  13346. "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/09a8b77eb94af3823a9a6623dcc94f8d988da67f",
  13347. "reference": "09a8b77eb94af3823a9a6623dcc94f8d988da67f",
  13348. "shasum": ""
  13349. },
  13350. "require": {
  13351. "php": ">=7.1",
  13352. "symfony/polyfill-iconv": "^1.9",
  13353. "symfony/polyfill-mbstring": "^1.9"
  13354. },
  13355. "require-dev": {
  13356. "friendsofphp/php-cs-fixer": "*",
  13357. "phpstan/phpstan": "*",
  13358. "phpunit/phpunit": "<10.0"
  13359. },
  13360. "suggest": {
  13361. "ext-iconv": "For best support/performance",
  13362. "ext-mbstring": "For best support/performance"
  13363. },
  13364. "type": "library",
  13365. "autoload": {
  13366. "psr-4": {
  13367. "ZBateson\\MbWrapper\\": "src/"
  13368. }
  13369. },
  13370. "notification-url": "https://packagist.org/downloads/",
  13371. "license": [
  13372. "BSD-2-Clause"
  13373. ],
  13374. "authors": [
  13375. {
  13376. "name": "Zaahid Bateson"
  13377. }
  13378. ],
  13379. "description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
  13380. "keywords": [
  13381. "charset",
  13382. "encoding",
  13383. "http",
  13384. "iconv",
  13385. "mail",
  13386. "mb",
  13387. "mb_convert_encoding",
  13388. "mbstring",
  13389. "mime",
  13390. "multibyte",
  13391. "string"
  13392. ],
  13393. "support": {
  13394. "issues": "https://github.com/zbateson/mb-wrapper/issues",
  13395. "source": "https://github.com/zbateson/mb-wrapper/tree/1.2.1"
  13396. },
  13397. "funding": [
  13398. {
  13399. "url": "https://github.com/zbateson",
  13400. "type": "github"
  13401. }
  13402. ],
  13403. "time": "2024-03-18T04:31:04+00:00"
  13404. },
  13405. {
  13406. "name": "zbateson/stream-decorators",
  13407. "version": "1.2.1",
  13408. "source": {
  13409. "type": "git",
  13410. "url": "https://github.com/zbateson/stream-decorators.git",
  13411. "reference": "783b034024fda8eafa19675fb2552f8654d3a3e9"
  13412. },
  13413. "dist": {
  13414. "type": "zip",
  13415. "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/783b034024fda8eafa19675fb2552f8654d3a3e9",
  13416. "reference": "783b034024fda8eafa19675fb2552f8654d3a3e9",
  13417. "shasum": ""
  13418. },
  13419. "require": {
  13420. "guzzlehttp/psr7": "^1.9 | ^2.0",
  13421. "php": ">=7.2",
  13422. "zbateson/mb-wrapper": "^1.0.0"
  13423. },
  13424. "require-dev": {
  13425. "friendsofphp/php-cs-fixer": "*",
  13426. "phpstan/phpstan": "*",
  13427. "phpunit/phpunit": "<10.0"
  13428. },
  13429. "type": "library",
  13430. "autoload": {
  13431. "psr-4": {
  13432. "ZBateson\\StreamDecorators\\": "src/"
  13433. }
  13434. },
  13435. "notification-url": "https://packagist.org/downloads/",
  13436. "license": [
  13437. "BSD-2-Clause"
  13438. ],
  13439. "authors": [
  13440. {
  13441. "name": "Zaahid Bateson"
  13442. }
  13443. ],
  13444. "description": "PHP psr7 stream decorators for mime message part streams",
  13445. "keywords": [
  13446. "base64",
  13447. "charset",
  13448. "decorators",
  13449. "mail",
  13450. "mime",
  13451. "psr7",
  13452. "quoted-printable",
  13453. "stream",
  13454. "uuencode"
  13455. ],
  13456. "support": {
  13457. "issues": "https://github.com/zbateson/stream-decorators/issues",
  13458. "source": "https://github.com/zbateson/stream-decorators/tree/1.2.1"
  13459. },
  13460. "funding": [
  13461. {
  13462. "url": "https://github.com/zbateson",
  13463. "type": "github"
  13464. }
  13465. ],
  13466. "time": "2023-05-30T22:51:52+00:00"
  13467. }
  13468. ],
  13469. "aliases": [],
  13470. "minimum-stability": "stable",
  13471. "stability-flags": {},
  13472. "prefer-stable": true,
  13473. "prefer-lowest": false,
  13474. "platform": {
  13475. "php": "^8.2",
  13476. "ext-bcmath": "*",
  13477. "ext-intl": "*"
  13478. },
  13479. "platform-dev": {},
  13480. "plugin-api-version": "2.6.0"
  13481. }