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

composer.lock 481KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337
  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": "a04479d57fe01a2694ad92a8901363ea",
  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.336.0",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "5a62003bf183e32da038056a4b9077c27224e034"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/5a62003bf183e32da038056a4b9077c27224e034",
  509. "reference": "5a62003bf183e32da038056a4b9077c27224e034",
  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.336.0"
  593. },
  594. "time": "2024-12-18T19:04:32+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": "danharrin/date-format-converter",
  1032. "version": "v0.3.1",
  1033. "source": {
  1034. "type": "git",
  1035. "url": "https://github.com/danharrin/date-format-converter.git",
  1036. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e"
  1037. },
  1038. "dist": {
  1039. "type": "zip",
  1040. "url": "https://api.github.com/repos/danharrin/date-format-converter/zipball/7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1041. "reference": "7c31171bc981e48726729a5f3a05a2d2b63f0b1e",
  1042. "shasum": ""
  1043. },
  1044. "require": {
  1045. "php": "^7.2|^8.0"
  1046. },
  1047. "type": "library",
  1048. "autoload": {
  1049. "files": [
  1050. "src/helpers.php",
  1051. "src/standards.php"
  1052. ],
  1053. "psr-4": {
  1054. "DanHarrin\\DateFormatConverter\\": "src/"
  1055. }
  1056. },
  1057. "notification-url": "https://packagist.org/downloads/",
  1058. "license": [
  1059. "MIT"
  1060. ],
  1061. "authors": [
  1062. {
  1063. "name": "Dan Harrin",
  1064. "email": "dan@danharrin.com"
  1065. }
  1066. ],
  1067. "description": "Convert token-based date formats between standards.",
  1068. "homepage": "https://github.com/danharrin/date-format-converter",
  1069. "support": {
  1070. "issues": "https://github.com/danharrin/date-format-converter/issues",
  1071. "source": "https://github.com/danharrin/date-format-converter"
  1072. },
  1073. "funding": [
  1074. {
  1075. "url": "https://github.com/danharrin",
  1076. "type": "github"
  1077. }
  1078. ],
  1079. "time": "2024-06-13T09:38:44+00:00"
  1080. },
  1081. {
  1082. "name": "danharrin/livewire-rate-limiting",
  1083. "version": "v1.3.1",
  1084. "source": {
  1085. "type": "git",
  1086. "url": "https://github.com/danharrin/livewire-rate-limiting.git",
  1087. "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb"
  1088. },
  1089. "dist": {
  1090. "type": "zip",
  1091. "url": "https://api.github.com/repos/danharrin/livewire-rate-limiting/zipball/1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb",
  1092. "reference": "1a1b299e20de61f88ed6e94ea0bbcfc33aab1ddb",
  1093. "shasum": ""
  1094. },
  1095. "require": {
  1096. "illuminate/support": "^9.0|^10.0|^11.0",
  1097. "php": "^8.0"
  1098. },
  1099. "require-dev": {
  1100. "livewire/livewire": "^3.0",
  1101. "livewire/volt": "^1.3",
  1102. "orchestra/testbench": "^7.0|^8.0|^9.0",
  1103. "phpunit/phpunit": "^9.0|^10.0"
  1104. },
  1105. "type": "library",
  1106. "autoload": {
  1107. "psr-4": {
  1108. "DanHarrin\\LivewireRateLimiting\\": "src"
  1109. }
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "MIT"
  1114. ],
  1115. "authors": [
  1116. {
  1117. "name": "Dan Harrin",
  1118. "email": "dan@danharrin.com"
  1119. }
  1120. ],
  1121. "description": "Apply rate limiters to Laravel Livewire actions.",
  1122. "homepage": "https://github.com/danharrin/livewire-rate-limiting",
  1123. "support": {
  1124. "issues": "https://github.com/danharrin/livewire-rate-limiting/issues",
  1125. "source": "https://github.com/danharrin/livewire-rate-limiting"
  1126. },
  1127. "funding": [
  1128. {
  1129. "url": "https://github.com/danharrin",
  1130. "type": "github"
  1131. }
  1132. ],
  1133. "time": "2024-05-06T09:10:03+00:00"
  1134. },
  1135. {
  1136. "name": "dflydev/dot-access-data",
  1137. "version": "v3.0.3",
  1138. "source": {
  1139. "type": "git",
  1140. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  1141. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  1142. },
  1143. "dist": {
  1144. "type": "zip",
  1145. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1146. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  1147. "shasum": ""
  1148. },
  1149. "require": {
  1150. "php": "^7.1 || ^8.0"
  1151. },
  1152. "require-dev": {
  1153. "phpstan/phpstan": "^0.12.42",
  1154. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  1155. "scrutinizer/ocular": "1.6.0",
  1156. "squizlabs/php_codesniffer": "^3.5",
  1157. "vimeo/psalm": "^4.0.0"
  1158. },
  1159. "type": "library",
  1160. "extra": {
  1161. "branch-alias": {
  1162. "dev-main": "3.x-dev"
  1163. }
  1164. },
  1165. "autoload": {
  1166. "psr-4": {
  1167. "Dflydev\\DotAccessData\\": "src/"
  1168. }
  1169. },
  1170. "notification-url": "https://packagist.org/downloads/",
  1171. "license": [
  1172. "MIT"
  1173. ],
  1174. "authors": [
  1175. {
  1176. "name": "Dragonfly Development Inc.",
  1177. "email": "info@dflydev.com",
  1178. "homepage": "http://dflydev.com"
  1179. },
  1180. {
  1181. "name": "Beau Simensen",
  1182. "email": "beau@dflydev.com",
  1183. "homepage": "http://beausimensen.com"
  1184. },
  1185. {
  1186. "name": "Carlos Frutos",
  1187. "email": "carlos@kiwing.it",
  1188. "homepage": "https://github.com/cfrutos"
  1189. },
  1190. {
  1191. "name": "Colin O'Dell",
  1192. "email": "colinodell@gmail.com",
  1193. "homepage": "https://www.colinodell.com"
  1194. }
  1195. ],
  1196. "description": "Given a deep data structure, access data by dot notation.",
  1197. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  1198. "keywords": [
  1199. "access",
  1200. "data",
  1201. "dot",
  1202. "notation"
  1203. ],
  1204. "support": {
  1205. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  1206. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  1207. },
  1208. "time": "2024-07-08T12:26:09+00:00"
  1209. },
  1210. {
  1211. "name": "doctrine/dbal",
  1212. "version": "4.2.1",
  1213. "source": {
  1214. "type": "git",
  1215. "url": "https://github.com/doctrine/dbal.git",
  1216. "reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0"
  1217. },
  1218. "dist": {
  1219. "type": "zip",
  1220. "url": "https://api.github.com/repos/doctrine/dbal/zipball/dadd35300837a3a2184bd47d403333b15d0a9bd0",
  1221. "reference": "dadd35300837a3a2184bd47d403333b15d0a9bd0",
  1222. "shasum": ""
  1223. },
  1224. "require": {
  1225. "doctrine/deprecations": "^0.5.3|^1",
  1226. "php": "^8.1",
  1227. "psr/cache": "^1|^2|^3",
  1228. "psr/log": "^1|^2|^3"
  1229. },
  1230. "require-dev": {
  1231. "doctrine/coding-standard": "12.0.0",
  1232. "fig/log-test": "^1",
  1233. "jetbrains/phpstorm-stubs": "2023.2",
  1234. "phpstan/phpstan": "1.12.6",
  1235. "phpstan/phpstan-phpunit": "1.4.0",
  1236. "phpstan/phpstan-strict-rules": "^1.6",
  1237. "phpunit/phpunit": "10.5.30",
  1238. "psalm/plugin-phpunit": "0.19.0",
  1239. "slevomat/coding-standard": "8.13.1",
  1240. "squizlabs/php_codesniffer": "3.10.2",
  1241. "symfony/cache": "^6.3.8|^7.0",
  1242. "symfony/console": "^5.4|^6.3|^7.0",
  1243. "vimeo/psalm": "5.25.0"
  1244. },
  1245. "suggest": {
  1246. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  1247. },
  1248. "type": "library",
  1249. "autoload": {
  1250. "psr-4": {
  1251. "Doctrine\\DBAL\\": "src"
  1252. }
  1253. },
  1254. "notification-url": "https://packagist.org/downloads/",
  1255. "license": [
  1256. "MIT"
  1257. ],
  1258. "authors": [
  1259. {
  1260. "name": "Guilherme Blanco",
  1261. "email": "guilhermeblanco@gmail.com"
  1262. },
  1263. {
  1264. "name": "Roman Borschel",
  1265. "email": "roman@code-factory.org"
  1266. },
  1267. {
  1268. "name": "Benjamin Eberlei",
  1269. "email": "kontakt@beberlei.de"
  1270. },
  1271. {
  1272. "name": "Jonathan Wage",
  1273. "email": "jonwage@gmail.com"
  1274. }
  1275. ],
  1276. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1277. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1278. "keywords": [
  1279. "abstraction",
  1280. "database",
  1281. "db2",
  1282. "dbal",
  1283. "mariadb",
  1284. "mssql",
  1285. "mysql",
  1286. "oci8",
  1287. "oracle",
  1288. "pdo",
  1289. "pgsql",
  1290. "postgresql",
  1291. "queryobject",
  1292. "sasql",
  1293. "sql",
  1294. "sqlite",
  1295. "sqlserver",
  1296. "sqlsrv"
  1297. ],
  1298. "support": {
  1299. "issues": "https://github.com/doctrine/dbal/issues",
  1300. "source": "https://github.com/doctrine/dbal/tree/4.2.1"
  1301. },
  1302. "funding": [
  1303. {
  1304. "url": "https://www.doctrine-project.org/sponsorship.html",
  1305. "type": "custom"
  1306. },
  1307. {
  1308. "url": "https://www.patreon.com/phpdoctrine",
  1309. "type": "patreon"
  1310. },
  1311. {
  1312. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  1313. "type": "tidelift"
  1314. }
  1315. ],
  1316. "time": "2024-10-10T18:01:27+00:00"
  1317. },
  1318. {
  1319. "name": "doctrine/deprecations",
  1320. "version": "1.1.4",
  1321. "source": {
  1322. "type": "git",
  1323. "url": "https://github.com/doctrine/deprecations.git",
  1324. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  1325. },
  1326. "dist": {
  1327. "type": "zip",
  1328. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  1329. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  1330. "shasum": ""
  1331. },
  1332. "require": {
  1333. "php": "^7.1 || ^8.0"
  1334. },
  1335. "require-dev": {
  1336. "doctrine/coding-standard": "^9 || ^12",
  1337. "phpstan/phpstan": "1.4.10 || 2.0.3",
  1338. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  1339. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1340. "psr/log": "^1 || ^2 || ^3"
  1341. },
  1342. "suggest": {
  1343. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1344. },
  1345. "type": "library",
  1346. "autoload": {
  1347. "psr-4": {
  1348. "Doctrine\\Deprecations\\": "src"
  1349. }
  1350. },
  1351. "notification-url": "https://packagist.org/downloads/",
  1352. "license": [
  1353. "MIT"
  1354. ],
  1355. "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.",
  1356. "homepage": "https://www.doctrine-project.org/",
  1357. "support": {
  1358. "issues": "https://github.com/doctrine/deprecations/issues",
  1359. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  1360. },
  1361. "time": "2024-12-07T21:18:45+00:00"
  1362. },
  1363. {
  1364. "name": "doctrine/inflector",
  1365. "version": "2.0.10",
  1366. "source": {
  1367. "type": "git",
  1368. "url": "https://github.com/doctrine/inflector.git",
  1369. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1370. },
  1371. "dist": {
  1372. "type": "zip",
  1373. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1374. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1375. "shasum": ""
  1376. },
  1377. "require": {
  1378. "php": "^7.2 || ^8.0"
  1379. },
  1380. "require-dev": {
  1381. "doctrine/coding-standard": "^11.0",
  1382. "phpstan/phpstan": "^1.8",
  1383. "phpstan/phpstan-phpunit": "^1.1",
  1384. "phpstan/phpstan-strict-rules": "^1.3",
  1385. "phpunit/phpunit": "^8.5 || ^9.5",
  1386. "vimeo/psalm": "^4.25 || ^5.4"
  1387. },
  1388. "type": "library",
  1389. "autoload": {
  1390. "psr-4": {
  1391. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1392. }
  1393. },
  1394. "notification-url": "https://packagist.org/downloads/",
  1395. "license": [
  1396. "MIT"
  1397. ],
  1398. "authors": [
  1399. {
  1400. "name": "Guilherme Blanco",
  1401. "email": "guilhermeblanco@gmail.com"
  1402. },
  1403. {
  1404. "name": "Roman Borschel",
  1405. "email": "roman@code-factory.org"
  1406. },
  1407. {
  1408. "name": "Benjamin Eberlei",
  1409. "email": "kontakt@beberlei.de"
  1410. },
  1411. {
  1412. "name": "Jonathan Wage",
  1413. "email": "jonwage@gmail.com"
  1414. },
  1415. {
  1416. "name": "Johannes Schmitt",
  1417. "email": "schmittjoh@gmail.com"
  1418. }
  1419. ],
  1420. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1421. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1422. "keywords": [
  1423. "inflection",
  1424. "inflector",
  1425. "lowercase",
  1426. "manipulation",
  1427. "php",
  1428. "plural",
  1429. "singular",
  1430. "strings",
  1431. "uppercase",
  1432. "words"
  1433. ],
  1434. "support": {
  1435. "issues": "https://github.com/doctrine/inflector/issues",
  1436. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1437. },
  1438. "funding": [
  1439. {
  1440. "url": "https://www.doctrine-project.org/sponsorship.html",
  1441. "type": "custom"
  1442. },
  1443. {
  1444. "url": "https://www.patreon.com/phpdoctrine",
  1445. "type": "patreon"
  1446. },
  1447. {
  1448. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1449. "type": "tidelift"
  1450. }
  1451. ],
  1452. "time": "2024-02-18T20:23:39+00:00"
  1453. },
  1454. {
  1455. "name": "doctrine/lexer",
  1456. "version": "3.0.1",
  1457. "source": {
  1458. "type": "git",
  1459. "url": "https://github.com/doctrine/lexer.git",
  1460. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1461. },
  1462. "dist": {
  1463. "type": "zip",
  1464. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1465. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1466. "shasum": ""
  1467. },
  1468. "require": {
  1469. "php": "^8.1"
  1470. },
  1471. "require-dev": {
  1472. "doctrine/coding-standard": "^12",
  1473. "phpstan/phpstan": "^1.10",
  1474. "phpunit/phpunit": "^10.5",
  1475. "psalm/plugin-phpunit": "^0.18.3",
  1476. "vimeo/psalm": "^5.21"
  1477. },
  1478. "type": "library",
  1479. "autoload": {
  1480. "psr-4": {
  1481. "Doctrine\\Common\\Lexer\\": "src"
  1482. }
  1483. },
  1484. "notification-url": "https://packagist.org/downloads/",
  1485. "license": [
  1486. "MIT"
  1487. ],
  1488. "authors": [
  1489. {
  1490. "name": "Guilherme Blanco",
  1491. "email": "guilhermeblanco@gmail.com"
  1492. },
  1493. {
  1494. "name": "Roman Borschel",
  1495. "email": "roman@code-factory.org"
  1496. },
  1497. {
  1498. "name": "Johannes Schmitt",
  1499. "email": "schmittjoh@gmail.com"
  1500. }
  1501. ],
  1502. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1503. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1504. "keywords": [
  1505. "annotations",
  1506. "docblock",
  1507. "lexer",
  1508. "parser",
  1509. "php"
  1510. ],
  1511. "support": {
  1512. "issues": "https://github.com/doctrine/lexer/issues",
  1513. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1514. },
  1515. "funding": [
  1516. {
  1517. "url": "https://www.doctrine-project.org/sponsorship.html",
  1518. "type": "custom"
  1519. },
  1520. {
  1521. "url": "https://www.patreon.com/phpdoctrine",
  1522. "type": "patreon"
  1523. },
  1524. {
  1525. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1526. "type": "tidelift"
  1527. }
  1528. ],
  1529. "time": "2024-02-05T11:56:58+00:00"
  1530. },
  1531. {
  1532. "name": "dragonmantank/cron-expression",
  1533. "version": "v3.4.0",
  1534. "source": {
  1535. "type": "git",
  1536. "url": "https://github.com/dragonmantank/cron-expression.git",
  1537. "reference": "8c784d071debd117328803d86b2097615b457500"
  1538. },
  1539. "dist": {
  1540. "type": "zip",
  1541. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  1542. "reference": "8c784d071debd117328803d86b2097615b457500",
  1543. "shasum": ""
  1544. },
  1545. "require": {
  1546. "php": "^7.2|^8.0",
  1547. "webmozart/assert": "^1.0"
  1548. },
  1549. "replace": {
  1550. "mtdowling/cron-expression": "^1.0"
  1551. },
  1552. "require-dev": {
  1553. "phpstan/extension-installer": "^1.0",
  1554. "phpstan/phpstan": "^1.0",
  1555. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1556. },
  1557. "type": "library",
  1558. "extra": {
  1559. "branch-alias": {
  1560. "dev-master": "3.x-dev"
  1561. }
  1562. },
  1563. "autoload": {
  1564. "psr-4": {
  1565. "Cron\\": "src/Cron/"
  1566. }
  1567. },
  1568. "notification-url": "https://packagist.org/downloads/",
  1569. "license": [
  1570. "MIT"
  1571. ],
  1572. "authors": [
  1573. {
  1574. "name": "Chris Tankersley",
  1575. "email": "chris@ctankersley.com",
  1576. "homepage": "https://github.com/dragonmantank"
  1577. }
  1578. ],
  1579. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1580. "keywords": [
  1581. "cron",
  1582. "schedule"
  1583. ],
  1584. "support": {
  1585. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1586. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1587. },
  1588. "funding": [
  1589. {
  1590. "url": "https://github.com/dragonmantank",
  1591. "type": "github"
  1592. }
  1593. ],
  1594. "time": "2024-10-09T13:47:03+00:00"
  1595. },
  1596. {
  1597. "name": "egulias/email-validator",
  1598. "version": "4.0.2",
  1599. "source": {
  1600. "type": "git",
  1601. "url": "https://github.com/egulias/EmailValidator.git",
  1602. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1603. },
  1604. "dist": {
  1605. "type": "zip",
  1606. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1607. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1608. "shasum": ""
  1609. },
  1610. "require": {
  1611. "doctrine/lexer": "^2.0 || ^3.0",
  1612. "php": ">=8.1",
  1613. "symfony/polyfill-intl-idn": "^1.26"
  1614. },
  1615. "require-dev": {
  1616. "phpunit/phpunit": "^10.2",
  1617. "vimeo/psalm": "^5.12"
  1618. },
  1619. "suggest": {
  1620. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1621. },
  1622. "type": "library",
  1623. "extra": {
  1624. "branch-alias": {
  1625. "dev-master": "4.0.x-dev"
  1626. }
  1627. },
  1628. "autoload": {
  1629. "psr-4": {
  1630. "Egulias\\EmailValidator\\": "src"
  1631. }
  1632. },
  1633. "notification-url": "https://packagist.org/downloads/",
  1634. "license": [
  1635. "MIT"
  1636. ],
  1637. "authors": [
  1638. {
  1639. "name": "Eduardo Gulias Davis"
  1640. }
  1641. ],
  1642. "description": "A library for validating emails against several RFCs",
  1643. "homepage": "https://github.com/egulias/EmailValidator",
  1644. "keywords": [
  1645. "email",
  1646. "emailvalidation",
  1647. "emailvalidator",
  1648. "validation",
  1649. "validator"
  1650. ],
  1651. "support": {
  1652. "issues": "https://github.com/egulias/EmailValidator/issues",
  1653. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1654. },
  1655. "funding": [
  1656. {
  1657. "url": "https://github.com/egulias",
  1658. "type": "github"
  1659. }
  1660. ],
  1661. "time": "2023-10-06T06:47:41+00:00"
  1662. },
  1663. {
  1664. "name": "filament/actions",
  1665. "version": "v3.2.131",
  1666. "source": {
  1667. "type": "git",
  1668. "url": "https://github.com/filamentphp/actions.git",
  1669. "reference": "8d9ceaf392eeff55fd335f5169d14f84af8c325e"
  1670. },
  1671. "dist": {
  1672. "type": "zip",
  1673. "url": "https://api.github.com/repos/filamentphp/actions/zipball/8d9ceaf392eeff55fd335f5169d14f84af8c325e",
  1674. "reference": "8d9ceaf392eeff55fd335f5169d14f84af8c325e",
  1675. "shasum": ""
  1676. },
  1677. "require": {
  1678. "anourvalar/eloquent-serialize": "^1.2",
  1679. "filament/forms": "self.version",
  1680. "filament/infolists": "self.version",
  1681. "filament/notifications": "self.version",
  1682. "filament/support": "self.version",
  1683. "illuminate/contracts": "^10.45|^11.0",
  1684. "illuminate/database": "^10.45|^11.0",
  1685. "illuminate/support": "^10.45|^11.0",
  1686. "league/csv": "^9.14",
  1687. "openspout/openspout": "^4.23",
  1688. "php": "^8.1",
  1689. "spatie/laravel-package-tools": "^1.9"
  1690. },
  1691. "type": "library",
  1692. "extra": {
  1693. "laravel": {
  1694. "providers": [
  1695. "Filament\\Actions\\ActionsServiceProvider"
  1696. ]
  1697. }
  1698. },
  1699. "autoload": {
  1700. "psr-4": {
  1701. "Filament\\Actions\\": "src"
  1702. }
  1703. },
  1704. "notification-url": "https://packagist.org/downloads/",
  1705. "license": [
  1706. "MIT"
  1707. ],
  1708. "description": "Easily add beautiful action modals to any Livewire component.",
  1709. "homepage": "https://github.com/filamentphp/filament",
  1710. "support": {
  1711. "issues": "https://github.com/filamentphp/filament/issues",
  1712. "source": "https://github.com/filamentphp/filament"
  1713. },
  1714. "time": "2024-12-17T13:03:16+00:00"
  1715. },
  1716. {
  1717. "name": "filament/filament",
  1718. "version": "v3.2.131",
  1719. "source": {
  1720. "type": "git",
  1721. "url": "https://github.com/filamentphp/panels.git",
  1722. "reference": "21febddcc6720b250b41386805a8dbd1deef2c56"
  1723. },
  1724. "dist": {
  1725. "type": "zip",
  1726. "url": "https://api.github.com/repos/filamentphp/panels/zipball/21febddcc6720b250b41386805a8dbd1deef2c56",
  1727. "reference": "21febddcc6720b250b41386805a8dbd1deef2c56",
  1728. "shasum": ""
  1729. },
  1730. "require": {
  1731. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  1732. "filament/actions": "self.version",
  1733. "filament/forms": "self.version",
  1734. "filament/infolists": "self.version",
  1735. "filament/notifications": "self.version",
  1736. "filament/support": "self.version",
  1737. "filament/tables": "self.version",
  1738. "filament/widgets": "self.version",
  1739. "illuminate/auth": "^10.45|^11.0",
  1740. "illuminate/console": "^10.45|^11.0",
  1741. "illuminate/contracts": "^10.45|^11.0",
  1742. "illuminate/cookie": "^10.45|^11.0",
  1743. "illuminate/database": "^10.45|^11.0",
  1744. "illuminate/http": "^10.45|^11.0",
  1745. "illuminate/routing": "^10.45|^11.0",
  1746. "illuminate/session": "^10.45|^11.0",
  1747. "illuminate/support": "^10.45|^11.0",
  1748. "illuminate/view": "^10.45|^11.0",
  1749. "php": "^8.1",
  1750. "spatie/laravel-package-tools": "^1.9"
  1751. },
  1752. "type": "library",
  1753. "extra": {
  1754. "laravel": {
  1755. "providers": [
  1756. "Filament\\FilamentServiceProvider"
  1757. ]
  1758. }
  1759. },
  1760. "autoload": {
  1761. "files": [
  1762. "src/global_helpers.php",
  1763. "src/helpers.php"
  1764. ],
  1765. "psr-4": {
  1766. "Filament\\": "src"
  1767. }
  1768. },
  1769. "notification-url": "https://packagist.org/downloads/",
  1770. "license": [
  1771. "MIT"
  1772. ],
  1773. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1774. "homepage": "https://github.com/filamentphp/filament",
  1775. "support": {
  1776. "issues": "https://github.com/filamentphp/filament/issues",
  1777. "source": "https://github.com/filamentphp/filament"
  1778. },
  1779. "time": "2024-12-17T13:03:11+00:00"
  1780. },
  1781. {
  1782. "name": "filament/forms",
  1783. "version": "v3.2.131",
  1784. "source": {
  1785. "type": "git",
  1786. "url": "https://github.com/filamentphp/forms.git",
  1787. "reference": "72429b0df9c3d123273dd51ba62b764e2114697c"
  1788. },
  1789. "dist": {
  1790. "type": "zip",
  1791. "url": "https://api.github.com/repos/filamentphp/forms/zipball/72429b0df9c3d123273dd51ba62b764e2114697c",
  1792. "reference": "72429b0df9c3d123273dd51ba62b764e2114697c",
  1793. "shasum": ""
  1794. },
  1795. "require": {
  1796. "danharrin/date-format-converter": "^0.3",
  1797. "filament/actions": "self.version",
  1798. "filament/support": "self.version",
  1799. "illuminate/console": "^10.45|^11.0",
  1800. "illuminate/contracts": "^10.45|^11.0",
  1801. "illuminate/database": "^10.45|^11.0",
  1802. "illuminate/filesystem": "^10.45|^11.0",
  1803. "illuminate/support": "^10.45|^11.0",
  1804. "illuminate/validation": "^10.45|^11.0",
  1805. "illuminate/view": "^10.45|^11.0",
  1806. "php": "^8.1",
  1807. "spatie/laravel-package-tools": "^1.9"
  1808. },
  1809. "type": "library",
  1810. "extra": {
  1811. "laravel": {
  1812. "providers": [
  1813. "Filament\\Forms\\FormsServiceProvider"
  1814. ]
  1815. }
  1816. },
  1817. "autoload": {
  1818. "files": [
  1819. "src/helpers.php"
  1820. ],
  1821. "psr-4": {
  1822. "Filament\\Forms\\": "src"
  1823. }
  1824. },
  1825. "notification-url": "https://packagist.org/downloads/",
  1826. "license": [
  1827. "MIT"
  1828. ],
  1829. "description": "Easily add beautiful forms to any Livewire component.",
  1830. "homepage": "https://github.com/filamentphp/filament",
  1831. "support": {
  1832. "issues": "https://github.com/filamentphp/filament/issues",
  1833. "source": "https://github.com/filamentphp/filament"
  1834. },
  1835. "time": "2024-12-17T13:03:11+00:00"
  1836. },
  1837. {
  1838. "name": "filament/infolists",
  1839. "version": "v3.2.131",
  1840. "source": {
  1841. "type": "git",
  1842. "url": "https://github.com/filamentphp/infolists.git",
  1843. "reference": "15c200a3172b88a6247ff4b7230f69982d848194"
  1844. },
  1845. "dist": {
  1846. "type": "zip",
  1847. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/15c200a3172b88a6247ff4b7230f69982d848194",
  1848. "reference": "15c200a3172b88a6247ff4b7230f69982d848194",
  1849. "shasum": ""
  1850. },
  1851. "require": {
  1852. "filament/actions": "self.version",
  1853. "filament/support": "self.version",
  1854. "illuminate/console": "^10.45|^11.0",
  1855. "illuminate/contracts": "^10.45|^11.0",
  1856. "illuminate/database": "^10.45|^11.0",
  1857. "illuminate/filesystem": "^10.45|^11.0",
  1858. "illuminate/support": "^10.45|^11.0",
  1859. "illuminate/view": "^10.45|^11.0",
  1860. "php": "^8.1",
  1861. "spatie/laravel-package-tools": "^1.9"
  1862. },
  1863. "type": "library",
  1864. "extra": {
  1865. "laravel": {
  1866. "providers": [
  1867. "Filament\\Infolists\\InfolistsServiceProvider"
  1868. ]
  1869. }
  1870. },
  1871. "autoload": {
  1872. "psr-4": {
  1873. "Filament\\Infolists\\": "src"
  1874. }
  1875. },
  1876. "notification-url": "https://packagist.org/downloads/",
  1877. "license": [
  1878. "MIT"
  1879. ],
  1880. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  1881. "homepage": "https://github.com/filamentphp/filament",
  1882. "support": {
  1883. "issues": "https://github.com/filamentphp/filament/issues",
  1884. "source": "https://github.com/filamentphp/filament"
  1885. },
  1886. "time": "2024-12-17T13:03:14+00:00"
  1887. },
  1888. {
  1889. "name": "filament/notifications",
  1890. "version": "v3.2.131",
  1891. "source": {
  1892. "type": "git",
  1893. "url": "https://github.com/filamentphp/notifications.git",
  1894. "reference": "c19df07c801c5550de0d30957c5a316f53019533"
  1895. },
  1896. "dist": {
  1897. "type": "zip",
  1898. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/c19df07c801c5550de0d30957c5a316f53019533",
  1899. "reference": "c19df07c801c5550de0d30957c5a316f53019533",
  1900. "shasum": ""
  1901. },
  1902. "require": {
  1903. "filament/actions": "self.version",
  1904. "filament/support": "self.version",
  1905. "illuminate/contracts": "^10.45|^11.0",
  1906. "illuminate/filesystem": "^10.45|^11.0",
  1907. "illuminate/notifications": "^10.45|^11.0",
  1908. "illuminate/support": "^10.45|^11.0",
  1909. "php": "^8.1",
  1910. "spatie/laravel-package-tools": "^1.9"
  1911. },
  1912. "type": "library",
  1913. "extra": {
  1914. "laravel": {
  1915. "providers": [
  1916. "Filament\\Notifications\\NotificationsServiceProvider"
  1917. ]
  1918. }
  1919. },
  1920. "autoload": {
  1921. "files": [
  1922. "src/Testing/Autoload.php"
  1923. ],
  1924. "psr-4": {
  1925. "Filament\\Notifications\\": "src"
  1926. }
  1927. },
  1928. "notification-url": "https://packagist.org/downloads/",
  1929. "license": [
  1930. "MIT"
  1931. ],
  1932. "description": "Easily add beautiful notifications to any Livewire app.",
  1933. "homepage": "https://github.com/filamentphp/filament",
  1934. "support": {
  1935. "issues": "https://github.com/filamentphp/filament/issues",
  1936. "source": "https://github.com/filamentphp/filament"
  1937. },
  1938. "time": "2024-10-23T07:36:14+00:00"
  1939. },
  1940. {
  1941. "name": "filament/support",
  1942. "version": "v3.2.131",
  1943. "source": {
  1944. "type": "git",
  1945. "url": "https://github.com/filamentphp/support.git",
  1946. "reference": "ddc16d8da50d73f7300671b70c9dcb942d845d9d"
  1947. },
  1948. "dist": {
  1949. "type": "zip",
  1950. "url": "https://api.github.com/repos/filamentphp/support/zipball/ddc16d8da50d73f7300671b70c9dcb942d845d9d",
  1951. "reference": "ddc16d8da50d73f7300671b70c9dcb942d845d9d",
  1952. "shasum": ""
  1953. },
  1954. "require": {
  1955. "blade-ui-kit/blade-heroicons": "^2.5",
  1956. "doctrine/dbal": "^3.2|^4.0",
  1957. "ext-intl": "*",
  1958. "illuminate/contracts": "^10.45|^11.0",
  1959. "illuminate/support": "^10.45|^11.0",
  1960. "illuminate/view": "^10.45|^11.0",
  1961. "kirschbaum-development/eloquent-power-joins": "^3.0|^4.0",
  1962. "livewire/livewire": "3.5.12",
  1963. "php": "^8.1",
  1964. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  1965. "spatie/color": "^1.5",
  1966. "spatie/invade": "^1.0|^2.0",
  1967. "spatie/laravel-package-tools": "^1.9",
  1968. "symfony/console": "^6.0|^7.0",
  1969. "symfony/html-sanitizer": "^6.1|^7.0"
  1970. },
  1971. "type": "library",
  1972. "extra": {
  1973. "laravel": {
  1974. "providers": [
  1975. "Filament\\Support\\SupportServiceProvider"
  1976. ]
  1977. }
  1978. },
  1979. "autoload": {
  1980. "files": [
  1981. "src/helpers.php"
  1982. ],
  1983. "psr-4": {
  1984. "Filament\\Support\\": "src"
  1985. }
  1986. },
  1987. "notification-url": "https://packagist.org/downloads/",
  1988. "license": [
  1989. "MIT"
  1990. ],
  1991. "description": "Core helper methods and foundation code for all Filament packages.",
  1992. "homepage": "https://github.com/filamentphp/filament",
  1993. "support": {
  1994. "issues": "https://github.com/filamentphp/filament/issues",
  1995. "source": "https://github.com/filamentphp/filament"
  1996. },
  1997. "time": "2024-12-17T13:03:15+00:00"
  1998. },
  1999. {
  2000. "name": "filament/tables",
  2001. "version": "v3.2.131",
  2002. "source": {
  2003. "type": "git",
  2004. "url": "https://github.com/filamentphp/tables.git",
  2005. "reference": "224aea12a4a4cfcd158b53df94cdd190f8226cac"
  2006. },
  2007. "dist": {
  2008. "type": "zip",
  2009. "url": "https://api.github.com/repos/filamentphp/tables/zipball/224aea12a4a4cfcd158b53df94cdd190f8226cac",
  2010. "reference": "224aea12a4a4cfcd158b53df94cdd190f8226cac",
  2011. "shasum": ""
  2012. },
  2013. "require": {
  2014. "filament/actions": "self.version",
  2015. "filament/forms": "self.version",
  2016. "filament/support": "self.version",
  2017. "illuminate/console": "^10.45|^11.0",
  2018. "illuminate/contracts": "^10.45|^11.0",
  2019. "illuminate/database": "^10.45|^11.0",
  2020. "illuminate/filesystem": "^10.45|^11.0",
  2021. "illuminate/support": "^10.45|^11.0",
  2022. "illuminate/view": "^10.45|^11.0",
  2023. "php": "^8.1",
  2024. "spatie/laravel-package-tools": "^1.9"
  2025. },
  2026. "type": "library",
  2027. "extra": {
  2028. "laravel": {
  2029. "providers": [
  2030. "Filament\\Tables\\TablesServiceProvider"
  2031. ]
  2032. }
  2033. },
  2034. "autoload": {
  2035. "psr-4": {
  2036. "Filament\\Tables\\": "src"
  2037. }
  2038. },
  2039. "notification-url": "https://packagist.org/downloads/",
  2040. "license": [
  2041. "MIT"
  2042. ],
  2043. "description": "Easily add beautiful tables to any Livewire component.",
  2044. "homepage": "https://github.com/filamentphp/filament",
  2045. "support": {
  2046. "issues": "https://github.com/filamentphp/filament/issues",
  2047. "source": "https://github.com/filamentphp/filament"
  2048. },
  2049. "time": "2024-12-17T13:03:09+00:00"
  2050. },
  2051. {
  2052. "name": "filament/widgets",
  2053. "version": "v3.2.131",
  2054. "source": {
  2055. "type": "git",
  2056. "url": "https://github.com/filamentphp/widgets.git",
  2057. "reference": "869a419fe42e2cf1b9461f2d1e702e2fcad030ae"
  2058. },
  2059. "dist": {
  2060. "type": "zip",
  2061. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/869a419fe42e2cf1b9461f2d1e702e2fcad030ae",
  2062. "reference": "869a419fe42e2cf1b9461f2d1e702e2fcad030ae",
  2063. "shasum": ""
  2064. },
  2065. "require": {
  2066. "filament/support": "self.version",
  2067. "php": "^8.1",
  2068. "spatie/laravel-package-tools": "^1.9"
  2069. },
  2070. "type": "library",
  2071. "extra": {
  2072. "laravel": {
  2073. "providers": [
  2074. "Filament\\Widgets\\WidgetsServiceProvider"
  2075. ]
  2076. }
  2077. },
  2078. "autoload": {
  2079. "psr-4": {
  2080. "Filament\\Widgets\\": "src"
  2081. }
  2082. },
  2083. "notification-url": "https://packagist.org/downloads/",
  2084. "license": [
  2085. "MIT"
  2086. ],
  2087. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2088. "homepage": "https://github.com/filamentphp/filament",
  2089. "support": {
  2090. "issues": "https://github.com/filamentphp/filament/issues",
  2091. "source": "https://github.com/filamentphp/filament"
  2092. },
  2093. "time": "2024-12-17T13:03:07+00:00"
  2094. },
  2095. {
  2096. "name": "firebase/php-jwt",
  2097. "version": "v6.10.2",
  2098. "source": {
  2099. "type": "git",
  2100. "url": "https://github.com/firebase/php-jwt.git",
  2101. "reference": "30c19ed0f3264cb660ea496895cfb6ef7ee3653b"
  2102. },
  2103. "dist": {
  2104. "type": "zip",
  2105. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/30c19ed0f3264cb660ea496895cfb6ef7ee3653b",
  2106. "reference": "30c19ed0f3264cb660ea496895cfb6ef7ee3653b",
  2107. "shasum": ""
  2108. },
  2109. "require": {
  2110. "php": "^8.0"
  2111. },
  2112. "require-dev": {
  2113. "guzzlehttp/guzzle": "^7.4",
  2114. "phpspec/prophecy-phpunit": "^2.0",
  2115. "phpunit/phpunit": "^9.5",
  2116. "psr/cache": "^2.0||^3.0",
  2117. "psr/http-client": "^1.0",
  2118. "psr/http-factory": "^1.0"
  2119. },
  2120. "suggest": {
  2121. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2122. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2123. },
  2124. "type": "library",
  2125. "autoload": {
  2126. "psr-4": {
  2127. "Firebase\\JWT\\": "src"
  2128. }
  2129. },
  2130. "notification-url": "https://packagist.org/downloads/",
  2131. "license": [
  2132. "BSD-3-Clause"
  2133. ],
  2134. "authors": [
  2135. {
  2136. "name": "Neuman Vong",
  2137. "email": "neuman+pear@twilio.com",
  2138. "role": "Developer"
  2139. },
  2140. {
  2141. "name": "Anant Narayanan",
  2142. "email": "anant@php.net",
  2143. "role": "Developer"
  2144. }
  2145. ],
  2146. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2147. "homepage": "https://github.com/firebase/php-jwt",
  2148. "keywords": [
  2149. "jwt",
  2150. "php"
  2151. ],
  2152. "support": {
  2153. "issues": "https://github.com/firebase/php-jwt/issues",
  2154. "source": "https://github.com/firebase/php-jwt/tree/v6.10.2"
  2155. },
  2156. "time": "2024-11-24T11:22:49+00:00"
  2157. },
  2158. {
  2159. "name": "fruitcake/php-cors",
  2160. "version": "v1.3.0",
  2161. "source": {
  2162. "type": "git",
  2163. "url": "https://github.com/fruitcake/php-cors.git",
  2164. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2165. },
  2166. "dist": {
  2167. "type": "zip",
  2168. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2169. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2170. "shasum": ""
  2171. },
  2172. "require": {
  2173. "php": "^7.4|^8.0",
  2174. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2175. },
  2176. "require-dev": {
  2177. "phpstan/phpstan": "^1.4",
  2178. "phpunit/phpunit": "^9",
  2179. "squizlabs/php_codesniffer": "^3.5"
  2180. },
  2181. "type": "library",
  2182. "extra": {
  2183. "branch-alias": {
  2184. "dev-master": "1.2-dev"
  2185. }
  2186. },
  2187. "autoload": {
  2188. "psr-4": {
  2189. "Fruitcake\\Cors\\": "src/"
  2190. }
  2191. },
  2192. "notification-url": "https://packagist.org/downloads/",
  2193. "license": [
  2194. "MIT"
  2195. ],
  2196. "authors": [
  2197. {
  2198. "name": "Fruitcake",
  2199. "homepage": "https://fruitcake.nl"
  2200. },
  2201. {
  2202. "name": "Barryvdh",
  2203. "email": "barryvdh@gmail.com"
  2204. }
  2205. ],
  2206. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2207. "homepage": "https://github.com/fruitcake/php-cors",
  2208. "keywords": [
  2209. "cors",
  2210. "laravel",
  2211. "symfony"
  2212. ],
  2213. "support": {
  2214. "issues": "https://github.com/fruitcake/php-cors/issues",
  2215. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2216. },
  2217. "funding": [
  2218. {
  2219. "url": "https://fruitcake.nl",
  2220. "type": "custom"
  2221. },
  2222. {
  2223. "url": "https://github.com/barryvdh",
  2224. "type": "github"
  2225. }
  2226. ],
  2227. "time": "2023-10-12T05:21:21+00:00"
  2228. },
  2229. {
  2230. "name": "graham-campbell/result-type",
  2231. "version": "v1.1.3",
  2232. "source": {
  2233. "type": "git",
  2234. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2235. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2236. },
  2237. "dist": {
  2238. "type": "zip",
  2239. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2240. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2241. "shasum": ""
  2242. },
  2243. "require": {
  2244. "php": "^7.2.5 || ^8.0",
  2245. "phpoption/phpoption": "^1.9.3"
  2246. },
  2247. "require-dev": {
  2248. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2249. },
  2250. "type": "library",
  2251. "autoload": {
  2252. "psr-4": {
  2253. "GrahamCampbell\\ResultType\\": "src/"
  2254. }
  2255. },
  2256. "notification-url": "https://packagist.org/downloads/",
  2257. "license": [
  2258. "MIT"
  2259. ],
  2260. "authors": [
  2261. {
  2262. "name": "Graham Campbell",
  2263. "email": "hello@gjcampbell.co.uk",
  2264. "homepage": "https://github.com/GrahamCampbell"
  2265. }
  2266. ],
  2267. "description": "An Implementation Of The Result Type",
  2268. "keywords": [
  2269. "Graham Campbell",
  2270. "GrahamCampbell",
  2271. "Result Type",
  2272. "Result-Type",
  2273. "result"
  2274. ],
  2275. "support": {
  2276. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2277. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2278. },
  2279. "funding": [
  2280. {
  2281. "url": "https://github.com/GrahamCampbell",
  2282. "type": "github"
  2283. },
  2284. {
  2285. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2286. "type": "tidelift"
  2287. }
  2288. ],
  2289. "time": "2024-07-20T21:45:45+00:00"
  2290. },
  2291. {
  2292. "name": "guava/filament-clusters",
  2293. "version": "1.4.0",
  2294. "source": {
  2295. "type": "git",
  2296. "url": "https://github.com/GuavaCZ/filament-clusters.git",
  2297. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694"
  2298. },
  2299. "dist": {
  2300. "type": "zip",
  2301. "url": "https://api.github.com/repos/GuavaCZ/filament-clusters/zipball/c4a2ad6342f630f494f5e923b65426d935d12694",
  2302. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694",
  2303. "shasum": ""
  2304. },
  2305. "require": {
  2306. "filament/filament": "^3.0",
  2307. "illuminate/contracts": "^10.0 | ^11.0",
  2308. "php": "^8.1",
  2309. "spatie/laravel-package-tools": "^1.14.0"
  2310. },
  2311. "require-dev": {
  2312. "laravel/pint": "^1.0",
  2313. "nunomaduro/collision": "^7.8",
  2314. "nunomaduro/larastan": "^2.0.1",
  2315. "orchestra/testbench": "^8.8",
  2316. "pestphp/pest": "^2.0",
  2317. "pestphp/pest-plugin-arch": "^2.0",
  2318. "pestphp/pest-plugin-laravel": "^2.0",
  2319. "phpstan/extension-installer": "^1.1",
  2320. "phpstan/phpstan-deprecation-rules": "^1.0",
  2321. "phpstan/phpstan-phpunit": "^1.0"
  2322. },
  2323. "type": "library",
  2324. "extra": {
  2325. "laravel": {
  2326. "providers": [
  2327. "Guava\\FilamentClusters\\FilamentClustersServiceProvider"
  2328. ]
  2329. }
  2330. },
  2331. "autoload": {
  2332. "psr-4": {
  2333. "Guava\\FilamentClusters\\": "src/"
  2334. }
  2335. },
  2336. "notification-url": "https://packagist.org/downloads/",
  2337. "license": [
  2338. "MIT"
  2339. ],
  2340. "authors": [
  2341. {
  2342. "name": "Lukas Frey",
  2343. "email": "lukas.frey@guava.cz",
  2344. "role": "Developer"
  2345. }
  2346. ],
  2347. "description": "Filament clusters allow you to cluster multiple fields into one visually.",
  2348. "homepage": "https://github.com/GuavaCZ/filament-clusters",
  2349. "keywords": [
  2350. "Guava",
  2351. "filament-clusters",
  2352. "laravel"
  2353. ],
  2354. "support": {
  2355. "issues": "https://github.com/GuavaCZ/filament-clusters/issues",
  2356. "source": "https://github.com/GuavaCZ/filament-clusters/tree/1.4.0"
  2357. },
  2358. "funding": [
  2359. {
  2360. "url": "https://github.com/GuavaCZ",
  2361. "type": "github"
  2362. }
  2363. ],
  2364. "time": "2024-05-31T09:31:08+00:00"
  2365. },
  2366. {
  2367. "name": "guzzlehttp/guzzle",
  2368. "version": "7.9.2",
  2369. "source": {
  2370. "type": "git",
  2371. "url": "https://github.com/guzzle/guzzle.git",
  2372. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  2373. },
  2374. "dist": {
  2375. "type": "zip",
  2376. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  2377. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  2378. "shasum": ""
  2379. },
  2380. "require": {
  2381. "ext-json": "*",
  2382. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2383. "guzzlehttp/psr7": "^2.7.0",
  2384. "php": "^7.2.5 || ^8.0",
  2385. "psr/http-client": "^1.0",
  2386. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2387. },
  2388. "provide": {
  2389. "psr/http-client-implementation": "1.0"
  2390. },
  2391. "require-dev": {
  2392. "bamarni/composer-bin-plugin": "^1.8.2",
  2393. "ext-curl": "*",
  2394. "guzzle/client-integration-tests": "3.0.2",
  2395. "php-http/message-factory": "^1.1",
  2396. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2397. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2398. },
  2399. "suggest": {
  2400. "ext-curl": "Required for CURL handler support",
  2401. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2402. "psr/log": "Required for using the Log middleware"
  2403. },
  2404. "type": "library",
  2405. "extra": {
  2406. "bamarni-bin": {
  2407. "bin-links": true,
  2408. "forward-command": false
  2409. }
  2410. },
  2411. "autoload": {
  2412. "files": [
  2413. "src/functions_include.php"
  2414. ],
  2415. "psr-4": {
  2416. "GuzzleHttp\\": "src/"
  2417. }
  2418. },
  2419. "notification-url": "https://packagist.org/downloads/",
  2420. "license": [
  2421. "MIT"
  2422. ],
  2423. "authors": [
  2424. {
  2425. "name": "Graham Campbell",
  2426. "email": "hello@gjcampbell.co.uk",
  2427. "homepage": "https://github.com/GrahamCampbell"
  2428. },
  2429. {
  2430. "name": "Michael Dowling",
  2431. "email": "mtdowling@gmail.com",
  2432. "homepage": "https://github.com/mtdowling"
  2433. },
  2434. {
  2435. "name": "Jeremy Lindblom",
  2436. "email": "jeremeamia@gmail.com",
  2437. "homepage": "https://github.com/jeremeamia"
  2438. },
  2439. {
  2440. "name": "George Mponos",
  2441. "email": "gmponos@gmail.com",
  2442. "homepage": "https://github.com/gmponos"
  2443. },
  2444. {
  2445. "name": "Tobias Nyholm",
  2446. "email": "tobias.nyholm@gmail.com",
  2447. "homepage": "https://github.com/Nyholm"
  2448. },
  2449. {
  2450. "name": "Márk Sági-Kazár",
  2451. "email": "mark.sagikazar@gmail.com",
  2452. "homepage": "https://github.com/sagikazarmark"
  2453. },
  2454. {
  2455. "name": "Tobias Schultze",
  2456. "email": "webmaster@tubo-world.de",
  2457. "homepage": "https://github.com/Tobion"
  2458. }
  2459. ],
  2460. "description": "Guzzle is a PHP HTTP client library",
  2461. "keywords": [
  2462. "client",
  2463. "curl",
  2464. "framework",
  2465. "http",
  2466. "http client",
  2467. "psr-18",
  2468. "psr-7",
  2469. "rest",
  2470. "web service"
  2471. ],
  2472. "support": {
  2473. "issues": "https://github.com/guzzle/guzzle/issues",
  2474. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  2475. },
  2476. "funding": [
  2477. {
  2478. "url": "https://github.com/GrahamCampbell",
  2479. "type": "github"
  2480. },
  2481. {
  2482. "url": "https://github.com/Nyholm",
  2483. "type": "github"
  2484. },
  2485. {
  2486. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2487. "type": "tidelift"
  2488. }
  2489. ],
  2490. "time": "2024-07-24T11:22:20+00:00"
  2491. },
  2492. {
  2493. "name": "guzzlehttp/promises",
  2494. "version": "2.0.4",
  2495. "source": {
  2496. "type": "git",
  2497. "url": "https://github.com/guzzle/promises.git",
  2498. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  2499. },
  2500. "dist": {
  2501. "type": "zip",
  2502. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2503. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2504. "shasum": ""
  2505. },
  2506. "require": {
  2507. "php": "^7.2.5 || ^8.0"
  2508. },
  2509. "require-dev": {
  2510. "bamarni/composer-bin-plugin": "^1.8.2",
  2511. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2512. },
  2513. "type": "library",
  2514. "extra": {
  2515. "bamarni-bin": {
  2516. "bin-links": true,
  2517. "forward-command": false
  2518. }
  2519. },
  2520. "autoload": {
  2521. "psr-4": {
  2522. "GuzzleHttp\\Promise\\": "src/"
  2523. }
  2524. },
  2525. "notification-url": "https://packagist.org/downloads/",
  2526. "license": [
  2527. "MIT"
  2528. ],
  2529. "authors": [
  2530. {
  2531. "name": "Graham Campbell",
  2532. "email": "hello@gjcampbell.co.uk",
  2533. "homepage": "https://github.com/GrahamCampbell"
  2534. },
  2535. {
  2536. "name": "Michael Dowling",
  2537. "email": "mtdowling@gmail.com",
  2538. "homepage": "https://github.com/mtdowling"
  2539. },
  2540. {
  2541. "name": "Tobias Nyholm",
  2542. "email": "tobias.nyholm@gmail.com",
  2543. "homepage": "https://github.com/Nyholm"
  2544. },
  2545. {
  2546. "name": "Tobias Schultze",
  2547. "email": "webmaster@tubo-world.de",
  2548. "homepage": "https://github.com/Tobion"
  2549. }
  2550. ],
  2551. "description": "Guzzle promises library",
  2552. "keywords": [
  2553. "promise"
  2554. ],
  2555. "support": {
  2556. "issues": "https://github.com/guzzle/promises/issues",
  2557. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  2558. },
  2559. "funding": [
  2560. {
  2561. "url": "https://github.com/GrahamCampbell",
  2562. "type": "github"
  2563. },
  2564. {
  2565. "url": "https://github.com/Nyholm",
  2566. "type": "github"
  2567. },
  2568. {
  2569. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2570. "type": "tidelift"
  2571. }
  2572. ],
  2573. "time": "2024-10-17T10:06:22+00:00"
  2574. },
  2575. {
  2576. "name": "guzzlehttp/psr7",
  2577. "version": "2.7.0",
  2578. "source": {
  2579. "type": "git",
  2580. "url": "https://github.com/guzzle/psr7.git",
  2581. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  2582. },
  2583. "dist": {
  2584. "type": "zip",
  2585. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2586. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2587. "shasum": ""
  2588. },
  2589. "require": {
  2590. "php": "^7.2.5 || ^8.0",
  2591. "psr/http-factory": "^1.0",
  2592. "psr/http-message": "^1.1 || ^2.0",
  2593. "ralouphie/getallheaders": "^3.0"
  2594. },
  2595. "provide": {
  2596. "psr/http-factory-implementation": "1.0",
  2597. "psr/http-message-implementation": "1.0"
  2598. },
  2599. "require-dev": {
  2600. "bamarni/composer-bin-plugin": "^1.8.2",
  2601. "http-interop/http-factory-tests": "0.9.0",
  2602. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2603. },
  2604. "suggest": {
  2605. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2606. },
  2607. "type": "library",
  2608. "extra": {
  2609. "bamarni-bin": {
  2610. "bin-links": true,
  2611. "forward-command": false
  2612. }
  2613. },
  2614. "autoload": {
  2615. "psr-4": {
  2616. "GuzzleHttp\\Psr7\\": "src/"
  2617. }
  2618. },
  2619. "notification-url": "https://packagist.org/downloads/",
  2620. "license": [
  2621. "MIT"
  2622. ],
  2623. "authors": [
  2624. {
  2625. "name": "Graham Campbell",
  2626. "email": "hello@gjcampbell.co.uk",
  2627. "homepage": "https://github.com/GrahamCampbell"
  2628. },
  2629. {
  2630. "name": "Michael Dowling",
  2631. "email": "mtdowling@gmail.com",
  2632. "homepage": "https://github.com/mtdowling"
  2633. },
  2634. {
  2635. "name": "George Mponos",
  2636. "email": "gmponos@gmail.com",
  2637. "homepage": "https://github.com/gmponos"
  2638. },
  2639. {
  2640. "name": "Tobias Nyholm",
  2641. "email": "tobias.nyholm@gmail.com",
  2642. "homepage": "https://github.com/Nyholm"
  2643. },
  2644. {
  2645. "name": "Márk Sági-Kazár",
  2646. "email": "mark.sagikazar@gmail.com",
  2647. "homepage": "https://github.com/sagikazarmark"
  2648. },
  2649. {
  2650. "name": "Tobias Schultze",
  2651. "email": "webmaster@tubo-world.de",
  2652. "homepage": "https://github.com/Tobion"
  2653. },
  2654. {
  2655. "name": "Márk Sági-Kazár",
  2656. "email": "mark.sagikazar@gmail.com",
  2657. "homepage": "https://sagikazarmark.hu"
  2658. }
  2659. ],
  2660. "description": "PSR-7 message implementation that also provides common utility methods",
  2661. "keywords": [
  2662. "http",
  2663. "message",
  2664. "psr-7",
  2665. "request",
  2666. "response",
  2667. "stream",
  2668. "uri",
  2669. "url"
  2670. ],
  2671. "support": {
  2672. "issues": "https://github.com/guzzle/psr7/issues",
  2673. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  2674. },
  2675. "funding": [
  2676. {
  2677. "url": "https://github.com/GrahamCampbell",
  2678. "type": "github"
  2679. },
  2680. {
  2681. "url": "https://github.com/Nyholm",
  2682. "type": "github"
  2683. },
  2684. {
  2685. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2686. "type": "tidelift"
  2687. }
  2688. ],
  2689. "time": "2024-07-18T11:15:46+00:00"
  2690. },
  2691. {
  2692. "name": "guzzlehttp/uri-template",
  2693. "version": "v1.0.3",
  2694. "source": {
  2695. "type": "git",
  2696. "url": "https://github.com/guzzle/uri-template.git",
  2697. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  2698. },
  2699. "dist": {
  2700. "type": "zip",
  2701. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2702. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2703. "shasum": ""
  2704. },
  2705. "require": {
  2706. "php": "^7.2.5 || ^8.0",
  2707. "symfony/polyfill-php80": "^1.24"
  2708. },
  2709. "require-dev": {
  2710. "bamarni/composer-bin-plugin": "^1.8.2",
  2711. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2712. "uri-template/tests": "1.0.0"
  2713. },
  2714. "type": "library",
  2715. "extra": {
  2716. "bamarni-bin": {
  2717. "bin-links": true,
  2718. "forward-command": false
  2719. }
  2720. },
  2721. "autoload": {
  2722. "psr-4": {
  2723. "GuzzleHttp\\UriTemplate\\": "src"
  2724. }
  2725. },
  2726. "notification-url": "https://packagist.org/downloads/",
  2727. "license": [
  2728. "MIT"
  2729. ],
  2730. "authors": [
  2731. {
  2732. "name": "Graham Campbell",
  2733. "email": "hello@gjcampbell.co.uk",
  2734. "homepage": "https://github.com/GrahamCampbell"
  2735. },
  2736. {
  2737. "name": "Michael Dowling",
  2738. "email": "mtdowling@gmail.com",
  2739. "homepage": "https://github.com/mtdowling"
  2740. },
  2741. {
  2742. "name": "George Mponos",
  2743. "email": "gmponos@gmail.com",
  2744. "homepage": "https://github.com/gmponos"
  2745. },
  2746. {
  2747. "name": "Tobias Nyholm",
  2748. "email": "tobias.nyholm@gmail.com",
  2749. "homepage": "https://github.com/Nyholm"
  2750. }
  2751. ],
  2752. "description": "A polyfill class for uri_template of PHP",
  2753. "keywords": [
  2754. "guzzlehttp",
  2755. "uri-template"
  2756. ],
  2757. "support": {
  2758. "issues": "https://github.com/guzzle/uri-template/issues",
  2759. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  2760. },
  2761. "funding": [
  2762. {
  2763. "url": "https://github.com/GrahamCampbell",
  2764. "type": "github"
  2765. },
  2766. {
  2767. "url": "https://github.com/Nyholm",
  2768. "type": "github"
  2769. },
  2770. {
  2771. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2772. "type": "tidelift"
  2773. }
  2774. ],
  2775. "time": "2023-12-03T19:50:20+00:00"
  2776. },
  2777. {
  2778. "name": "jaocero/radio-deck",
  2779. "version": "v1.2.9",
  2780. "source": {
  2781. "type": "git",
  2782. "url": "https://github.com/199ocero/radio-deck.git",
  2783. "reference": "f99c40700d9ff1a8419cee44fcd4304908919f8e"
  2784. },
  2785. "dist": {
  2786. "type": "zip",
  2787. "url": "https://api.github.com/repos/199ocero/radio-deck/zipball/f99c40700d9ff1a8419cee44fcd4304908919f8e",
  2788. "reference": "f99c40700d9ff1a8419cee44fcd4304908919f8e",
  2789. "shasum": ""
  2790. },
  2791. "require": {
  2792. "filament/forms": "^3.0",
  2793. "illuminate/contracts": "^10.0|^11.0",
  2794. "php": "^8.1",
  2795. "spatie/laravel-package-tools": "^1.15.0"
  2796. },
  2797. "require-dev": {
  2798. "nunomaduro/collision": "^7.9",
  2799. "orchestra/testbench": "^8.0|^9.0",
  2800. "pestphp/pest": "^2.0",
  2801. "pestphp/pest-plugin-arch": "^2.0",
  2802. "pestphp/pest-plugin-laravel": "^2.0"
  2803. },
  2804. "type": "library",
  2805. "extra": {
  2806. "laravel": {
  2807. "providers": [
  2808. "JaOcero\\RadioDeck\\RadioDeckServiceProvider"
  2809. ]
  2810. }
  2811. },
  2812. "autoload": {
  2813. "psr-4": {
  2814. "JaOcero\\RadioDeck\\": "src/",
  2815. "JaOcero\\RadioDeck\\Database\\Factories\\": "database/factories/"
  2816. }
  2817. },
  2818. "notification-url": "https://packagist.org/downloads/",
  2819. "license": [
  2820. "MIT"
  2821. ],
  2822. "authors": [
  2823. {
  2824. "name": "Jay-Are Ocero",
  2825. "email": "199ocero@gmail.com",
  2826. "role": "Developer"
  2827. }
  2828. ],
  2829. "description": "Turn filament default radio button into a selectable card with icons, title and description.",
  2830. "homepage": "https://github.com/jaocero/radio-deck",
  2831. "keywords": [
  2832. "filament-form",
  2833. "filament-plugin",
  2834. "filamentphp",
  2835. "jaocero",
  2836. "laravel",
  2837. "radio-deck"
  2838. ],
  2839. "support": {
  2840. "issues": "https://github.com/jaocero/radio-deck/issues",
  2841. "source": "https://github.com/jaocero/radio-deck"
  2842. },
  2843. "funding": [
  2844. {
  2845. "url": "https://github.com/jaocero",
  2846. "type": "github"
  2847. }
  2848. ],
  2849. "time": "2024-12-07T13:41:25+00:00"
  2850. },
  2851. {
  2852. "name": "kirschbaum-development/eloquent-power-joins",
  2853. "version": "4.0.1",
  2854. "source": {
  2855. "type": "git",
  2856. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2857. "reference": "3c1af9b86b02f1e39219849c1d2fee7cf77e8638"
  2858. },
  2859. "dist": {
  2860. "type": "zip",
  2861. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/3c1af9b86b02f1e39219849c1d2fee7cf77e8638",
  2862. "reference": "3c1af9b86b02f1e39219849c1d2fee7cf77e8638",
  2863. "shasum": ""
  2864. },
  2865. "require": {
  2866. "illuminate/database": "^10.0|^11.0",
  2867. "illuminate/support": "^10.0|^11.0",
  2868. "php": "^8.1"
  2869. },
  2870. "require-dev": {
  2871. "friendsofphp/php-cs-fixer": "dev-master",
  2872. "laravel/legacy-factories": "^1.0@dev",
  2873. "orchestra/testbench": "^8.0|^9.0",
  2874. "phpunit/phpunit": "^10.0"
  2875. },
  2876. "type": "library",
  2877. "extra": {
  2878. "laravel": {
  2879. "providers": [
  2880. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  2881. ]
  2882. }
  2883. },
  2884. "autoload": {
  2885. "psr-4": {
  2886. "Kirschbaum\\PowerJoins\\": "src"
  2887. }
  2888. },
  2889. "notification-url": "https://packagist.org/downloads/",
  2890. "license": [
  2891. "MIT"
  2892. ],
  2893. "authors": [
  2894. {
  2895. "name": "Luis Dalmolin",
  2896. "email": "luis.nh@gmail.com",
  2897. "role": "Developer"
  2898. }
  2899. ],
  2900. "description": "The Laravel magic applied to joins.",
  2901. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  2902. "keywords": [
  2903. "eloquent",
  2904. "join",
  2905. "laravel",
  2906. "mysql"
  2907. ],
  2908. "support": {
  2909. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  2910. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.0.1"
  2911. },
  2912. "time": "2024-11-26T13:22:08+00:00"
  2913. },
  2914. {
  2915. "name": "knplabs/knp-snappy",
  2916. "version": "v1.5.0",
  2917. "source": {
  2918. "type": "git",
  2919. "url": "https://github.com/KnpLabs/snappy.git",
  2920. "reference": "98468898b50c09f26d56d905b79b0f52a2215da6"
  2921. },
  2922. "dist": {
  2923. "type": "zip",
  2924. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/98468898b50c09f26d56d905b79b0f52a2215da6",
  2925. "reference": "98468898b50c09f26d56d905b79b0f52a2215da6",
  2926. "shasum": ""
  2927. },
  2928. "require": {
  2929. "php": ">=8.1",
  2930. "psr/log": "^2.0||^3.0",
  2931. "symfony/process": "^5.0||^6.0||^7.0"
  2932. },
  2933. "require-dev": {
  2934. "friendsofphp/php-cs-fixer": "^3.0",
  2935. "pedrotroller/php-cs-custom-fixer": "^2.19",
  2936. "phpstan/phpstan": "^1.0.0",
  2937. "phpstan/phpstan-phpunit": "^1.0.0",
  2938. "phpunit/phpunit": "^8.5"
  2939. },
  2940. "type": "library",
  2941. "extra": {
  2942. "branch-alias": {
  2943. "dev-master": "1.x-dev"
  2944. }
  2945. },
  2946. "autoload": {
  2947. "psr-4": {
  2948. "Knp\\Snappy\\": "src/Knp/Snappy"
  2949. }
  2950. },
  2951. "notification-url": "https://packagist.org/downloads/",
  2952. "license": [
  2953. "MIT"
  2954. ],
  2955. "authors": [
  2956. {
  2957. "name": "KNP Labs Team",
  2958. "homepage": "http://knplabs.com"
  2959. },
  2960. {
  2961. "name": "Symfony Community",
  2962. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  2963. }
  2964. ],
  2965. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  2966. "homepage": "http://github.com/KnpLabs/snappy",
  2967. "keywords": [
  2968. "knp",
  2969. "knplabs",
  2970. "pdf",
  2971. "snapshot",
  2972. "thumbnail",
  2973. "wkhtmltopdf"
  2974. ],
  2975. "support": {
  2976. "issues": "https://github.com/KnpLabs/snappy/issues",
  2977. "source": "https://github.com/KnpLabs/snappy/tree/v1.5.0"
  2978. },
  2979. "time": "2023-12-18T09:12:11+00:00"
  2980. },
  2981. {
  2982. "name": "laravel/framework",
  2983. "version": "v11.36.1",
  2984. "source": {
  2985. "type": "git",
  2986. "url": "https://github.com/laravel/framework.git",
  2987. "reference": "df06f5163f4550641fdf349ebc04916a61135a64"
  2988. },
  2989. "dist": {
  2990. "type": "zip",
  2991. "url": "https://api.github.com/repos/laravel/framework/zipball/df06f5163f4550641fdf349ebc04916a61135a64",
  2992. "reference": "df06f5163f4550641fdf349ebc04916a61135a64",
  2993. "shasum": ""
  2994. },
  2995. "require": {
  2996. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  2997. "composer-runtime-api": "^2.2",
  2998. "doctrine/inflector": "^2.0.5",
  2999. "dragonmantank/cron-expression": "^3.4",
  3000. "egulias/email-validator": "^3.2.1|^4.0",
  3001. "ext-ctype": "*",
  3002. "ext-filter": "*",
  3003. "ext-hash": "*",
  3004. "ext-mbstring": "*",
  3005. "ext-openssl": "*",
  3006. "ext-session": "*",
  3007. "ext-tokenizer": "*",
  3008. "fruitcake/php-cors": "^1.3",
  3009. "guzzlehttp/guzzle": "^7.8.2",
  3010. "guzzlehttp/uri-template": "^1.0",
  3011. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  3012. "laravel/serializable-closure": "^1.3|^2.0",
  3013. "league/commonmark": "^2.6",
  3014. "league/flysystem": "^3.25.1",
  3015. "league/flysystem-local": "^3.25.1",
  3016. "league/uri": "^7.5.1",
  3017. "monolog/monolog": "^3.0",
  3018. "nesbot/carbon": "^2.72.2|^3.4",
  3019. "nunomaduro/termwind": "^2.0",
  3020. "php": "^8.2",
  3021. "psr/container": "^1.1.1|^2.0.1",
  3022. "psr/log": "^1.0|^2.0|^3.0",
  3023. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3024. "ramsey/uuid": "^4.7",
  3025. "symfony/console": "^7.0.3",
  3026. "symfony/error-handler": "^7.0.3",
  3027. "symfony/finder": "^7.0.3",
  3028. "symfony/http-foundation": "^7.2.0",
  3029. "symfony/http-kernel": "^7.0.3",
  3030. "symfony/mailer": "^7.0.3",
  3031. "symfony/mime": "^7.0.3",
  3032. "symfony/polyfill-php83": "^1.31",
  3033. "symfony/process": "^7.0.3",
  3034. "symfony/routing": "^7.0.3",
  3035. "symfony/uid": "^7.0.3",
  3036. "symfony/var-dumper": "^7.0.3",
  3037. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3038. "vlucas/phpdotenv": "^5.6.1",
  3039. "voku/portable-ascii": "^2.0.2"
  3040. },
  3041. "conflict": {
  3042. "mockery/mockery": "1.6.8",
  3043. "tightenco/collect": "<5.5.33"
  3044. },
  3045. "provide": {
  3046. "psr/container-implementation": "1.1|2.0",
  3047. "psr/log-implementation": "1.0|2.0|3.0",
  3048. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3049. },
  3050. "replace": {
  3051. "illuminate/auth": "self.version",
  3052. "illuminate/broadcasting": "self.version",
  3053. "illuminate/bus": "self.version",
  3054. "illuminate/cache": "self.version",
  3055. "illuminate/collections": "self.version",
  3056. "illuminate/concurrency": "self.version",
  3057. "illuminate/conditionable": "self.version",
  3058. "illuminate/config": "self.version",
  3059. "illuminate/console": "self.version",
  3060. "illuminate/container": "self.version",
  3061. "illuminate/contracts": "self.version",
  3062. "illuminate/cookie": "self.version",
  3063. "illuminate/database": "self.version",
  3064. "illuminate/encryption": "self.version",
  3065. "illuminate/events": "self.version",
  3066. "illuminate/filesystem": "self.version",
  3067. "illuminate/hashing": "self.version",
  3068. "illuminate/http": "self.version",
  3069. "illuminate/log": "self.version",
  3070. "illuminate/macroable": "self.version",
  3071. "illuminate/mail": "self.version",
  3072. "illuminate/notifications": "self.version",
  3073. "illuminate/pagination": "self.version",
  3074. "illuminate/pipeline": "self.version",
  3075. "illuminate/process": "self.version",
  3076. "illuminate/queue": "self.version",
  3077. "illuminate/redis": "self.version",
  3078. "illuminate/routing": "self.version",
  3079. "illuminate/session": "self.version",
  3080. "illuminate/support": "self.version",
  3081. "illuminate/testing": "self.version",
  3082. "illuminate/translation": "self.version",
  3083. "illuminate/validation": "self.version",
  3084. "illuminate/view": "self.version",
  3085. "spatie/once": "*"
  3086. },
  3087. "require-dev": {
  3088. "ably/ably-php": "^1.0",
  3089. "aws/aws-sdk-php": "^3.322.9",
  3090. "ext-gmp": "*",
  3091. "fakerphp/faker": "^1.24",
  3092. "guzzlehttp/promises": "^2.0.3",
  3093. "guzzlehttp/psr7": "^2.4",
  3094. "league/flysystem-aws-s3-v3": "^3.25.1",
  3095. "league/flysystem-ftp": "^3.25.1",
  3096. "league/flysystem-path-prefixing": "^3.25.1",
  3097. "league/flysystem-read-only": "^3.25.1",
  3098. "league/flysystem-sftp-v3": "^3.25.1",
  3099. "mockery/mockery": "^1.6.10",
  3100. "orchestra/testbench-core": "^9.6",
  3101. "pda/pheanstalk": "^5.0.6",
  3102. "php-http/discovery": "^1.15",
  3103. "phpstan/phpstan": "^1.11.5",
  3104. "phpunit/phpunit": "^10.5.35|^11.3.6",
  3105. "predis/predis": "^2.3",
  3106. "resend/resend-php": "^0.10.0",
  3107. "symfony/cache": "^7.0.3",
  3108. "symfony/http-client": "^7.0.3",
  3109. "symfony/psr-http-message-bridge": "^7.0.3",
  3110. "symfony/translation": "^7.0.3"
  3111. },
  3112. "suggest": {
  3113. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3114. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  3115. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3116. "ext-apcu": "Required to use the APC cache driver.",
  3117. "ext-fileinfo": "Required to use the Filesystem class.",
  3118. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3119. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3120. "ext-memcached": "Required to use the memcache cache driver.",
  3121. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3122. "ext-pdo": "Required to use all database features.",
  3123. "ext-posix": "Required to use all features of the queue worker.",
  3124. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3125. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3126. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3127. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3128. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  3129. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  3130. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  3131. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  3132. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  3133. "mockery/mockery": "Required to use mocking (^1.6).",
  3134. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3135. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  3136. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  3137. "predis/predis": "Required to use the predis connector (^2.3).",
  3138. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3139. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3140. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3141. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3142. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3143. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3144. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3145. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3146. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3147. },
  3148. "type": "library",
  3149. "extra": {
  3150. "branch-alias": {
  3151. "dev-master": "11.x-dev"
  3152. }
  3153. },
  3154. "autoload": {
  3155. "files": [
  3156. "src/Illuminate/Collections/functions.php",
  3157. "src/Illuminate/Collections/helpers.php",
  3158. "src/Illuminate/Events/functions.php",
  3159. "src/Illuminate/Filesystem/functions.php",
  3160. "src/Illuminate/Foundation/helpers.php",
  3161. "src/Illuminate/Log/functions.php",
  3162. "src/Illuminate/Support/functions.php",
  3163. "src/Illuminate/Support/helpers.php"
  3164. ],
  3165. "psr-4": {
  3166. "Illuminate\\": "src/Illuminate/",
  3167. "Illuminate\\Support\\": [
  3168. "src/Illuminate/Macroable/",
  3169. "src/Illuminate/Collections/",
  3170. "src/Illuminate/Conditionable/"
  3171. ]
  3172. }
  3173. },
  3174. "notification-url": "https://packagist.org/downloads/",
  3175. "license": [
  3176. "MIT"
  3177. ],
  3178. "authors": [
  3179. {
  3180. "name": "Taylor Otwell",
  3181. "email": "taylor@laravel.com"
  3182. }
  3183. ],
  3184. "description": "The Laravel Framework.",
  3185. "homepage": "https://laravel.com",
  3186. "keywords": [
  3187. "framework",
  3188. "laravel"
  3189. ],
  3190. "support": {
  3191. "issues": "https://github.com/laravel/framework/issues",
  3192. "source": "https://github.com/laravel/framework"
  3193. },
  3194. "time": "2024-12-17T22:32:08+00:00"
  3195. },
  3196. {
  3197. "name": "laravel/prompts",
  3198. "version": "v0.3.2",
  3199. "source": {
  3200. "type": "git",
  3201. "url": "https://github.com/laravel/prompts.git",
  3202. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f"
  3203. },
  3204. "dist": {
  3205. "type": "zip",
  3206. "url": "https://api.github.com/repos/laravel/prompts/zipball/0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  3207. "reference": "0e0535747c6b8d6d10adca8b68293cf4517abb0f",
  3208. "shasum": ""
  3209. },
  3210. "require": {
  3211. "composer-runtime-api": "^2.2",
  3212. "ext-mbstring": "*",
  3213. "php": "^8.1",
  3214. "symfony/console": "^6.2|^7.0"
  3215. },
  3216. "conflict": {
  3217. "illuminate/console": ">=10.17.0 <10.25.0",
  3218. "laravel/framework": ">=10.17.0 <10.25.0"
  3219. },
  3220. "require-dev": {
  3221. "illuminate/collections": "^10.0|^11.0",
  3222. "mockery/mockery": "^1.5",
  3223. "pestphp/pest": "^2.3|^3.4",
  3224. "phpstan/phpstan": "^1.11",
  3225. "phpstan/phpstan-mockery": "^1.1"
  3226. },
  3227. "suggest": {
  3228. "ext-pcntl": "Required for the spinner to be animated."
  3229. },
  3230. "type": "library",
  3231. "extra": {
  3232. "branch-alias": {
  3233. "dev-main": "0.3.x-dev"
  3234. }
  3235. },
  3236. "autoload": {
  3237. "files": [
  3238. "src/helpers.php"
  3239. ],
  3240. "psr-4": {
  3241. "Laravel\\Prompts\\": "src/"
  3242. }
  3243. },
  3244. "notification-url": "https://packagist.org/downloads/",
  3245. "license": [
  3246. "MIT"
  3247. ],
  3248. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  3249. "support": {
  3250. "issues": "https://github.com/laravel/prompts/issues",
  3251. "source": "https://github.com/laravel/prompts/tree/v0.3.2"
  3252. },
  3253. "time": "2024-11-12T14:59:47+00:00"
  3254. },
  3255. {
  3256. "name": "laravel/sanctum",
  3257. "version": "v4.0.7",
  3258. "source": {
  3259. "type": "git",
  3260. "url": "https://github.com/laravel/sanctum.git",
  3261. "reference": "698064236a46df016e64a7eb059b1414e0b281df"
  3262. },
  3263. "dist": {
  3264. "type": "zip",
  3265. "url": "https://api.github.com/repos/laravel/sanctum/zipball/698064236a46df016e64a7eb059b1414e0b281df",
  3266. "reference": "698064236a46df016e64a7eb059b1414e0b281df",
  3267. "shasum": ""
  3268. },
  3269. "require": {
  3270. "ext-json": "*",
  3271. "illuminate/console": "^11.0",
  3272. "illuminate/contracts": "^11.0",
  3273. "illuminate/database": "^11.0",
  3274. "illuminate/support": "^11.0",
  3275. "php": "^8.2",
  3276. "symfony/console": "^7.0"
  3277. },
  3278. "require-dev": {
  3279. "mockery/mockery": "^1.6",
  3280. "orchestra/testbench": "^9.0",
  3281. "phpstan/phpstan": "^1.10",
  3282. "phpunit/phpunit": "^10.5"
  3283. },
  3284. "type": "library",
  3285. "extra": {
  3286. "laravel": {
  3287. "providers": [
  3288. "Laravel\\Sanctum\\SanctumServiceProvider"
  3289. ]
  3290. }
  3291. },
  3292. "autoload": {
  3293. "psr-4": {
  3294. "Laravel\\Sanctum\\": "src/"
  3295. }
  3296. },
  3297. "notification-url": "https://packagist.org/downloads/",
  3298. "license": [
  3299. "MIT"
  3300. ],
  3301. "authors": [
  3302. {
  3303. "name": "Taylor Otwell",
  3304. "email": "taylor@laravel.com"
  3305. }
  3306. ],
  3307. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  3308. "keywords": [
  3309. "auth",
  3310. "laravel",
  3311. "sanctum"
  3312. ],
  3313. "support": {
  3314. "issues": "https://github.com/laravel/sanctum/issues",
  3315. "source": "https://github.com/laravel/sanctum"
  3316. },
  3317. "time": "2024-12-11T16:40:21+00:00"
  3318. },
  3319. {
  3320. "name": "laravel/serializable-closure",
  3321. "version": "v2.0.1",
  3322. "source": {
  3323. "type": "git",
  3324. "url": "https://github.com/laravel/serializable-closure.git",
  3325. "reference": "613b2d4998f85564d40497e05e89cb6d9bd1cbe8"
  3326. },
  3327. "dist": {
  3328. "type": "zip",
  3329. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/613b2d4998f85564d40497e05e89cb6d9bd1cbe8",
  3330. "reference": "613b2d4998f85564d40497e05e89cb6d9bd1cbe8",
  3331. "shasum": ""
  3332. },
  3333. "require": {
  3334. "php": "^8.1"
  3335. },
  3336. "require-dev": {
  3337. "illuminate/support": "^10.0|^11.0",
  3338. "nesbot/carbon": "^2.67|^3.0",
  3339. "pestphp/pest": "^2.36",
  3340. "phpstan/phpstan": "^2.0",
  3341. "symfony/var-dumper": "^6.2.0|^7.0.0"
  3342. },
  3343. "type": "library",
  3344. "extra": {
  3345. "branch-alias": {
  3346. "dev-master": "2.x-dev"
  3347. }
  3348. },
  3349. "autoload": {
  3350. "psr-4": {
  3351. "Laravel\\SerializableClosure\\": "src/"
  3352. }
  3353. },
  3354. "notification-url": "https://packagist.org/downloads/",
  3355. "license": [
  3356. "MIT"
  3357. ],
  3358. "authors": [
  3359. {
  3360. "name": "Taylor Otwell",
  3361. "email": "taylor@laravel.com"
  3362. },
  3363. {
  3364. "name": "Nuno Maduro",
  3365. "email": "nuno@laravel.com"
  3366. }
  3367. ],
  3368. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3369. "keywords": [
  3370. "closure",
  3371. "laravel",
  3372. "serializable"
  3373. ],
  3374. "support": {
  3375. "issues": "https://github.com/laravel/serializable-closure/issues",
  3376. "source": "https://github.com/laravel/serializable-closure"
  3377. },
  3378. "time": "2024-12-16T15:26:28+00:00"
  3379. },
  3380. {
  3381. "name": "laravel/socialite",
  3382. "version": "v5.16.1",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/laravel/socialite.git",
  3386. "reference": "4e5be83c0b3ecf81b2ffa47092e917d1f79dce71"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/laravel/socialite/zipball/4e5be83c0b3ecf81b2ffa47092e917d1f79dce71",
  3391. "reference": "4e5be83c0b3ecf81b2ffa47092e917d1f79dce71",
  3392. "shasum": ""
  3393. },
  3394. "require": {
  3395. "ext-json": "*",
  3396. "firebase/php-jwt": "^6.4",
  3397. "guzzlehttp/guzzle": "^6.0|^7.0",
  3398. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3399. "illuminate/http": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3400. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3401. "league/oauth1-client": "^1.11",
  3402. "php": "^7.2|^8.0",
  3403. "phpseclib/phpseclib": "^3.0"
  3404. },
  3405. "require-dev": {
  3406. "mockery/mockery": "^1.0",
  3407. "orchestra/testbench": "^4.0|^5.0|^6.0|^7.0|^8.0|^9.0",
  3408. "phpstan/phpstan": "^1.10",
  3409. "phpunit/phpunit": "^8.0|^9.3|^10.4"
  3410. },
  3411. "type": "library",
  3412. "extra": {
  3413. "laravel": {
  3414. "aliases": {
  3415. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3416. },
  3417. "providers": [
  3418. "Laravel\\Socialite\\SocialiteServiceProvider"
  3419. ]
  3420. },
  3421. "branch-alias": {
  3422. "dev-master": "5.x-dev"
  3423. }
  3424. },
  3425. "autoload": {
  3426. "psr-4": {
  3427. "Laravel\\Socialite\\": "src/"
  3428. }
  3429. },
  3430. "notification-url": "https://packagist.org/downloads/",
  3431. "license": [
  3432. "MIT"
  3433. ],
  3434. "authors": [
  3435. {
  3436. "name": "Taylor Otwell",
  3437. "email": "taylor@laravel.com"
  3438. }
  3439. ],
  3440. "description": "Laravel wrapper around OAuth 1 & OAuth 2 libraries.",
  3441. "homepage": "https://laravel.com",
  3442. "keywords": [
  3443. "laravel",
  3444. "oauth"
  3445. ],
  3446. "support": {
  3447. "issues": "https://github.com/laravel/socialite/issues",
  3448. "source": "https://github.com/laravel/socialite"
  3449. },
  3450. "time": "2024-12-11T16:43:51+00:00"
  3451. },
  3452. {
  3453. "name": "laravel/tinker",
  3454. "version": "v2.10.0",
  3455. "source": {
  3456. "type": "git",
  3457. "url": "https://github.com/laravel/tinker.git",
  3458. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5"
  3459. },
  3460. "dist": {
  3461. "type": "zip",
  3462. "url": "https://api.github.com/repos/laravel/tinker/zipball/ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  3463. "reference": "ba4d51eb56de7711b3a37d63aa0643e99a339ae5",
  3464. "shasum": ""
  3465. },
  3466. "require": {
  3467. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3468. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3469. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
  3470. "php": "^7.2.5|^8.0",
  3471. "psy/psysh": "^0.11.1|^0.12.0",
  3472. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3473. },
  3474. "require-dev": {
  3475. "mockery/mockery": "~1.3.3|^1.4.2",
  3476. "phpstan/phpstan": "^1.10",
  3477. "phpunit/phpunit": "^8.5.8|^9.3.3"
  3478. },
  3479. "suggest": {
  3480. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0)."
  3481. },
  3482. "type": "library",
  3483. "extra": {
  3484. "laravel": {
  3485. "providers": [
  3486. "Laravel\\Tinker\\TinkerServiceProvider"
  3487. ]
  3488. }
  3489. },
  3490. "autoload": {
  3491. "psr-4": {
  3492. "Laravel\\Tinker\\": "src/"
  3493. }
  3494. },
  3495. "notification-url": "https://packagist.org/downloads/",
  3496. "license": [
  3497. "MIT"
  3498. ],
  3499. "authors": [
  3500. {
  3501. "name": "Taylor Otwell",
  3502. "email": "taylor@laravel.com"
  3503. }
  3504. ],
  3505. "description": "Powerful REPL for the Laravel framework.",
  3506. "keywords": [
  3507. "REPL",
  3508. "Tinker",
  3509. "laravel",
  3510. "psysh"
  3511. ],
  3512. "support": {
  3513. "issues": "https://github.com/laravel/tinker/issues",
  3514. "source": "https://github.com/laravel/tinker/tree/v2.10.0"
  3515. },
  3516. "time": "2024-09-23T13:32:56+00:00"
  3517. },
  3518. {
  3519. "name": "league/commonmark",
  3520. "version": "2.6.0",
  3521. "source": {
  3522. "type": "git",
  3523. "url": "https://github.com/thephpleague/commonmark.git",
  3524. "reference": "d150f911e0079e90ae3c106734c93137c184f932"
  3525. },
  3526. "dist": {
  3527. "type": "zip",
  3528. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d150f911e0079e90ae3c106734c93137c184f932",
  3529. "reference": "d150f911e0079e90ae3c106734c93137c184f932",
  3530. "shasum": ""
  3531. },
  3532. "require": {
  3533. "ext-mbstring": "*",
  3534. "league/config": "^1.1.1",
  3535. "php": "^7.4 || ^8.0",
  3536. "psr/event-dispatcher": "^1.0",
  3537. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3538. "symfony/polyfill-php80": "^1.16"
  3539. },
  3540. "require-dev": {
  3541. "cebe/markdown": "^1.0",
  3542. "commonmark/cmark": "0.31.1",
  3543. "commonmark/commonmark.js": "0.31.1",
  3544. "composer/package-versions-deprecated": "^1.8",
  3545. "embed/embed": "^4.4",
  3546. "erusev/parsedown": "^1.0",
  3547. "ext-json": "*",
  3548. "github/gfm": "0.29.0",
  3549. "michelf/php-markdown": "^1.4 || ^2.0",
  3550. "nyholm/psr7": "^1.5",
  3551. "phpstan/phpstan": "^1.8.2",
  3552. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3553. "scrutinizer/ocular": "^1.8.1",
  3554. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  3555. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  3556. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  3557. "unleashedtech/php-coding-standard": "^3.1.1",
  3558. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3559. },
  3560. "suggest": {
  3561. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3562. },
  3563. "type": "library",
  3564. "extra": {
  3565. "branch-alias": {
  3566. "dev-main": "2.7-dev"
  3567. }
  3568. },
  3569. "autoload": {
  3570. "psr-4": {
  3571. "League\\CommonMark\\": "src"
  3572. }
  3573. },
  3574. "notification-url": "https://packagist.org/downloads/",
  3575. "license": [
  3576. "BSD-3-Clause"
  3577. ],
  3578. "authors": [
  3579. {
  3580. "name": "Colin O'Dell",
  3581. "email": "colinodell@gmail.com",
  3582. "homepage": "https://www.colinodell.com",
  3583. "role": "Lead Developer"
  3584. }
  3585. ],
  3586. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3587. "homepage": "https://commonmark.thephpleague.com",
  3588. "keywords": [
  3589. "commonmark",
  3590. "flavored",
  3591. "gfm",
  3592. "github",
  3593. "github-flavored",
  3594. "markdown",
  3595. "md",
  3596. "parser"
  3597. ],
  3598. "support": {
  3599. "docs": "https://commonmark.thephpleague.com/",
  3600. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3601. "issues": "https://github.com/thephpleague/commonmark/issues",
  3602. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3603. "source": "https://github.com/thephpleague/commonmark"
  3604. },
  3605. "funding": [
  3606. {
  3607. "url": "https://www.colinodell.com/sponsor",
  3608. "type": "custom"
  3609. },
  3610. {
  3611. "url": "https://www.paypal.me/colinpodell/10.00",
  3612. "type": "custom"
  3613. },
  3614. {
  3615. "url": "https://github.com/colinodell",
  3616. "type": "github"
  3617. },
  3618. {
  3619. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3620. "type": "tidelift"
  3621. }
  3622. ],
  3623. "time": "2024-12-07T15:34:16+00:00"
  3624. },
  3625. {
  3626. "name": "league/config",
  3627. "version": "v1.2.0",
  3628. "source": {
  3629. "type": "git",
  3630. "url": "https://github.com/thephpleague/config.git",
  3631. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3632. },
  3633. "dist": {
  3634. "type": "zip",
  3635. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3636. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3637. "shasum": ""
  3638. },
  3639. "require": {
  3640. "dflydev/dot-access-data": "^3.0.1",
  3641. "nette/schema": "^1.2",
  3642. "php": "^7.4 || ^8.0"
  3643. },
  3644. "require-dev": {
  3645. "phpstan/phpstan": "^1.8.2",
  3646. "phpunit/phpunit": "^9.5.5",
  3647. "scrutinizer/ocular": "^1.8.1",
  3648. "unleashedtech/php-coding-standard": "^3.1",
  3649. "vimeo/psalm": "^4.7.3"
  3650. },
  3651. "type": "library",
  3652. "extra": {
  3653. "branch-alias": {
  3654. "dev-main": "1.2-dev"
  3655. }
  3656. },
  3657. "autoload": {
  3658. "psr-4": {
  3659. "League\\Config\\": "src"
  3660. }
  3661. },
  3662. "notification-url": "https://packagist.org/downloads/",
  3663. "license": [
  3664. "BSD-3-Clause"
  3665. ],
  3666. "authors": [
  3667. {
  3668. "name": "Colin O'Dell",
  3669. "email": "colinodell@gmail.com",
  3670. "homepage": "https://www.colinodell.com",
  3671. "role": "Lead Developer"
  3672. }
  3673. ],
  3674. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3675. "homepage": "https://config.thephpleague.com",
  3676. "keywords": [
  3677. "array",
  3678. "config",
  3679. "configuration",
  3680. "dot",
  3681. "dot-access",
  3682. "nested",
  3683. "schema"
  3684. ],
  3685. "support": {
  3686. "docs": "https://config.thephpleague.com/",
  3687. "issues": "https://github.com/thephpleague/config/issues",
  3688. "rss": "https://github.com/thephpleague/config/releases.atom",
  3689. "source": "https://github.com/thephpleague/config"
  3690. },
  3691. "funding": [
  3692. {
  3693. "url": "https://www.colinodell.com/sponsor",
  3694. "type": "custom"
  3695. },
  3696. {
  3697. "url": "https://www.paypal.me/colinpodell/10.00",
  3698. "type": "custom"
  3699. },
  3700. {
  3701. "url": "https://github.com/colinodell",
  3702. "type": "github"
  3703. }
  3704. ],
  3705. "time": "2022-12-11T20:36:23+00:00"
  3706. },
  3707. {
  3708. "name": "league/csv",
  3709. "version": "9.20.1",
  3710. "source": {
  3711. "type": "git",
  3712. "url": "https://github.com/thephpleague/csv.git",
  3713. "reference": "491d1e79e973a7370c7571dc0fe4a7241f4936ee"
  3714. },
  3715. "dist": {
  3716. "type": "zip",
  3717. "url": "https://api.github.com/repos/thephpleague/csv/zipball/491d1e79e973a7370c7571dc0fe4a7241f4936ee",
  3718. "reference": "491d1e79e973a7370c7571dc0fe4a7241f4936ee",
  3719. "shasum": ""
  3720. },
  3721. "require": {
  3722. "ext-filter": "*",
  3723. "php": "^8.1.2"
  3724. },
  3725. "require-dev": {
  3726. "ext-dom": "*",
  3727. "ext-xdebug": "*",
  3728. "friendsofphp/php-cs-fixer": "^3.64.0",
  3729. "phpbench/phpbench": "^1.3.1",
  3730. "phpstan/phpstan": "^1.12.11",
  3731. "phpstan/phpstan-deprecation-rules": "^1.2.1",
  3732. "phpstan/phpstan-phpunit": "^1.4.1",
  3733. "phpstan/phpstan-strict-rules": "^1.6.1",
  3734. "phpunit/phpunit": "^10.5.16 || ^11.4.3",
  3735. "symfony/var-dumper": "^6.4.8 || ^7.1.8"
  3736. },
  3737. "suggest": {
  3738. "ext-dom": "Required to use the XMLConverter and the HTMLConverter classes",
  3739. "ext-iconv": "Needed to ease transcoding CSV using iconv stream filters",
  3740. "ext-mbstring": "Needed to ease transcoding CSV using mb stream filters"
  3741. },
  3742. "type": "library",
  3743. "extra": {
  3744. "branch-alias": {
  3745. "dev-master": "9.x-dev"
  3746. }
  3747. },
  3748. "autoload": {
  3749. "files": [
  3750. "src/functions_include.php"
  3751. ],
  3752. "psr-4": {
  3753. "League\\Csv\\": "src/"
  3754. }
  3755. },
  3756. "notification-url": "https://packagist.org/downloads/",
  3757. "license": [
  3758. "MIT"
  3759. ],
  3760. "authors": [
  3761. {
  3762. "name": "Ignace Nyamagana Butera",
  3763. "email": "nyamsprod@gmail.com",
  3764. "homepage": "https://github.com/nyamsprod/",
  3765. "role": "Developer"
  3766. }
  3767. ],
  3768. "description": "CSV data manipulation made easy in PHP",
  3769. "homepage": "https://csv.thephpleague.com",
  3770. "keywords": [
  3771. "convert",
  3772. "csv",
  3773. "export",
  3774. "filter",
  3775. "import",
  3776. "read",
  3777. "transform",
  3778. "write"
  3779. ],
  3780. "support": {
  3781. "docs": "https://csv.thephpleague.com",
  3782. "issues": "https://github.com/thephpleague/csv/issues",
  3783. "rss": "https://github.com/thephpleague/csv/releases.atom",
  3784. "source": "https://github.com/thephpleague/csv"
  3785. },
  3786. "funding": [
  3787. {
  3788. "url": "https://github.com/sponsors/nyamsprod",
  3789. "type": "github"
  3790. }
  3791. ],
  3792. "time": "2024-12-18T10:11:15+00:00"
  3793. },
  3794. {
  3795. "name": "league/flysystem",
  3796. "version": "3.29.1",
  3797. "source": {
  3798. "type": "git",
  3799. "url": "https://github.com/thephpleague/flysystem.git",
  3800. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  3801. },
  3802. "dist": {
  3803. "type": "zip",
  3804. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3805. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3806. "shasum": ""
  3807. },
  3808. "require": {
  3809. "league/flysystem-local": "^3.0.0",
  3810. "league/mime-type-detection": "^1.0.0",
  3811. "php": "^8.0.2"
  3812. },
  3813. "conflict": {
  3814. "async-aws/core": "<1.19.0",
  3815. "async-aws/s3": "<1.14.0",
  3816. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3817. "guzzlehttp/guzzle": "<7.0",
  3818. "guzzlehttp/ringphp": "<1.1.1",
  3819. "phpseclib/phpseclib": "3.0.15",
  3820. "symfony/http-client": "<5.2"
  3821. },
  3822. "require-dev": {
  3823. "async-aws/s3": "^1.5 || ^2.0",
  3824. "async-aws/simple-s3": "^1.1 || ^2.0",
  3825. "aws/aws-sdk-php": "^3.295.10",
  3826. "composer/semver": "^3.0",
  3827. "ext-fileinfo": "*",
  3828. "ext-ftp": "*",
  3829. "ext-mongodb": "^1.3",
  3830. "ext-zip": "*",
  3831. "friendsofphp/php-cs-fixer": "^3.5",
  3832. "google/cloud-storage": "^1.23",
  3833. "guzzlehttp/psr7": "^2.6",
  3834. "microsoft/azure-storage-blob": "^1.1",
  3835. "mongodb/mongodb": "^1.2",
  3836. "phpseclib/phpseclib": "^3.0.36",
  3837. "phpstan/phpstan": "^1.10",
  3838. "phpunit/phpunit": "^9.5.11|^10.0",
  3839. "sabre/dav": "^4.6.0"
  3840. },
  3841. "type": "library",
  3842. "autoload": {
  3843. "psr-4": {
  3844. "League\\Flysystem\\": "src"
  3845. }
  3846. },
  3847. "notification-url": "https://packagist.org/downloads/",
  3848. "license": [
  3849. "MIT"
  3850. ],
  3851. "authors": [
  3852. {
  3853. "name": "Frank de Jonge",
  3854. "email": "info@frankdejonge.nl"
  3855. }
  3856. ],
  3857. "description": "File storage abstraction for PHP",
  3858. "keywords": [
  3859. "WebDAV",
  3860. "aws",
  3861. "cloud",
  3862. "file",
  3863. "files",
  3864. "filesystem",
  3865. "filesystems",
  3866. "ftp",
  3867. "s3",
  3868. "sftp",
  3869. "storage"
  3870. ],
  3871. "support": {
  3872. "issues": "https://github.com/thephpleague/flysystem/issues",
  3873. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  3874. },
  3875. "time": "2024-10-08T08:58:34+00:00"
  3876. },
  3877. {
  3878. "name": "league/flysystem-local",
  3879. "version": "3.29.0",
  3880. "source": {
  3881. "type": "git",
  3882. "url": "https://github.com/thephpleague/flysystem-local.git",
  3883. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  3884. },
  3885. "dist": {
  3886. "type": "zip",
  3887. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3888. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3889. "shasum": ""
  3890. },
  3891. "require": {
  3892. "ext-fileinfo": "*",
  3893. "league/flysystem": "^3.0.0",
  3894. "league/mime-type-detection": "^1.0.0",
  3895. "php": "^8.0.2"
  3896. },
  3897. "type": "library",
  3898. "autoload": {
  3899. "psr-4": {
  3900. "League\\Flysystem\\Local\\": ""
  3901. }
  3902. },
  3903. "notification-url": "https://packagist.org/downloads/",
  3904. "license": [
  3905. "MIT"
  3906. ],
  3907. "authors": [
  3908. {
  3909. "name": "Frank de Jonge",
  3910. "email": "info@frankdejonge.nl"
  3911. }
  3912. ],
  3913. "description": "Local filesystem adapter for Flysystem.",
  3914. "keywords": [
  3915. "Flysystem",
  3916. "file",
  3917. "files",
  3918. "filesystem",
  3919. "local"
  3920. ],
  3921. "support": {
  3922. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  3923. },
  3924. "time": "2024-08-09T21:24:39+00:00"
  3925. },
  3926. {
  3927. "name": "league/mime-type-detection",
  3928. "version": "1.16.0",
  3929. "source": {
  3930. "type": "git",
  3931. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3932. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  3933. },
  3934. "dist": {
  3935. "type": "zip",
  3936. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  3937. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  3938. "shasum": ""
  3939. },
  3940. "require": {
  3941. "ext-fileinfo": "*",
  3942. "php": "^7.4 || ^8.0"
  3943. },
  3944. "require-dev": {
  3945. "friendsofphp/php-cs-fixer": "^3.2",
  3946. "phpstan/phpstan": "^0.12.68",
  3947. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3948. },
  3949. "type": "library",
  3950. "autoload": {
  3951. "psr-4": {
  3952. "League\\MimeTypeDetection\\": "src"
  3953. }
  3954. },
  3955. "notification-url": "https://packagist.org/downloads/",
  3956. "license": [
  3957. "MIT"
  3958. ],
  3959. "authors": [
  3960. {
  3961. "name": "Frank de Jonge",
  3962. "email": "info@frankdejonge.nl"
  3963. }
  3964. ],
  3965. "description": "Mime-type detection for Flysystem",
  3966. "support": {
  3967. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3968. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  3969. },
  3970. "funding": [
  3971. {
  3972. "url": "https://github.com/frankdejonge",
  3973. "type": "github"
  3974. },
  3975. {
  3976. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3977. "type": "tidelift"
  3978. }
  3979. ],
  3980. "time": "2024-09-21T08:32:55+00:00"
  3981. },
  3982. {
  3983. "name": "league/oauth1-client",
  3984. "version": "v1.11.0",
  3985. "source": {
  3986. "type": "git",
  3987. "url": "https://github.com/thephpleague/oauth1-client.git",
  3988. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055"
  3989. },
  3990. "dist": {
  3991. "type": "zip",
  3992. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  3993. "reference": "f9c94b088837eb1aae1ad7c4f23eb65cc6993055",
  3994. "shasum": ""
  3995. },
  3996. "require": {
  3997. "ext-json": "*",
  3998. "ext-openssl": "*",
  3999. "guzzlehttp/guzzle": "^6.0|^7.0",
  4000. "guzzlehttp/psr7": "^1.7|^2.0",
  4001. "php": ">=7.1||>=8.0"
  4002. },
  4003. "require-dev": {
  4004. "ext-simplexml": "*",
  4005. "friendsofphp/php-cs-fixer": "^2.17",
  4006. "mockery/mockery": "^1.3.3",
  4007. "phpstan/phpstan": "^0.12.42",
  4008. "phpunit/phpunit": "^7.5||9.5"
  4009. },
  4010. "suggest": {
  4011. "ext-simplexml": "For decoding XML-based responses."
  4012. },
  4013. "type": "library",
  4014. "extra": {
  4015. "branch-alias": {
  4016. "dev-master": "1.0-dev",
  4017. "dev-develop": "2.0-dev"
  4018. }
  4019. },
  4020. "autoload": {
  4021. "psr-4": {
  4022. "League\\OAuth1\\Client\\": "src/"
  4023. }
  4024. },
  4025. "notification-url": "https://packagist.org/downloads/",
  4026. "license": [
  4027. "MIT"
  4028. ],
  4029. "authors": [
  4030. {
  4031. "name": "Ben Corlett",
  4032. "email": "bencorlett@me.com",
  4033. "homepage": "http://www.webcomm.com.au",
  4034. "role": "Developer"
  4035. }
  4036. ],
  4037. "description": "OAuth 1.0 Client Library",
  4038. "keywords": [
  4039. "Authentication",
  4040. "SSO",
  4041. "authorization",
  4042. "bitbucket",
  4043. "identity",
  4044. "idp",
  4045. "oauth",
  4046. "oauth1",
  4047. "single sign on",
  4048. "trello",
  4049. "tumblr",
  4050. "twitter"
  4051. ],
  4052. "support": {
  4053. "issues": "https://github.com/thephpleague/oauth1-client/issues",
  4054. "source": "https://github.com/thephpleague/oauth1-client/tree/v1.11.0"
  4055. },
  4056. "time": "2024-12-10T19:59:05+00:00"
  4057. },
  4058. {
  4059. "name": "league/uri",
  4060. "version": "7.5.1",
  4061. "source": {
  4062. "type": "git",
  4063. "url": "https://github.com/thephpleague/uri.git",
  4064. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  4065. },
  4066. "dist": {
  4067. "type": "zip",
  4068. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  4069. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  4070. "shasum": ""
  4071. },
  4072. "require": {
  4073. "league/uri-interfaces": "^7.5",
  4074. "php": "^8.1"
  4075. },
  4076. "conflict": {
  4077. "league/uri-schemes": "^1.0"
  4078. },
  4079. "suggest": {
  4080. "ext-bcmath": "to improve IPV4 host parsing",
  4081. "ext-fileinfo": "to create Data URI from file contennts",
  4082. "ext-gmp": "to improve IPV4 host parsing",
  4083. "ext-intl": "to handle IDN host with the best performance",
  4084. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  4085. "league/uri-components": "Needed to easily manipulate URI objects components",
  4086. "php-64bit": "to improve IPV4 host parsing",
  4087. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4088. },
  4089. "type": "library",
  4090. "extra": {
  4091. "branch-alias": {
  4092. "dev-master": "7.x-dev"
  4093. }
  4094. },
  4095. "autoload": {
  4096. "psr-4": {
  4097. "League\\Uri\\": ""
  4098. }
  4099. },
  4100. "notification-url": "https://packagist.org/downloads/",
  4101. "license": [
  4102. "MIT"
  4103. ],
  4104. "authors": [
  4105. {
  4106. "name": "Ignace Nyamagana Butera",
  4107. "email": "nyamsprod@gmail.com",
  4108. "homepage": "https://nyamsprod.com"
  4109. }
  4110. ],
  4111. "description": "URI manipulation library",
  4112. "homepage": "https://uri.thephpleague.com",
  4113. "keywords": [
  4114. "data-uri",
  4115. "file-uri",
  4116. "ftp",
  4117. "hostname",
  4118. "http",
  4119. "https",
  4120. "middleware",
  4121. "parse_str",
  4122. "parse_url",
  4123. "psr-7",
  4124. "query-string",
  4125. "querystring",
  4126. "rfc3986",
  4127. "rfc3987",
  4128. "rfc6570",
  4129. "uri",
  4130. "uri-template",
  4131. "url",
  4132. "ws"
  4133. ],
  4134. "support": {
  4135. "docs": "https://uri.thephpleague.com",
  4136. "forum": "https://thephpleague.slack.com",
  4137. "issues": "https://github.com/thephpleague/uri-src/issues",
  4138. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  4139. },
  4140. "funding": [
  4141. {
  4142. "url": "https://github.com/sponsors/nyamsprod",
  4143. "type": "github"
  4144. }
  4145. ],
  4146. "time": "2024-12-08T08:40:02+00:00"
  4147. },
  4148. {
  4149. "name": "league/uri-interfaces",
  4150. "version": "7.5.0",
  4151. "source": {
  4152. "type": "git",
  4153. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4154. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  4155. },
  4156. "dist": {
  4157. "type": "zip",
  4158. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4159. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4160. "shasum": ""
  4161. },
  4162. "require": {
  4163. "ext-filter": "*",
  4164. "php": "^8.1",
  4165. "psr/http-factory": "^1",
  4166. "psr/http-message": "^1.1 || ^2.0"
  4167. },
  4168. "suggest": {
  4169. "ext-bcmath": "to improve IPV4 host parsing",
  4170. "ext-gmp": "to improve IPV4 host parsing",
  4171. "ext-intl": "to handle IDN host with the best performance",
  4172. "php-64bit": "to improve IPV4 host parsing",
  4173. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4174. },
  4175. "type": "library",
  4176. "extra": {
  4177. "branch-alias": {
  4178. "dev-master": "7.x-dev"
  4179. }
  4180. },
  4181. "autoload": {
  4182. "psr-4": {
  4183. "League\\Uri\\": ""
  4184. }
  4185. },
  4186. "notification-url": "https://packagist.org/downloads/",
  4187. "license": [
  4188. "MIT"
  4189. ],
  4190. "authors": [
  4191. {
  4192. "name": "Ignace Nyamagana Butera",
  4193. "email": "nyamsprod@gmail.com",
  4194. "homepage": "https://nyamsprod.com"
  4195. }
  4196. ],
  4197. "description": "Common interfaces and classes for URI representation and interaction",
  4198. "homepage": "https://uri.thephpleague.com",
  4199. "keywords": [
  4200. "data-uri",
  4201. "file-uri",
  4202. "ftp",
  4203. "hostname",
  4204. "http",
  4205. "https",
  4206. "parse_str",
  4207. "parse_url",
  4208. "psr-7",
  4209. "query-string",
  4210. "querystring",
  4211. "rfc3986",
  4212. "rfc3987",
  4213. "rfc6570",
  4214. "uri",
  4215. "url",
  4216. "ws"
  4217. ],
  4218. "support": {
  4219. "docs": "https://uri.thephpleague.com",
  4220. "forum": "https://thephpleague.slack.com",
  4221. "issues": "https://github.com/thephpleague/uri-src/issues",
  4222. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  4223. },
  4224. "funding": [
  4225. {
  4226. "url": "https://github.com/sponsors/nyamsprod",
  4227. "type": "github"
  4228. }
  4229. ],
  4230. "time": "2024-12-08T08:18:47+00:00"
  4231. },
  4232. {
  4233. "name": "livewire/livewire",
  4234. "version": "v3.5.12",
  4235. "source": {
  4236. "type": "git",
  4237. "url": "https://github.com/livewire/livewire.git",
  4238. "reference": "3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d"
  4239. },
  4240. "dist": {
  4241. "type": "zip",
  4242. "url": "https://api.github.com/repos/livewire/livewire/zipball/3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d",
  4243. "reference": "3c8d1f9d7d9098aaea663093ae168f2d5d2ae73d",
  4244. "shasum": ""
  4245. },
  4246. "require": {
  4247. "illuminate/database": "^10.0|^11.0",
  4248. "illuminate/routing": "^10.0|^11.0",
  4249. "illuminate/support": "^10.0|^11.0",
  4250. "illuminate/validation": "^10.0|^11.0",
  4251. "laravel/prompts": "^0.1.24|^0.2|^0.3",
  4252. "league/mime-type-detection": "^1.9",
  4253. "php": "^8.1",
  4254. "symfony/console": "^6.0|^7.0",
  4255. "symfony/http-kernel": "^6.2|^7.0"
  4256. },
  4257. "require-dev": {
  4258. "calebporzio/sushi": "^2.1",
  4259. "laravel/framework": "^10.15.0|^11.0",
  4260. "mockery/mockery": "^1.3.1",
  4261. "orchestra/testbench": "^8.21.0|^9.0",
  4262. "orchestra/testbench-dusk": "^8.24|^9.1",
  4263. "phpunit/phpunit": "^10.4",
  4264. "psy/psysh": "^0.11.22|^0.12"
  4265. },
  4266. "type": "library",
  4267. "extra": {
  4268. "laravel": {
  4269. "aliases": {
  4270. "Livewire": "Livewire\\Livewire"
  4271. },
  4272. "providers": [
  4273. "Livewire\\LivewireServiceProvider"
  4274. ]
  4275. }
  4276. },
  4277. "autoload": {
  4278. "files": [
  4279. "src/helpers.php"
  4280. ],
  4281. "psr-4": {
  4282. "Livewire\\": "src/"
  4283. }
  4284. },
  4285. "notification-url": "https://packagist.org/downloads/",
  4286. "license": [
  4287. "MIT"
  4288. ],
  4289. "authors": [
  4290. {
  4291. "name": "Caleb Porzio",
  4292. "email": "calebporzio@gmail.com"
  4293. }
  4294. ],
  4295. "description": "A front-end framework for Laravel.",
  4296. "support": {
  4297. "issues": "https://github.com/livewire/livewire/issues",
  4298. "source": "https://github.com/livewire/livewire/tree/v3.5.12"
  4299. },
  4300. "funding": [
  4301. {
  4302. "url": "https://github.com/livewire",
  4303. "type": "github"
  4304. }
  4305. ],
  4306. "time": "2024-10-15T19:35:06+00:00"
  4307. },
  4308. {
  4309. "name": "masterminds/html5",
  4310. "version": "2.9.0",
  4311. "source": {
  4312. "type": "git",
  4313. "url": "https://github.com/Masterminds/html5-php.git",
  4314. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  4315. },
  4316. "dist": {
  4317. "type": "zip",
  4318. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4319. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  4320. "shasum": ""
  4321. },
  4322. "require": {
  4323. "ext-dom": "*",
  4324. "php": ">=5.3.0"
  4325. },
  4326. "require-dev": {
  4327. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  4328. },
  4329. "type": "library",
  4330. "extra": {
  4331. "branch-alias": {
  4332. "dev-master": "2.7-dev"
  4333. }
  4334. },
  4335. "autoload": {
  4336. "psr-4": {
  4337. "Masterminds\\": "src"
  4338. }
  4339. },
  4340. "notification-url": "https://packagist.org/downloads/",
  4341. "license": [
  4342. "MIT"
  4343. ],
  4344. "authors": [
  4345. {
  4346. "name": "Matt Butcher",
  4347. "email": "technosophos@gmail.com"
  4348. },
  4349. {
  4350. "name": "Matt Farina",
  4351. "email": "matt@mattfarina.com"
  4352. },
  4353. {
  4354. "name": "Asmir Mustafic",
  4355. "email": "goetas@gmail.com"
  4356. }
  4357. ],
  4358. "description": "An HTML5 parser and serializer.",
  4359. "homepage": "http://masterminds.github.io/html5-php",
  4360. "keywords": [
  4361. "HTML5",
  4362. "dom",
  4363. "html",
  4364. "parser",
  4365. "querypath",
  4366. "serializer",
  4367. "xml"
  4368. ],
  4369. "support": {
  4370. "issues": "https://github.com/Masterminds/html5-php/issues",
  4371. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  4372. },
  4373. "time": "2024-03-31T07:05:07+00:00"
  4374. },
  4375. {
  4376. "name": "matomo/device-detector",
  4377. "version": "6.4.2",
  4378. "source": {
  4379. "type": "git",
  4380. "url": "https://github.com/matomo-org/device-detector.git",
  4381. "reference": "806e52d214b05ddead1a1d4304c7592f61f95976"
  4382. },
  4383. "dist": {
  4384. "type": "zip",
  4385. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/806e52d214b05ddead1a1d4304c7592f61f95976",
  4386. "reference": "806e52d214b05ddead1a1d4304c7592f61f95976",
  4387. "shasum": ""
  4388. },
  4389. "require": {
  4390. "mustangostang/spyc": "*",
  4391. "php": "^7.2|^8.0"
  4392. },
  4393. "replace": {
  4394. "piwik/device-detector": "self.version"
  4395. },
  4396. "require-dev": {
  4397. "matthiasmullie/scrapbook": "^1.4.7",
  4398. "mayflower/mo4-coding-standard": "^v9.0.0",
  4399. "phpstan/phpstan": "^1.10.44",
  4400. "phpunit/phpunit": "^8.5.8",
  4401. "psr/cache": "^1.0.1",
  4402. "psr/simple-cache": "^1.0.1",
  4403. "symfony/yaml": "^5.1.7"
  4404. },
  4405. "suggest": {
  4406. "doctrine/cache": "Can directly be used for caching purpose",
  4407. "ext-yaml": "Necessary for using the Pecl YAML parser"
  4408. },
  4409. "type": "library",
  4410. "autoload": {
  4411. "psr-4": {
  4412. "DeviceDetector\\": ""
  4413. },
  4414. "exclude-from-classmap": [
  4415. "Tests/"
  4416. ]
  4417. },
  4418. "notification-url": "https://packagist.org/downloads/",
  4419. "license": [
  4420. "LGPL-3.0-or-later"
  4421. ],
  4422. "authors": [
  4423. {
  4424. "name": "The Matomo Team",
  4425. "email": "hello@matomo.org",
  4426. "homepage": "https://matomo.org/team/"
  4427. }
  4428. ],
  4429. "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.",
  4430. "homepage": "https://matomo.org",
  4431. "keywords": [
  4432. "devicedetection",
  4433. "parser",
  4434. "useragent"
  4435. ],
  4436. "support": {
  4437. "forum": "https://forum.matomo.org/",
  4438. "issues": "https://github.com/matomo-org/device-detector/issues",
  4439. "source": "https://github.com/matomo-org/matomo",
  4440. "wiki": "https://dev.matomo.org/"
  4441. },
  4442. "time": "2024-12-16T16:38:01+00:00"
  4443. },
  4444. {
  4445. "name": "monolog/monolog",
  4446. "version": "3.8.1",
  4447. "source": {
  4448. "type": "git",
  4449. "url": "https://github.com/Seldaek/monolog.git",
  4450. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  4451. },
  4452. "dist": {
  4453. "type": "zip",
  4454. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4455. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4456. "shasum": ""
  4457. },
  4458. "require": {
  4459. "php": ">=8.1",
  4460. "psr/log": "^2.0 || ^3.0"
  4461. },
  4462. "provide": {
  4463. "psr/log-implementation": "3.0.0"
  4464. },
  4465. "require-dev": {
  4466. "aws/aws-sdk-php": "^3.0",
  4467. "doctrine/couchdb": "~1.0@dev",
  4468. "elasticsearch/elasticsearch": "^7 || ^8",
  4469. "ext-json": "*",
  4470. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4471. "guzzlehttp/guzzle": "^7.4.5",
  4472. "guzzlehttp/psr7": "^2.2",
  4473. "mongodb/mongodb": "^1.8",
  4474. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4475. "php-console/php-console": "^3.1.8",
  4476. "phpstan/phpstan": "^2",
  4477. "phpstan/phpstan-deprecation-rules": "^2",
  4478. "phpstan/phpstan-strict-rules": "^2",
  4479. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4480. "predis/predis": "^1.1 || ^2",
  4481. "rollbar/rollbar": "^4.0",
  4482. "ruflin/elastica": "^7 || ^8",
  4483. "symfony/mailer": "^5.4 || ^6",
  4484. "symfony/mime": "^5.4 || ^6"
  4485. },
  4486. "suggest": {
  4487. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4488. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4489. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4490. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4491. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4492. "ext-mbstring": "Allow to work properly with unicode symbols",
  4493. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4494. "ext-openssl": "Required to send log messages using SSL",
  4495. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4496. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4497. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4498. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4499. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4500. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4501. },
  4502. "type": "library",
  4503. "extra": {
  4504. "branch-alias": {
  4505. "dev-main": "3.x-dev"
  4506. }
  4507. },
  4508. "autoload": {
  4509. "psr-4": {
  4510. "Monolog\\": "src/Monolog"
  4511. }
  4512. },
  4513. "notification-url": "https://packagist.org/downloads/",
  4514. "license": [
  4515. "MIT"
  4516. ],
  4517. "authors": [
  4518. {
  4519. "name": "Jordi Boggiano",
  4520. "email": "j.boggiano@seld.be",
  4521. "homepage": "https://seld.be"
  4522. }
  4523. ],
  4524. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4525. "homepage": "https://github.com/Seldaek/monolog",
  4526. "keywords": [
  4527. "log",
  4528. "logging",
  4529. "psr-3"
  4530. ],
  4531. "support": {
  4532. "issues": "https://github.com/Seldaek/monolog/issues",
  4533. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  4534. },
  4535. "funding": [
  4536. {
  4537. "url": "https://github.com/Seldaek",
  4538. "type": "github"
  4539. },
  4540. {
  4541. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4542. "type": "tidelift"
  4543. }
  4544. ],
  4545. "time": "2024-12-05T17:15:07+00:00"
  4546. },
  4547. {
  4548. "name": "mtdowling/jmespath.php",
  4549. "version": "2.8.0",
  4550. "source": {
  4551. "type": "git",
  4552. "url": "https://github.com/jmespath/jmespath.php.git",
  4553. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4554. },
  4555. "dist": {
  4556. "type": "zip",
  4557. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4558. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4559. "shasum": ""
  4560. },
  4561. "require": {
  4562. "php": "^7.2.5 || ^8.0",
  4563. "symfony/polyfill-mbstring": "^1.17"
  4564. },
  4565. "require-dev": {
  4566. "composer/xdebug-handler": "^3.0.3",
  4567. "phpunit/phpunit": "^8.5.33"
  4568. },
  4569. "bin": [
  4570. "bin/jp.php"
  4571. ],
  4572. "type": "library",
  4573. "extra": {
  4574. "branch-alias": {
  4575. "dev-master": "2.8-dev"
  4576. }
  4577. },
  4578. "autoload": {
  4579. "files": [
  4580. "src/JmesPath.php"
  4581. ],
  4582. "psr-4": {
  4583. "JmesPath\\": "src/"
  4584. }
  4585. },
  4586. "notification-url": "https://packagist.org/downloads/",
  4587. "license": [
  4588. "MIT"
  4589. ],
  4590. "authors": [
  4591. {
  4592. "name": "Graham Campbell",
  4593. "email": "hello@gjcampbell.co.uk",
  4594. "homepage": "https://github.com/GrahamCampbell"
  4595. },
  4596. {
  4597. "name": "Michael Dowling",
  4598. "email": "mtdowling@gmail.com",
  4599. "homepage": "https://github.com/mtdowling"
  4600. }
  4601. ],
  4602. "description": "Declaratively specify how to extract elements from a JSON document",
  4603. "keywords": [
  4604. "json",
  4605. "jsonpath"
  4606. ],
  4607. "support": {
  4608. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4609. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  4610. },
  4611. "time": "2024-09-04T18:46:31+00:00"
  4612. },
  4613. {
  4614. "name": "mustangostang/spyc",
  4615. "version": "0.6.3",
  4616. "source": {
  4617. "type": "git",
  4618. "url": "https://github.com/mustangostang/spyc.git",
  4619. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0"
  4620. },
  4621. "dist": {
  4622. "type": "zip",
  4623. "url": "https://api.github.com/repos/mustangostang/spyc/zipball/4627c838b16550b666d15aeae1e5289dd5b77da0",
  4624. "reference": "4627c838b16550b666d15aeae1e5289dd5b77da0",
  4625. "shasum": ""
  4626. },
  4627. "require": {
  4628. "php": ">=5.3.1"
  4629. },
  4630. "require-dev": {
  4631. "phpunit/phpunit": "4.3.*@dev"
  4632. },
  4633. "type": "library",
  4634. "extra": {
  4635. "branch-alias": {
  4636. "dev-master": "0.5.x-dev"
  4637. }
  4638. },
  4639. "autoload": {
  4640. "files": [
  4641. "Spyc.php"
  4642. ]
  4643. },
  4644. "notification-url": "https://packagist.org/downloads/",
  4645. "license": [
  4646. "MIT"
  4647. ],
  4648. "authors": [
  4649. {
  4650. "name": "mustangostang",
  4651. "email": "vlad.andersen@gmail.com"
  4652. }
  4653. ],
  4654. "description": "A simple YAML loader/dumper class for PHP",
  4655. "homepage": "https://github.com/mustangostang/spyc/",
  4656. "keywords": [
  4657. "spyc",
  4658. "yaml",
  4659. "yml"
  4660. ],
  4661. "support": {
  4662. "issues": "https://github.com/mustangostang/spyc/issues",
  4663. "source": "https://github.com/mustangostang/spyc/tree/0.6.3"
  4664. },
  4665. "time": "2019-09-10T13:16:29+00:00"
  4666. },
  4667. {
  4668. "name": "nesbot/carbon",
  4669. "version": "3.8.2",
  4670. "source": {
  4671. "type": "git",
  4672. "url": "https://github.com/briannesbitt/Carbon.git",
  4673. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947"
  4674. },
  4675. "dist": {
  4676. "type": "zip",
  4677. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  4678. "reference": "e1268cdbc486d97ce23fef2c666dc3c6b6de9947",
  4679. "shasum": ""
  4680. },
  4681. "require": {
  4682. "carbonphp/carbon-doctrine-types": "<100.0",
  4683. "ext-json": "*",
  4684. "php": "^8.1",
  4685. "psr/clock": "^1.0",
  4686. "symfony/clock": "^6.3 || ^7.0",
  4687. "symfony/polyfill-mbstring": "^1.0",
  4688. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  4689. },
  4690. "provide": {
  4691. "psr/clock-implementation": "1.0"
  4692. },
  4693. "require-dev": {
  4694. "doctrine/dbal": "^3.6.3 || ^4.0",
  4695. "doctrine/orm": "^2.15.2 || ^3.0",
  4696. "friendsofphp/php-cs-fixer": "^3.57.2",
  4697. "kylekatarnls/multi-tester": "^2.5.3",
  4698. "ondrejmirtes/better-reflection": "^6.25.0.4",
  4699. "phpmd/phpmd": "^2.15.0",
  4700. "phpstan/extension-installer": "^1.3.1",
  4701. "phpstan/phpstan": "^1.11.2",
  4702. "phpunit/phpunit": "^10.5.20",
  4703. "squizlabs/php_codesniffer": "^3.9.0"
  4704. },
  4705. "bin": [
  4706. "bin/carbon"
  4707. ],
  4708. "type": "library",
  4709. "extra": {
  4710. "branch-alias": {
  4711. "dev-master": "3.x-dev",
  4712. "dev-2.x": "2.x-dev"
  4713. },
  4714. "laravel": {
  4715. "providers": [
  4716. "Carbon\\Laravel\\ServiceProvider"
  4717. ]
  4718. },
  4719. "phpstan": {
  4720. "includes": [
  4721. "extension.neon"
  4722. ]
  4723. }
  4724. },
  4725. "autoload": {
  4726. "psr-4": {
  4727. "Carbon\\": "src/Carbon/"
  4728. }
  4729. },
  4730. "notification-url": "https://packagist.org/downloads/",
  4731. "license": [
  4732. "MIT"
  4733. ],
  4734. "authors": [
  4735. {
  4736. "name": "Brian Nesbitt",
  4737. "email": "brian@nesbot.com",
  4738. "homepage": "https://markido.com"
  4739. },
  4740. {
  4741. "name": "kylekatarnls",
  4742. "homepage": "https://github.com/kylekatarnls"
  4743. }
  4744. ],
  4745. "description": "An API extension for DateTime that supports 281 different languages.",
  4746. "homepage": "https://carbon.nesbot.com",
  4747. "keywords": [
  4748. "date",
  4749. "datetime",
  4750. "time"
  4751. ],
  4752. "support": {
  4753. "docs": "https://carbon.nesbot.com/docs",
  4754. "issues": "https://github.com/briannesbitt/Carbon/issues",
  4755. "source": "https://github.com/briannesbitt/Carbon"
  4756. },
  4757. "funding": [
  4758. {
  4759. "url": "https://github.com/sponsors/kylekatarnls",
  4760. "type": "github"
  4761. },
  4762. {
  4763. "url": "https://opencollective.com/Carbon#sponsor",
  4764. "type": "opencollective"
  4765. },
  4766. {
  4767. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4768. "type": "tidelift"
  4769. }
  4770. ],
  4771. "time": "2024-11-07T17:46:48+00:00"
  4772. },
  4773. {
  4774. "name": "nette/schema",
  4775. "version": "v1.3.2",
  4776. "source": {
  4777. "type": "git",
  4778. "url": "https://github.com/nette/schema.git",
  4779. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  4780. },
  4781. "dist": {
  4782. "type": "zip",
  4783. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  4784. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  4785. "shasum": ""
  4786. },
  4787. "require": {
  4788. "nette/utils": "^4.0",
  4789. "php": "8.1 - 8.4"
  4790. },
  4791. "require-dev": {
  4792. "nette/tester": "^2.5.2",
  4793. "phpstan/phpstan-nette": "^1.0",
  4794. "tracy/tracy": "^2.8"
  4795. },
  4796. "type": "library",
  4797. "extra": {
  4798. "branch-alias": {
  4799. "dev-master": "1.3-dev"
  4800. }
  4801. },
  4802. "autoload": {
  4803. "classmap": [
  4804. "src/"
  4805. ]
  4806. },
  4807. "notification-url": "https://packagist.org/downloads/",
  4808. "license": [
  4809. "BSD-3-Clause",
  4810. "GPL-2.0-only",
  4811. "GPL-3.0-only"
  4812. ],
  4813. "authors": [
  4814. {
  4815. "name": "David Grudl",
  4816. "homepage": "https://davidgrudl.com"
  4817. },
  4818. {
  4819. "name": "Nette Community",
  4820. "homepage": "https://nette.org/contributors"
  4821. }
  4822. ],
  4823. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4824. "homepage": "https://nette.org",
  4825. "keywords": [
  4826. "config",
  4827. "nette"
  4828. ],
  4829. "support": {
  4830. "issues": "https://github.com/nette/schema/issues",
  4831. "source": "https://github.com/nette/schema/tree/v1.3.2"
  4832. },
  4833. "time": "2024-10-06T23:10:23+00:00"
  4834. },
  4835. {
  4836. "name": "nette/utils",
  4837. "version": "v4.0.5",
  4838. "source": {
  4839. "type": "git",
  4840. "url": "https://github.com/nette/utils.git",
  4841. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  4842. },
  4843. "dist": {
  4844. "type": "zip",
  4845. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4846. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4847. "shasum": ""
  4848. },
  4849. "require": {
  4850. "php": "8.0 - 8.4"
  4851. },
  4852. "conflict": {
  4853. "nette/finder": "<3",
  4854. "nette/schema": "<1.2.2"
  4855. },
  4856. "require-dev": {
  4857. "jetbrains/phpstorm-attributes": "dev-master",
  4858. "nette/tester": "^2.5",
  4859. "phpstan/phpstan": "^1.0",
  4860. "tracy/tracy": "^2.9"
  4861. },
  4862. "suggest": {
  4863. "ext-gd": "to use Image",
  4864. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4865. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4866. "ext-json": "to use Nette\\Utils\\Json",
  4867. "ext-mbstring": "to use Strings::lower() etc...",
  4868. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4869. },
  4870. "type": "library",
  4871. "extra": {
  4872. "branch-alias": {
  4873. "dev-master": "4.0-dev"
  4874. }
  4875. },
  4876. "autoload": {
  4877. "classmap": [
  4878. "src/"
  4879. ]
  4880. },
  4881. "notification-url": "https://packagist.org/downloads/",
  4882. "license": [
  4883. "BSD-3-Clause",
  4884. "GPL-2.0-only",
  4885. "GPL-3.0-only"
  4886. ],
  4887. "authors": [
  4888. {
  4889. "name": "David Grudl",
  4890. "homepage": "https://davidgrudl.com"
  4891. },
  4892. {
  4893. "name": "Nette Community",
  4894. "homepage": "https://nette.org/contributors"
  4895. }
  4896. ],
  4897. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4898. "homepage": "https://nette.org",
  4899. "keywords": [
  4900. "array",
  4901. "core",
  4902. "datetime",
  4903. "images",
  4904. "json",
  4905. "nette",
  4906. "paginator",
  4907. "password",
  4908. "slugify",
  4909. "string",
  4910. "unicode",
  4911. "utf-8",
  4912. "utility",
  4913. "validation"
  4914. ],
  4915. "support": {
  4916. "issues": "https://github.com/nette/utils/issues",
  4917. "source": "https://github.com/nette/utils/tree/v4.0.5"
  4918. },
  4919. "time": "2024-08-07T15:39:19+00:00"
  4920. },
  4921. {
  4922. "name": "nikic/php-parser",
  4923. "version": "v5.3.1",
  4924. "source": {
  4925. "type": "git",
  4926. "url": "https://github.com/nikic/PHP-Parser.git",
  4927. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b"
  4928. },
  4929. "dist": {
  4930. "type": "zip",
  4931. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/8eea230464783aa9671db8eea6f8c6ac5285794b",
  4932. "reference": "8eea230464783aa9671db8eea6f8c6ac5285794b",
  4933. "shasum": ""
  4934. },
  4935. "require": {
  4936. "ext-ctype": "*",
  4937. "ext-json": "*",
  4938. "ext-tokenizer": "*",
  4939. "php": ">=7.4"
  4940. },
  4941. "require-dev": {
  4942. "ircmaxell/php-yacc": "^0.0.7",
  4943. "phpunit/phpunit": "^9.0"
  4944. },
  4945. "bin": [
  4946. "bin/php-parse"
  4947. ],
  4948. "type": "library",
  4949. "extra": {
  4950. "branch-alias": {
  4951. "dev-master": "5.0-dev"
  4952. }
  4953. },
  4954. "autoload": {
  4955. "psr-4": {
  4956. "PhpParser\\": "lib/PhpParser"
  4957. }
  4958. },
  4959. "notification-url": "https://packagist.org/downloads/",
  4960. "license": [
  4961. "BSD-3-Clause"
  4962. ],
  4963. "authors": [
  4964. {
  4965. "name": "Nikita Popov"
  4966. }
  4967. ],
  4968. "description": "A PHP parser written in PHP",
  4969. "keywords": [
  4970. "parser",
  4971. "php"
  4972. ],
  4973. "support": {
  4974. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4975. "source": "https://github.com/nikic/PHP-Parser/tree/v5.3.1"
  4976. },
  4977. "time": "2024-10-08T18:51:32+00:00"
  4978. },
  4979. {
  4980. "name": "nunomaduro/termwind",
  4981. "version": "v2.3.0",
  4982. "source": {
  4983. "type": "git",
  4984. "url": "https://github.com/nunomaduro/termwind.git",
  4985. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  4986. },
  4987. "dist": {
  4988. "type": "zip",
  4989. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  4990. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  4991. "shasum": ""
  4992. },
  4993. "require": {
  4994. "ext-mbstring": "*",
  4995. "php": "^8.2",
  4996. "symfony/console": "^7.1.8"
  4997. },
  4998. "require-dev": {
  4999. "illuminate/console": "^11.33.2",
  5000. "laravel/pint": "^1.18.2",
  5001. "mockery/mockery": "^1.6.12",
  5002. "pestphp/pest": "^2.36.0",
  5003. "phpstan/phpstan": "^1.12.11",
  5004. "phpstan/phpstan-strict-rules": "^1.6.1",
  5005. "symfony/var-dumper": "^7.1.8",
  5006. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  5007. },
  5008. "type": "library",
  5009. "extra": {
  5010. "laravel": {
  5011. "providers": [
  5012. "Termwind\\Laravel\\TermwindServiceProvider"
  5013. ]
  5014. },
  5015. "branch-alias": {
  5016. "dev-2.x": "2.x-dev"
  5017. }
  5018. },
  5019. "autoload": {
  5020. "files": [
  5021. "src/Functions.php"
  5022. ],
  5023. "psr-4": {
  5024. "Termwind\\": "src/"
  5025. }
  5026. },
  5027. "notification-url": "https://packagist.org/downloads/",
  5028. "license": [
  5029. "MIT"
  5030. ],
  5031. "authors": [
  5032. {
  5033. "name": "Nuno Maduro",
  5034. "email": "enunomaduro@gmail.com"
  5035. }
  5036. ],
  5037. "description": "Its like Tailwind CSS, but for the console.",
  5038. "keywords": [
  5039. "cli",
  5040. "console",
  5041. "css",
  5042. "package",
  5043. "php",
  5044. "style"
  5045. ],
  5046. "support": {
  5047. "issues": "https://github.com/nunomaduro/termwind/issues",
  5048. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  5049. },
  5050. "funding": [
  5051. {
  5052. "url": "https://www.paypal.com/paypalme/enunomaduro",
  5053. "type": "custom"
  5054. },
  5055. {
  5056. "url": "https://github.com/nunomaduro",
  5057. "type": "github"
  5058. },
  5059. {
  5060. "url": "https://github.com/xiCO2k",
  5061. "type": "github"
  5062. }
  5063. ],
  5064. "time": "2024-11-21T10:39:51+00:00"
  5065. },
  5066. {
  5067. "name": "openspout/openspout",
  5068. "version": "v4.28.3",
  5069. "source": {
  5070. "type": "git",
  5071. "url": "https://github.com/openspout/openspout.git",
  5072. "reference": "12b5eddcc230a97a9a67a722ad75c247e1a16750"
  5073. },
  5074. "dist": {
  5075. "type": "zip",
  5076. "url": "https://api.github.com/repos/openspout/openspout/zipball/12b5eddcc230a97a9a67a722ad75c247e1a16750",
  5077. "reference": "12b5eddcc230a97a9a67a722ad75c247e1a16750",
  5078. "shasum": ""
  5079. },
  5080. "require": {
  5081. "ext-dom": "*",
  5082. "ext-fileinfo": "*",
  5083. "ext-filter": "*",
  5084. "ext-libxml": "*",
  5085. "ext-xmlreader": "*",
  5086. "ext-zip": "*",
  5087. "php": "~8.2.0 || ~8.3.0 || ~8.4.0"
  5088. },
  5089. "require-dev": {
  5090. "ext-zlib": "*",
  5091. "friendsofphp/php-cs-fixer": "^3.65.0",
  5092. "infection/infection": "^0.29.8",
  5093. "phpbench/phpbench": "^1.3.1",
  5094. "phpstan/phpstan": "^2.0.3",
  5095. "phpstan/phpstan-phpunit": "^2.0.1",
  5096. "phpstan/phpstan-strict-rules": "^2",
  5097. "phpunit/phpunit": "^11.5.0"
  5098. },
  5099. "suggest": {
  5100. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-mbstring\" is not already installed or is too limited)",
  5101. "ext-mbstring": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  5102. },
  5103. "type": "library",
  5104. "extra": {
  5105. "branch-alias": {
  5106. "dev-master": "3.3.x-dev"
  5107. }
  5108. },
  5109. "autoload": {
  5110. "psr-4": {
  5111. "OpenSpout\\": "src/"
  5112. }
  5113. },
  5114. "notification-url": "https://packagist.org/downloads/",
  5115. "license": [
  5116. "MIT"
  5117. ],
  5118. "authors": [
  5119. {
  5120. "name": "Adrien Loison",
  5121. "email": "adrien@box.com"
  5122. }
  5123. ],
  5124. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  5125. "homepage": "https://github.com/openspout/openspout",
  5126. "keywords": [
  5127. "OOXML",
  5128. "csv",
  5129. "excel",
  5130. "memory",
  5131. "odf",
  5132. "ods",
  5133. "office",
  5134. "open",
  5135. "php",
  5136. "read",
  5137. "scale",
  5138. "spreadsheet",
  5139. "stream",
  5140. "write",
  5141. "xlsx"
  5142. ],
  5143. "support": {
  5144. "issues": "https://github.com/openspout/openspout/issues",
  5145. "source": "https://github.com/openspout/openspout/tree/v4.28.3"
  5146. },
  5147. "funding": [
  5148. {
  5149. "url": "https://paypal.me/filippotessarotto",
  5150. "type": "custom"
  5151. },
  5152. {
  5153. "url": "https://github.com/Slamdunk",
  5154. "type": "github"
  5155. }
  5156. ],
  5157. "time": "2024-12-17T11:28:11+00:00"
  5158. },
  5159. {
  5160. "name": "paragonie/constant_time_encoding",
  5161. "version": "v3.0.0",
  5162. "source": {
  5163. "type": "git",
  5164. "url": "https://github.com/paragonie/constant_time_encoding.git",
  5165. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  5166. },
  5167. "dist": {
  5168. "type": "zip",
  5169. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  5170. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  5171. "shasum": ""
  5172. },
  5173. "require": {
  5174. "php": "^8"
  5175. },
  5176. "require-dev": {
  5177. "phpunit/phpunit": "^9",
  5178. "vimeo/psalm": "^4|^5"
  5179. },
  5180. "type": "library",
  5181. "autoload": {
  5182. "psr-4": {
  5183. "ParagonIE\\ConstantTime\\": "src/"
  5184. }
  5185. },
  5186. "notification-url": "https://packagist.org/downloads/",
  5187. "license": [
  5188. "MIT"
  5189. ],
  5190. "authors": [
  5191. {
  5192. "name": "Paragon Initiative Enterprises",
  5193. "email": "security@paragonie.com",
  5194. "homepage": "https://paragonie.com",
  5195. "role": "Maintainer"
  5196. },
  5197. {
  5198. "name": "Steve 'Sc00bz' Thomas",
  5199. "email": "steve@tobtu.com",
  5200. "homepage": "https://www.tobtu.com",
  5201. "role": "Original Developer"
  5202. }
  5203. ],
  5204. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5205. "keywords": [
  5206. "base16",
  5207. "base32",
  5208. "base32_decode",
  5209. "base32_encode",
  5210. "base64",
  5211. "base64_decode",
  5212. "base64_encode",
  5213. "bin2hex",
  5214. "encoding",
  5215. "hex",
  5216. "hex2bin",
  5217. "rfc4648"
  5218. ],
  5219. "support": {
  5220. "email": "info@paragonie.com",
  5221. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5222. "source": "https://github.com/paragonie/constant_time_encoding"
  5223. },
  5224. "time": "2024-05-08T12:36:18+00:00"
  5225. },
  5226. {
  5227. "name": "paragonie/random_compat",
  5228. "version": "v9.99.100",
  5229. "source": {
  5230. "type": "git",
  5231. "url": "https://github.com/paragonie/random_compat.git",
  5232. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5233. },
  5234. "dist": {
  5235. "type": "zip",
  5236. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5237. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5238. "shasum": ""
  5239. },
  5240. "require": {
  5241. "php": ">= 7"
  5242. },
  5243. "require-dev": {
  5244. "phpunit/phpunit": "4.*|5.*",
  5245. "vimeo/psalm": "^1"
  5246. },
  5247. "suggest": {
  5248. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5249. },
  5250. "type": "library",
  5251. "notification-url": "https://packagist.org/downloads/",
  5252. "license": [
  5253. "MIT"
  5254. ],
  5255. "authors": [
  5256. {
  5257. "name": "Paragon Initiative Enterprises",
  5258. "email": "security@paragonie.com",
  5259. "homepage": "https://paragonie.com"
  5260. }
  5261. ],
  5262. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5263. "keywords": [
  5264. "csprng",
  5265. "polyfill",
  5266. "pseudorandom",
  5267. "random"
  5268. ],
  5269. "support": {
  5270. "email": "info@paragonie.com",
  5271. "issues": "https://github.com/paragonie/random_compat/issues",
  5272. "source": "https://github.com/paragonie/random_compat"
  5273. },
  5274. "time": "2020-10-15T08:29:30+00:00"
  5275. },
  5276. {
  5277. "name": "phpoption/phpoption",
  5278. "version": "1.9.3",
  5279. "source": {
  5280. "type": "git",
  5281. "url": "https://github.com/schmittjoh/php-option.git",
  5282. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5283. },
  5284. "dist": {
  5285. "type": "zip",
  5286. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5287. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5288. "shasum": ""
  5289. },
  5290. "require": {
  5291. "php": "^7.2.5 || ^8.0"
  5292. },
  5293. "require-dev": {
  5294. "bamarni/composer-bin-plugin": "^1.8.2",
  5295. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5296. },
  5297. "type": "library",
  5298. "extra": {
  5299. "bamarni-bin": {
  5300. "bin-links": true,
  5301. "forward-command": false
  5302. },
  5303. "branch-alias": {
  5304. "dev-master": "1.9-dev"
  5305. }
  5306. },
  5307. "autoload": {
  5308. "psr-4": {
  5309. "PhpOption\\": "src/PhpOption/"
  5310. }
  5311. },
  5312. "notification-url": "https://packagist.org/downloads/",
  5313. "license": [
  5314. "Apache-2.0"
  5315. ],
  5316. "authors": [
  5317. {
  5318. "name": "Johannes M. Schmitt",
  5319. "email": "schmittjoh@gmail.com",
  5320. "homepage": "https://github.com/schmittjoh"
  5321. },
  5322. {
  5323. "name": "Graham Campbell",
  5324. "email": "hello@gjcampbell.co.uk",
  5325. "homepage": "https://github.com/GrahamCampbell"
  5326. }
  5327. ],
  5328. "description": "Option Type for PHP",
  5329. "keywords": [
  5330. "language",
  5331. "option",
  5332. "php",
  5333. "type"
  5334. ],
  5335. "support": {
  5336. "issues": "https://github.com/schmittjoh/php-option/issues",
  5337. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5338. },
  5339. "funding": [
  5340. {
  5341. "url": "https://github.com/GrahamCampbell",
  5342. "type": "github"
  5343. },
  5344. {
  5345. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5346. "type": "tidelift"
  5347. }
  5348. ],
  5349. "time": "2024-07-20T21:41:07+00:00"
  5350. },
  5351. {
  5352. "name": "phpseclib/phpseclib",
  5353. "version": "3.0.43",
  5354. "source": {
  5355. "type": "git",
  5356. "url": "https://github.com/phpseclib/phpseclib.git",
  5357. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  5358. },
  5359. "dist": {
  5360. "type": "zip",
  5361. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  5362. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  5363. "shasum": ""
  5364. },
  5365. "require": {
  5366. "paragonie/constant_time_encoding": "^1|^2|^3",
  5367. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  5368. "php": ">=5.6.1"
  5369. },
  5370. "require-dev": {
  5371. "phpunit/phpunit": "*"
  5372. },
  5373. "suggest": {
  5374. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  5375. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5376. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5377. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5378. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  5379. },
  5380. "type": "library",
  5381. "autoload": {
  5382. "files": [
  5383. "phpseclib/bootstrap.php"
  5384. ],
  5385. "psr-4": {
  5386. "phpseclib3\\": "phpseclib/"
  5387. }
  5388. },
  5389. "notification-url": "https://packagist.org/downloads/",
  5390. "license": [
  5391. "MIT"
  5392. ],
  5393. "authors": [
  5394. {
  5395. "name": "Jim Wigginton",
  5396. "email": "terrafrost@php.net",
  5397. "role": "Lead Developer"
  5398. },
  5399. {
  5400. "name": "Patrick Monnerat",
  5401. "email": "pm@datasphere.ch",
  5402. "role": "Developer"
  5403. },
  5404. {
  5405. "name": "Andreas Fischer",
  5406. "email": "bantu@phpbb.com",
  5407. "role": "Developer"
  5408. },
  5409. {
  5410. "name": "Hans-Jürgen Petrich",
  5411. "email": "petrich@tronic-media.com",
  5412. "role": "Developer"
  5413. },
  5414. {
  5415. "name": "Graham Campbell",
  5416. "email": "graham@alt-three.com",
  5417. "role": "Developer"
  5418. }
  5419. ],
  5420. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5421. "homepage": "http://phpseclib.sourceforge.net",
  5422. "keywords": [
  5423. "BigInteger",
  5424. "aes",
  5425. "asn.1",
  5426. "asn1",
  5427. "blowfish",
  5428. "crypto",
  5429. "cryptography",
  5430. "encryption",
  5431. "rsa",
  5432. "security",
  5433. "sftp",
  5434. "signature",
  5435. "signing",
  5436. "ssh",
  5437. "twofish",
  5438. "x.509",
  5439. "x509"
  5440. ],
  5441. "support": {
  5442. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5443. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  5444. },
  5445. "funding": [
  5446. {
  5447. "url": "https://github.com/terrafrost",
  5448. "type": "github"
  5449. },
  5450. {
  5451. "url": "https://www.patreon.com/phpseclib",
  5452. "type": "patreon"
  5453. },
  5454. {
  5455. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5456. "type": "tidelift"
  5457. }
  5458. ],
  5459. "time": "2024-12-14T21:12:59+00:00"
  5460. },
  5461. {
  5462. "name": "psr/cache",
  5463. "version": "3.0.0",
  5464. "source": {
  5465. "type": "git",
  5466. "url": "https://github.com/php-fig/cache.git",
  5467. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5468. },
  5469. "dist": {
  5470. "type": "zip",
  5471. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5472. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5473. "shasum": ""
  5474. },
  5475. "require": {
  5476. "php": ">=8.0.0"
  5477. },
  5478. "type": "library",
  5479. "extra": {
  5480. "branch-alias": {
  5481. "dev-master": "1.0.x-dev"
  5482. }
  5483. },
  5484. "autoload": {
  5485. "psr-4": {
  5486. "Psr\\Cache\\": "src/"
  5487. }
  5488. },
  5489. "notification-url": "https://packagist.org/downloads/",
  5490. "license": [
  5491. "MIT"
  5492. ],
  5493. "authors": [
  5494. {
  5495. "name": "PHP-FIG",
  5496. "homepage": "https://www.php-fig.org/"
  5497. }
  5498. ],
  5499. "description": "Common interface for caching libraries",
  5500. "keywords": [
  5501. "cache",
  5502. "psr",
  5503. "psr-6"
  5504. ],
  5505. "support": {
  5506. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5507. },
  5508. "time": "2021-02-03T23:26:27+00:00"
  5509. },
  5510. {
  5511. "name": "psr/clock",
  5512. "version": "1.0.0",
  5513. "source": {
  5514. "type": "git",
  5515. "url": "https://github.com/php-fig/clock.git",
  5516. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5517. },
  5518. "dist": {
  5519. "type": "zip",
  5520. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5521. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5522. "shasum": ""
  5523. },
  5524. "require": {
  5525. "php": "^7.0 || ^8.0"
  5526. },
  5527. "type": "library",
  5528. "autoload": {
  5529. "psr-4": {
  5530. "Psr\\Clock\\": "src/"
  5531. }
  5532. },
  5533. "notification-url": "https://packagist.org/downloads/",
  5534. "license": [
  5535. "MIT"
  5536. ],
  5537. "authors": [
  5538. {
  5539. "name": "PHP-FIG",
  5540. "homepage": "https://www.php-fig.org/"
  5541. }
  5542. ],
  5543. "description": "Common interface for reading the clock.",
  5544. "homepage": "https://github.com/php-fig/clock",
  5545. "keywords": [
  5546. "clock",
  5547. "now",
  5548. "psr",
  5549. "psr-20",
  5550. "time"
  5551. ],
  5552. "support": {
  5553. "issues": "https://github.com/php-fig/clock/issues",
  5554. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5555. },
  5556. "time": "2022-11-25T14:36:26+00:00"
  5557. },
  5558. {
  5559. "name": "psr/container",
  5560. "version": "2.0.2",
  5561. "source": {
  5562. "type": "git",
  5563. "url": "https://github.com/php-fig/container.git",
  5564. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5565. },
  5566. "dist": {
  5567. "type": "zip",
  5568. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5569. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5570. "shasum": ""
  5571. },
  5572. "require": {
  5573. "php": ">=7.4.0"
  5574. },
  5575. "type": "library",
  5576. "extra": {
  5577. "branch-alias": {
  5578. "dev-master": "2.0.x-dev"
  5579. }
  5580. },
  5581. "autoload": {
  5582. "psr-4": {
  5583. "Psr\\Container\\": "src/"
  5584. }
  5585. },
  5586. "notification-url": "https://packagist.org/downloads/",
  5587. "license": [
  5588. "MIT"
  5589. ],
  5590. "authors": [
  5591. {
  5592. "name": "PHP-FIG",
  5593. "homepage": "https://www.php-fig.org/"
  5594. }
  5595. ],
  5596. "description": "Common Container Interface (PHP FIG PSR-11)",
  5597. "homepage": "https://github.com/php-fig/container",
  5598. "keywords": [
  5599. "PSR-11",
  5600. "container",
  5601. "container-interface",
  5602. "container-interop",
  5603. "psr"
  5604. ],
  5605. "support": {
  5606. "issues": "https://github.com/php-fig/container/issues",
  5607. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5608. },
  5609. "time": "2021-11-05T16:47:00+00:00"
  5610. },
  5611. {
  5612. "name": "psr/event-dispatcher",
  5613. "version": "1.0.0",
  5614. "source": {
  5615. "type": "git",
  5616. "url": "https://github.com/php-fig/event-dispatcher.git",
  5617. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5618. },
  5619. "dist": {
  5620. "type": "zip",
  5621. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5622. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5623. "shasum": ""
  5624. },
  5625. "require": {
  5626. "php": ">=7.2.0"
  5627. },
  5628. "type": "library",
  5629. "extra": {
  5630. "branch-alias": {
  5631. "dev-master": "1.0.x-dev"
  5632. }
  5633. },
  5634. "autoload": {
  5635. "psr-4": {
  5636. "Psr\\EventDispatcher\\": "src/"
  5637. }
  5638. },
  5639. "notification-url": "https://packagist.org/downloads/",
  5640. "license": [
  5641. "MIT"
  5642. ],
  5643. "authors": [
  5644. {
  5645. "name": "PHP-FIG",
  5646. "homepage": "http://www.php-fig.org/"
  5647. }
  5648. ],
  5649. "description": "Standard interfaces for event handling.",
  5650. "keywords": [
  5651. "events",
  5652. "psr",
  5653. "psr-14"
  5654. ],
  5655. "support": {
  5656. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5657. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5658. },
  5659. "time": "2019-01-08T18:20:26+00:00"
  5660. },
  5661. {
  5662. "name": "psr/http-client",
  5663. "version": "1.0.3",
  5664. "source": {
  5665. "type": "git",
  5666. "url": "https://github.com/php-fig/http-client.git",
  5667. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5668. },
  5669. "dist": {
  5670. "type": "zip",
  5671. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5672. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5673. "shasum": ""
  5674. },
  5675. "require": {
  5676. "php": "^7.0 || ^8.0",
  5677. "psr/http-message": "^1.0 || ^2.0"
  5678. },
  5679. "type": "library",
  5680. "extra": {
  5681. "branch-alias": {
  5682. "dev-master": "1.0.x-dev"
  5683. }
  5684. },
  5685. "autoload": {
  5686. "psr-4": {
  5687. "Psr\\Http\\Client\\": "src/"
  5688. }
  5689. },
  5690. "notification-url": "https://packagist.org/downloads/",
  5691. "license": [
  5692. "MIT"
  5693. ],
  5694. "authors": [
  5695. {
  5696. "name": "PHP-FIG",
  5697. "homepage": "https://www.php-fig.org/"
  5698. }
  5699. ],
  5700. "description": "Common interface for HTTP clients",
  5701. "homepage": "https://github.com/php-fig/http-client",
  5702. "keywords": [
  5703. "http",
  5704. "http-client",
  5705. "psr",
  5706. "psr-18"
  5707. ],
  5708. "support": {
  5709. "source": "https://github.com/php-fig/http-client"
  5710. },
  5711. "time": "2023-09-23T14:17:50+00:00"
  5712. },
  5713. {
  5714. "name": "psr/http-factory",
  5715. "version": "1.1.0",
  5716. "source": {
  5717. "type": "git",
  5718. "url": "https://github.com/php-fig/http-factory.git",
  5719. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  5720. },
  5721. "dist": {
  5722. "type": "zip",
  5723. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5724. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  5725. "shasum": ""
  5726. },
  5727. "require": {
  5728. "php": ">=7.1",
  5729. "psr/http-message": "^1.0 || ^2.0"
  5730. },
  5731. "type": "library",
  5732. "extra": {
  5733. "branch-alias": {
  5734. "dev-master": "1.0.x-dev"
  5735. }
  5736. },
  5737. "autoload": {
  5738. "psr-4": {
  5739. "Psr\\Http\\Message\\": "src/"
  5740. }
  5741. },
  5742. "notification-url": "https://packagist.org/downloads/",
  5743. "license": [
  5744. "MIT"
  5745. ],
  5746. "authors": [
  5747. {
  5748. "name": "PHP-FIG",
  5749. "homepage": "https://www.php-fig.org/"
  5750. }
  5751. ],
  5752. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  5753. "keywords": [
  5754. "factory",
  5755. "http",
  5756. "message",
  5757. "psr",
  5758. "psr-17",
  5759. "psr-7",
  5760. "request",
  5761. "response"
  5762. ],
  5763. "support": {
  5764. "source": "https://github.com/php-fig/http-factory"
  5765. },
  5766. "time": "2024-04-15T12:06:14+00:00"
  5767. },
  5768. {
  5769. "name": "psr/http-message",
  5770. "version": "2.0",
  5771. "source": {
  5772. "type": "git",
  5773. "url": "https://github.com/php-fig/http-message.git",
  5774. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  5775. },
  5776. "dist": {
  5777. "type": "zip",
  5778. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5779. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  5780. "shasum": ""
  5781. },
  5782. "require": {
  5783. "php": "^7.2 || ^8.0"
  5784. },
  5785. "type": "library",
  5786. "extra": {
  5787. "branch-alias": {
  5788. "dev-master": "2.0.x-dev"
  5789. }
  5790. },
  5791. "autoload": {
  5792. "psr-4": {
  5793. "Psr\\Http\\Message\\": "src/"
  5794. }
  5795. },
  5796. "notification-url": "https://packagist.org/downloads/",
  5797. "license": [
  5798. "MIT"
  5799. ],
  5800. "authors": [
  5801. {
  5802. "name": "PHP-FIG",
  5803. "homepage": "https://www.php-fig.org/"
  5804. }
  5805. ],
  5806. "description": "Common interface for HTTP messages",
  5807. "homepage": "https://github.com/php-fig/http-message",
  5808. "keywords": [
  5809. "http",
  5810. "http-message",
  5811. "psr",
  5812. "psr-7",
  5813. "request",
  5814. "response"
  5815. ],
  5816. "support": {
  5817. "source": "https://github.com/php-fig/http-message/tree/2.0"
  5818. },
  5819. "time": "2023-04-04T09:54:51+00:00"
  5820. },
  5821. {
  5822. "name": "psr/log",
  5823. "version": "3.0.2",
  5824. "source": {
  5825. "type": "git",
  5826. "url": "https://github.com/php-fig/log.git",
  5827. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  5828. },
  5829. "dist": {
  5830. "type": "zip",
  5831. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5832. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  5833. "shasum": ""
  5834. },
  5835. "require": {
  5836. "php": ">=8.0.0"
  5837. },
  5838. "type": "library",
  5839. "extra": {
  5840. "branch-alias": {
  5841. "dev-master": "3.x-dev"
  5842. }
  5843. },
  5844. "autoload": {
  5845. "psr-4": {
  5846. "Psr\\Log\\": "src"
  5847. }
  5848. },
  5849. "notification-url": "https://packagist.org/downloads/",
  5850. "license": [
  5851. "MIT"
  5852. ],
  5853. "authors": [
  5854. {
  5855. "name": "PHP-FIG",
  5856. "homepage": "https://www.php-fig.org/"
  5857. }
  5858. ],
  5859. "description": "Common interface for logging libraries",
  5860. "homepage": "https://github.com/php-fig/log",
  5861. "keywords": [
  5862. "log",
  5863. "psr",
  5864. "psr-3"
  5865. ],
  5866. "support": {
  5867. "source": "https://github.com/php-fig/log/tree/3.0.2"
  5868. },
  5869. "time": "2024-09-11T13:17:53+00:00"
  5870. },
  5871. {
  5872. "name": "psr/simple-cache",
  5873. "version": "3.0.0",
  5874. "source": {
  5875. "type": "git",
  5876. "url": "https://github.com/php-fig/simple-cache.git",
  5877. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  5878. },
  5879. "dist": {
  5880. "type": "zip",
  5881. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5882. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  5883. "shasum": ""
  5884. },
  5885. "require": {
  5886. "php": ">=8.0.0"
  5887. },
  5888. "type": "library",
  5889. "extra": {
  5890. "branch-alias": {
  5891. "dev-master": "3.0.x-dev"
  5892. }
  5893. },
  5894. "autoload": {
  5895. "psr-4": {
  5896. "Psr\\SimpleCache\\": "src/"
  5897. }
  5898. },
  5899. "notification-url": "https://packagist.org/downloads/",
  5900. "license": [
  5901. "MIT"
  5902. ],
  5903. "authors": [
  5904. {
  5905. "name": "PHP-FIG",
  5906. "homepage": "https://www.php-fig.org/"
  5907. }
  5908. ],
  5909. "description": "Common interfaces for simple caching",
  5910. "keywords": [
  5911. "cache",
  5912. "caching",
  5913. "psr",
  5914. "psr-16",
  5915. "simple-cache"
  5916. ],
  5917. "support": {
  5918. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  5919. },
  5920. "time": "2021-10-29T13:26:27+00:00"
  5921. },
  5922. {
  5923. "name": "psy/psysh",
  5924. "version": "v0.12.7",
  5925. "source": {
  5926. "type": "git",
  5927. "url": "https://github.com/bobthecow/psysh.git",
  5928. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c"
  5929. },
  5930. "dist": {
  5931. "type": "zip",
  5932. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  5933. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  5934. "shasum": ""
  5935. },
  5936. "require": {
  5937. "ext-json": "*",
  5938. "ext-tokenizer": "*",
  5939. "nikic/php-parser": "^5.0 || ^4.0",
  5940. "php": "^8.0 || ^7.4",
  5941. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  5942. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  5943. },
  5944. "conflict": {
  5945. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  5946. },
  5947. "require-dev": {
  5948. "bamarni/composer-bin-plugin": "^1.2"
  5949. },
  5950. "suggest": {
  5951. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  5952. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  5953. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  5954. },
  5955. "bin": [
  5956. "bin/psysh"
  5957. ],
  5958. "type": "library",
  5959. "extra": {
  5960. "bamarni-bin": {
  5961. "bin-links": false,
  5962. "forward-command": false
  5963. },
  5964. "branch-alias": {
  5965. "dev-main": "0.12.x-dev"
  5966. }
  5967. },
  5968. "autoload": {
  5969. "files": [
  5970. "src/functions.php"
  5971. ],
  5972. "psr-4": {
  5973. "Psy\\": "src/"
  5974. }
  5975. },
  5976. "notification-url": "https://packagist.org/downloads/",
  5977. "license": [
  5978. "MIT"
  5979. ],
  5980. "authors": [
  5981. {
  5982. "name": "Justin Hileman",
  5983. "email": "justin@justinhileman.info",
  5984. "homepage": "http://justinhileman.com"
  5985. }
  5986. ],
  5987. "description": "An interactive shell for modern PHP.",
  5988. "homepage": "http://psysh.org",
  5989. "keywords": [
  5990. "REPL",
  5991. "console",
  5992. "interactive",
  5993. "shell"
  5994. ],
  5995. "support": {
  5996. "issues": "https://github.com/bobthecow/psysh/issues",
  5997. "source": "https://github.com/bobthecow/psysh/tree/v0.12.7"
  5998. },
  5999. "time": "2024-12-10T01:58:33+00:00"
  6000. },
  6001. {
  6002. "name": "ralouphie/getallheaders",
  6003. "version": "3.0.3",
  6004. "source": {
  6005. "type": "git",
  6006. "url": "https://github.com/ralouphie/getallheaders.git",
  6007. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6008. },
  6009. "dist": {
  6010. "type": "zip",
  6011. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6012. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6013. "shasum": ""
  6014. },
  6015. "require": {
  6016. "php": ">=5.6"
  6017. },
  6018. "require-dev": {
  6019. "php-coveralls/php-coveralls": "^2.1",
  6020. "phpunit/phpunit": "^5 || ^6.5"
  6021. },
  6022. "type": "library",
  6023. "autoload": {
  6024. "files": [
  6025. "src/getallheaders.php"
  6026. ]
  6027. },
  6028. "notification-url": "https://packagist.org/downloads/",
  6029. "license": [
  6030. "MIT"
  6031. ],
  6032. "authors": [
  6033. {
  6034. "name": "Ralph Khattar",
  6035. "email": "ralph.khattar@gmail.com"
  6036. }
  6037. ],
  6038. "description": "A polyfill for getallheaders.",
  6039. "support": {
  6040. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6041. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6042. },
  6043. "time": "2019-03-08T08:55:37+00:00"
  6044. },
  6045. {
  6046. "name": "ramsey/collection",
  6047. "version": "2.0.0",
  6048. "source": {
  6049. "type": "git",
  6050. "url": "https://github.com/ramsey/collection.git",
  6051. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  6052. },
  6053. "dist": {
  6054. "type": "zip",
  6055. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6056. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  6057. "shasum": ""
  6058. },
  6059. "require": {
  6060. "php": "^8.1"
  6061. },
  6062. "require-dev": {
  6063. "captainhook/plugin-composer": "^5.3",
  6064. "ergebnis/composer-normalize": "^2.28.3",
  6065. "fakerphp/faker": "^1.21",
  6066. "hamcrest/hamcrest-php": "^2.0",
  6067. "jangregor/phpstan-prophecy": "^1.0",
  6068. "mockery/mockery": "^1.5",
  6069. "php-parallel-lint/php-console-highlighter": "^1.0",
  6070. "php-parallel-lint/php-parallel-lint": "^1.3",
  6071. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  6072. "phpspec/prophecy-phpunit": "^2.0",
  6073. "phpstan/extension-installer": "^1.2",
  6074. "phpstan/phpstan": "^1.9",
  6075. "phpstan/phpstan-mockery": "^1.1",
  6076. "phpstan/phpstan-phpunit": "^1.3",
  6077. "phpunit/phpunit": "^9.5",
  6078. "psalm/plugin-mockery": "^1.1",
  6079. "psalm/plugin-phpunit": "^0.18.4",
  6080. "ramsey/coding-standard": "^2.0.3",
  6081. "ramsey/conventional-commits": "^1.3",
  6082. "vimeo/psalm": "^5.4"
  6083. },
  6084. "type": "library",
  6085. "extra": {
  6086. "captainhook": {
  6087. "force-install": true
  6088. },
  6089. "ramsey/conventional-commits": {
  6090. "configFile": "conventional-commits.json"
  6091. }
  6092. },
  6093. "autoload": {
  6094. "psr-4": {
  6095. "Ramsey\\Collection\\": "src/"
  6096. }
  6097. },
  6098. "notification-url": "https://packagist.org/downloads/",
  6099. "license": [
  6100. "MIT"
  6101. ],
  6102. "authors": [
  6103. {
  6104. "name": "Ben Ramsey",
  6105. "email": "ben@benramsey.com",
  6106. "homepage": "https://benramsey.com"
  6107. }
  6108. ],
  6109. "description": "A PHP library for representing and manipulating collections.",
  6110. "keywords": [
  6111. "array",
  6112. "collection",
  6113. "hash",
  6114. "map",
  6115. "queue",
  6116. "set"
  6117. ],
  6118. "support": {
  6119. "issues": "https://github.com/ramsey/collection/issues",
  6120. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  6121. },
  6122. "funding": [
  6123. {
  6124. "url": "https://github.com/ramsey",
  6125. "type": "github"
  6126. },
  6127. {
  6128. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  6129. "type": "tidelift"
  6130. }
  6131. ],
  6132. "time": "2022-12-31T21:50:55+00:00"
  6133. },
  6134. {
  6135. "name": "ramsey/uuid",
  6136. "version": "4.7.6",
  6137. "source": {
  6138. "type": "git",
  6139. "url": "https://github.com/ramsey/uuid.git",
  6140. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6141. },
  6142. "dist": {
  6143. "type": "zip",
  6144. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6145. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6146. "shasum": ""
  6147. },
  6148. "require": {
  6149. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  6150. "ext-json": "*",
  6151. "php": "^8.0",
  6152. "ramsey/collection": "^1.2 || ^2.0"
  6153. },
  6154. "replace": {
  6155. "rhumsaa/uuid": "self.version"
  6156. },
  6157. "require-dev": {
  6158. "captainhook/captainhook": "^5.10",
  6159. "captainhook/plugin-composer": "^5.3",
  6160. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6161. "doctrine/annotations": "^1.8",
  6162. "ergebnis/composer-normalize": "^2.15",
  6163. "mockery/mockery": "^1.3",
  6164. "paragonie/random-lib": "^2",
  6165. "php-mock/php-mock": "^2.2",
  6166. "php-mock/php-mock-mockery": "^1.3",
  6167. "php-parallel-lint/php-parallel-lint": "^1.1",
  6168. "phpbench/phpbench": "^1.0",
  6169. "phpstan/extension-installer": "^1.1",
  6170. "phpstan/phpstan": "^1.8",
  6171. "phpstan/phpstan-mockery": "^1.1",
  6172. "phpstan/phpstan-phpunit": "^1.1",
  6173. "phpunit/phpunit": "^8.5 || ^9",
  6174. "ramsey/composer-repl": "^1.4",
  6175. "slevomat/coding-standard": "^8.4",
  6176. "squizlabs/php_codesniffer": "^3.5",
  6177. "vimeo/psalm": "^4.9"
  6178. },
  6179. "suggest": {
  6180. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6181. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6182. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6183. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6184. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6185. },
  6186. "type": "library",
  6187. "extra": {
  6188. "captainhook": {
  6189. "force-install": true
  6190. }
  6191. },
  6192. "autoload": {
  6193. "files": [
  6194. "src/functions.php"
  6195. ],
  6196. "psr-4": {
  6197. "Ramsey\\Uuid\\": "src/"
  6198. }
  6199. },
  6200. "notification-url": "https://packagist.org/downloads/",
  6201. "license": [
  6202. "MIT"
  6203. ],
  6204. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6205. "keywords": [
  6206. "guid",
  6207. "identifier",
  6208. "uuid"
  6209. ],
  6210. "support": {
  6211. "issues": "https://github.com/ramsey/uuid/issues",
  6212. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6213. },
  6214. "funding": [
  6215. {
  6216. "url": "https://github.com/ramsey",
  6217. "type": "github"
  6218. },
  6219. {
  6220. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6221. "type": "tidelift"
  6222. }
  6223. ],
  6224. "time": "2024-04-27T21:32:50+00:00"
  6225. },
  6226. {
  6227. "name": "ryangjchandler/blade-capture-directive",
  6228. "version": "v1.0.0",
  6229. "source": {
  6230. "type": "git",
  6231. "url": "https://github.com/ryangjchandler/blade-capture-directive.git",
  6232. "reference": "cb6f58663d97f17bece176295240b740835e14f1"
  6233. },
  6234. "dist": {
  6235. "type": "zip",
  6236. "url": "https://api.github.com/repos/ryangjchandler/blade-capture-directive/zipball/cb6f58663d97f17bece176295240b740835e14f1",
  6237. "reference": "cb6f58663d97f17bece176295240b740835e14f1",
  6238. "shasum": ""
  6239. },
  6240. "require": {
  6241. "illuminate/contracts": "^10.0|^11.0",
  6242. "php": "^8.1",
  6243. "spatie/laravel-package-tools": "^1.9.2"
  6244. },
  6245. "require-dev": {
  6246. "nunomaduro/collision": "^7.0|^8.0",
  6247. "nunomaduro/larastan": "^2.0",
  6248. "orchestra/testbench": "^8.0|^9.0",
  6249. "pestphp/pest": "^2.0",
  6250. "pestphp/pest-plugin-laravel": "^2.0",
  6251. "phpstan/extension-installer": "^1.1",
  6252. "phpstan/phpstan-deprecation-rules": "^1.0",
  6253. "phpstan/phpstan-phpunit": "^1.0",
  6254. "phpunit/phpunit": "^10.0",
  6255. "spatie/laravel-ray": "^1.26"
  6256. },
  6257. "type": "library",
  6258. "extra": {
  6259. "laravel": {
  6260. "aliases": {
  6261. "BladeCaptureDirective": "RyanChandler\\BladeCaptureDirective\\Facades\\BladeCaptureDirective"
  6262. },
  6263. "providers": [
  6264. "RyanChandler\\BladeCaptureDirective\\BladeCaptureDirectiveServiceProvider"
  6265. ]
  6266. }
  6267. },
  6268. "autoload": {
  6269. "psr-4": {
  6270. "RyanChandler\\BladeCaptureDirective\\": "src",
  6271. "RyanChandler\\BladeCaptureDirective\\Database\\Factories\\": "database/factories"
  6272. }
  6273. },
  6274. "notification-url": "https://packagist.org/downloads/",
  6275. "license": [
  6276. "MIT"
  6277. ],
  6278. "authors": [
  6279. {
  6280. "name": "Ryan Chandler",
  6281. "email": "support@ryangjchandler.co.uk",
  6282. "role": "Developer"
  6283. }
  6284. ],
  6285. "description": "Create inline partials in your Blade templates with ease.",
  6286. "homepage": "https://github.com/ryangjchandler/blade-capture-directive",
  6287. "keywords": [
  6288. "blade-capture-directive",
  6289. "laravel",
  6290. "ryangjchandler"
  6291. ],
  6292. "support": {
  6293. "issues": "https://github.com/ryangjchandler/blade-capture-directive/issues",
  6294. "source": "https://github.com/ryangjchandler/blade-capture-directive/tree/v1.0.0"
  6295. },
  6296. "funding": [
  6297. {
  6298. "url": "https://github.com/ryangjchandler",
  6299. "type": "github"
  6300. }
  6301. ],
  6302. "time": "2024-02-26T18:08:49+00:00"
  6303. },
  6304. {
  6305. "name": "spatie/color",
  6306. "version": "1.6.2",
  6307. "source": {
  6308. "type": "git",
  6309. "url": "https://github.com/spatie/color.git",
  6310. "reference": "b4fac074a9e5999dcca12cbfab0f7c73e2684d6d"
  6311. },
  6312. "dist": {
  6313. "type": "zip",
  6314. "url": "https://api.github.com/repos/spatie/color/zipball/b4fac074a9e5999dcca12cbfab0f7c73e2684d6d",
  6315. "reference": "b4fac074a9e5999dcca12cbfab0f7c73e2684d6d",
  6316. "shasum": ""
  6317. },
  6318. "require": {
  6319. "php": "^7.3|^8.0"
  6320. },
  6321. "require-dev": {
  6322. "pestphp/pest": "^1.22",
  6323. "phpunit/phpunit": "^6.5||^9.0"
  6324. },
  6325. "type": "library",
  6326. "autoload": {
  6327. "psr-4": {
  6328. "Spatie\\Color\\": "src"
  6329. }
  6330. },
  6331. "notification-url": "https://packagist.org/downloads/",
  6332. "license": [
  6333. "MIT"
  6334. ],
  6335. "authors": [
  6336. {
  6337. "name": "Sebastian De Deyne",
  6338. "email": "sebastian@spatie.be",
  6339. "homepage": "https://spatie.be",
  6340. "role": "Developer"
  6341. }
  6342. ],
  6343. "description": "A little library to handle color conversions",
  6344. "homepage": "https://github.com/spatie/color",
  6345. "keywords": [
  6346. "color",
  6347. "conversion",
  6348. "rgb",
  6349. "spatie"
  6350. ],
  6351. "support": {
  6352. "issues": "https://github.com/spatie/color/issues",
  6353. "source": "https://github.com/spatie/color/tree/1.6.2"
  6354. },
  6355. "funding": [
  6356. {
  6357. "url": "https://github.com/spatie",
  6358. "type": "github"
  6359. }
  6360. ],
  6361. "time": "2024-12-09T16:20:38+00:00"
  6362. },
  6363. {
  6364. "name": "spatie/invade",
  6365. "version": "2.1.0",
  6366. "source": {
  6367. "type": "git",
  6368. "url": "https://github.com/spatie/invade.git",
  6369. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63"
  6370. },
  6371. "dist": {
  6372. "type": "zip",
  6373. "url": "https://api.github.com/repos/spatie/invade/zipball/b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6374. "reference": "b920f6411d21df4e8610a138e2e87ae4957d7f63",
  6375. "shasum": ""
  6376. },
  6377. "require": {
  6378. "php": "^8.0"
  6379. },
  6380. "require-dev": {
  6381. "pestphp/pest": "^1.20",
  6382. "phpstan/phpstan": "^1.4",
  6383. "spatie/ray": "^1.28"
  6384. },
  6385. "type": "library",
  6386. "autoload": {
  6387. "files": [
  6388. "src/functions.php"
  6389. ],
  6390. "psr-4": {
  6391. "Spatie\\Invade\\": "src"
  6392. }
  6393. },
  6394. "notification-url": "https://packagist.org/downloads/",
  6395. "license": [
  6396. "MIT"
  6397. ],
  6398. "authors": [
  6399. {
  6400. "name": "Freek Van der Herten",
  6401. "email": "freek@spatie.be",
  6402. "role": "Developer"
  6403. }
  6404. ],
  6405. "description": "A PHP function to work with private properties and methods",
  6406. "homepage": "https://github.com/spatie/invade",
  6407. "keywords": [
  6408. "invade",
  6409. "spatie"
  6410. ],
  6411. "support": {
  6412. "source": "https://github.com/spatie/invade/tree/2.1.0"
  6413. },
  6414. "funding": [
  6415. {
  6416. "url": "https://github.com/spatie",
  6417. "type": "github"
  6418. }
  6419. ],
  6420. "time": "2024-05-17T09:06:10+00:00"
  6421. },
  6422. {
  6423. "name": "spatie/laravel-package-tools",
  6424. "version": "1.17.0",
  6425. "source": {
  6426. "type": "git",
  6427. "url": "https://github.com/spatie/laravel-package-tools.git",
  6428. "reference": "9ab30fd24f677e5aa370ea4cf6b41c517d16cf85"
  6429. },
  6430. "dist": {
  6431. "type": "zip",
  6432. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/9ab30fd24f677e5aa370ea4cf6b41c517d16cf85",
  6433. "reference": "9ab30fd24f677e5aa370ea4cf6b41c517d16cf85",
  6434. "shasum": ""
  6435. },
  6436. "require": {
  6437. "illuminate/contracts": "^9.28|^10.0|^11.0",
  6438. "php": "^8.0"
  6439. },
  6440. "require-dev": {
  6441. "mockery/mockery": "^1.5",
  6442. "orchestra/testbench": "^7.7|^8.0|^9.0",
  6443. "pestphp/pest": "^1.22|^2",
  6444. "phpunit/phpunit": "^9.5.24|^10.5",
  6445. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  6446. },
  6447. "type": "library",
  6448. "autoload": {
  6449. "psr-4": {
  6450. "Spatie\\LaravelPackageTools\\": "src"
  6451. }
  6452. },
  6453. "notification-url": "https://packagist.org/downloads/",
  6454. "license": [
  6455. "MIT"
  6456. ],
  6457. "authors": [
  6458. {
  6459. "name": "Freek Van der Herten",
  6460. "email": "freek@spatie.be",
  6461. "role": "Developer"
  6462. }
  6463. ],
  6464. "description": "Tools for creating Laravel packages",
  6465. "homepage": "https://github.com/spatie/laravel-package-tools",
  6466. "keywords": [
  6467. "laravel-package-tools",
  6468. "spatie"
  6469. ],
  6470. "support": {
  6471. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6472. "source": "https://github.com/spatie/laravel-package-tools/tree/1.17.0"
  6473. },
  6474. "funding": [
  6475. {
  6476. "url": "https://github.com/spatie",
  6477. "type": "github"
  6478. }
  6479. ],
  6480. "time": "2024-12-09T16:29:14+00:00"
  6481. },
  6482. {
  6483. "name": "squirephp/model",
  6484. "version": "v3.7.0",
  6485. "source": {
  6486. "type": "git",
  6487. "url": "https://github.com/squirephp/model.git",
  6488. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce"
  6489. },
  6490. "dist": {
  6491. "type": "zip",
  6492. "url": "https://api.github.com/repos/squirephp/model/zipball/9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6493. "reference": "9faa567a39c3ceb31db79c5bec81a5ee89a233ce",
  6494. "shasum": ""
  6495. },
  6496. "require": {
  6497. "ext-pdo_sqlite": "*",
  6498. "illuminate/database": "^8.40|^9.0|^10.0|^11.0",
  6499. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6500. "php": "^8.0"
  6501. },
  6502. "type": "library",
  6503. "extra": {
  6504. "laravel": {
  6505. "providers": [
  6506. "Squire\\ModelServiceProvider"
  6507. ]
  6508. }
  6509. },
  6510. "autoload": {
  6511. "psr-4": {
  6512. "Squire\\": "src"
  6513. }
  6514. },
  6515. "notification-url": "https://packagist.org/downloads/",
  6516. "license": [
  6517. "MIT"
  6518. ],
  6519. "authors": [
  6520. {
  6521. "name": "Dan Harrin",
  6522. "email": "dan@danharrin.com"
  6523. }
  6524. ],
  6525. "description": "A library containing the base Squire model class.",
  6526. "homepage": "https://github.com/squirephp",
  6527. "keywords": [
  6528. "squire"
  6529. ],
  6530. "support": {
  6531. "issues": "https://github.com/squirephp/squire/issues",
  6532. "source": "https://github.com/squirephp/squire"
  6533. },
  6534. "time": "2024-03-11T11:06:10+00:00"
  6535. },
  6536. {
  6537. "name": "squirephp/repository",
  6538. "version": "v3.7.0",
  6539. "source": {
  6540. "type": "git",
  6541. "url": "https://github.com/squirephp/repository.git",
  6542. "reference": "c7cf78011f32904905638f4689975cbbbc78501c"
  6543. },
  6544. "dist": {
  6545. "type": "zip",
  6546. "url": "https://api.github.com/repos/squirephp/repository/zipball/c7cf78011f32904905638f4689975cbbbc78501c",
  6547. "reference": "c7cf78011f32904905638f4689975cbbbc78501c",
  6548. "shasum": ""
  6549. },
  6550. "require": {
  6551. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  6552. "php": "^8.0"
  6553. },
  6554. "type": "library",
  6555. "extra": {
  6556. "laravel": {
  6557. "aliases": {
  6558. "RepositoryManager": "Squire\\Repository\\Facades\\Repository"
  6559. },
  6560. "providers": [
  6561. "Squire\\RepositoryServiceProvider"
  6562. ]
  6563. }
  6564. },
  6565. "autoload": {
  6566. "psr-4": {
  6567. "Squire\\": "src"
  6568. }
  6569. },
  6570. "notification-url": "https://packagist.org/downloads/",
  6571. "license": [
  6572. "MIT"
  6573. ],
  6574. "authors": [
  6575. {
  6576. "name": "Dan Harrin",
  6577. "email": "dan@danharrin.com"
  6578. }
  6579. ],
  6580. "description": "A library containing the Squire repository.",
  6581. "homepage": "https://github.com/squirephp",
  6582. "keywords": [
  6583. "squire"
  6584. ],
  6585. "support": {
  6586. "issues": "https://github.com/squirephp/squire/issues",
  6587. "source": "https://github.com/squirephp/squire"
  6588. },
  6589. "time": "2024-03-11T11:06:10+00:00"
  6590. },
  6591. {
  6592. "name": "symfony/clock",
  6593. "version": "v7.2.0",
  6594. "source": {
  6595. "type": "git",
  6596. "url": "https://github.com/symfony/clock.git",
  6597. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  6598. },
  6599. "dist": {
  6600. "type": "zip",
  6601. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6602. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  6603. "shasum": ""
  6604. },
  6605. "require": {
  6606. "php": ">=8.2",
  6607. "psr/clock": "^1.0",
  6608. "symfony/polyfill-php83": "^1.28"
  6609. },
  6610. "provide": {
  6611. "psr/clock-implementation": "1.0"
  6612. },
  6613. "type": "library",
  6614. "autoload": {
  6615. "files": [
  6616. "Resources/now.php"
  6617. ],
  6618. "psr-4": {
  6619. "Symfony\\Component\\Clock\\": ""
  6620. },
  6621. "exclude-from-classmap": [
  6622. "/Tests/"
  6623. ]
  6624. },
  6625. "notification-url": "https://packagist.org/downloads/",
  6626. "license": [
  6627. "MIT"
  6628. ],
  6629. "authors": [
  6630. {
  6631. "name": "Nicolas Grekas",
  6632. "email": "p@tchwork.com"
  6633. },
  6634. {
  6635. "name": "Symfony Community",
  6636. "homepage": "https://symfony.com/contributors"
  6637. }
  6638. ],
  6639. "description": "Decouples applications from the system clock",
  6640. "homepage": "https://symfony.com",
  6641. "keywords": [
  6642. "clock",
  6643. "psr20",
  6644. "time"
  6645. ],
  6646. "support": {
  6647. "source": "https://github.com/symfony/clock/tree/v7.2.0"
  6648. },
  6649. "funding": [
  6650. {
  6651. "url": "https://symfony.com/sponsor",
  6652. "type": "custom"
  6653. },
  6654. {
  6655. "url": "https://github.com/fabpot",
  6656. "type": "github"
  6657. },
  6658. {
  6659. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6660. "type": "tidelift"
  6661. }
  6662. ],
  6663. "time": "2024-09-25T14:21:43+00:00"
  6664. },
  6665. {
  6666. "name": "symfony/console",
  6667. "version": "v7.2.1",
  6668. "source": {
  6669. "type": "git",
  6670. "url": "https://github.com/symfony/console.git",
  6671. "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3"
  6672. },
  6673. "dist": {
  6674. "type": "zip",
  6675. "url": "https://api.github.com/repos/symfony/console/zipball/fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
  6676. "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
  6677. "shasum": ""
  6678. },
  6679. "require": {
  6680. "php": ">=8.2",
  6681. "symfony/polyfill-mbstring": "~1.0",
  6682. "symfony/service-contracts": "^2.5|^3",
  6683. "symfony/string": "^6.4|^7.0"
  6684. },
  6685. "conflict": {
  6686. "symfony/dependency-injection": "<6.4",
  6687. "symfony/dotenv": "<6.4",
  6688. "symfony/event-dispatcher": "<6.4",
  6689. "symfony/lock": "<6.4",
  6690. "symfony/process": "<6.4"
  6691. },
  6692. "provide": {
  6693. "psr/log-implementation": "1.0|2.0|3.0"
  6694. },
  6695. "require-dev": {
  6696. "psr/log": "^1|^2|^3",
  6697. "symfony/config": "^6.4|^7.0",
  6698. "symfony/dependency-injection": "^6.4|^7.0",
  6699. "symfony/event-dispatcher": "^6.4|^7.0",
  6700. "symfony/http-foundation": "^6.4|^7.0",
  6701. "symfony/http-kernel": "^6.4|^7.0",
  6702. "symfony/lock": "^6.4|^7.0",
  6703. "symfony/messenger": "^6.4|^7.0",
  6704. "symfony/process": "^6.4|^7.0",
  6705. "symfony/stopwatch": "^6.4|^7.0",
  6706. "symfony/var-dumper": "^6.4|^7.0"
  6707. },
  6708. "type": "library",
  6709. "autoload": {
  6710. "psr-4": {
  6711. "Symfony\\Component\\Console\\": ""
  6712. },
  6713. "exclude-from-classmap": [
  6714. "/Tests/"
  6715. ]
  6716. },
  6717. "notification-url": "https://packagist.org/downloads/",
  6718. "license": [
  6719. "MIT"
  6720. ],
  6721. "authors": [
  6722. {
  6723. "name": "Fabien Potencier",
  6724. "email": "fabien@symfony.com"
  6725. },
  6726. {
  6727. "name": "Symfony Community",
  6728. "homepage": "https://symfony.com/contributors"
  6729. }
  6730. ],
  6731. "description": "Eases the creation of beautiful and testable command line interfaces",
  6732. "homepage": "https://symfony.com",
  6733. "keywords": [
  6734. "cli",
  6735. "command-line",
  6736. "console",
  6737. "terminal"
  6738. ],
  6739. "support": {
  6740. "source": "https://github.com/symfony/console/tree/v7.2.1"
  6741. },
  6742. "funding": [
  6743. {
  6744. "url": "https://symfony.com/sponsor",
  6745. "type": "custom"
  6746. },
  6747. {
  6748. "url": "https://github.com/fabpot",
  6749. "type": "github"
  6750. },
  6751. {
  6752. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6753. "type": "tidelift"
  6754. }
  6755. ],
  6756. "time": "2024-12-11T03:49:26+00:00"
  6757. },
  6758. {
  6759. "name": "symfony/css-selector",
  6760. "version": "v7.2.0",
  6761. "source": {
  6762. "type": "git",
  6763. "url": "https://github.com/symfony/css-selector.git",
  6764. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  6765. },
  6766. "dist": {
  6767. "type": "zip",
  6768. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6769. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  6770. "shasum": ""
  6771. },
  6772. "require": {
  6773. "php": ">=8.2"
  6774. },
  6775. "type": "library",
  6776. "autoload": {
  6777. "psr-4": {
  6778. "Symfony\\Component\\CssSelector\\": ""
  6779. },
  6780. "exclude-from-classmap": [
  6781. "/Tests/"
  6782. ]
  6783. },
  6784. "notification-url": "https://packagist.org/downloads/",
  6785. "license": [
  6786. "MIT"
  6787. ],
  6788. "authors": [
  6789. {
  6790. "name": "Fabien Potencier",
  6791. "email": "fabien@symfony.com"
  6792. },
  6793. {
  6794. "name": "Jean-François Simon",
  6795. "email": "jeanfrancois.simon@sensiolabs.com"
  6796. },
  6797. {
  6798. "name": "Symfony Community",
  6799. "homepage": "https://symfony.com/contributors"
  6800. }
  6801. ],
  6802. "description": "Converts CSS selectors to XPath expressions",
  6803. "homepage": "https://symfony.com",
  6804. "support": {
  6805. "source": "https://github.com/symfony/css-selector/tree/v7.2.0"
  6806. },
  6807. "funding": [
  6808. {
  6809. "url": "https://symfony.com/sponsor",
  6810. "type": "custom"
  6811. },
  6812. {
  6813. "url": "https://github.com/fabpot",
  6814. "type": "github"
  6815. },
  6816. {
  6817. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6818. "type": "tidelift"
  6819. }
  6820. ],
  6821. "time": "2024-09-25T14:21:43+00:00"
  6822. },
  6823. {
  6824. "name": "symfony/deprecation-contracts",
  6825. "version": "v3.5.1",
  6826. "source": {
  6827. "type": "git",
  6828. "url": "https://github.com/symfony/deprecation-contracts.git",
  6829. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  6830. },
  6831. "dist": {
  6832. "type": "zip",
  6833. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6834. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  6835. "shasum": ""
  6836. },
  6837. "require": {
  6838. "php": ">=8.1"
  6839. },
  6840. "type": "library",
  6841. "extra": {
  6842. "branch-alias": {
  6843. "dev-main": "3.5-dev"
  6844. },
  6845. "thanks": {
  6846. "name": "symfony/contracts",
  6847. "url": "https://github.com/symfony/contracts"
  6848. }
  6849. },
  6850. "autoload": {
  6851. "files": [
  6852. "function.php"
  6853. ]
  6854. },
  6855. "notification-url": "https://packagist.org/downloads/",
  6856. "license": [
  6857. "MIT"
  6858. ],
  6859. "authors": [
  6860. {
  6861. "name": "Nicolas Grekas",
  6862. "email": "p@tchwork.com"
  6863. },
  6864. {
  6865. "name": "Symfony Community",
  6866. "homepage": "https://symfony.com/contributors"
  6867. }
  6868. ],
  6869. "description": "A generic function and convention to trigger deprecation notices",
  6870. "homepage": "https://symfony.com",
  6871. "support": {
  6872. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  6873. },
  6874. "funding": [
  6875. {
  6876. "url": "https://symfony.com/sponsor",
  6877. "type": "custom"
  6878. },
  6879. {
  6880. "url": "https://github.com/fabpot",
  6881. "type": "github"
  6882. },
  6883. {
  6884. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6885. "type": "tidelift"
  6886. }
  6887. ],
  6888. "time": "2024-09-25T14:20:29+00:00"
  6889. },
  6890. {
  6891. "name": "symfony/error-handler",
  6892. "version": "v7.2.1",
  6893. "source": {
  6894. "type": "git",
  6895. "url": "https://github.com/symfony/error-handler.git",
  6896. "reference": "6150b89186573046167796fa5f3f76601d5145f8"
  6897. },
  6898. "dist": {
  6899. "type": "zip",
  6900. "url": "https://api.github.com/repos/symfony/error-handler/zipball/6150b89186573046167796fa5f3f76601d5145f8",
  6901. "reference": "6150b89186573046167796fa5f3f76601d5145f8",
  6902. "shasum": ""
  6903. },
  6904. "require": {
  6905. "php": ">=8.2",
  6906. "psr/log": "^1|^2|^3",
  6907. "symfony/var-dumper": "^6.4|^7.0"
  6908. },
  6909. "conflict": {
  6910. "symfony/deprecation-contracts": "<2.5",
  6911. "symfony/http-kernel": "<6.4"
  6912. },
  6913. "require-dev": {
  6914. "symfony/deprecation-contracts": "^2.5|^3",
  6915. "symfony/http-kernel": "^6.4|^7.0",
  6916. "symfony/serializer": "^6.4|^7.0"
  6917. },
  6918. "bin": [
  6919. "Resources/bin/patch-type-declarations"
  6920. ],
  6921. "type": "library",
  6922. "autoload": {
  6923. "psr-4": {
  6924. "Symfony\\Component\\ErrorHandler\\": ""
  6925. },
  6926. "exclude-from-classmap": [
  6927. "/Tests/"
  6928. ]
  6929. },
  6930. "notification-url": "https://packagist.org/downloads/",
  6931. "license": [
  6932. "MIT"
  6933. ],
  6934. "authors": [
  6935. {
  6936. "name": "Fabien Potencier",
  6937. "email": "fabien@symfony.com"
  6938. },
  6939. {
  6940. "name": "Symfony Community",
  6941. "homepage": "https://symfony.com/contributors"
  6942. }
  6943. ],
  6944. "description": "Provides tools to manage errors and ease debugging PHP code",
  6945. "homepage": "https://symfony.com",
  6946. "support": {
  6947. "source": "https://github.com/symfony/error-handler/tree/v7.2.1"
  6948. },
  6949. "funding": [
  6950. {
  6951. "url": "https://symfony.com/sponsor",
  6952. "type": "custom"
  6953. },
  6954. {
  6955. "url": "https://github.com/fabpot",
  6956. "type": "github"
  6957. },
  6958. {
  6959. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6960. "type": "tidelift"
  6961. }
  6962. ],
  6963. "time": "2024-12-07T08:50:44+00:00"
  6964. },
  6965. {
  6966. "name": "symfony/event-dispatcher",
  6967. "version": "v7.2.0",
  6968. "source": {
  6969. "type": "git",
  6970. "url": "https://github.com/symfony/event-dispatcher.git",
  6971. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
  6972. },
  6973. "dist": {
  6974. "type": "zip",
  6975. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
  6976. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
  6977. "shasum": ""
  6978. },
  6979. "require": {
  6980. "php": ">=8.2",
  6981. "symfony/event-dispatcher-contracts": "^2.5|^3"
  6982. },
  6983. "conflict": {
  6984. "symfony/dependency-injection": "<6.4",
  6985. "symfony/service-contracts": "<2.5"
  6986. },
  6987. "provide": {
  6988. "psr/event-dispatcher-implementation": "1.0",
  6989. "symfony/event-dispatcher-implementation": "2.0|3.0"
  6990. },
  6991. "require-dev": {
  6992. "psr/log": "^1|^2|^3",
  6993. "symfony/config": "^6.4|^7.0",
  6994. "symfony/dependency-injection": "^6.4|^7.0",
  6995. "symfony/error-handler": "^6.4|^7.0",
  6996. "symfony/expression-language": "^6.4|^7.0",
  6997. "symfony/http-foundation": "^6.4|^7.0",
  6998. "symfony/service-contracts": "^2.5|^3",
  6999. "symfony/stopwatch": "^6.4|^7.0"
  7000. },
  7001. "type": "library",
  7002. "autoload": {
  7003. "psr-4": {
  7004. "Symfony\\Component\\EventDispatcher\\": ""
  7005. },
  7006. "exclude-from-classmap": [
  7007. "/Tests/"
  7008. ]
  7009. },
  7010. "notification-url": "https://packagist.org/downloads/",
  7011. "license": [
  7012. "MIT"
  7013. ],
  7014. "authors": [
  7015. {
  7016. "name": "Fabien Potencier",
  7017. "email": "fabien@symfony.com"
  7018. },
  7019. {
  7020. "name": "Symfony Community",
  7021. "homepage": "https://symfony.com/contributors"
  7022. }
  7023. ],
  7024. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7025. "homepage": "https://symfony.com",
  7026. "support": {
  7027. "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0"
  7028. },
  7029. "funding": [
  7030. {
  7031. "url": "https://symfony.com/sponsor",
  7032. "type": "custom"
  7033. },
  7034. {
  7035. "url": "https://github.com/fabpot",
  7036. "type": "github"
  7037. },
  7038. {
  7039. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7040. "type": "tidelift"
  7041. }
  7042. ],
  7043. "time": "2024-09-25T14:21:43+00:00"
  7044. },
  7045. {
  7046. "name": "symfony/event-dispatcher-contracts",
  7047. "version": "v3.5.1",
  7048. "source": {
  7049. "type": "git",
  7050. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7051. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  7052. },
  7053. "dist": {
  7054. "type": "zip",
  7055. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7056. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  7057. "shasum": ""
  7058. },
  7059. "require": {
  7060. "php": ">=8.1",
  7061. "psr/event-dispatcher": "^1"
  7062. },
  7063. "type": "library",
  7064. "extra": {
  7065. "branch-alias": {
  7066. "dev-main": "3.5-dev"
  7067. },
  7068. "thanks": {
  7069. "name": "symfony/contracts",
  7070. "url": "https://github.com/symfony/contracts"
  7071. }
  7072. },
  7073. "autoload": {
  7074. "psr-4": {
  7075. "Symfony\\Contracts\\EventDispatcher\\": ""
  7076. }
  7077. },
  7078. "notification-url": "https://packagist.org/downloads/",
  7079. "license": [
  7080. "MIT"
  7081. ],
  7082. "authors": [
  7083. {
  7084. "name": "Nicolas Grekas",
  7085. "email": "p@tchwork.com"
  7086. },
  7087. {
  7088. "name": "Symfony Community",
  7089. "homepage": "https://symfony.com/contributors"
  7090. }
  7091. ],
  7092. "description": "Generic abstractions related to dispatching event",
  7093. "homepage": "https://symfony.com",
  7094. "keywords": [
  7095. "abstractions",
  7096. "contracts",
  7097. "decoupling",
  7098. "interfaces",
  7099. "interoperability",
  7100. "standards"
  7101. ],
  7102. "support": {
  7103. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  7104. },
  7105. "funding": [
  7106. {
  7107. "url": "https://symfony.com/sponsor",
  7108. "type": "custom"
  7109. },
  7110. {
  7111. "url": "https://github.com/fabpot",
  7112. "type": "github"
  7113. },
  7114. {
  7115. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7116. "type": "tidelift"
  7117. }
  7118. ],
  7119. "time": "2024-09-25T14:20:29+00:00"
  7120. },
  7121. {
  7122. "name": "symfony/finder",
  7123. "version": "v7.2.0",
  7124. "source": {
  7125. "type": "git",
  7126. "url": "https://github.com/symfony/finder.git",
  7127. "reference": "6de263e5868b9a137602dd1e33e4d48bfae99c49"
  7128. },
  7129. "dist": {
  7130. "type": "zip",
  7131. "url": "https://api.github.com/repos/symfony/finder/zipball/6de263e5868b9a137602dd1e33e4d48bfae99c49",
  7132. "reference": "6de263e5868b9a137602dd1e33e4d48bfae99c49",
  7133. "shasum": ""
  7134. },
  7135. "require": {
  7136. "php": ">=8.2"
  7137. },
  7138. "require-dev": {
  7139. "symfony/filesystem": "^6.4|^7.0"
  7140. },
  7141. "type": "library",
  7142. "autoload": {
  7143. "psr-4": {
  7144. "Symfony\\Component\\Finder\\": ""
  7145. },
  7146. "exclude-from-classmap": [
  7147. "/Tests/"
  7148. ]
  7149. },
  7150. "notification-url": "https://packagist.org/downloads/",
  7151. "license": [
  7152. "MIT"
  7153. ],
  7154. "authors": [
  7155. {
  7156. "name": "Fabien Potencier",
  7157. "email": "fabien@symfony.com"
  7158. },
  7159. {
  7160. "name": "Symfony Community",
  7161. "homepage": "https://symfony.com/contributors"
  7162. }
  7163. ],
  7164. "description": "Finds files and directories via an intuitive fluent interface",
  7165. "homepage": "https://symfony.com",
  7166. "support": {
  7167. "source": "https://github.com/symfony/finder/tree/v7.2.0"
  7168. },
  7169. "funding": [
  7170. {
  7171. "url": "https://symfony.com/sponsor",
  7172. "type": "custom"
  7173. },
  7174. {
  7175. "url": "https://github.com/fabpot",
  7176. "type": "github"
  7177. },
  7178. {
  7179. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7180. "type": "tidelift"
  7181. }
  7182. ],
  7183. "time": "2024-10-23T06:56:12+00:00"
  7184. },
  7185. {
  7186. "name": "symfony/html-sanitizer",
  7187. "version": "v7.2.0",
  7188. "source": {
  7189. "type": "git",
  7190. "url": "https://github.com/symfony/html-sanitizer.git",
  7191. "reference": "1d23de45af5e8508441ff5f82bb493e83cdcbba4"
  7192. },
  7193. "dist": {
  7194. "type": "zip",
  7195. "url": "https://api.github.com/repos/symfony/html-sanitizer/zipball/1d23de45af5e8508441ff5f82bb493e83cdcbba4",
  7196. "reference": "1d23de45af5e8508441ff5f82bb493e83cdcbba4",
  7197. "shasum": ""
  7198. },
  7199. "require": {
  7200. "ext-dom": "*",
  7201. "league/uri": "^6.5|^7.0",
  7202. "masterminds/html5": "^2.7.2",
  7203. "php": ">=8.2"
  7204. },
  7205. "type": "library",
  7206. "autoload": {
  7207. "psr-4": {
  7208. "Symfony\\Component\\HtmlSanitizer\\": ""
  7209. },
  7210. "exclude-from-classmap": [
  7211. "/Tests/"
  7212. ]
  7213. },
  7214. "notification-url": "https://packagist.org/downloads/",
  7215. "license": [
  7216. "MIT"
  7217. ],
  7218. "authors": [
  7219. {
  7220. "name": "Titouan Galopin",
  7221. "email": "galopintitouan@gmail.com"
  7222. },
  7223. {
  7224. "name": "Symfony Community",
  7225. "homepage": "https://symfony.com/contributors"
  7226. }
  7227. ],
  7228. "description": "Provides an object-oriented API to sanitize untrusted HTML input for safe insertion into a document's DOM.",
  7229. "homepage": "https://symfony.com",
  7230. "keywords": [
  7231. "Purifier",
  7232. "html",
  7233. "sanitizer"
  7234. ],
  7235. "support": {
  7236. "source": "https://github.com/symfony/html-sanitizer/tree/v7.2.0"
  7237. },
  7238. "funding": [
  7239. {
  7240. "url": "https://symfony.com/sponsor",
  7241. "type": "custom"
  7242. },
  7243. {
  7244. "url": "https://github.com/fabpot",
  7245. "type": "github"
  7246. },
  7247. {
  7248. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7249. "type": "tidelift"
  7250. }
  7251. ],
  7252. "time": "2024-09-25T14:21:43+00:00"
  7253. },
  7254. {
  7255. "name": "symfony/http-foundation",
  7256. "version": "v7.2.0",
  7257. "source": {
  7258. "type": "git",
  7259. "url": "https://github.com/symfony/http-foundation.git",
  7260. "reference": "e88a66c3997859532bc2ddd6dd8f35aba2711744"
  7261. },
  7262. "dist": {
  7263. "type": "zip",
  7264. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/e88a66c3997859532bc2ddd6dd8f35aba2711744",
  7265. "reference": "e88a66c3997859532bc2ddd6dd8f35aba2711744",
  7266. "shasum": ""
  7267. },
  7268. "require": {
  7269. "php": ">=8.2",
  7270. "symfony/deprecation-contracts": "^2.5|^3.0",
  7271. "symfony/polyfill-mbstring": "~1.1",
  7272. "symfony/polyfill-php83": "^1.27"
  7273. },
  7274. "conflict": {
  7275. "doctrine/dbal": "<3.6",
  7276. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  7277. },
  7278. "require-dev": {
  7279. "doctrine/dbal": "^3.6|^4",
  7280. "predis/predis": "^1.1|^2.0",
  7281. "symfony/cache": "^6.4.12|^7.1.5",
  7282. "symfony/dependency-injection": "^6.4|^7.0",
  7283. "symfony/expression-language": "^6.4|^7.0",
  7284. "symfony/http-kernel": "^6.4|^7.0",
  7285. "symfony/mime": "^6.4|^7.0",
  7286. "symfony/rate-limiter": "^6.4|^7.0"
  7287. },
  7288. "type": "library",
  7289. "autoload": {
  7290. "psr-4": {
  7291. "Symfony\\Component\\HttpFoundation\\": ""
  7292. },
  7293. "exclude-from-classmap": [
  7294. "/Tests/"
  7295. ]
  7296. },
  7297. "notification-url": "https://packagist.org/downloads/",
  7298. "license": [
  7299. "MIT"
  7300. ],
  7301. "authors": [
  7302. {
  7303. "name": "Fabien Potencier",
  7304. "email": "fabien@symfony.com"
  7305. },
  7306. {
  7307. "name": "Symfony Community",
  7308. "homepage": "https://symfony.com/contributors"
  7309. }
  7310. ],
  7311. "description": "Defines an object-oriented layer for the HTTP specification",
  7312. "homepage": "https://symfony.com",
  7313. "support": {
  7314. "source": "https://github.com/symfony/http-foundation/tree/v7.2.0"
  7315. },
  7316. "funding": [
  7317. {
  7318. "url": "https://symfony.com/sponsor",
  7319. "type": "custom"
  7320. },
  7321. {
  7322. "url": "https://github.com/fabpot",
  7323. "type": "github"
  7324. },
  7325. {
  7326. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7327. "type": "tidelift"
  7328. }
  7329. ],
  7330. "time": "2024-11-13T18:58:46+00:00"
  7331. },
  7332. {
  7333. "name": "symfony/http-kernel",
  7334. "version": "v7.2.1",
  7335. "source": {
  7336. "type": "git",
  7337. "url": "https://github.com/symfony/http-kernel.git",
  7338. "reference": "d8ae58eecae44c8e66833e76cc50a4ad3c002d97"
  7339. },
  7340. "dist": {
  7341. "type": "zip",
  7342. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/d8ae58eecae44c8e66833e76cc50a4ad3c002d97",
  7343. "reference": "d8ae58eecae44c8e66833e76cc50a4ad3c002d97",
  7344. "shasum": ""
  7345. },
  7346. "require": {
  7347. "php": ">=8.2",
  7348. "psr/log": "^1|^2|^3",
  7349. "symfony/deprecation-contracts": "^2.5|^3",
  7350. "symfony/error-handler": "^6.4|^7.0",
  7351. "symfony/event-dispatcher": "^6.4|^7.0",
  7352. "symfony/http-foundation": "^6.4|^7.0",
  7353. "symfony/polyfill-ctype": "^1.8"
  7354. },
  7355. "conflict": {
  7356. "symfony/browser-kit": "<6.4",
  7357. "symfony/cache": "<6.4",
  7358. "symfony/config": "<6.4",
  7359. "symfony/console": "<6.4",
  7360. "symfony/dependency-injection": "<6.4",
  7361. "symfony/doctrine-bridge": "<6.4",
  7362. "symfony/form": "<6.4",
  7363. "symfony/http-client": "<6.4",
  7364. "symfony/http-client-contracts": "<2.5",
  7365. "symfony/mailer": "<6.4",
  7366. "symfony/messenger": "<6.4",
  7367. "symfony/translation": "<6.4",
  7368. "symfony/translation-contracts": "<2.5",
  7369. "symfony/twig-bridge": "<6.4",
  7370. "symfony/validator": "<6.4",
  7371. "symfony/var-dumper": "<6.4",
  7372. "twig/twig": "<3.12"
  7373. },
  7374. "provide": {
  7375. "psr/log-implementation": "1.0|2.0|3.0"
  7376. },
  7377. "require-dev": {
  7378. "psr/cache": "^1.0|^2.0|^3.0",
  7379. "symfony/browser-kit": "^6.4|^7.0",
  7380. "symfony/clock": "^6.4|^7.0",
  7381. "symfony/config": "^6.4|^7.0",
  7382. "symfony/console": "^6.4|^7.0",
  7383. "symfony/css-selector": "^6.4|^7.0",
  7384. "symfony/dependency-injection": "^6.4|^7.0",
  7385. "symfony/dom-crawler": "^6.4|^7.0",
  7386. "symfony/expression-language": "^6.4|^7.0",
  7387. "symfony/finder": "^6.4|^7.0",
  7388. "symfony/http-client-contracts": "^2.5|^3",
  7389. "symfony/process": "^6.4|^7.0",
  7390. "symfony/property-access": "^7.1",
  7391. "symfony/routing": "^6.4|^7.0",
  7392. "symfony/serializer": "^7.1",
  7393. "symfony/stopwatch": "^6.4|^7.0",
  7394. "symfony/translation": "^6.4|^7.0",
  7395. "symfony/translation-contracts": "^2.5|^3",
  7396. "symfony/uid": "^6.4|^7.0",
  7397. "symfony/validator": "^6.4|^7.0",
  7398. "symfony/var-dumper": "^6.4|^7.0",
  7399. "symfony/var-exporter": "^6.4|^7.0",
  7400. "twig/twig": "^3.12"
  7401. },
  7402. "type": "library",
  7403. "autoload": {
  7404. "psr-4": {
  7405. "Symfony\\Component\\HttpKernel\\": ""
  7406. },
  7407. "exclude-from-classmap": [
  7408. "/Tests/"
  7409. ]
  7410. },
  7411. "notification-url": "https://packagist.org/downloads/",
  7412. "license": [
  7413. "MIT"
  7414. ],
  7415. "authors": [
  7416. {
  7417. "name": "Fabien Potencier",
  7418. "email": "fabien@symfony.com"
  7419. },
  7420. {
  7421. "name": "Symfony Community",
  7422. "homepage": "https://symfony.com/contributors"
  7423. }
  7424. ],
  7425. "description": "Provides a structured process for converting a Request into a Response",
  7426. "homepage": "https://symfony.com",
  7427. "support": {
  7428. "source": "https://github.com/symfony/http-kernel/tree/v7.2.1"
  7429. },
  7430. "funding": [
  7431. {
  7432. "url": "https://symfony.com/sponsor",
  7433. "type": "custom"
  7434. },
  7435. {
  7436. "url": "https://github.com/fabpot",
  7437. "type": "github"
  7438. },
  7439. {
  7440. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7441. "type": "tidelift"
  7442. }
  7443. ],
  7444. "time": "2024-12-11T12:09:10+00:00"
  7445. },
  7446. {
  7447. "name": "symfony/intl",
  7448. "version": "v6.4.15",
  7449. "source": {
  7450. "type": "git",
  7451. "url": "https://github.com/symfony/intl.git",
  7452. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6"
  7453. },
  7454. "dist": {
  7455. "type": "zip",
  7456. "url": "https://api.github.com/repos/symfony/intl/zipball/b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  7457. "reference": "b1d5e8d82615b60f229216edfee0b59e2ef66da6",
  7458. "shasum": ""
  7459. },
  7460. "require": {
  7461. "php": ">=8.1"
  7462. },
  7463. "require-dev": {
  7464. "symfony/filesystem": "^5.4|^6.0|^7.0",
  7465. "symfony/finder": "^5.4|^6.0|^7.0",
  7466. "symfony/var-exporter": "^5.4|^6.0|^7.0"
  7467. },
  7468. "type": "library",
  7469. "autoload": {
  7470. "psr-4": {
  7471. "Symfony\\Component\\Intl\\": ""
  7472. },
  7473. "exclude-from-classmap": [
  7474. "/Tests/",
  7475. "/Resources/data/"
  7476. ]
  7477. },
  7478. "notification-url": "https://packagist.org/downloads/",
  7479. "license": [
  7480. "MIT"
  7481. ],
  7482. "authors": [
  7483. {
  7484. "name": "Bernhard Schussek",
  7485. "email": "bschussek@gmail.com"
  7486. },
  7487. {
  7488. "name": "Eriksen Costa",
  7489. "email": "eriksen.costa@infranology.com.br"
  7490. },
  7491. {
  7492. "name": "Igor Wiedler",
  7493. "email": "igor@wiedler.ch"
  7494. },
  7495. {
  7496. "name": "Symfony Community",
  7497. "homepage": "https://symfony.com/contributors"
  7498. }
  7499. ],
  7500. "description": "Provides access to the localization data of the ICU library",
  7501. "homepage": "https://symfony.com",
  7502. "keywords": [
  7503. "i18n",
  7504. "icu",
  7505. "internationalization",
  7506. "intl",
  7507. "l10n",
  7508. "localization"
  7509. ],
  7510. "support": {
  7511. "source": "https://github.com/symfony/intl/tree/v6.4.15"
  7512. },
  7513. "funding": [
  7514. {
  7515. "url": "https://symfony.com/sponsor",
  7516. "type": "custom"
  7517. },
  7518. {
  7519. "url": "https://github.com/fabpot",
  7520. "type": "github"
  7521. },
  7522. {
  7523. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7524. "type": "tidelift"
  7525. }
  7526. ],
  7527. "time": "2024-11-08T15:28:48+00:00"
  7528. },
  7529. {
  7530. "name": "symfony/mailer",
  7531. "version": "v7.2.0",
  7532. "source": {
  7533. "type": "git",
  7534. "url": "https://github.com/symfony/mailer.git",
  7535. "reference": "e4d358702fb66e4c8a2af08e90e7271a62de39cc"
  7536. },
  7537. "dist": {
  7538. "type": "zip",
  7539. "url": "https://api.github.com/repos/symfony/mailer/zipball/e4d358702fb66e4c8a2af08e90e7271a62de39cc",
  7540. "reference": "e4d358702fb66e4c8a2af08e90e7271a62de39cc",
  7541. "shasum": ""
  7542. },
  7543. "require": {
  7544. "egulias/email-validator": "^2.1.10|^3|^4",
  7545. "php": ">=8.2",
  7546. "psr/event-dispatcher": "^1",
  7547. "psr/log": "^1|^2|^3",
  7548. "symfony/event-dispatcher": "^6.4|^7.0",
  7549. "symfony/mime": "^7.2",
  7550. "symfony/service-contracts": "^2.5|^3"
  7551. },
  7552. "conflict": {
  7553. "symfony/http-client-contracts": "<2.5",
  7554. "symfony/http-kernel": "<6.4",
  7555. "symfony/messenger": "<6.4",
  7556. "symfony/mime": "<6.4",
  7557. "symfony/twig-bridge": "<6.4"
  7558. },
  7559. "require-dev": {
  7560. "symfony/console": "^6.4|^7.0",
  7561. "symfony/http-client": "^6.4|^7.0",
  7562. "symfony/messenger": "^6.4|^7.0",
  7563. "symfony/twig-bridge": "^6.4|^7.0"
  7564. },
  7565. "type": "library",
  7566. "autoload": {
  7567. "psr-4": {
  7568. "Symfony\\Component\\Mailer\\": ""
  7569. },
  7570. "exclude-from-classmap": [
  7571. "/Tests/"
  7572. ]
  7573. },
  7574. "notification-url": "https://packagist.org/downloads/",
  7575. "license": [
  7576. "MIT"
  7577. ],
  7578. "authors": [
  7579. {
  7580. "name": "Fabien Potencier",
  7581. "email": "fabien@symfony.com"
  7582. },
  7583. {
  7584. "name": "Symfony Community",
  7585. "homepage": "https://symfony.com/contributors"
  7586. }
  7587. ],
  7588. "description": "Helps sending emails",
  7589. "homepage": "https://symfony.com",
  7590. "support": {
  7591. "source": "https://github.com/symfony/mailer/tree/v7.2.0"
  7592. },
  7593. "funding": [
  7594. {
  7595. "url": "https://symfony.com/sponsor",
  7596. "type": "custom"
  7597. },
  7598. {
  7599. "url": "https://github.com/fabpot",
  7600. "type": "github"
  7601. },
  7602. {
  7603. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7604. "type": "tidelift"
  7605. }
  7606. ],
  7607. "time": "2024-11-25T15:21:05+00:00"
  7608. },
  7609. {
  7610. "name": "symfony/mime",
  7611. "version": "v7.2.1",
  7612. "source": {
  7613. "type": "git",
  7614. "url": "https://github.com/symfony/mime.git",
  7615. "reference": "7f9617fcf15cb61be30f8b252695ed5e2bfac283"
  7616. },
  7617. "dist": {
  7618. "type": "zip",
  7619. "url": "https://api.github.com/repos/symfony/mime/zipball/7f9617fcf15cb61be30f8b252695ed5e2bfac283",
  7620. "reference": "7f9617fcf15cb61be30f8b252695ed5e2bfac283",
  7621. "shasum": ""
  7622. },
  7623. "require": {
  7624. "php": ">=8.2",
  7625. "symfony/polyfill-intl-idn": "^1.10",
  7626. "symfony/polyfill-mbstring": "^1.0"
  7627. },
  7628. "conflict": {
  7629. "egulias/email-validator": "~3.0.0",
  7630. "phpdocumentor/reflection-docblock": "<3.2.2",
  7631. "phpdocumentor/type-resolver": "<1.4.0",
  7632. "symfony/mailer": "<6.4",
  7633. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  7634. },
  7635. "require-dev": {
  7636. "egulias/email-validator": "^2.1.10|^3.1|^4",
  7637. "league/html-to-markdown": "^5.0",
  7638. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7639. "symfony/dependency-injection": "^6.4|^7.0",
  7640. "symfony/process": "^6.4|^7.0",
  7641. "symfony/property-access": "^6.4|^7.0",
  7642. "symfony/property-info": "^6.4|^7.0",
  7643. "symfony/serializer": "^6.4.3|^7.0.3"
  7644. },
  7645. "type": "library",
  7646. "autoload": {
  7647. "psr-4": {
  7648. "Symfony\\Component\\Mime\\": ""
  7649. },
  7650. "exclude-from-classmap": [
  7651. "/Tests/"
  7652. ]
  7653. },
  7654. "notification-url": "https://packagist.org/downloads/",
  7655. "license": [
  7656. "MIT"
  7657. ],
  7658. "authors": [
  7659. {
  7660. "name": "Fabien Potencier",
  7661. "email": "fabien@symfony.com"
  7662. },
  7663. {
  7664. "name": "Symfony Community",
  7665. "homepage": "https://symfony.com/contributors"
  7666. }
  7667. ],
  7668. "description": "Allows manipulating MIME messages",
  7669. "homepage": "https://symfony.com",
  7670. "keywords": [
  7671. "mime",
  7672. "mime-type"
  7673. ],
  7674. "support": {
  7675. "source": "https://github.com/symfony/mime/tree/v7.2.1"
  7676. },
  7677. "funding": [
  7678. {
  7679. "url": "https://symfony.com/sponsor",
  7680. "type": "custom"
  7681. },
  7682. {
  7683. "url": "https://github.com/fabpot",
  7684. "type": "github"
  7685. },
  7686. {
  7687. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7688. "type": "tidelift"
  7689. }
  7690. ],
  7691. "time": "2024-12-07T08:50:44+00:00"
  7692. },
  7693. {
  7694. "name": "symfony/polyfill-ctype",
  7695. "version": "v1.31.0",
  7696. "source": {
  7697. "type": "git",
  7698. "url": "https://github.com/symfony/polyfill-ctype.git",
  7699. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  7700. },
  7701. "dist": {
  7702. "type": "zip",
  7703. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  7704. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  7705. "shasum": ""
  7706. },
  7707. "require": {
  7708. "php": ">=7.2"
  7709. },
  7710. "provide": {
  7711. "ext-ctype": "*"
  7712. },
  7713. "suggest": {
  7714. "ext-ctype": "For best performance"
  7715. },
  7716. "type": "library",
  7717. "extra": {
  7718. "thanks": {
  7719. "url": "https://github.com/symfony/polyfill",
  7720. "name": "symfony/polyfill"
  7721. }
  7722. },
  7723. "autoload": {
  7724. "files": [
  7725. "bootstrap.php"
  7726. ],
  7727. "psr-4": {
  7728. "Symfony\\Polyfill\\Ctype\\": ""
  7729. }
  7730. },
  7731. "notification-url": "https://packagist.org/downloads/",
  7732. "license": [
  7733. "MIT"
  7734. ],
  7735. "authors": [
  7736. {
  7737. "name": "Gert de Pagter",
  7738. "email": "BackEndTea@gmail.com"
  7739. },
  7740. {
  7741. "name": "Symfony Community",
  7742. "homepage": "https://symfony.com/contributors"
  7743. }
  7744. ],
  7745. "description": "Symfony polyfill for ctype functions",
  7746. "homepage": "https://symfony.com",
  7747. "keywords": [
  7748. "compatibility",
  7749. "ctype",
  7750. "polyfill",
  7751. "portable"
  7752. ],
  7753. "support": {
  7754. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  7755. },
  7756. "funding": [
  7757. {
  7758. "url": "https://symfony.com/sponsor",
  7759. "type": "custom"
  7760. },
  7761. {
  7762. "url": "https://github.com/fabpot",
  7763. "type": "github"
  7764. },
  7765. {
  7766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7767. "type": "tidelift"
  7768. }
  7769. ],
  7770. "time": "2024-09-09T11:45:10+00:00"
  7771. },
  7772. {
  7773. "name": "symfony/polyfill-intl-grapheme",
  7774. "version": "v1.31.0",
  7775. "source": {
  7776. "type": "git",
  7777. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  7778. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  7779. },
  7780. "dist": {
  7781. "type": "zip",
  7782. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7783. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  7784. "shasum": ""
  7785. },
  7786. "require": {
  7787. "php": ">=7.2"
  7788. },
  7789. "suggest": {
  7790. "ext-intl": "For best performance"
  7791. },
  7792. "type": "library",
  7793. "extra": {
  7794. "thanks": {
  7795. "url": "https://github.com/symfony/polyfill",
  7796. "name": "symfony/polyfill"
  7797. }
  7798. },
  7799. "autoload": {
  7800. "files": [
  7801. "bootstrap.php"
  7802. ],
  7803. "psr-4": {
  7804. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  7805. }
  7806. },
  7807. "notification-url": "https://packagist.org/downloads/",
  7808. "license": [
  7809. "MIT"
  7810. ],
  7811. "authors": [
  7812. {
  7813. "name": "Nicolas Grekas",
  7814. "email": "p@tchwork.com"
  7815. },
  7816. {
  7817. "name": "Symfony Community",
  7818. "homepage": "https://symfony.com/contributors"
  7819. }
  7820. ],
  7821. "description": "Symfony polyfill for intl's grapheme_* functions",
  7822. "homepage": "https://symfony.com",
  7823. "keywords": [
  7824. "compatibility",
  7825. "grapheme",
  7826. "intl",
  7827. "polyfill",
  7828. "portable",
  7829. "shim"
  7830. ],
  7831. "support": {
  7832. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  7833. },
  7834. "funding": [
  7835. {
  7836. "url": "https://symfony.com/sponsor",
  7837. "type": "custom"
  7838. },
  7839. {
  7840. "url": "https://github.com/fabpot",
  7841. "type": "github"
  7842. },
  7843. {
  7844. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7845. "type": "tidelift"
  7846. }
  7847. ],
  7848. "time": "2024-09-09T11:45:10+00:00"
  7849. },
  7850. {
  7851. "name": "symfony/polyfill-intl-idn",
  7852. "version": "v1.31.0",
  7853. "source": {
  7854. "type": "git",
  7855. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  7856. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  7857. },
  7858. "dist": {
  7859. "type": "zip",
  7860. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  7861. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  7862. "shasum": ""
  7863. },
  7864. "require": {
  7865. "php": ">=7.2",
  7866. "symfony/polyfill-intl-normalizer": "^1.10"
  7867. },
  7868. "suggest": {
  7869. "ext-intl": "For best performance"
  7870. },
  7871. "type": "library",
  7872. "extra": {
  7873. "thanks": {
  7874. "url": "https://github.com/symfony/polyfill",
  7875. "name": "symfony/polyfill"
  7876. }
  7877. },
  7878. "autoload": {
  7879. "files": [
  7880. "bootstrap.php"
  7881. ],
  7882. "psr-4": {
  7883. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  7884. }
  7885. },
  7886. "notification-url": "https://packagist.org/downloads/",
  7887. "license": [
  7888. "MIT"
  7889. ],
  7890. "authors": [
  7891. {
  7892. "name": "Laurent Bassin",
  7893. "email": "laurent@bassin.info"
  7894. },
  7895. {
  7896. "name": "Trevor Rowbotham",
  7897. "email": "trevor.rowbotham@pm.me"
  7898. },
  7899. {
  7900. "name": "Symfony Community",
  7901. "homepage": "https://symfony.com/contributors"
  7902. }
  7903. ],
  7904. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  7905. "homepage": "https://symfony.com",
  7906. "keywords": [
  7907. "compatibility",
  7908. "idn",
  7909. "intl",
  7910. "polyfill",
  7911. "portable",
  7912. "shim"
  7913. ],
  7914. "support": {
  7915. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  7916. },
  7917. "funding": [
  7918. {
  7919. "url": "https://symfony.com/sponsor",
  7920. "type": "custom"
  7921. },
  7922. {
  7923. "url": "https://github.com/fabpot",
  7924. "type": "github"
  7925. },
  7926. {
  7927. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7928. "type": "tidelift"
  7929. }
  7930. ],
  7931. "time": "2024-09-09T11:45:10+00:00"
  7932. },
  7933. {
  7934. "name": "symfony/polyfill-intl-normalizer",
  7935. "version": "v1.31.0",
  7936. "source": {
  7937. "type": "git",
  7938. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  7939. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  7940. },
  7941. "dist": {
  7942. "type": "zip",
  7943. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  7944. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  7945. "shasum": ""
  7946. },
  7947. "require": {
  7948. "php": ">=7.2"
  7949. },
  7950. "suggest": {
  7951. "ext-intl": "For best performance"
  7952. },
  7953. "type": "library",
  7954. "extra": {
  7955. "thanks": {
  7956. "url": "https://github.com/symfony/polyfill",
  7957. "name": "symfony/polyfill"
  7958. }
  7959. },
  7960. "autoload": {
  7961. "files": [
  7962. "bootstrap.php"
  7963. ],
  7964. "psr-4": {
  7965. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  7966. },
  7967. "classmap": [
  7968. "Resources/stubs"
  7969. ]
  7970. },
  7971. "notification-url": "https://packagist.org/downloads/",
  7972. "license": [
  7973. "MIT"
  7974. ],
  7975. "authors": [
  7976. {
  7977. "name": "Nicolas Grekas",
  7978. "email": "p@tchwork.com"
  7979. },
  7980. {
  7981. "name": "Symfony Community",
  7982. "homepage": "https://symfony.com/contributors"
  7983. }
  7984. ],
  7985. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  7986. "homepage": "https://symfony.com",
  7987. "keywords": [
  7988. "compatibility",
  7989. "intl",
  7990. "normalizer",
  7991. "polyfill",
  7992. "portable",
  7993. "shim"
  7994. ],
  7995. "support": {
  7996. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  7997. },
  7998. "funding": [
  7999. {
  8000. "url": "https://symfony.com/sponsor",
  8001. "type": "custom"
  8002. },
  8003. {
  8004. "url": "https://github.com/fabpot",
  8005. "type": "github"
  8006. },
  8007. {
  8008. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8009. "type": "tidelift"
  8010. }
  8011. ],
  8012. "time": "2024-09-09T11:45:10+00:00"
  8013. },
  8014. {
  8015. "name": "symfony/polyfill-mbstring",
  8016. "version": "v1.31.0",
  8017. "source": {
  8018. "type": "git",
  8019. "url": "https://github.com/symfony/polyfill-mbstring.git",
  8020. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  8021. },
  8022. "dist": {
  8023. "type": "zip",
  8024. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8025. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  8026. "shasum": ""
  8027. },
  8028. "require": {
  8029. "php": ">=7.2"
  8030. },
  8031. "provide": {
  8032. "ext-mbstring": "*"
  8033. },
  8034. "suggest": {
  8035. "ext-mbstring": "For best performance"
  8036. },
  8037. "type": "library",
  8038. "extra": {
  8039. "thanks": {
  8040. "url": "https://github.com/symfony/polyfill",
  8041. "name": "symfony/polyfill"
  8042. }
  8043. },
  8044. "autoload": {
  8045. "files": [
  8046. "bootstrap.php"
  8047. ],
  8048. "psr-4": {
  8049. "Symfony\\Polyfill\\Mbstring\\": ""
  8050. }
  8051. },
  8052. "notification-url": "https://packagist.org/downloads/",
  8053. "license": [
  8054. "MIT"
  8055. ],
  8056. "authors": [
  8057. {
  8058. "name": "Nicolas Grekas",
  8059. "email": "p@tchwork.com"
  8060. },
  8061. {
  8062. "name": "Symfony Community",
  8063. "homepage": "https://symfony.com/contributors"
  8064. }
  8065. ],
  8066. "description": "Symfony polyfill for the Mbstring extension",
  8067. "homepage": "https://symfony.com",
  8068. "keywords": [
  8069. "compatibility",
  8070. "mbstring",
  8071. "polyfill",
  8072. "portable",
  8073. "shim"
  8074. ],
  8075. "support": {
  8076. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  8077. },
  8078. "funding": [
  8079. {
  8080. "url": "https://symfony.com/sponsor",
  8081. "type": "custom"
  8082. },
  8083. {
  8084. "url": "https://github.com/fabpot",
  8085. "type": "github"
  8086. },
  8087. {
  8088. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8089. "type": "tidelift"
  8090. }
  8091. ],
  8092. "time": "2024-09-09T11:45:10+00:00"
  8093. },
  8094. {
  8095. "name": "symfony/polyfill-php80",
  8096. "version": "v1.31.0",
  8097. "source": {
  8098. "type": "git",
  8099. "url": "https://github.com/symfony/polyfill-php80.git",
  8100. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  8101. },
  8102. "dist": {
  8103. "type": "zip",
  8104. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8105. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  8106. "shasum": ""
  8107. },
  8108. "require": {
  8109. "php": ">=7.2"
  8110. },
  8111. "type": "library",
  8112. "extra": {
  8113. "thanks": {
  8114. "url": "https://github.com/symfony/polyfill",
  8115. "name": "symfony/polyfill"
  8116. }
  8117. },
  8118. "autoload": {
  8119. "files": [
  8120. "bootstrap.php"
  8121. ],
  8122. "psr-4": {
  8123. "Symfony\\Polyfill\\Php80\\": ""
  8124. },
  8125. "classmap": [
  8126. "Resources/stubs"
  8127. ]
  8128. },
  8129. "notification-url": "https://packagist.org/downloads/",
  8130. "license": [
  8131. "MIT"
  8132. ],
  8133. "authors": [
  8134. {
  8135. "name": "Ion Bazan",
  8136. "email": "ion.bazan@gmail.com"
  8137. },
  8138. {
  8139. "name": "Nicolas Grekas",
  8140. "email": "p@tchwork.com"
  8141. },
  8142. {
  8143. "name": "Symfony Community",
  8144. "homepage": "https://symfony.com/contributors"
  8145. }
  8146. ],
  8147. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  8148. "homepage": "https://symfony.com",
  8149. "keywords": [
  8150. "compatibility",
  8151. "polyfill",
  8152. "portable",
  8153. "shim"
  8154. ],
  8155. "support": {
  8156. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  8157. },
  8158. "funding": [
  8159. {
  8160. "url": "https://symfony.com/sponsor",
  8161. "type": "custom"
  8162. },
  8163. {
  8164. "url": "https://github.com/fabpot",
  8165. "type": "github"
  8166. },
  8167. {
  8168. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8169. "type": "tidelift"
  8170. }
  8171. ],
  8172. "time": "2024-09-09T11:45:10+00:00"
  8173. },
  8174. {
  8175. "name": "symfony/polyfill-php83",
  8176. "version": "v1.31.0",
  8177. "source": {
  8178. "type": "git",
  8179. "url": "https://github.com/symfony/polyfill-php83.git",
  8180. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  8181. },
  8182. "dist": {
  8183. "type": "zip",
  8184. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  8185. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  8186. "shasum": ""
  8187. },
  8188. "require": {
  8189. "php": ">=7.2"
  8190. },
  8191. "type": "library",
  8192. "extra": {
  8193. "thanks": {
  8194. "url": "https://github.com/symfony/polyfill",
  8195. "name": "symfony/polyfill"
  8196. }
  8197. },
  8198. "autoload": {
  8199. "files": [
  8200. "bootstrap.php"
  8201. ],
  8202. "psr-4": {
  8203. "Symfony\\Polyfill\\Php83\\": ""
  8204. },
  8205. "classmap": [
  8206. "Resources/stubs"
  8207. ]
  8208. },
  8209. "notification-url": "https://packagist.org/downloads/",
  8210. "license": [
  8211. "MIT"
  8212. ],
  8213. "authors": [
  8214. {
  8215. "name": "Nicolas Grekas",
  8216. "email": "p@tchwork.com"
  8217. },
  8218. {
  8219. "name": "Symfony Community",
  8220. "homepage": "https://symfony.com/contributors"
  8221. }
  8222. ],
  8223. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  8224. "homepage": "https://symfony.com",
  8225. "keywords": [
  8226. "compatibility",
  8227. "polyfill",
  8228. "portable",
  8229. "shim"
  8230. ],
  8231. "support": {
  8232. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  8233. },
  8234. "funding": [
  8235. {
  8236. "url": "https://symfony.com/sponsor",
  8237. "type": "custom"
  8238. },
  8239. {
  8240. "url": "https://github.com/fabpot",
  8241. "type": "github"
  8242. },
  8243. {
  8244. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8245. "type": "tidelift"
  8246. }
  8247. ],
  8248. "time": "2024-09-09T11:45:10+00:00"
  8249. },
  8250. {
  8251. "name": "symfony/polyfill-uuid",
  8252. "version": "v1.31.0",
  8253. "source": {
  8254. "type": "git",
  8255. "url": "https://github.com/symfony/polyfill-uuid.git",
  8256. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  8257. },
  8258. "dist": {
  8259. "type": "zip",
  8260. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8261. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  8262. "shasum": ""
  8263. },
  8264. "require": {
  8265. "php": ">=7.2"
  8266. },
  8267. "provide": {
  8268. "ext-uuid": "*"
  8269. },
  8270. "suggest": {
  8271. "ext-uuid": "For best performance"
  8272. },
  8273. "type": "library",
  8274. "extra": {
  8275. "thanks": {
  8276. "url": "https://github.com/symfony/polyfill",
  8277. "name": "symfony/polyfill"
  8278. }
  8279. },
  8280. "autoload": {
  8281. "files": [
  8282. "bootstrap.php"
  8283. ],
  8284. "psr-4": {
  8285. "Symfony\\Polyfill\\Uuid\\": ""
  8286. }
  8287. },
  8288. "notification-url": "https://packagist.org/downloads/",
  8289. "license": [
  8290. "MIT"
  8291. ],
  8292. "authors": [
  8293. {
  8294. "name": "Grégoire Pineau",
  8295. "email": "lyrixx@lyrixx.info"
  8296. },
  8297. {
  8298. "name": "Symfony Community",
  8299. "homepage": "https://symfony.com/contributors"
  8300. }
  8301. ],
  8302. "description": "Symfony polyfill for uuid functions",
  8303. "homepage": "https://symfony.com",
  8304. "keywords": [
  8305. "compatibility",
  8306. "polyfill",
  8307. "portable",
  8308. "uuid"
  8309. ],
  8310. "support": {
  8311. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  8312. },
  8313. "funding": [
  8314. {
  8315. "url": "https://symfony.com/sponsor",
  8316. "type": "custom"
  8317. },
  8318. {
  8319. "url": "https://github.com/fabpot",
  8320. "type": "github"
  8321. },
  8322. {
  8323. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8324. "type": "tidelift"
  8325. }
  8326. ],
  8327. "time": "2024-09-09T11:45:10+00:00"
  8328. },
  8329. {
  8330. "name": "symfony/process",
  8331. "version": "v7.2.0",
  8332. "source": {
  8333. "type": "git",
  8334. "url": "https://github.com/symfony/process.git",
  8335. "reference": "d34b22ba9390ec19d2dd966c40aa9e8462f27a7e"
  8336. },
  8337. "dist": {
  8338. "type": "zip",
  8339. "url": "https://api.github.com/repos/symfony/process/zipball/d34b22ba9390ec19d2dd966c40aa9e8462f27a7e",
  8340. "reference": "d34b22ba9390ec19d2dd966c40aa9e8462f27a7e",
  8341. "shasum": ""
  8342. },
  8343. "require": {
  8344. "php": ">=8.2"
  8345. },
  8346. "type": "library",
  8347. "autoload": {
  8348. "psr-4": {
  8349. "Symfony\\Component\\Process\\": ""
  8350. },
  8351. "exclude-from-classmap": [
  8352. "/Tests/"
  8353. ]
  8354. },
  8355. "notification-url": "https://packagist.org/downloads/",
  8356. "license": [
  8357. "MIT"
  8358. ],
  8359. "authors": [
  8360. {
  8361. "name": "Fabien Potencier",
  8362. "email": "fabien@symfony.com"
  8363. },
  8364. {
  8365. "name": "Symfony Community",
  8366. "homepage": "https://symfony.com/contributors"
  8367. }
  8368. ],
  8369. "description": "Executes commands in sub-processes",
  8370. "homepage": "https://symfony.com",
  8371. "support": {
  8372. "source": "https://github.com/symfony/process/tree/v7.2.0"
  8373. },
  8374. "funding": [
  8375. {
  8376. "url": "https://symfony.com/sponsor",
  8377. "type": "custom"
  8378. },
  8379. {
  8380. "url": "https://github.com/fabpot",
  8381. "type": "github"
  8382. },
  8383. {
  8384. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8385. "type": "tidelift"
  8386. }
  8387. ],
  8388. "time": "2024-11-06T14:24:19+00:00"
  8389. },
  8390. {
  8391. "name": "symfony/routing",
  8392. "version": "v7.2.0",
  8393. "source": {
  8394. "type": "git",
  8395. "url": "https://github.com/symfony/routing.git",
  8396. "reference": "e10a2450fa957af6c448b9b93c9010a4e4c0725e"
  8397. },
  8398. "dist": {
  8399. "type": "zip",
  8400. "url": "https://api.github.com/repos/symfony/routing/zipball/e10a2450fa957af6c448b9b93c9010a4e4c0725e",
  8401. "reference": "e10a2450fa957af6c448b9b93c9010a4e4c0725e",
  8402. "shasum": ""
  8403. },
  8404. "require": {
  8405. "php": ">=8.2",
  8406. "symfony/deprecation-contracts": "^2.5|^3"
  8407. },
  8408. "conflict": {
  8409. "symfony/config": "<6.4",
  8410. "symfony/dependency-injection": "<6.4",
  8411. "symfony/yaml": "<6.4"
  8412. },
  8413. "require-dev": {
  8414. "psr/log": "^1|^2|^3",
  8415. "symfony/config": "^6.4|^7.0",
  8416. "symfony/dependency-injection": "^6.4|^7.0",
  8417. "symfony/expression-language": "^6.4|^7.0",
  8418. "symfony/http-foundation": "^6.4|^7.0",
  8419. "symfony/yaml": "^6.4|^7.0"
  8420. },
  8421. "type": "library",
  8422. "autoload": {
  8423. "psr-4": {
  8424. "Symfony\\Component\\Routing\\": ""
  8425. },
  8426. "exclude-from-classmap": [
  8427. "/Tests/"
  8428. ]
  8429. },
  8430. "notification-url": "https://packagist.org/downloads/",
  8431. "license": [
  8432. "MIT"
  8433. ],
  8434. "authors": [
  8435. {
  8436. "name": "Fabien Potencier",
  8437. "email": "fabien@symfony.com"
  8438. },
  8439. {
  8440. "name": "Symfony Community",
  8441. "homepage": "https://symfony.com/contributors"
  8442. }
  8443. ],
  8444. "description": "Maps an HTTP request to a set of configuration variables",
  8445. "homepage": "https://symfony.com",
  8446. "keywords": [
  8447. "router",
  8448. "routing",
  8449. "uri",
  8450. "url"
  8451. ],
  8452. "support": {
  8453. "source": "https://github.com/symfony/routing/tree/v7.2.0"
  8454. },
  8455. "funding": [
  8456. {
  8457. "url": "https://symfony.com/sponsor",
  8458. "type": "custom"
  8459. },
  8460. {
  8461. "url": "https://github.com/fabpot",
  8462. "type": "github"
  8463. },
  8464. {
  8465. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8466. "type": "tidelift"
  8467. }
  8468. ],
  8469. "time": "2024-11-25T11:08:51+00:00"
  8470. },
  8471. {
  8472. "name": "symfony/service-contracts",
  8473. "version": "v3.5.1",
  8474. "source": {
  8475. "type": "git",
  8476. "url": "https://github.com/symfony/service-contracts.git",
  8477. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  8478. },
  8479. "dist": {
  8480. "type": "zip",
  8481. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8482. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  8483. "shasum": ""
  8484. },
  8485. "require": {
  8486. "php": ">=8.1",
  8487. "psr/container": "^1.1|^2.0",
  8488. "symfony/deprecation-contracts": "^2.5|^3"
  8489. },
  8490. "conflict": {
  8491. "ext-psr": "<1.1|>=2"
  8492. },
  8493. "type": "library",
  8494. "extra": {
  8495. "branch-alias": {
  8496. "dev-main": "3.5-dev"
  8497. },
  8498. "thanks": {
  8499. "name": "symfony/contracts",
  8500. "url": "https://github.com/symfony/contracts"
  8501. }
  8502. },
  8503. "autoload": {
  8504. "psr-4": {
  8505. "Symfony\\Contracts\\Service\\": ""
  8506. },
  8507. "exclude-from-classmap": [
  8508. "/Test/"
  8509. ]
  8510. },
  8511. "notification-url": "https://packagist.org/downloads/",
  8512. "license": [
  8513. "MIT"
  8514. ],
  8515. "authors": [
  8516. {
  8517. "name": "Nicolas Grekas",
  8518. "email": "p@tchwork.com"
  8519. },
  8520. {
  8521. "name": "Symfony Community",
  8522. "homepage": "https://symfony.com/contributors"
  8523. }
  8524. ],
  8525. "description": "Generic abstractions related to writing services",
  8526. "homepage": "https://symfony.com",
  8527. "keywords": [
  8528. "abstractions",
  8529. "contracts",
  8530. "decoupling",
  8531. "interfaces",
  8532. "interoperability",
  8533. "standards"
  8534. ],
  8535. "support": {
  8536. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  8537. },
  8538. "funding": [
  8539. {
  8540. "url": "https://symfony.com/sponsor",
  8541. "type": "custom"
  8542. },
  8543. {
  8544. "url": "https://github.com/fabpot",
  8545. "type": "github"
  8546. },
  8547. {
  8548. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8549. "type": "tidelift"
  8550. }
  8551. ],
  8552. "time": "2024-09-25T14:20:29+00:00"
  8553. },
  8554. {
  8555. "name": "symfony/string",
  8556. "version": "v7.2.0",
  8557. "source": {
  8558. "type": "git",
  8559. "url": "https://github.com/symfony/string.git",
  8560. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82"
  8561. },
  8562. "dist": {
  8563. "type": "zip",
  8564. "url": "https://api.github.com/repos/symfony/string/zipball/446e0d146f991dde3e73f45f2c97a9faad773c82",
  8565. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82",
  8566. "shasum": ""
  8567. },
  8568. "require": {
  8569. "php": ">=8.2",
  8570. "symfony/polyfill-ctype": "~1.8",
  8571. "symfony/polyfill-intl-grapheme": "~1.0",
  8572. "symfony/polyfill-intl-normalizer": "~1.0",
  8573. "symfony/polyfill-mbstring": "~1.0"
  8574. },
  8575. "conflict": {
  8576. "symfony/translation-contracts": "<2.5"
  8577. },
  8578. "require-dev": {
  8579. "symfony/emoji": "^7.1",
  8580. "symfony/error-handler": "^6.4|^7.0",
  8581. "symfony/http-client": "^6.4|^7.0",
  8582. "symfony/intl": "^6.4|^7.0",
  8583. "symfony/translation-contracts": "^2.5|^3.0",
  8584. "symfony/var-exporter": "^6.4|^7.0"
  8585. },
  8586. "type": "library",
  8587. "autoload": {
  8588. "files": [
  8589. "Resources/functions.php"
  8590. ],
  8591. "psr-4": {
  8592. "Symfony\\Component\\String\\": ""
  8593. },
  8594. "exclude-from-classmap": [
  8595. "/Tests/"
  8596. ]
  8597. },
  8598. "notification-url": "https://packagist.org/downloads/",
  8599. "license": [
  8600. "MIT"
  8601. ],
  8602. "authors": [
  8603. {
  8604. "name": "Nicolas Grekas",
  8605. "email": "p@tchwork.com"
  8606. },
  8607. {
  8608. "name": "Symfony Community",
  8609. "homepage": "https://symfony.com/contributors"
  8610. }
  8611. ],
  8612. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  8613. "homepage": "https://symfony.com",
  8614. "keywords": [
  8615. "grapheme",
  8616. "i18n",
  8617. "string",
  8618. "unicode",
  8619. "utf-8",
  8620. "utf8"
  8621. ],
  8622. "support": {
  8623. "source": "https://github.com/symfony/string/tree/v7.2.0"
  8624. },
  8625. "funding": [
  8626. {
  8627. "url": "https://symfony.com/sponsor",
  8628. "type": "custom"
  8629. },
  8630. {
  8631. "url": "https://github.com/fabpot",
  8632. "type": "github"
  8633. },
  8634. {
  8635. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8636. "type": "tidelift"
  8637. }
  8638. ],
  8639. "time": "2024-11-13T13:31:26+00:00"
  8640. },
  8641. {
  8642. "name": "symfony/translation",
  8643. "version": "v7.2.0",
  8644. "source": {
  8645. "type": "git",
  8646. "url": "https://github.com/symfony/translation.git",
  8647. "reference": "dc89e16b44048ceecc879054e5b7f38326ab6cc5"
  8648. },
  8649. "dist": {
  8650. "type": "zip",
  8651. "url": "https://api.github.com/repos/symfony/translation/zipball/dc89e16b44048ceecc879054e5b7f38326ab6cc5",
  8652. "reference": "dc89e16b44048ceecc879054e5b7f38326ab6cc5",
  8653. "shasum": ""
  8654. },
  8655. "require": {
  8656. "php": ">=8.2",
  8657. "symfony/deprecation-contracts": "^2.5|^3",
  8658. "symfony/polyfill-mbstring": "~1.0",
  8659. "symfony/translation-contracts": "^2.5|^3.0"
  8660. },
  8661. "conflict": {
  8662. "symfony/config": "<6.4",
  8663. "symfony/console": "<6.4",
  8664. "symfony/dependency-injection": "<6.4",
  8665. "symfony/http-client-contracts": "<2.5",
  8666. "symfony/http-kernel": "<6.4",
  8667. "symfony/service-contracts": "<2.5",
  8668. "symfony/twig-bundle": "<6.4",
  8669. "symfony/yaml": "<6.4"
  8670. },
  8671. "provide": {
  8672. "symfony/translation-implementation": "2.3|3.0"
  8673. },
  8674. "require-dev": {
  8675. "nikic/php-parser": "^4.18|^5.0",
  8676. "psr/log": "^1|^2|^3",
  8677. "symfony/config": "^6.4|^7.0",
  8678. "symfony/console": "^6.4|^7.0",
  8679. "symfony/dependency-injection": "^6.4|^7.0",
  8680. "symfony/finder": "^6.4|^7.0",
  8681. "symfony/http-client-contracts": "^2.5|^3.0",
  8682. "symfony/http-kernel": "^6.4|^7.0",
  8683. "symfony/intl": "^6.4|^7.0",
  8684. "symfony/polyfill-intl-icu": "^1.21",
  8685. "symfony/routing": "^6.4|^7.0",
  8686. "symfony/service-contracts": "^2.5|^3",
  8687. "symfony/yaml": "^6.4|^7.0"
  8688. },
  8689. "type": "library",
  8690. "autoload": {
  8691. "files": [
  8692. "Resources/functions.php"
  8693. ],
  8694. "psr-4": {
  8695. "Symfony\\Component\\Translation\\": ""
  8696. },
  8697. "exclude-from-classmap": [
  8698. "/Tests/"
  8699. ]
  8700. },
  8701. "notification-url": "https://packagist.org/downloads/",
  8702. "license": [
  8703. "MIT"
  8704. ],
  8705. "authors": [
  8706. {
  8707. "name": "Fabien Potencier",
  8708. "email": "fabien@symfony.com"
  8709. },
  8710. {
  8711. "name": "Symfony Community",
  8712. "homepage": "https://symfony.com/contributors"
  8713. }
  8714. ],
  8715. "description": "Provides tools to internationalize your application",
  8716. "homepage": "https://symfony.com",
  8717. "support": {
  8718. "source": "https://github.com/symfony/translation/tree/v7.2.0"
  8719. },
  8720. "funding": [
  8721. {
  8722. "url": "https://symfony.com/sponsor",
  8723. "type": "custom"
  8724. },
  8725. {
  8726. "url": "https://github.com/fabpot",
  8727. "type": "github"
  8728. },
  8729. {
  8730. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8731. "type": "tidelift"
  8732. }
  8733. ],
  8734. "time": "2024-11-12T20:47:56+00:00"
  8735. },
  8736. {
  8737. "name": "symfony/translation-contracts",
  8738. "version": "v3.5.1",
  8739. "source": {
  8740. "type": "git",
  8741. "url": "https://github.com/symfony/translation-contracts.git",
  8742. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  8743. },
  8744. "dist": {
  8745. "type": "zip",
  8746. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  8747. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  8748. "shasum": ""
  8749. },
  8750. "require": {
  8751. "php": ">=8.1"
  8752. },
  8753. "type": "library",
  8754. "extra": {
  8755. "branch-alias": {
  8756. "dev-main": "3.5-dev"
  8757. },
  8758. "thanks": {
  8759. "name": "symfony/contracts",
  8760. "url": "https://github.com/symfony/contracts"
  8761. }
  8762. },
  8763. "autoload": {
  8764. "psr-4": {
  8765. "Symfony\\Contracts\\Translation\\": ""
  8766. },
  8767. "exclude-from-classmap": [
  8768. "/Test/"
  8769. ]
  8770. },
  8771. "notification-url": "https://packagist.org/downloads/",
  8772. "license": [
  8773. "MIT"
  8774. ],
  8775. "authors": [
  8776. {
  8777. "name": "Nicolas Grekas",
  8778. "email": "p@tchwork.com"
  8779. },
  8780. {
  8781. "name": "Symfony Community",
  8782. "homepage": "https://symfony.com/contributors"
  8783. }
  8784. ],
  8785. "description": "Generic abstractions related to translation",
  8786. "homepage": "https://symfony.com",
  8787. "keywords": [
  8788. "abstractions",
  8789. "contracts",
  8790. "decoupling",
  8791. "interfaces",
  8792. "interoperability",
  8793. "standards"
  8794. ],
  8795. "support": {
  8796. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  8797. },
  8798. "funding": [
  8799. {
  8800. "url": "https://symfony.com/sponsor",
  8801. "type": "custom"
  8802. },
  8803. {
  8804. "url": "https://github.com/fabpot",
  8805. "type": "github"
  8806. },
  8807. {
  8808. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8809. "type": "tidelift"
  8810. }
  8811. ],
  8812. "time": "2024-09-25T14:20:29+00:00"
  8813. },
  8814. {
  8815. "name": "symfony/uid",
  8816. "version": "v7.2.0",
  8817. "source": {
  8818. "type": "git",
  8819. "url": "https://github.com/symfony/uid.git",
  8820. "reference": "2d294d0c48df244c71c105a169d0190bfb080426"
  8821. },
  8822. "dist": {
  8823. "type": "zip",
  8824. "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426",
  8825. "reference": "2d294d0c48df244c71c105a169d0190bfb080426",
  8826. "shasum": ""
  8827. },
  8828. "require": {
  8829. "php": ">=8.2",
  8830. "symfony/polyfill-uuid": "^1.15"
  8831. },
  8832. "require-dev": {
  8833. "symfony/console": "^6.4|^7.0"
  8834. },
  8835. "type": "library",
  8836. "autoload": {
  8837. "psr-4": {
  8838. "Symfony\\Component\\Uid\\": ""
  8839. },
  8840. "exclude-from-classmap": [
  8841. "/Tests/"
  8842. ]
  8843. },
  8844. "notification-url": "https://packagist.org/downloads/",
  8845. "license": [
  8846. "MIT"
  8847. ],
  8848. "authors": [
  8849. {
  8850. "name": "Grégoire Pineau",
  8851. "email": "lyrixx@lyrixx.info"
  8852. },
  8853. {
  8854. "name": "Nicolas Grekas",
  8855. "email": "p@tchwork.com"
  8856. },
  8857. {
  8858. "name": "Symfony Community",
  8859. "homepage": "https://symfony.com/contributors"
  8860. }
  8861. ],
  8862. "description": "Provides an object-oriented API to generate and represent UIDs",
  8863. "homepage": "https://symfony.com",
  8864. "keywords": [
  8865. "UID",
  8866. "ulid",
  8867. "uuid"
  8868. ],
  8869. "support": {
  8870. "source": "https://github.com/symfony/uid/tree/v7.2.0"
  8871. },
  8872. "funding": [
  8873. {
  8874. "url": "https://symfony.com/sponsor",
  8875. "type": "custom"
  8876. },
  8877. {
  8878. "url": "https://github.com/fabpot",
  8879. "type": "github"
  8880. },
  8881. {
  8882. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8883. "type": "tidelift"
  8884. }
  8885. ],
  8886. "time": "2024-09-25T14:21:43+00:00"
  8887. },
  8888. {
  8889. "name": "symfony/var-dumper",
  8890. "version": "v7.2.0",
  8891. "source": {
  8892. "type": "git",
  8893. "url": "https://github.com/symfony/var-dumper.git",
  8894. "reference": "c6a22929407dec8765d6e2b6ff85b800b245879c"
  8895. },
  8896. "dist": {
  8897. "type": "zip",
  8898. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/c6a22929407dec8765d6e2b6ff85b800b245879c",
  8899. "reference": "c6a22929407dec8765d6e2b6ff85b800b245879c",
  8900. "shasum": ""
  8901. },
  8902. "require": {
  8903. "php": ">=8.2",
  8904. "symfony/polyfill-mbstring": "~1.0"
  8905. },
  8906. "conflict": {
  8907. "symfony/console": "<6.4"
  8908. },
  8909. "require-dev": {
  8910. "ext-iconv": "*",
  8911. "symfony/console": "^6.4|^7.0",
  8912. "symfony/http-kernel": "^6.4|^7.0",
  8913. "symfony/process": "^6.4|^7.0",
  8914. "symfony/uid": "^6.4|^7.0",
  8915. "twig/twig": "^3.12"
  8916. },
  8917. "bin": [
  8918. "Resources/bin/var-dump-server"
  8919. ],
  8920. "type": "library",
  8921. "autoload": {
  8922. "files": [
  8923. "Resources/functions/dump.php"
  8924. ],
  8925. "psr-4": {
  8926. "Symfony\\Component\\VarDumper\\": ""
  8927. },
  8928. "exclude-from-classmap": [
  8929. "/Tests/"
  8930. ]
  8931. },
  8932. "notification-url": "https://packagist.org/downloads/",
  8933. "license": [
  8934. "MIT"
  8935. ],
  8936. "authors": [
  8937. {
  8938. "name": "Nicolas Grekas",
  8939. "email": "p@tchwork.com"
  8940. },
  8941. {
  8942. "name": "Symfony Community",
  8943. "homepage": "https://symfony.com/contributors"
  8944. }
  8945. ],
  8946. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  8947. "homepage": "https://symfony.com",
  8948. "keywords": [
  8949. "debug",
  8950. "dump"
  8951. ],
  8952. "support": {
  8953. "source": "https://github.com/symfony/var-dumper/tree/v7.2.0"
  8954. },
  8955. "funding": [
  8956. {
  8957. "url": "https://symfony.com/sponsor",
  8958. "type": "custom"
  8959. },
  8960. {
  8961. "url": "https://github.com/fabpot",
  8962. "type": "github"
  8963. },
  8964. {
  8965. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8966. "type": "tidelift"
  8967. }
  8968. ],
  8969. "time": "2024-11-08T15:48:14+00:00"
  8970. },
  8971. {
  8972. "name": "tijsverkoyen/css-to-inline-styles",
  8973. "version": "v2.2.7",
  8974. "source": {
  8975. "type": "git",
  8976. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  8977. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb"
  8978. },
  8979. "dist": {
  8980. "type": "zip",
  8981. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8982. "reference": "83ee6f38df0a63106a9e4536e3060458b74ccedb",
  8983. "shasum": ""
  8984. },
  8985. "require": {
  8986. "ext-dom": "*",
  8987. "ext-libxml": "*",
  8988. "php": "^5.5 || ^7.0 || ^8.0",
  8989. "symfony/css-selector": "^2.7 || ^3.0 || ^4.0 || ^5.0 || ^6.0 || ^7.0"
  8990. },
  8991. "require-dev": {
  8992. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0 || ^7.5 || ^8.5.21 || ^9.5.10"
  8993. },
  8994. "type": "library",
  8995. "extra": {
  8996. "branch-alias": {
  8997. "dev-master": "2.2.x-dev"
  8998. }
  8999. },
  9000. "autoload": {
  9001. "psr-4": {
  9002. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  9003. }
  9004. },
  9005. "notification-url": "https://packagist.org/downloads/",
  9006. "license": [
  9007. "BSD-3-Clause"
  9008. ],
  9009. "authors": [
  9010. {
  9011. "name": "Tijs Verkoyen",
  9012. "email": "css_to_inline_styles@verkoyen.eu",
  9013. "role": "Developer"
  9014. }
  9015. ],
  9016. "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.",
  9017. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  9018. "support": {
  9019. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  9020. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.2.7"
  9021. },
  9022. "time": "2023-12-08T13:03:43+00:00"
  9023. },
  9024. {
  9025. "name": "vlucas/phpdotenv",
  9026. "version": "v5.6.1",
  9027. "source": {
  9028. "type": "git",
  9029. "url": "https://github.com/vlucas/phpdotenv.git",
  9030. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  9031. },
  9032. "dist": {
  9033. "type": "zip",
  9034. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9035. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  9036. "shasum": ""
  9037. },
  9038. "require": {
  9039. "ext-pcre": "*",
  9040. "graham-campbell/result-type": "^1.1.3",
  9041. "php": "^7.2.5 || ^8.0",
  9042. "phpoption/phpoption": "^1.9.3",
  9043. "symfony/polyfill-ctype": "^1.24",
  9044. "symfony/polyfill-mbstring": "^1.24",
  9045. "symfony/polyfill-php80": "^1.24"
  9046. },
  9047. "require-dev": {
  9048. "bamarni/composer-bin-plugin": "^1.8.2",
  9049. "ext-filter": "*",
  9050. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  9051. },
  9052. "suggest": {
  9053. "ext-filter": "Required to use the boolean validator."
  9054. },
  9055. "type": "library",
  9056. "extra": {
  9057. "bamarni-bin": {
  9058. "bin-links": true,
  9059. "forward-command": false
  9060. },
  9061. "branch-alias": {
  9062. "dev-master": "5.6-dev"
  9063. }
  9064. },
  9065. "autoload": {
  9066. "psr-4": {
  9067. "Dotenv\\": "src/"
  9068. }
  9069. },
  9070. "notification-url": "https://packagist.org/downloads/",
  9071. "license": [
  9072. "BSD-3-Clause"
  9073. ],
  9074. "authors": [
  9075. {
  9076. "name": "Graham Campbell",
  9077. "email": "hello@gjcampbell.co.uk",
  9078. "homepage": "https://github.com/GrahamCampbell"
  9079. },
  9080. {
  9081. "name": "Vance Lucas",
  9082. "email": "vance@vancelucas.com",
  9083. "homepage": "https://github.com/vlucas"
  9084. }
  9085. ],
  9086. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  9087. "keywords": [
  9088. "dotenv",
  9089. "env",
  9090. "environment"
  9091. ],
  9092. "support": {
  9093. "issues": "https://github.com/vlucas/phpdotenv/issues",
  9094. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  9095. },
  9096. "funding": [
  9097. {
  9098. "url": "https://github.com/GrahamCampbell",
  9099. "type": "github"
  9100. },
  9101. {
  9102. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  9103. "type": "tidelift"
  9104. }
  9105. ],
  9106. "time": "2024-07-20T21:52:34+00:00"
  9107. },
  9108. {
  9109. "name": "voku/portable-ascii",
  9110. "version": "2.0.3",
  9111. "source": {
  9112. "type": "git",
  9113. "url": "https://github.com/voku/portable-ascii.git",
  9114. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  9115. },
  9116. "dist": {
  9117. "type": "zip",
  9118. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9119. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  9120. "shasum": ""
  9121. },
  9122. "require": {
  9123. "php": ">=7.0.0"
  9124. },
  9125. "require-dev": {
  9126. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  9127. },
  9128. "suggest": {
  9129. "ext-intl": "Use Intl for transliterator_transliterate() support"
  9130. },
  9131. "type": "library",
  9132. "autoload": {
  9133. "psr-4": {
  9134. "voku\\": "src/voku/"
  9135. }
  9136. },
  9137. "notification-url": "https://packagist.org/downloads/",
  9138. "license": [
  9139. "MIT"
  9140. ],
  9141. "authors": [
  9142. {
  9143. "name": "Lars Moelleken",
  9144. "homepage": "https://www.moelleken.org/"
  9145. }
  9146. ],
  9147. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  9148. "homepage": "https://github.com/voku/portable-ascii",
  9149. "keywords": [
  9150. "ascii",
  9151. "clean",
  9152. "php"
  9153. ],
  9154. "support": {
  9155. "issues": "https://github.com/voku/portable-ascii/issues",
  9156. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  9157. },
  9158. "funding": [
  9159. {
  9160. "url": "https://www.paypal.me/moelleken",
  9161. "type": "custom"
  9162. },
  9163. {
  9164. "url": "https://github.com/voku",
  9165. "type": "github"
  9166. },
  9167. {
  9168. "url": "https://opencollective.com/portable-ascii",
  9169. "type": "open_collective"
  9170. },
  9171. {
  9172. "url": "https://www.patreon.com/voku",
  9173. "type": "patreon"
  9174. },
  9175. {
  9176. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  9177. "type": "tidelift"
  9178. }
  9179. ],
  9180. "time": "2024-11-21T01:49:47+00:00"
  9181. },
  9182. {
  9183. "name": "webmozart/assert",
  9184. "version": "1.11.0",
  9185. "source": {
  9186. "type": "git",
  9187. "url": "https://github.com/webmozarts/assert.git",
  9188. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  9189. },
  9190. "dist": {
  9191. "type": "zip",
  9192. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9193. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  9194. "shasum": ""
  9195. },
  9196. "require": {
  9197. "ext-ctype": "*",
  9198. "php": "^7.2 || ^8.0"
  9199. },
  9200. "conflict": {
  9201. "phpstan/phpstan": "<0.12.20",
  9202. "vimeo/psalm": "<4.6.1 || 4.6.2"
  9203. },
  9204. "require-dev": {
  9205. "phpunit/phpunit": "^8.5.13"
  9206. },
  9207. "type": "library",
  9208. "extra": {
  9209. "branch-alias": {
  9210. "dev-master": "1.10-dev"
  9211. }
  9212. },
  9213. "autoload": {
  9214. "psr-4": {
  9215. "Webmozart\\Assert\\": "src/"
  9216. }
  9217. },
  9218. "notification-url": "https://packagist.org/downloads/",
  9219. "license": [
  9220. "MIT"
  9221. ],
  9222. "authors": [
  9223. {
  9224. "name": "Bernhard Schussek",
  9225. "email": "bschussek@gmail.com"
  9226. }
  9227. ],
  9228. "description": "Assertions to validate method input/output with nice error messages.",
  9229. "keywords": [
  9230. "assert",
  9231. "check",
  9232. "validate"
  9233. ],
  9234. "support": {
  9235. "issues": "https://github.com/webmozarts/assert/issues",
  9236. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  9237. },
  9238. "time": "2022-06-03T18:03:27+00:00"
  9239. }
  9240. ],
  9241. "packages-dev": [
  9242. {
  9243. "name": "brianium/paratest",
  9244. "version": "v7.7.0",
  9245. "source": {
  9246. "type": "git",
  9247. "url": "https://github.com/paratestphp/paratest.git",
  9248. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf"
  9249. },
  9250. "dist": {
  9251. "type": "zip",
  9252. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  9253. "reference": "4fb3f73bc5a4c3146bac2850af7dc72435a32daf",
  9254. "shasum": ""
  9255. },
  9256. "require": {
  9257. "ext-dom": "*",
  9258. "ext-pcre": "*",
  9259. "ext-reflection": "*",
  9260. "ext-simplexml": "*",
  9261. "fidry/cpu-core-counter": "^1.2.0",
  9262. "jean85/pretty-package-versions": "^2.1.0",
  9263. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  9264. "phpunit/php-code-coverage": "^11.0.8",
  9265. "phpunit/php-file-iterator": "^5.1.0",
  9266. "phpunit/php-timer": "^7.0.1",
  9267. "phpunit/phpunit": "^11.5.1",
  9268. "sebastian/environment": "^7.2.0",
  9269. "symfony/console": "^6.4.14 || ^7.2.1",
  9270. "symfony/process": "^6.4.14 || ^7.2.0"
  9271. },
  9272. "require-dev": {
  9273. "doctrine/coding-standard": "^12.0.0",
  9274. "ext-pcov": "*",
  9275. "ext-posix": "*",
  9276. "phpstan/phpstan": "^2.0.3",
  9277. "phpstan/phpstan-deprecation-rules": "^2.0.1",
  9278. "phpstan/phpstan-phpunit": "^2.0.1",
  9279. "phpstan/phpstan-strict-rules": "^2",
  9280. "squizlabs/php_codesniffer": "^3.11.1",
  9281. "symfony/filesystem": "^6.4.13 || ^7.2.0"
  9282. },
  9283. "bin": [
  9284. "bin/paratest",
  9285. "bin/paratest_for_phpstorm"
  9286. ],
  9287. "type": "library",
  9288. "autoload": {
  9289. "psr-4": {
  9290. "ParaTest\\": [
  9291. "src/"
  9292. ]
  9293. }
  9294. },
  9295. "notification-url": "https://packagist.org/downloads/",
  9296. "license": [
  9297. "MIT"
  9298. ],
  9299. "authors": [
  9300. {
  9301. "name": "Brian Scaturro",
  9302. "email": "scaturrob@gmail.com",
  9303. "role": "Developer"
  9304. },
  9305. {
  9306. "name": "Filippo Tessarotto",
  9307. "email": "zoeslam@gmail.com",
  9308. "role": "Developer"
  9309. }
  9310. ],
  9311. "description": "Parallel testing for PHP",
  9312. "homepage": "https://github.com/paratestphp/paratest",
  9313. "keywords": [
  9314. "concurrent",
  9315. "parallel",
  9316. "phpunit",
  9317. "testing"
  9318. ],
  9319. "support": {
  9320. "issues": "https://github.com/paratestphp/paratest/issues",
  9321. "source": "https://github.com/paratestphp/paratest/tree/v7.7.0"
  9322. },
  9323. "funding": [
  9324. {
  9325. "url": "https://github.com/sponsors/Slamdunk",
  9326. "type": "github"
  9327. },
  9328. {
  9329. "url": "https://paypal.me/filippotessarotto",
  9330. "type": "paypal"
  9331. }
  9332. ],
  9333. "time": "2024-12-11T14:50:44+00:00"
  9334. },
  9335. {
  9336. "name": "fakerphp/faker",
  9337. "version": "v1.24.1",
  9338. "source": {
  9339. "type": "git",
  9340. "url": "https://github.com/FakerPHP/Faker.git",
  9341. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  9342. },
  9343. "dist": {
  9344. "type": "zip",
  9345. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9346. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  9347. "shasum": ""
  9348. },
  9349. "require": {
  9350. "php": "^7.4 || ^8.0",
  9351. "psr/container": "^1.0 || ^2.0",
  9352. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  9353. },
  9354. "conflict": {
  9355. "fzaninotto/faker": "*"
  9356. },
  9357. "require-dev": {
  9358. "bamarni/composer-bin-plugin": "^1.4.1",
  9359. "doctrine/persistence": "^1.3 || ^2.0",
  9360. "ext-intl": "*",
  9361. "phpunit/phpunit": "^9.5.26",
  9362. "symfony/phpunit-bridge": "^5.4.16"
  9363. },
  9364. "suggest": {
  9365. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  9366. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  9367. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  9368. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  9369. "ext-mbstring": "Required for multibyte Unicode string functionality."
  9370. },
  9371. "type": "library",
  9372. "autoload": {
  9373. "psr-4": {
  9374. "Faker\\": "src/Faker/"
  9375. }
  9376. },
  9377. "notification-url": "https://packagist.org/downloads/",
  9378. "license": [
  9379. "MIT"
  9380. ],
  9381. "authors": [
  9382. {
  9383. "name": "François Zaninotto"
  9384. }
  9385. ],
  9386. "description": "Faker is a PHP library that generates fake data for you.",
  9387. "keywords": [
  9388. "data",
  9389. "faker",
  9390. "fixtures"
  9391. ],
  9392. "support": {
  9393. "issues": "https://github.com/FakerPHP/Faker/issues",
  9394. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  9395. },
  9396. "time": "2024-11-21T13:46:39+00:00"
  9397. },
  9398. {
  9399. "name": "fidry/cpu-core-counter",
  9400. "version": "1.2.0",
  9401. "source": {
  9402. "type": "git",
  9403. "url": "https://github.com/theofidry/cpu-core-counter.git",
  9404. "reference": "8520451a140d3f46ac33042715115e290cf5785f"
  9405. },
  9406. "dist": {
  9407. "type": "zip",
  9408. "url": "https://api.github.com/repos/theofidry/cpu-core-counter/zipball/8520451a140d3f46ac33042715115e290cf5785f",
  9409. "reference": "8520451a140d3f46ac33042715115e290cf5785f",
  9410. "shasum": ""
  9411. },
  9412. "require": {
  9413. "php": "^7.2 || ^8.0"
  9414. },
  9415. "require-dev": {
  9416. "fidry/makefile": "^0.2.0",
  9417. "fidry/php-cs-fixer-config": "^1.1.2",
  9418. "phpstan/extension-installer": "^1.2.0",
  9419. "phpstan/phpstan": "^1.9.2",
  9420. "phpstan/phpstan-deprecation-rules": "^1.0.0",
  9421. "phpstan/phpstan-phpunit": "^1.2.2",
  9422. "phpstan/phpstan-strict-rules": "^1.4.4",
  9423. "phpunit/phpunit": "^8.5.31 || ^9.5.26",
  9424. "webmozarts/strict-phpunit": "^7.5"
  9425. },
  9426. "type": "library",
  9427. "autoload": {
  9428. "psr-4": {
  9429. "Fidry\\CpuCoreCounter\\": "src/"
  9430. }
  9431. },
  9432. "notification-url": "https://packagist.org/downloads/",
  9433. "license": [
  9434. "MIT"
  9435. ],
  9436. "authors": [
  9437. {
  9438. "name": "Théo FIDRY",
  9439. "email": "theo.fidry@gmail.com"
  9440. }
  9441. ],
  9442. "description": "Tiny utility to get the number of CPU cores.",
  9443. "keywords": [
  9444. "CPU",
  9445. "core"
  9446. ],
  9447. "support": {
  9448. "issues": "https://github.com/theofidry/cpu-core-counter/issues",
  9449. "source": "https://github.com/theofidry/cpu-core-counter/tree/1.2.0"
  9450. },
  9451. "funding": [
  9452. {
  9453. "url": "https://github.com/theofidry",
  9454. "type": "github"
  9455. }
  9456. ],
  9457. "time": "2024-08-06T10:04:20+00:00"
  9458. },
  9459. {
  9460. "name": "filp/whoops",
  9461. "version": "2.16.0",
  9462. "source": {
  9463. "type": "git",
  9464. "url": "https://github.com/filp/whoops.git",
  9465. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2"
  9466. },
  9467. "dist": {
  9468. "type": "zip",
  9469. "url": "https://api.github.com/repos/filp/whoops/zipball/befcdc0e5dce67252aa6322d82424be928214fa2",
  9470. "reference": "befcdc0e5dce67252aa6322d82424be928214fa2",
  9471. "shasum": ""
  9472. },
  9473. "require": {
  9474. "php": "^7.1 || ^8.0",
  9475. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  9476. },
  9477. "require-dev": {
  9478. "mockery/mockery": "^1.0",
  9479. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  9480. "symfony/var-dumper": "^4.0 || ^5.0"
  9481. },
  9482. "suggest": {
  9483. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  9484. "whoops/soap": "Formats errors as SOAP responses"
  9485. },
  9486. "type": "library",
  9487. "extra": {
  9488. "branch-alias": {
  9489. "dev-master": "2.7-dev"
  9490. }
  9491. },
  9492. "autoload": {
  9493. "psr-4": {
  9494. "Whoops\\": "src/Whoops/"
  9495. }
  9496. },
  9497. "notification-url": "https://packagist.org/downloads/",
  9498. "license": [
  9499. "MIT"
  9500. ],
  9501. "authors": [
  9502. {
  9503. "name": "Filipe Dobreira",
  9504. "homepage": "https://github.com/filp",
  9505. "role": "Developer"
  9506. }
  9507. ],
  9508. "description": "php error handling for cool kids",
  9509. "homepage": "https://filp.github.io/whoops/",
  9510. "keywords": [
  9511. "error",
  9512. "exception",
  9513. "handling",
  9514. "library",
  9515. "throwable",
  9516. "whoops"
  9517. ],
  9518. "support": {
  9519. "issues": "https://github.com/filp/whoops/issues",
  9520. "source": "https://github.com/filp/whoops/tree/2.16.0"
  9521. },
  9522. "funding": [
  9523. {
  9524. "url": "https://github.com/denis-sokolov",
  9525. "type": "github"
  9526. }
  9527. ],
  9528. "time": "2024-09-25T12:00:00+00:00"
  9529. },
  9530. {
  9531. "name": "hamcrest/hamcrest-php",
  9532. "version": "v2.0.1",
  9533. "source": {
  9534. "type": "git",
  9535. "url": "https://github.com/hamcrest/hamcrest-php.git",
  9536. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  9537. },
  9538. "dist": {
  9539. "type": "zip",
  9540. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9541. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  9542. "shasum": ""
  9543. },
  9544. "require": {
  9545. "php": "^5.3|^7.0|^8.0"
  9546. },
  9547. "replace": {
  9548. "cordoval/hamcrest-php": "*",
  9549. "davedevelopment/hamcrest-php": "*",
  9550. "kodova/hamcrest-php": "*"
  9551. },
  9552. "require-dev": {
  9553. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  9554. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  9555. },
  9556. "type": "library",
  9557. "extra": {
  9558. "branch-alias": {
  9559. "dev-master": "2.1-dev"
  9560. }
  9561. },
  9562. "autoload": {
  9563. "classmap": [
  9564. "hamcrest"
  9565. ]
  9566. },
  9567. "notification-url": "https://packagist.org/downloads/",
  9568. "license": [
  9569. "BSD-3-Clause"
  9570. ],
  9571. "description": "This is the PHP port of Hamcrest Matchers",
  9572. "keywords": [
  9573. "test"
  9574. ],
  9575. "support": {
  9576. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  9577. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  9578. },
  9579. "time": "2020-07-09T08:09:16+00:00"
  9580. },
  9581. {
  9582. "name": "jean85/pretty-package-versions",
  9583. "version": "2.1.0",
  9584. "source": {
  9585. "type": "git",
  9586. "url": "https://github.com/Jean85/pretty-package-versions.git",
  9587. "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10"
  9588. },
  9589. "dist": {
  9590. "type": "zip",
  9591. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/3c4e5f62ba8d7de1734312e4fff32f67a8daaf10",
  9592. "reference": "3c4e5f62ba8d7de1734312e4fff32f67a8daaf10",
  9593. "shasum": ""
  9594. },
  9595. "require": {
  9596. "composer-runtime-api": "^2.1.0",
  9597. "php": "^7.4|^8.0"
  9598. },
  9599. "require-dev": {
  9600. "friendsofphp/php-cs-fixer": "^3.2",
  9601. "jean85/composer-provided-replaced-stub-package": "^1.0",
  9602. "phpstan/phpstan": "^1.4",
  9603. "phpunit/phpunit": "^7.5|^8.5|^9.6",
  9604. "vimeo/psalm": "^4.3 || ^5.0"
  9605. },
  9606. "type": "library",
  9607. "extra": {
  9608. "branch-alias": {
  9609. "dev-master": "1.x-dev"
  9610. }
  9611. },
  9612. "autoload": {
  9613. "psr-4": {
  9614. "Jean85\\": "src/"
  9615. }
  9616. },
  9617. "notification-url": "https://packagist.org/downloads/",
  9618. "license": [
  9619. "MIT"
  9620. ],
  9621. "authors": [
  9622. {
  9623. "name": "Alessandro Lai",
  9624. "email": "alessandro.lai85@gmail.com"
  9625. }
  9626. ],
  9627. "description": "A library to get pretty versions strings of installed dependencies",
  9628. "keywords": [
  9629. "composer",
  9630. "package",
  9631. "release",
  9632. "versions"
  9633. ],
  9634. "support": {
  9635. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  9636. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.1.0"
  9637. },
  9638. "time": "2024-11-18T16:19:46+00:00"
  9639. },
  9640. {
  9641. "name": "laravel/pint",
  9642. "version": "v1.18.3",
  9643. "source": {
  9644. "type": "git",
  9645. "url": "https://github.com/laravel/pint.git",
  9646. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026"
  9647. },
  9648. "dist": {
  9649. "type": "zip",
  9650. "url": "https://api.github.com/repos/laravel/pint/zipball/cef51821608239040ab841ad6e1c6ae502ae3026",
  9651. "reference": "cef51821608239040ab841ad6e1c6ae502ae3026",
  9652. "shasum": ""
  9653. },
  9654. "require": {
  9655. "ext-json": "*",
  9656. "ext-mbstring": "*",
  9657. "ext-tokenizer": "*",
  9658. "ext-xml": "*",
  9659. "php": "^8.1.0"
  9660. },
  9661. "require-dev": {
  9662. "friendsofphp/php-cs-fixer": "^3.65.0",
  9663. "illuminate/view": "^10.48.24",
  9664. "larastan/larastan": "^2.9.11",
  9665. "laravel-zero/framework": "^10.4.0",
  9666. "mockery/mockery": "^1.6.12",
  9667. "nunomaduro/termwind": "^1.17.0",
  9668. "pestphp/pest": "^2.36.0"
  9669. },
  9670. "bin": [
  9671. "builds/pint"
  9672. ],
  9673. "type": "project",
  9674. "autoload": {
  9675. "psr-4": {
  9676. "App\\": "app/",
  9677. "Database\\Seeders\\": "database/seeders/",
  9678. "Database\\Factories\\": "database/factories/"
  9679. }
  9680. },
  9681. "notification-url": "https://packagist.org/downloads/",
  9682. "license": [
  9683. "MIT"
  9684. ],
  9685. "authors": [
  9686. {
  9687. "name": "Nuno Maduro",
  9688. "email": "enunomaduro@gmail.com"
  9689. }
  9690. ],
  9691. "description": "An opinionated code formatter for PHP.",
  9692. "homepage": "https://laravel.com",
  9693. "keywords": [
  9694. "format",
  9695. "formatter",
  9696. "lint",
  9697. "linter",
  9698. "php"
  9699. ],
  9700. "support": {
  9701. "issues": "https://github.com/laravel/pint/issues",
  9702. "source": "https://github.com/laravel/pint"
  9703. },
  9704. "time": "2024-11-26T15:34:00+00:00"
  9705. },
  9706. {
  9707. "name": "laravel/sail",
  9708. "version": "v1.39.1",
  9709. "source": {
  9710. "type": "git",
  9711. "url": "https://github.com/laravel/sail.git",
  9712. "reference": "1a3c7291bc88de983b66688919a4d298d68ddec7"
  9713. },
  9714. "dist": {
  9715. "type": "zip",
  9716. "url": "https://api.github.com/repos/laravel/sail/zipball/1a3c7291bc88de983b66688919a4d298d68ddec7",
  9717. "reference": "1a3c7291bc88de983b66688919a4d298d68ddec7",
  9718. "shasum": ""
  9719. },
  9720. "require": {
  9721. "illuminate/console": "^9.52.16|^10.0|^11.0",
  9722. "illuminate/contracts": "^9.52.16|^10.0|^11.0",
  9723. "illuminate/support": "^9.52.16|^10.0|^11.0",
  9724. "php": "^8.0",
  9725. "symfony/console": "^6.0|^7.0",
  9726. "symfony/yaml": "^6.0|^7.0"
  9727. },
  9728. "require-dev": {
  9729. "orchestra/testbench": "^7.0|^8.0|^9.0",
  9730. "phpstan/phpstan": "^1.10"
  9731. },
  9732. "bin": [
  9733. "bin/sail"
  9734. ],
  9735. "type": "library",
  9736. "extra": {
  9737. "laravel": {
  9738. "providers": [
  9739. "Laravel\\Sail\\SailServiceProvider"
  9740. ]
  9741. }
  9742. },
  9743. "autoload": {
  9744. "psr-4": {
  9745. "Laravel\\Sail\\": "src/"
  9746. }
  9747. },
  9748. "notification-url": "https://packagist.org/downloads/",
  9749. "license": [
  9750. "MIT"
  9751. ],
  9752. "authors": [
  9753. {
  9754. "name": "Taylor Otwell",
  9755. "email": "taylor@laravel.com"
  9756. }
  9757. ],
  9758. "description": "Docker files for running a basic Laravel application.",
  9759. "keywords": [
  9760. "docker",
  9761. "laravel"
  9762. ],
  9763. "support": {
  9764. "issues": "https://github.com/laravel/sail/issues",
  9765. "source": "https://github.com/laravel/sail"
  9766. },
  9767. "time": "2024-11-27T15:42:28+00:00"
  9768. },
  9769. {
  9770. "name": "mockery/mockery",
  9771. "version": "1.6.12",
  9772. "source": {
  9773. "type": "git",
  9774. "url": "https://github.com/mockery/mockery.git",
  9775. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  9776. },
  9777. "dist": {
  9778. "type": "zip",
  9779. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9780. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  9781. "shasum": ""
  9782. },
  9783. "require": {
  9784. "hamcrest/hamcrest-php": "^2.0.1",
  9785. "lib-pcre": ">=7.0",
  9786. "php": ">=7.3"
  9787. },
  9788. "conflict": {
  9789. "phpunit/phpunit": "<8.0"
  9790. },
  9791. "require-dev": {
  9792. "phpunit/phpunit": "^8.5 || ^9.6.17",
  9793. "symplify/easy-coding-standard": "^12.1.14"
  9794. },
  9795. "type": "library",
  9796. "autoload": {
  9797. "files": [
  9798. "library/helpers.php",
  9799. "library/Mockery.php"
  9800. ],
  9801. "psr-4": {
  9802. "Mockery\\": "library/Mockery"
  9803. }
  9804. },
  9805. "notification-url": "https://packagist.org/downloads/",
  9806. "license": [
  9807. "BSD-3-Clause"
  9808. ],
  9809. "authors": [
  9810. {
  9811. "name": "Pádraic Brady",
  9812. "email": "padraic.brady@gmail.com",
  9813. "homepage": "https://github.com/padraic",
  9814. "role": "Author"
  9815. },
  9816. {
  9817. "name": "Dave Marshall",
  9818. "email": "dave.marshall@atstsolutions.co.uk",
  9819. "homepage": "https://davedevelopment.co.uk",
  9820. "role": "Developer"
  9821. },
  9822. {
  9823. "name": "Nathanael Esayeas",
  9824. "email": "nathanael.esayeas@protonmail.com",
  9825. "homepage": "https://github.com/ghostwriter",
  9826. "role": "Lead Developer"
  9827. }
  9828. ],
  9829. "description": "Mockery is a simple yet flexible PHP mock object framework",
  9830. "homepage": "https://github.com/mockery/mockery",
  9831. "keywords": [
  9832. "BDD",
  9833. "TDD",
  9834. "library",
  9835. "mock",
  9836. "mock objects",
  9837. "mockery",
  9838. "stub",
  9839. "test",
  9840. "test double",
  9841. "testing"
  9842. ],
  9843. "support": {
  9844. "docs": "https://docs.mockery.io/",
  9845. "issues": "https://github.com/mockery/mockery/issues",
  9846. "rss": "https://github.com/mockery/mockery/releases.atom",
  9847. "security": "https://github.com/mockery/mockery/security/advisories",
  9848. "source": "https://github.com/mockery/mockery"
  9849. },
  9850. "time": "2024-05-16T03:13:13+00:00"
  9851. },
  9852. {
  9853. "name": "myclabs/deep-copy",
  9854. "version": "1.12.1",
  9855. "source": {
  9856. "type": "git",
  9857. "url": "https://github.com/myclabs/DeepCopy.git",
  9858. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845"
  9859. },
  9860. "dist": {
  9861. "type": "zip",
  9862. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/123267b2c49fbf30d78a7b2d333f6be754b94845",
  9863. "reference": "123267b2c49fbf30d78a7b2d333f6be754b94845",
  9864. "shasum": ""
  9865. },
  9866. "require": {
  9867. "php": "^7.1 || ^8.0"
  9868. },
  9869. "conflict": {
  9870. "doctrine/collections": "<1.6.8",
  9871. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  9872. },
  9873. "require-dev": {
  9874. "doctrine/collections": "^1.6.8",
  9875. "doctrine/common": "^2.13.3 || ^3.2.2",
  9876. "phpspec/prophecy": "^1.10",
  9877. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  9878. },
  9879. "type": "library",
  9880. "autoload": {
  9881. "files": [
  9882. "src/DeepCopy/deep_copy.php"
  9883. ],
  9884. "psr-4": {
  9885. "DeepCopy\\": "src/DeepCopy/"
  9886. }
  9887. },
  9888. "notification-url": "https://packagist.org/downloads/",
  9889. "license": [
  9890. "MIT"
  9891. ],
  9892. "description": "Create deep copies (clones) of your objects",
  9893. "keywords": [
  9894. "clone",
  9895. "copy",
  9896. "duplicate",
  9897. "object",
  9898. "object graph"
  9899. ],
  9900. "support": {
  9901. "issues": "https://github.com/myclabs/DeepCopy/issues",
  9902. "source": "https://github.com/myclabs/DeepCopy/tree/1.12.1"
  9903. },
  9904. "funding": [
  9905. {
  9906. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  9907. "type": "tidelift"
  9908. }
  9909. ],
  9910. "time": "2024-11-08T17:47:46+00:00"
  9911. },
  9912. {
  9913. "name": "nunomaduro/collision",
  9914. "version": "v8.5.0",
  9915. "source": {
  9916. "type": "git",
  9917. "url": "https://github.com/nunomaduro/collision.git",
  9918. "reference": "f5c101b929c958e849a633283adff296ed5f38f5"
  9919. },
  9920. "dist": {
  9921. "type": "zip",
  9922. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f5c101b929c958e849a633283adff296ed5f38f5",
  9923. "reference": "f5c101b929c958e849a633283adff296ed5f38f5",
  9924. "shasum": ""
  9925. },
  9926. "require": {
  9927. "filp/whoops": "^2.16.0",
  9928. "nunomaduro/termwind": "^2.1.0",
  9929. "php": "^8.2.0",
  9930. "symfony/console": "^7.1.5"
  9931. },
  9932. "conflict": {
  9933. "laravel/framework": "<11.0.0 || >=12.0.0",
  9934. "phpunit/phpunit": "<10.5.1 || >=12.0.0"
  9935. },
  9936. "require-dev": {
  9937. "larastan/larastan": "^2.9.8",
  9938. "laravel/framework": "^11.28.0",
  9939. "laravel/pint": "^1.18.1",
  9940. "laravel/sail": "^1.36.0",
  9941. "laravel/sanctum": "^4.0.3",
  9942. "laravel/tinker": "^2.10.0",
  9943. "orchestra/testbench-core": "^9.5.3",
  9944. "pestphp/pest": "^2.36.0 || ^3.4.0",
  9945. "sebastian/environment": "^6.1.0 || ^7.2.0"
  9946. },
  9947. "type": "library",
  9948. "extra": {
  9949. "laravel": {
  9950. "providers": [
  9951. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  9952. ]
  9953. },
  9954. "branch-alias": {
  9955. "dev-8.x": "8.x-dev"
  9956. }
  9957. },
  9958. "autoload": {
  9959. "files": [
  9960. "./src/Adapters/Phpunit/Autoload.php"
  9961. ],
  9962. "psr-4": {
  9963. "NunoMaduro\\Collision\\": "src/"
  9964. }
  9965. },
  9966. "notification-url": "https://packagist.org/downloads/",
  9967. "license": [
  9968. "MIT"
  9969. ],
  9970. "authors": [
  9971. {
  9972. "name": "Nuno Maduro",
  9973. "email": "enunomaduro@gmail.com"
  9974. }
  9975. ],
  9976. "description": "Cli error handling for console/command-line PHP applications.",
  9977. "keywords": [
  9978. "artisan",
  9979. "cli",
  9980. "command-line",
  9981. "console",
  9982. "error",
  9983. "handling",
  9984. "laravel",
  9985. "laravel-zero",
  9986. "php",
  9987. "symfony"
  9988. ],
  9989. "support": {
  9990. "issues": "https://github.com/nunomaduro/collision/issues",
  9991. "source": "https://github.com/nunomaduro/collision"
  9992. },
  9993. "funding": [
  9994. {
  9995. "url": "https://www.paypal.com/paypalme/enunomaduro",
  9996. "type": "custom"
  9997. },
  9998. {
  9999. "url": "https://github.com/nunomaduro",
  10000. "type": "github"
  10001. },
  10002. {
  10003. "url": "https://www.patreon.com/nunomaduro",
  10004. "type": "patreon"
  10005. }
  10006. ],
  10007. "time": "2024-10-15T16:06:32+00:00"
  10008. },
  10009. {
  10010. "name": "pestphp/pest",
  10011. "version": "v3.7.1",
  10012. "source": {
  10013. "type": "git",
  10014. "url": "https://github.com/pestphp/pest.git",
  10015. "reference": "bf3178473dcaa53b0458f21dfdb271306ea62512"
  10016. },
  10017. "dist": {
  10018. "type": "zip",
  10019. "url": "https://api.github.com/repos/pestphp/pest/zipball/bf3178473dcaa53b0458f21dfdb271306ea62512",
  10020. "reference": "bf3178473dcaa53b0458f21dfdb271306ea62512",
  10021. "shasum": ""
  10022. },
  10023. "require": {
  10024. "brianium/paratest": "^7.7.0",
  10025. "nunomaduro/collision": "^8.5.0",
  10026. "nunomaduro/termwind": "^2.3.0",
  10027. "pestphp/pest-plugin": "^3.0.0",
  10028. "pestphp/pest-plugin-arch": "^3.0.0",
  10029. "pestphp/pest-plugin-mutate": "^3.0.5",
  10030. "php": "^8.2.0",
  10031. "phpunit/phpunit": "^11.5.1"
  10032. },
  10033. "conflict": {
  10034. "filp/whoops": "<2.16.0",
  10035. "phpunit/phpunit": ">11.5.1",
  10036. "sebastian/exporter": "<6.0.0",
  10037. "webmozart/assert": "<1.11.0"
  10038. },
  10039. "require-dev": {
  10040. "pestphp/pest-dev-tools": "^3.3.0",
  10041. "pestphp/pest-plugin-type-coverage": "^3.2.0",
  10042. "symfony/process": "^7.2.0"
  10043. },
  10044. "bin": [
  10045. "bin/pest"
  10046. ],
  10047. "type": "library",
  10048. "extra": {
  10049. "pest": {
  10050. "plugins": [
  10051. "Pest\\Mutate\\Plugins\\Mutate",
  10052. "Pest\\Plugins\\Configuration",
  10053. "Pest\\Plugins\\Bail",
  10054. "Pest\\Plugins\\Cache",
  10055. "Pest\\Plugins\\Coverage",
  10056. "Pest\\Plugins\\Init",
  10057. "Pest\\Plugins\\Environment",
  10058. "Pest\\Plugins\\Help",
  10059. "Pest\\Plugins\\Memory",
  10060. "Pest\\Plugins\\Only",
  10061. "Pest\\Plugins\\Printer",
  10062. "Pest\\Plugins\\ProcessIsolation",
  10063. "Pest\\Plugins\\Profile",
  10064. "Pest\\Plugins\\Retry",
  10065. "Pest\\Plugins\\Snapshot",
  10066. "Pest\\Plugins\\Verbose",
  10067. "Pest\\Plugins\\Version",
  10068. "Pest\\Plugins\\Parallel"
  10069. ]
  10070. },
  10071. "phpstan": {
  10072. "includes": [
  10073. "extension.neon"
  10074. ]
  10075. }
  10076. },
  10077. "autoload": {
  10078. "files": [
  10079. "src/Functions.php",
  10080. "src/Pest.php"
  10081. ],
  10082. "psr-4": {
  10083. "Pest\\": "src/"
  10084. }
  10085. },
  10086. "notification-url": "https://packagist.org/downloads/",
  10087. "license": [
  10088. "MIT"
  10089. ],
  10090. "authors": [
  10091. {
  10092. "name": "Nuno Maduro",
  10093. "email": "enunomaduro@gmail.com"
  10094. }
  10095. ],
  10096. "description": "The elegant PHP Testing Framework.",
  10097. "keywords": [
  10098. "framework",
  10099. "pest",
  10100. "php",
  10101. "test",
  10102. "testing",
  10103. "unit"
  10104. ],
  10105. "support": {
  10106. "issues": "https://github.com/pestphp/pest/issues",
  10107. "source": "https://github.com/pestphp/pest/tree/v3.7.1"
  10108. },
  10109. "funding": [
  10110. {
  10111. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10112. "type": "custom"
  10113. },
  10114. {
  10115. "url": "https://github.com/nunomaduro",
  10116. "type": "github"
  10117. }
  10118. ],
  10119. "time": "2024-12-12T11:52:01+00:00"
  10120. },
  10121. {
  10122. "name": "pestphp/pest-plugin",
  10123. "version": "v3.0.0",
  10124. "source": {
  10125. "type": "git",
  10126. "url": "https://github.com/pestphp/pest-plugin.git",
  10127. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83"
  10128. },
  10129. "dist": {
  10130. "type": "zip",
  10131. "url": "https://api.github.com/repos/pestphp/pest-plugin/zipball/e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10132. "reference": "e79b26c65bc11c41093b10150c1341cc5cdbea83",
  10133. "shasum": ""
  10134. },
  10135. "require": {
  10136. "composer-plugin-api": "^2.0.0",
  10137. "composer-runtime-api": "^2.2.2",
  10138. "php": "^8.2"
  10139. },
  10140. "conflict": {
  10141. "pestphp/pest": "<3.0.0"
  10142. },
  10143. "require-dev": {
  10144. "composer/composer": "^2.7.9",
  10145. "pestphp/pest": "^3.0.0",
  10146. "pestphp/pest-dev-tools": "^3.0.0"
  10147. },
  10148. "type": "composer-plugin",
  10149. "extra": {
  10150. "class": "Pest\\Plugin\\Manager"
  10151. },
  10152. "autoload": {
  10153. "psr-4": {
  10154. "Pest\\Plugin\\": "src/"
  10155. }
  10156. },
  10157. "notification-url": "https://packagist.org/downloads/",
  10158. "license": [
  10159. "MIT"
  10160. ],
  10161. "description": "The Pest plugin manager",
  10162. "keywords": [
  10163. "framework",
  10164. "manager",
  10165. "pest",
  10166. "php",
  10167. "plugin",
  10168. "test",
  10169. "testing",
  10170. "unit"
  10171. ],
  10172. "support": {
  10173. "source": "https://github.com/pestphp/pest-plugin/tree/v3.0.0"
  10174. },
  10175. "funding": [
  10176. {
  10177. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10178. "type": "custom"
  10179. },
  10180. {
  10181. "url": "https://github.com/nunomaduro",
  10182. "type": "github"
  10183. },
  10184. {
  10185. "url": "https://www.patreon.com/nunomaduro",
  10186. "type": "patreon"
  10187. }
  10188. ],
  10189. "time": "2024-09-08T23:21:41+00:00"
  10190. },
  10191. {
  10192. "name": "pestphp/pest-plugin-arch",
  10193. "version": "v3.0.0",
  10194. "source": {
  10195. "type": "git",
  10196. "url": "https://github.com/pestphp/pest-plugin-arch.git",
  10197. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0"
  10198. },
  10199. "dist": {
  10200. "type": "zip",
  10201. "url": "https://api.github.com/repos/pestphp/pest-plugin-arch/zipball/0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  10202. "reference": "0a27e55a270cfe73d8cb70551b91002ee2cb64b0",
  10203. "shasum": ""
  10204. },
  10205. "require": {
  10206. "pestphp/pest-plugin": "^3.0.0",
  10207. "php": "^8.2",
  10208. "ta-tikoma/phpunit-architecture-test": "^0.8.4"
  10209. },
  10210. "require-dev": {
  10211. "pestphp/pest": "^3.0.0",
  10212. "pestphp/pest-dev-tools": "^3.0.0"
  10213. },
  10214. "type": "library",
  10215. "extra": {
  10216. "pest": {
  10217. "plugins": [
  10218. "Pest\\Arch\\Plugin"
  10219. ]
  10220. }
  10221. },
  10222. "autoload": {
  10223. "files": [
  10224. "src/Autoload.php"
  10225. ],
  10226. "psr-4": {
  10227. "Pest\\Arch\\": "src/"
  10228. }
  10229. },
  10230. "notification-url": "https://packagist.org/downloads/",
  10231. "license": [
  10232. "MIT"
  10233. ],
  10234. "description": "The Arch plugin for Pest PHP.",
  10235. "keywords": [
  10236. "arch",
  10237. "architecture",
  10238. "framework",
  10239. "pest",
  10240. "php",
  10241. "plugin",
  10242. "test",
  10243. "testing",
  10244. "unit"
  10245. ],
  10246. "support": {
  10247. "source": "https://github.com/pestphp/pest-plugin-arch/tree/v3.0.0"
  10248. },
  10249. "funding": [
  10250. {
  10251. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10252. "type": "custom"
  10253. },
  10254. {
  10255. "url": "https://github.com/nunomaduro",
  10256. "type": "github"
  10257. }
  10258. ],
  10259. "time": "2024-09-08T23:23:55+00:00"
  10260. },
  10261. {
  10262. "name": "pestphp/pest-plugin-livewire",
  10263. "version": "v3.0.0",
  10264. "source": {
  10265. "type": "git",
  10266. "url": "https://github.com/pestphp/pest-plugin-livewire.git",
  10267. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89"
  10268. },
  10269. "dist": {
  10270. "type": "zip",
  10271. "url": "https://api.github.com/repos/pestphp/pest-plugin-livewire/zipball/e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10272. "reference": "e2f2edb0a7d414d6837d87908a0e148256d3bf89",
  10273. "shasum": ""
  10274. },
  10275. "require": {
  10276. "livewire/livewire": "^3.5.6",
  10277. "pestphp/pest": "^3.0.0",
  10278. "php": "^8.1"
  10279. },
  10280. "require-dev": {
  10281. "orchestra/testbench": "^9.4.0",
  10282. "pestphp/pest-dev-tools": "^3.0.0"
  10283. },
  10284. "type": "library",
  10285. "autoload": {
  10286. "files": [
  10287. "src/Autoload.php"
  10288. ],
  10289. "psr-4": {
  10290. "Pest\\Livewire\\": "src/"
  10291. }
  10292. },
  10293. "notification-url": "https://packagist.org/downloads/",
  10294. "license": [
  10295. "MIT"
  10296. ],
  10297. "description": "The Pest Livewire Plugin",
  10298. "keywords": [
  10299. "framework",
  10300. "livewire",
  10301. "pest",
  10302. "php",
  10303. "plugin",
  10304. "test",
  10305. "testing",
  10306. "unit"
  10307. ],
  10308. "support": {
  10309. "source": "https://github.com/pestphp/pest-plugin-livewire/tree/v3.0.0"
  10310. },
  10311. "funding": [
  10312. {
  10313. "url": "https://www.paypal.com/cgi-bin/webscr?cmd=_s-xclick&hosted_button_id=66BYDWAT92N6L",
  10314. "type": "custom"
  10315. },
  10316. {
  10317. "url": "https://github.com/nunomaduro",
  10318. "type": "github"
  10319. },
  10320. {
  10321. "url": "https://www.patreon.com/nunomaduro",
  10322. "type": "patreon"
  10323. }
  10324. ],
  10325. "time": "2024-09-09T00:05:59+00:00"
  10326. },
  10327. {
  10328. "name": "pestphp/pest-plugin-mutate",
  10329. "version": "v3.0.5",
  10330. "source": {
  10331. "type": "git",
  10332. "url": "https://github.com/pestphp/pest-plugin-mutate.git",
  10333. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08"
  10334. },
  10335. "dist": {
  10336. "type": "zip",
  10337. "url": "https://api.github.com/repos/pestphp/pest-plugin-mutate/zipball/e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10338. "reference": "e10dbdc98c9e2f3890095b4fe2144f63a5717e08",
  10339. "shasum": ""
  10340. },
  10341. "require": {
  10342. "nikic/php-parser": "^5.2.0",
  10343. "pestphp/pest-plugin": "^3.0.0",
  10344. "php": "^8.2",
  10345. "psr/simple-cache": "^3.0.0"
  10346. },
  10347. "require-dev": {
  10348. "pestphp/pest": "^3.0.8",
  10349. "pestphp/pest-dev-tools": "^3.0.0",
  10350. "pestphp/pest-plugin-type-coverage": "^3.0.0"
  10351. },
  10352. "type": "library",
  10353. "autoload": {
  10354. "psr-4": {
  10355. "Pest\\Mutate\\": "src/"
  10356. }
  10357. },
  10358. "notification-url": "https://packagist.org/downloads/",
  10359. "license": [
  10360. "MIT"
  10361. ],
  10362. "authors": [
  10363. {
  10364. "name": "Sandro Gehri",
  10365. "email": "sandrogehri@gmail.com"
  10366. }
  10367. ],
  10368. "description": "Mutates your code to find untested cases",
  10369. "keywords": [
  10370. "framework",
  10371. "mutate",
  10372. "mutation",
  10373. "pest",
  10374. "php",
  10375. "plugin",
  10376. "test",
  10377. "testing",
  10378. "unit"
  10379. ],
  10380. "support": {
  10381. "source": "https://github.com/pestphp/pest-plugin-mutate/tree/v3.0.5"
  10382. },
  10383. "funding": [
  10384. {
  10385. "url": "https://www.paypal.com/paypalme/enunomaduro",
  10386. "type": "custom"
  10387. },
  10388. {
  10389. "url": "https://github.com/gehrisandro",
  10390. "type": "github"
  10391. },
  10392. {
  10393. "url": "https://github.com/nunomaduro",
  10394. "type": "github"
  10395. }
  10396. ],
  10397. "time": "2024-09-22T07:54:40+00:00"
  10398. },
  10399. {
  10400. "name": "phar-io/manifest",
  10401. "version": "2.0.4",
  10402. "source": {
  10403. "type": "git",
  10404. "url": "https://github.com/phar-io/manifest.git",
  10405. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  10406. },
  10407. "dist": {
  10408. "type": "zip",
  10409. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  10410. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  10411. "shasum": ""
  10412. },
  10413. "require": {
  10414. "ext-dom": "*",
  10415. "ext-libxml": "*",
  10416. "ext-phar": "*",
  10417. "ext-xmlwriter": "*",
  10418. "phar-io/version": "^3.0.1",
  10419. "php": "^7.2 || ^8.0"
  10420. },
  10421. "type": "library",
  10422. "extra": {
  10423. "branch-alias": {
  10424. "dev-master": "2.0.x-dev"
  10425. }
  10426. },
  10427. "autoload": {
  10428. "classmap": [
  10429. "src/"
  10430. ]
  10431. },
  10432. "notification-url": "https://packagist.org/downloads/",
  10433. "license": [
  10434. "BSD-3-Clause"
  10435. ],
  10436. "authors": [
  10437. {
  10438. "name": "Arne Blankerts",
  10439. "email": "arne@blankerts.de",
  10440. "role": "Developer"
  10441. },
  10442. {
  10443. "name": "Sebastian Heuer",
  10444. "email": "sebastian@phpeople.de",
  10445. "role": "Developer"
  10446. },
  10447. {
  10448. "name": "Sebastian Bergmann",
  10449. "email": "sebastian@phpunit.de",
  10450. "role": "Developer"
  10451. }
  10452. ],
  10453. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  10454. "support": {
  10455. "issues": "https://github.com/phar-io/manifest/issues",
  10456. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  10457. },
  10458. "funding": [
  10459. {
  10460. "url": "https://github.com/theseer",
  10461. "type": "github"
  10462. }
  10463. ],
  10464. "time": "2024-03-03T12:33:53+00:00"
  10465. },
  10466. {
  10467. "name": "phar-io/version",
  10468. "version": "3.2.1",
  10469. "source": {
  10470. "type": "git",
  10471. "url": "https://github.com/phar-io/version.git",
  10472. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  10473. },
  10474. "dist": {
  10475. "type": "zip",
  10476. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10477. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  10478. "shasum": ""
  10479. },
  10480. "require": {
  10481. "php": "^7.2 || ^8.0"
  10482. },
  10483. "type": "library",
  10484. "autoload": {
  10485. "classmap": [
  10486. "src/"
  10487. ]
  10488. },
  10489. "notification-url": "https://packagist.org/downloads/",
  10490. "license": [
  10491. "BSD-3-Clause"
  10492. ],
  10493. "authors": [
  10494. {
  10495. "name": "Arne Blankerts",
  10496. "email": "arne@blankerts.de",
  10497. "role": "Developer"
  10498. },
  10499. {
  10500. "name": "Sebastian Heuer",
  10501. "email": "sebastian@phpeople.de",
  10502. "role": "Developer"
  10503. },
  10504. {
  10505. "name": "Sebastian Bergmann",
  10506. "email": "sebastian@phpunit.de",
  10507. "role": "Developer"
  10508. }
  10509. ],
  10510. "description": "Library for handling version information and constraints",
  10511. "support": {
  10512. "issues": "https://github.com/phar-io/version/issues",
  10513. "source": "https://github.com/phar-io/version/tree/3.2.1"
  10514. },
  10515. "time": "2022-02-21T01:04:05+00:00"
  10516. },
  10517. {
  10518. "name": "phpdocumentor/reflection-common",
  10519. "version": "2.2.0",
  10520. "source": {
  10521. "type": "git",
  10522. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  10523. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  10524. },
  10525. "dist": {
  10526. "type": "zip",
  10527. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10528. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  10529. "shasum": ""
  10530. },
  10531. "require": {
  10532. "php": "^7.2 || ^8.0"
  10533. },
  10534. "type": "library",
  10535. "extra": {
  10536. "branch-alias": {
  10537. "dev-2.x": "2.x-dev"
  10538. }
  10539. },
  10540. "autoload": {
  10541. "psr-4": {
  10542. "phpDocumentor\\Reflection\\": "src/"
  10543. }
  10544. },
  10545. "notification-url": "https://packagist.org/downloads/",
  10546. "license": [
  10547. "MIT"
  10548. ],
  10549. "authors": [
  10550. {
  10551. "name": "Jaap van Otterdijk",
  10552. "email": "opensource@ijaap.nl"
  10553. }
  10554. ],
  10555. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  10556. "homepage": "http://www.phpdoc.org",
  10557. "keywords": [
  10558. "FQSEN",
  10559. "phpDocumentor",
  10560. "phpdoc",
  10561. "reflection",
  10562. "static analysis"
  10563. ],
  10564. "support": {
  10565. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  10566. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  10567. },
  10568. "time": "2020-06-27T09:03:43+00:00"
  10569. },
  10570. {
  10571. "name": "phpdocumentor/reflection-docblock",
  10572. "version": "5.6.1",
  10573. "source": {
  10574. "type": "git",
  10575. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  10576. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8"
  10577. },
  10578. "dist": {
  10579. "type": "zip",
  10580. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  10581. "reference": "e5e784149a09bd69d9a5e3b01c5cbd2e2bd653d8",
  10582. "shasum": ""
  10583. },
  10584. "require": {
  10585. "doctrine/deprecations": "^1.1",
  10586. "ext-filter": "*",
  10587. "php": "^7.4 || ^8.0",
  10588. "phpdocumentor/reflection-common": "^2.2",
  10589. "phpdocumentor/type-resolver": "^1.7",
  10590. "phpstan/phpdoc-parser": "^1.7|^2.0",
  10591. "webmozart/assert": "^1.9.1"
  10592. },
  10593. "require-dev": {
  10594. "mockery/mockery": "~1.3.5 || ~1.6.0",
  10595. "phpstan/extension-installer": "^1.1",
  10596. "phpstan/phpstan": "^1.8",
  10597. "phpstan/phpstan-mockery": "^1.1",
  10598. "phpstan/phpstan-webmozart-assert": "^1.2",
  10599. "phpunit/phpunit": "^9.5",
  10600. "psalm/phar": "^5.26"
  10601. },
  10602. "type": "library",
  10603. "extra": {
  10604. "branch-alias": {
  10605. "dev-master": "5.x-dev"
  10606. }
  10607. },
  10608. "autoload": {
  10609. "psr-4": {
  10610. "phpDocumentor\\Reflection\\": "src"
  10611. }
  10612. },
  10613. "notification-url": "https://packagist.org/downloads/",
  10614. "license": [
  10615. "MIT"
  10616. ],
  10617. "authors": [
  10618. {
  10619. "name": "Mike van Riel",
  10620. "email": "me@mikevanriel.com"
  10621. },
  10622. {
  10623. "name": "Jaap van Otterdijk",
  10624. "email": "opensource@ijaap.nl"
  10625. }
  10626. ],
  10627. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  10628. "support": {
  10629. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  10630. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/5.6.1"
  10631. },
  10632. "time": "2024-12-07T09:39:29+00:00"
  10633. },
  10634. {
  10635. "name": "phpdocumentor/type-resolver",
  10636. "version": "1.10.0",
  10637. "source": {
  10638. "type": "git",
  10639. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  10640. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a"
  10641. },
  10642. "dist": {
  10643. "type": "zip",
  10644. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10645. "reference": "679e3ce485b99e84c775d28e2e96fade9a7fb50a",
  10646. "shasum": ""
  10647. },
  10648. "require": {
  10649. "doctrine/deprecations": "^1.0",
  10650. "php": "^7.3 || ^8.0",
  10651. "phpdocumentor/reflection-common": "^2.0",
  10652. "phpstan/phpdoc-parser": "^1.18|^2.0"
  10653. },
  10654. "require-dev": {
  10655. "ext-tokenizer": "*",
  10656. "phpbench/phpbench": "^1.2",
  10657. "phpstan/extension-installer": "^1.1",
  10658. "phpstan/phpstan": "^1.8",
  10659. "phpstan/phpstan-phpunit": "^1.1",
  10660. "phpunit/phpunit": "^9.5",
  10661. "rector/rector": "^0.13.9",
  10662. "vimeo/psalm": "^4.25"
  10663. },
  10664. "type": "library",
  10665. "extra": {
  10666. "branch-alias": {
  10667. "dev-1.x": "1.x-dev"
  10668. }
  10669. },
  10670. "autoload": {
  10671. "psr-4": {
  10672. "phpDocumentor\\Reflection\\": "src"
  10673. }
  10674. },
  10675. "notification-url": "https://packagist.org/downloads/",
  10676. "license": [
  10677. "MIT"
  10678. ],
  10679. "authors": [
  10680. {
  10681. "name": "Mike van Riel",
  10682. "email": "me@mikevanriel.com"
  10683. }
  10684. ],
  10685. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  10686. "support": {
  10687. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  10688. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.10.0"
  10689. },
  10690. "time": "2024-11-09T15:12:26+00:00"
  10691. },
  10692. {
  10693. "name": "phpstan/phpdoc-parser",
  10694. "version": "2.0.0",
  10695. "source": {
  10696. "type": "git",
  10697. "url": "https://github.com/phpstan/phpdoc-parser.git",
  10698. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299"
  10699. },
  10700. "dist": {
  10701. "type": "zip",
  10702. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/c00d78fb6b29658347f9d37ebe104bffadf36299",
  10703. "reference": "c00d78fb6b29658347f9d37ebe104bffadf36299",
  10704. "shasum": ""
  10705. },
  10706. "require": {
  10707. "php": "^7.4 || ^8.0"
  10708. },
  10709. "require-dev": {
  10710. "doctrine/annotations": "^2.0",
  10711. "nikic/php-parser": "^5.3.0",
  10712. "php-parallel-lint/php-parallel-lint": "^1.2",
  10713. "phpstan/extension-installer": "^1.0",
  10714. "phpstan/phpstan": "^2.0",
  10715. "phpstan/phpstan-phpunit": "^2.0",
  10716. "phpstan/phpstan-strict-rules": "^2.0",
  10717. "phpunit/phpunit": "^9.6",
  10718. "symfony/process": "^5.2"
  10719. },
  10720. "type": "library",
  10721. "autoload": {
  10722. "psr-4": {
  10723. "PHPStan\\PhpDocParser\\": [
  10724. "src/"
  10725. ]
  10726. }
  10727. },
  10728. "notification-url": "https://packagist.org/downloads/",
  10729. "license": [
  10730. "MIT"
  10731. ],
  10732. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  10733. "support": {
  10734. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  10735. "source": "https://github.com/phpstan/phpdoc-parser/tree/2.0.0"
  10736. },
  10737. "time": "2024-10-13T11:29:49+00:00"
  10738. },
  10739. {
  10740. "name": "phpunit/php-code-coverage",
  10741. "version": "11.0.8",
  10742. "source": {
  10743. "type": "git",
  10744. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10745. "reference": "418c59fd080954f8c4aa5631d9502ecda2387118"
  10746. },
  10747. "dist": {
  10748. "type": "zip",
  10749. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/418c59fd080954f8c4aa5631d9502ecda2387118",
  10750. "reference": "418c59fd080954f8c4aa5631d9502ecda2387118",
  10751. "shasum": ""
  10752. },
  10753. "require": {
  10754. "ext-dom": "*",
  10755. "ext-libxml": "*",
  10756. "ext-xmlwriter": "*",
  10757. "nikic/php-parser": "^5.3.1",
  10758. "php": ">=8.2",
  10759. "phpunit/php-file-iterator": "^5.1.0",
  10760. "phpunit/php-text-template": "^4.0.1",
  10761. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  10762. "sebastian/complexity": "^4.0.1",
  10763. "sebastian/environment": "^7.2.0",
  10764. "sebastian/lines-of-code": "^3.0.1",
  10765. "sebastian/version": "^5.0.2",
  10766. "theseer/tokenizer": "^1.2.3"
  10767. },
  10768. "require-dev": {
  10769. "phpunit/phpunit": "^11.5.0"
  10770. },
  10771. "suggest": {
  10772. "ext-pcov": "PHP extension that provides line coverage",
  10773. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10774. },
  10775. "type": "library",
  10776. "extra": {
  10777. "branch-alias": {
  10778. "dev-main": "11.0.x-dev"
  10779. }
  10780. },
  10781. "autoload": {
  10782. "classmap": [
  10783. "src/"
  10784. ]
  10785. },
  10786. "notification-url": "https://packagist.org/downloads/",
  10787. "license": [
  10788. "BSD-3-Clause"
  10789. ],
  10790. "authors": [
  10791. {
  10792. "name": "Sebastian Bergmann",
  10793. "email": "sebastian@phpunit.de",
  10794. "role": "lead"
  10795. }
  10796. ],
  10797. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10798. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10799. "keywords": [
  10800. "coverage",
  10801. "testing",
  10802. "xunit"
  10803. ],
  10804. "support": {
  10805. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10806. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  10807. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.8"
  10808. },
  10809. "funding": [
  10810. {
  10811. "url": "https://github.com/sebastianbergmann",
  10812. "type": "github"
  10813. }
  10814. ],
  10815. "time": "2024-12-11T12:34:27+00:00"
  10816. },
  10817. {
  10818. "name": "phpunit/php-file-iterator",
  10819. "version": "5.1.0",
  10820. "source": {
  10821. "type": "git",
  10822. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10823. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  10824. },
  10825. "dist": {
  10826. "type": "zip",
  10827. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  10828. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  10829. "shasum": ""
  10830. },
  10831. "require": {
  10832. "php": ">=8.2"
  10833. },
  10834. "require-dev": {
  10835. "phpunit/phpunit": "^11.0"
  10836. },
  10837. "type": "library",
  10838. "extra": {
  10839. "branch-alias": {
  10840. "dev-main": "5.0-dev"
  10841. }
  10842. },
  10843. "autoload": {
  10844. "classmap": [
  10845. "src/"
  10846. ]
  10847. },
  10848. "notification-url": "https://packagist.org/downloads/",
  10849. "license": [
  10850. "BSD-3-Clause"
  10851. ],
  10852. "authors": [
  10853. {
  10854. "name": "Sebastian Bergmann",
  10855. "email": "sebastian@phpunit.de",
  10856. "role": "lead"
  10857. }
  10858. ],
  10859. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10860. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10861. "keywords": [
  10862. "filesystem",
  10863. "iterator"
  10864. ],
  10865. "support": {
  10866. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10867. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  10868. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  10869. },
  10870. "funding": [
  10871. {
  10872. "url": "https://github.com/sebastianbergmann",
  10873. "type": "github"
  10874. }
  10875. ],
  10876. "time": "2024-08-27T05:02:59+00:00"
  10877. },
  10878. {
  10879. "name": "phpunit/php-invoker",
  10880. "version": "5.0.1",
  10881. "source": {
  10882. "type": "git",
  10883. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10884. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  10885. },
  10886. "dist": {
  10887. "type": "zip",
  10888. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  10889. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  10890. "shasum": ""
  10891. },
  10892. "require": {
  10893. "php": ">=8.2"
  10894. },
  10895. "require-dev": {
  10896. "ext-pcntl": "*",
  10897. "phpunit/phpunit": "^11.0"
  10898. },
  10899. "suggest": {
  10900. "ext-pcntl": "*"
  10901. },
  10902. "type": "library",
  10903. "extra": {
  10904. "branch-alias": {
  10905. "dev-main": "5.0-dev"
  10906. }
  10907. },
  10908. "autoload": {
  10909. "classmap": [
  10910. "src/"
  10911. ]
  10912. },
  10913. "notification-url": "https://packagist.org/downloads/",
  10914. "license": [
  10915. "BSD-3-Clause"
  10916. ],
  10917. "authors": [
  10918. {
  10919. "name": "Sebastian Bergmann",
  10920. "email": "sebastian@phpunit.de",
  10921. "role": "lead"
  10922. }
  10923. ],
  10924. "description": "Invoke callables with a timeout",
  10925. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10926. "keywords": [
  10927. "process"
  10928. ],
  10929. "support": {
  10930. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10931. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  10932. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  10933. },
  10934. "funding": [
  10935. {
  10936. "url": "https://github.com/sebastianbergmann",
  10937. "type": "github"
  10938. }
  10939. ],
  10940. "time": "2024-07-03T05:07:44+00:00"
  10941. },
  10942. {
  10943. "name": "phpunit/php-text-template",
  10944. "version": "4.0.1",
  10945. "source": {
  10946. "type": "git",
  10947. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  10948. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  10949. },
  10950. "dist": {
  10951. "type": "zip",
  10952. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  10953. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  10954. "shasum": ""
  10955. },
  10956. "require": {
  10957. "php": ">=8.2"
  10958. },
  10959. "require-dev": {
  10960. "phpunit/phpunit": "^11.0"
  10961. },
  10962. "type": "library",
  10963. "extra": {
  10964. "branch-alias": {
  10965. "dev-main": "4.0-dev"
  10966. }
  10967. },
  10968. "autoload": {
  10969. "classmap": [
  10970. "src/"
  10971. ]
  10972. },
  10973. "notification-url": "https://packagist.org/downloads/",
  10974. "license": [
  10975. "BSD-3-Clause"
  10976. ],
  10977. "authors": [
  10978. {
  10979. "name": "Sebastian Bergmann",
  10980. "email": "sebastian@phpunit.de",
  10981. "role": "lead"
  10982. }
  10983. ],
  10984. "description": "Simple template engine.",
  10985. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  10986. "keywords": [
  10987. "template"
  10988. ],
  10989. "support": {
  10990. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  10991. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  10992. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  10993. },
  10994. "funding": [
  10995. {
  10996. "url": "https://github.com/sebastianbergmann",
  10997. "type": "github"
  10998. }
  10999. ],
  11000. "time": "2024-07-03T05:08:43+00:00"
  11001. },
  11002. {
  11003. "name": "phpunit/php-timer",
  11004. "version": "7.0.1",
  11005. "source": {
  11006. "type": "git",
  11007. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11008. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  11009. },
  11010. "dist": {
  11011. "type": "zip",
  11012. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11013. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11014. "shasum": ""
  11015. },
  11016. "require": {
  11017. "php": ">=8.2"
  11018. },
  11019. "require-dev": {
  11020. "phpunit/phpunit": "^11.0"
  11021. },
  11022. "type": "library",
  11023. "extra": {
  11024. "branch-alias": {
  11025. "dev-main": "7.0-dev"
  11026. }
  11027. },
  11028. "autoload": {
  11029. "classmap": [
  11030. "src/"
  11031. ]
  11032. },
  11033. "notification-url": "https://packagist.org/downloads/",
  11034. "license": [
  11035. "BSD-3-Clause"
  11036. ],
  11037. "authors": [
  11038. {
  11039. "name": "Sebastian Bergmann",
  11040. "email": "sebastian@phpunit.de",
  11041. "role": "lead"
  11042. }
  11043. ],
  11044. "description": "Utility class for timing",
  11045. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11046. "keywords": [
  11047. "timer"
  11048. ],
  11049. "support": {
  11050. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11051. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  11052. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  11053. },
  11054. "funding": [
  11055. {
  11056. "url": "https://github.com/sebastianbergmann",
  11057. "type": "github"
  11058. }
  11059. ],
  11060. "time": "2024-07-03T05:09:35+00:00"
  11061. },
  11062. {
  11063. "name": "phpunit/phpunit",
  11064. "version": "11.5.1",
  11065. "source": {
  11066. "type": "git",
  11067. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11068. "reference": "2b94d4f2450b9869fa64a46fd8a6a41997aef56a"
  11069. },
  11070. "dist": {
  11071. "type": "zip",
  11072. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/2b94d4f2450b9869fa64a46fd8a6a41997aef56a",
  11073. "reference": "2b94d4f2450b9869fa64a46fd8a6a41997aef56a",
  11074. "shasum": ""
  11075. },
  11076. "require": {
  11077. "ext-dom": "*",
  11078. "ext-json": "*",
  11079. "ext-libxml": "*",
  11080. "ext-mbstring": "*",
  11081. "ext-xml": "*",
  11082. "ext-xmlwriter": "*",
  11083. "myclabs/deep-copy": "^1.12.1",
  11084. "phar-io/manifest": "^2.0.4",
  11085. "phar-io/version": "^3.2.1",
  11086. "php": ">=8.2",
  11087. "phpunit/php-code-coverage": "^11.0.7",
  11088. "phpunit/php-file-iterator": "^5.1.0",
  11089. "phpunit/php-invoker": "^5.0.1",
  11090. "phpunit/php-text-template": "^4.0.1",
  11091. "phpunit/php-timer": "^7.0.1",
  11092. "sebastian/cli-parser": "^3.0.2",
  11093. "sebastian/code-unit": "^3.0.1",
  11094. "sebastian/comparator": "^6.2.1",
  11095. "sebastian/diff": "^6.0.2",
  11096. "sebastian/environment": "^7.2.0",
  11097. "sebastian/exporter": "^6.3.0",
  11098. "sebastian/global-state": "^7.0.2",
  11099. "sebastian/object-enumerator": "^6.0.1",
  11100. "sebastian/type": "^5.1.0",
  11101. "sebastian/version": "^5.0.2",
  11102. "staabm/side-effects-detector": "^1.0.5"
  11103. },
  11104. "suggest": {
  11105. "ext-soap": "To be able to generate mocks based on WSDL files"
  11106. },
  11107. "bin": [
  11108. "phpunit"
  11109. ],
  11110. "type": "library",
  11111. "extra": {
  11112. "branch-alias": {
  11113. "dev-main": "11.5-dev"
  11114. }
  11115. },
  11116. "autoload": {
  11117. "files": [
  11118. "src/Framework/Assert/Functions.php"
  11119. ],
  11120. "classmap": [
  11121. "src/"
  11122. ]
  11123. },
  11124. "notification-url": "https://packagist.org/downloads/",
  11125. "license": [
  11126. "BSD-3-Clause"
  11127. ],
  11128. "authors": [
  11129. {
  11130. "name": "Sebastian Bergmann",
  11131. "email": "sebastian@phpunit.de",
  11132. "role": "lead"
  11133. }
  11134. ],
  11135. "description": "The PHP Unit Testing framework.",
  11136. "homepage": "https://phpunit.de/",
  11137. "keywords": [
  11138. "phpunit",
  11139. "testing",
  11140. "xunit"
  11141. ],
  11142. "support": {
  11143. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11144. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11145. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.1"
  11146. },
  11147. "funding": [
  11148. {
  11149. "url": "https://phpunit.de/sponsors.html",
  11150. "type": "custom"
  11151. },
  11152. {
  11153. "url": "https://github.com/sebastianbergmann",
  11154. "type": "github"
  11155. },
  11156. {
  11157. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11158. "type": "tidelift"
  11159. }
  11160. ],
  11161. "time": "2024-12-11T10:52:48+00:00"
  11162. },
  11163. {
  11164. "name": "pimple/pimple",
  11165. "version": "v3.5.0",
  11166. "source": {
  11167. "type": "git",
  11168. "url": "https://github.com/silexphp/Pimple.git",
  11169. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  11170. },
  11171. "dist": {
  11172. "type": "zip",
  11173. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  11174. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  11175. "shasum": ""
  11176. },
  11177. "require": {
  11178. "php": ">=7.2.5",
  11179. "psr/container": "^1.1 || ^2.0"
  11180. },
  11181. "require-dev": {
  11182. "symfony/phpunit-bridge": "^5.4@dev"
  11183. },
  11184. "type": "library",
  11185. "extra": {
  11186. "branch-alias": {
  11187. "dev-master": "3.4.x-dev"
  11188. }
  11189. },
  11190. "autoload": {
  11191. "psr-0": {
  11192. "Pimple": "src/"
  11193. }
  11194. },
  11195. "notification-url": "https://packagist.org/downloads/",
  11196. "license": [
  11197. "MIT"
  11198. ],
  11199. "authors": [
  11200. {
  11201. "name": "Fabien Potencier",
  11202. "email": "fabien@symfony.com"
  11203. }
  11204. ],
  11205. "description": "Pimple, a simple Dependency Injection Container",
  11206. "homepage": "https://pimple.symfony.com",
  11207. "keywords": [
  11208. "container",
  11209. "dependency injection"
  11210. ],
  11211. "support": {
  11212. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  11213. },
  11214. "time": "2021-10-28T11:13:42+00:00"
  11215. },
  11216. {
  11217. "name": "sebastian/cli-parser",
  11218. "version": "3.0.2",
  11219. "source": {
  11220. "type": "git",
  11221. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11222. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  11223. },
  11224. "dist": {
  11225. "type": "zip",
  11226. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11227. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11228. "shasum": ""
  11229. },
  11230. "require": {
  11231. "php": ">=8.2"
  11232. },
  11233. "require-dev": {
  11234. "phpunit/phpunit": "^11.0"
  11235. },
  11236. "type": "library",
  11237. "extra": {
  11238. "branch-alias": {
  11239. "dev-main": "3.0-dev"
  11240. }
  11241. },
  11242. "autoload": {
  11243. "classmap": [
  11244. "src/"
  11245. ]
  11246. },
  11247. "notification-url": "https://packagist.org/downloads/",
  11248. "license": [
  11249. "BSD-3-Clause"
  11250. ],
  11251. "authors": [
  11252. {
  11253. "name": "Sebastian Bergmann",
  11254. "email": "sebastian@phpunit.de",
  11255. "role": "lead"
  11256. }
  11257. ],
  11258. "description": "Library for parsing CLI options",
  11259. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11260. "support": {
  11261. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11262. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11263. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  11264. },
  11265. "funding": [
  11266. {
  11267. "url": "https://github.com/sebastianbergmann",
  11268. "type": "github"
  11269. }
  11270. ],
  11271. "time": "2024-07-03T04:41:36+00:00"
  11272. },
  11273. {
  11274. "name": "sebastian/code-unit",
  11275. "version": "3.0.2",
  11276. "source": {
  11277. "type": "git",
  11278. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11279. "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca"
  11280. },
  11281. "dist": {
  11282. "type": "zip",
  11283. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca",
  11284. "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca",
  11285. "shasum": ""
  11286. },
  11287. "require": {
  11288. "php": ">=8.2"
  11289. },
  11290. "require-dev": {
  11291. "phpunit/phpunit": "^11.5"
  11292. },
  11293. "type": "library",
  11294. "extra": {
  11295. "branch-alias": {
  11296. "dev-main": "3.0-dev"
  11297. }
  11298. },
  11299. "autoload": {
  11300. "classmap": [
  11301. "src/"
  11302. ]
  11303. },
  11304. "notification-url": "https://packagist.org/downloads/",
  11305. "license": [
  11306. "BSD-3-Clause"
  11307. ],
  11308. "authors": [
  11309. {
  11310. "name": "Sebastian Bergmann",
  11311. "email": "sebastian@phpunit.de",
  11312. "role": "lead"
  11313. }
  11314. ],
  11315. "description": "Collection of value objects that represent the PHP code units",
  11316. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11317. "support": {
  11318. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11319. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  11320. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.2"
  11321. },
  11322. "funding": [
  11323. {
  11324. "url": "https://github.com/sebastianbergmann",
  11325. "type": "github"
  11326. }
  11327. ],
  11328. "time": "2024-12-12T09:59:06+00:00"
  11329. },
  11330. {
  11331. "name": "sebastian/code-unit-reverse-lookup",
  11332. "version": "4.0.1",
  11333. "source": {
  11334. "type": "git",
  11335. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11336. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  11337. },
  11338. "dist": {
  11339. "type": "zip",
  11340. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  11341. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  11342. "shasum": ""
  11343. },
  11344. "require": {
  11345. "php": ">=8.2"
  11346. },
  11347. "require-dev": {
  11348. "phpunit/phpunit": "^11.0"
  11349. },
  11350. "type": "library",
  11351. "extra": {
  11352. "branch-alias": {
  11353. "dev-main": "4.0-dev"
  11354. }
  11355. },
  11356. "autoload": {
  11357. "classmap": [
  11358. "src/"
  11359. ]
  11360. },
  11361. "notification-url": "https://packagist.org/downloads/",
  11362. "license": [
  11363. "BSD-3-Clause"
  11364. ],
  11365. "authors": [
  11366. {
  11367. "name": "Sebastian Bergmann",
  11368. "email": "sebastian@phpunit.de"
  11369. }
  11370. ],
  11371. "description": "Looks up which function or method a line of code belongs to",
  11372. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11373. "support": {
  11374. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11375. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  11376. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  11377. },
  11378. "funding": [
  11379. {
  11380. "url": "https://github.com/sebastianbergmann",
  11381. "type": "github"
  11382. }
  11383. ],
  11384. "time": "2024-07-03T04:45:54+00:00"
  11385. },
  11386. {
  11387. "name": "sebastian/comparator",
  11388. "version": "6.2.1",
  11389. "source": {
  11390. "type": "git",
  11391. "url": "https://github.com/sebastianbergmann/comparator.git",
  11392. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739"
  11393. },
  11394. "dist": {
  11395. "type": "zip",
  11396. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739",
  11397. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739",
  11398. "shasum": ""
  11399. },
  11400. "require": {
  11401. "ext-dom": "*",
  11402. "ext-mbstring": "*",
  11403. "php": ">=8.2",
  11404. "sebastian/diff": "^6.0",
  11405. "sebastian/exporter": "^6.0"
  11406. },
  11407. "require-dev": {
  11408. "phpunit/phpunit": "^11.4"
  11409. },
  11410. "type": "library",
  11411. "extra": {
  11412. "branch-alias": {
  11413. "dev-main": "6.2-dev"
  11414. }
  11415. },
  11416. "autoload": {
  11417. "classmap": [
  11418. "src/"
  11419. ]
  11420. },
  11421. "notification-url": "https://packagist.org/downloads/",
  11422. "license": [
  11423. "BSD-3-Clause"
  11424. ],
  11425. "authors": [
  11426. {
  11427. "name": "Sebastian Bergmann",
  11428. "email": "sebastian@phpunit.de"
  11429. },
  11430. {
  11431. "name": "Jeff Welch",
  11432. "email": "whatthejeff@gmail.com"
  11433. },
  11434. {
  11435. "name": "Volker Dusch",
  11436. "email": "github@wallbash.com"
  11437. },
  11438. {
  11439. "name": "Bernhard Schussek",
  11440. "email": "bschussek@2bepublished.at"
  11441. }
  11442. ],
  11443. "description": "Provides the functionality to compare PHP values for equality",
  11444. "homepage": "https://github.com/sebastianbergmann/comparator",
  11445. "keywords": [
  11446. "comparator",
  11447. "compare",
  11448. "equality"
  11449. ],
  11450. "support": {
  11451. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11452. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11453. "source": "https://github.com/sebastianbergmann/comparator/tree/6.2.1"
  11454. },
  11455. "funding": [
  11456. {
  11457. "url": "https://github.com/sebastianbergmann",
  11458. "type": "github"
  11459. }
  11460. ],
  11461. "time": "2024-10-31T05:30:08+00:00"
  11462. },
  11463. {
  11464. "name": "sebastian/complexity",
  11465. "version": "4.0.1",
  11466. "source": {
  11467. "type": "git",
  11468. "url": "https://github.com/sebastianbergmann/complexity.git",
  11469. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  11470. },
  11471. "dist": {
  11472. "type": "zip",
  11473. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  11474. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  11475. "shasum": ""
  11476. },
  11477. "require": {
  11478. "nikic/php-parser": "^5.0",
  11479. "php": ">=8.2"
  11480. },
  11481. "require-dev": {
  11482. "phpunit/phpunit": "^11.0"
  11483. },
  11484. "type": "library",
  11485. "extra": {
  11486. "branch-alias": {
  11487. "dev-main": "4.0-dev"
  11488. }
  11489. },
  11490. "autoload": {
  11491. "classmap": [
  11492. "src/"
  11493. ]
  11494. },
  11495. "notification-url": "https://packagist.org/downloads/",
  11496. "license": [
  11497. "BSD-3-Clause"
  11498. ],
  11499. "authors": [
  11500. {
  11501. "name": "Sebastian Bergmann",
  11502. "email": "sebastian@phpunit.de",
  11503. "role": "lead"
  11504. }
  11505. ],
  11506. "description": "Library for calculating the complexity of PHP code units",
  11507. "homepage": "https://github.com/sebastianbergmann/complexity",
  11508. "support": {
  11509. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11510. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11511. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  11512. },
  11513. "funding": [
  11514. {
  11515. "url": "https://github.com/sebastianbergmann",
  11516. "type": "github"
  11517. }
  11518. ],
  11519. "time": "2024-07-03T04:49:50+00:00"
  11520. },
  11521. {
  11522. "name": "sebastian/diff",
  11523. "version": "6.0.2",
  11524. "source": {
  11525. "type": "git",
  11526. "url": "https://github.com/sebastianbergmann/diff.git",
  11527. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  11528. },
  11529. "dist": {
  11530. "type": "zip",
  11531. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  11532. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  11533. "shasum": ""
  11534. },
  11535. "require": {
  11536. "php": ">=8.2"
  11537. },
  11538. "require-dev": {
  11539. "phpunit/phpunit": "^11.0",
  11540. "symfony/process": "^4.2 || ^5"
  11541. },
  11542. "type": "library",
  11543. "extra": {
  11544. "branch-alias": {
  11545. "dev-main": "6.0-dev"
  11546. }
  11547. },
  11548. "autoload": {
  11549. "classmap": [
  11550. "src/"
  11551. ]
  11552. },
  11553. "notification-url": "https://packagist.org/downloads/",
  11554. "license": [
  11555. "BSD-3-Clause"
  11556. ],
  11557. "authors": [
  11558. {
  11559. "name": "Sebastian Bergmann",
  11560. "email": "sebastian@phpunit.de"
  11561. },
  11562. {
  11563. "name": "Kore Nordmann",
  11564. "email": "mail@kore-nordmann.de"
  11565. }
  11566. ],
  11567. "description": "Diff implementation",
  11568. "homepage": "https://github.com/sebastianbergmann/diff",
  11569. "keywords": [
  11570. "diff",
  11571. "udiff",
  11572. "unidiff",
  11573. "unified diff"
  11574. ],
  11575. "support": {
  11576. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11577. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11578. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  11579. },
  11580. "funding": [
  11581. {
  11582. "url": "https://github.com/sebastianbergmann",
  11583. "type": "github"
  11584. }
  11585. ],
  11586. "time": "2024-07-03T04:53:05+00:00"
  11587. },
  11588. {
  11589. "name": "sebastian/environment",
  11590. "version": "7.2.0",
  11591. "source": {
  11592. "type": "git",
  11593. "url": "https://github.com/sebastianbergmann/environment.git",
  11594. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  11595. },
  11596. "dist": {
  11597. "type": "zip",
  11598. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11599. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11600. "shasum": ""
  11601. },
  11602. "require": {
  11603. "php": ">=8.2"
  11604. },
  11605. "require-dev": {
  11606. "phpunit/phpunit": "^11.0"
  11607. },
  11608. "suggest": {
  11609. "ext-posix": "*"
  11610. },
  11611. "type": "library",
  11612. "extra": {
  11613. "branch-alias": {
  11614. "dev-main": "7.2-dev"
  11615. }
  11616. },
  11617. "autoload": {
  11618. "classmap": [
  11619. "src/"
  11620. ]
  11621. },
  11622. "notification-url": "https://packagist.org/downloads/",
  11623. "license": [
  11624. "BSD-3-Clause"
  11625. ],
  11626. "authors": [
  11627. {
  11628. "name": "Sebastian Bergmann",
  11629. "email": "sebastian@phpunit.de"
  11630. }
  11631. ],
  11632. "description": "Provides functionality to handle HHVM/PHP environments",
  11633. "homepage": "https://github.com/sebastianbergmann/environment",
  11634. "keywords": [
  11635. "Xdebug",
  11636. "environment",
  11637. "hhvm"
  11638. ],
  11639. "support": {
  11640. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11641. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11642. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  11643. },
  11644. "funding": [
  11645. {
  11646. "url": "https://github.com/sebastianbergmann",
  11647. "type": "github"
  11648. }
  11649. ],
  11650. "time": "2024-07-03T04:54:44+00:00"
  11651. },
  11652. {
  11653. "name": "sebastian/exporter",
  11654. "version": "6.3.0",
  11655. "source": {
  11656. "type": "git",
  11657. "url": "https://github.com/sebastianbergmann/exporter.git",
  11658. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  11659. },
  11660. "dist": {
  11661. "type": "zip",
  11662. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11663. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11664. "shasum": ""
  11665. },
  11666. "require": {
  11667. "ext-mbstring": "*",
  11668. "php": ">=8.2",
  11669. "sebastian/recursion-context": "^6.0"
  11670. },
  11671. "require-dev": {
  11672. "phpunit/phpunit": "^11.3"
  11673. },
  11674. "type": "library",
  11675. "extra": {
  11676. "branch-alias": {
  11677. "dev-main": "6.1-dev"
  11678. }
  11679. },
  11680. "autoload": {
  11681. "classmap": [
  11682. "src/"
  11683. ]
  11684. },
  11685. "notification-url": "https://packagist.org/downloads/",
  11686. "license": [
  11687. "BSD-3-Clause"
  11688. ],
  11689. "authors": [
  11690. {
  11691. "name": "Sebastian Bergmann",
  11692. "email": "sebastian@phpunit.de"
  11693. },
  11694. {
  11695. "name": "Jeff Welch",
  11696. "email": "whatthejeff@gmail.com"
  11697. },
  11698. {
  11699. "name": "Volker Dusch",
  11700. "email": "github@wallbash.com"
  11701. },
  11702. {
  11703. "name": "Adam Harvey",
  11704. "email": "aharvey@php.net"
  11705. },
  11706. {
  11707. "name": "Bernhard Schussek",
  11708. "email": "bschussek@gmail.com"
  11709. }
  11710. ],
  11711. "description": "Provides the functionality to export PHP variables for visualization",
  11712. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11713. "keywords": [
  11714. "export",
  11715. "exporter"
  11716. ],
  11717. "support": {
  11718. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11719. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  11720. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  11721. },
  11722. "funding": [
  11723. {
  11724. "url": "https://github.com/sebastianbergmann",
  11725. "type": "github"
  11726. }
  11727. ],
  11728. "time": "2024-12-05T09:17:50+00:00"
  11729. },
  11730. {
  11731. "name": "sebastian/global-state",
  11732. "version": "7.0.2",
  11733. "source": {
  11734. "type": "git",
  11735. "url": "https://github.com/sebastianbergmann/global-state.git",
  11736. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  11737. },
  11738. "dist": {
  11739. "type": "zip",
  11740. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  11741. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  11742. "shasum": ""
  11743. },
  11744. "require": {
  11745. "php": ">=8.2",
  11746. "sebastian/object-reflector": "^4.0",
  11747. "sebastian/recursion-context": "^6.0"
  11748. },
  11749. "require-dev": {
  11750. "ext-dom": "*",
  11751. "phpunit/phpunit": "^11.0"
  11752. },
  11753. "type": "library",
  11754. "extra": {
  11755. "branch-alias": {
  11756. "dev-main": "7.0-dev"
  11757. }
  11758. },
  11759. "autoload": {
  11760. "classmap": [
  11761. "src/"
  11762. ]
  11763. },
  11764. "notification-url": "https://packagist.org/downloads/",
  11765. "license": [
  11766. "BSD-3-Clause"
  11767. ],
  11768. "authors": [
  11769. {
  11770. "name": "Sebastian Bergmann",
  11771. "email": "sebastian@phpunit.de"
  11772. }
  11773. ],
  11774. "description": "Snapshotting of global state",
  11775. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  11776. "keywords": [
  11777. "global state"
  11778. ],
  11779. "support": {
  11780. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11781. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  11782. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  11783. },
  11784. "funding": [
  11785. {
  11786. "url": "https://github.com/sebastianbergmann",
  11787. "type": "github"
  11788. }
  11789. ],
  11790. "time": "2024-07-03T04:57:36+00:00"
  11791. },
  11792. {
  11793. "name": "sebastian/lines-of-code",
  11794. "version": "3.0.1",
  11795. "source": {
  11796. "type": "git",
  11797. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11798. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  11799. },
  11800. "dist": {
  11801. "type": "zip",
  11802. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11803. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11804. "shasum": ""
  11805. },
  11806. "require": {
  11807. "nikic/php-parser": "^5.0",
  11808. "php": ">=8.2"
  11809. },
  11810. "require-dev": {
  11811. "phpunit/phpunit": "^11.0"
  11812. },
  11813. "type": "library",
  11814. "extra": {
  11815. "branch-alias": {
  11816. "dev-main": "3.0-dev"
  11817. }
  11818. },
  11819. "autoload": {
  11820. "classmap": [
  11821. "src/"
  11822. ]
  11823. },
  11824. "notification-url": "https://packagist.org/downloads/",
  11825. "license": [
  11826. "BSD-3-Clause"
  11827. ],
  11828. "authors": [
  11829. {
  11830. "name": "Sebastian Bergmann",
  11831. "email": "sebastian@phpunit.de",
  11832. "role": "lead"
  11833. }
  11834. ],
  11835. "description": "Library for counting the lines of code in PHP source code",
  11836. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11837. "support": {
  11838. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11839. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11840. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  11841. },
  11842. "funding": [
  11843. {
  11844. "url": "https://github.com/sebastianbergmann",
  11845. "type": "github"
  11846. }
  11847. ],
  11848. "time": "2024-07-03T04:58:38+00:00"
  11849. },
  11850. {
  11851. "name": "sebastian/object-enumerator",
  11852. "version": "6.0.1",
  11853. "source": {
  11854. "type": "git",
  11855. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11856. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  11857. },
  11858. "dist": {
  11859. "type": "zip",
  11860. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  11861. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  11862. "shasum": ""
  11863. },
  11864. "require": {
  11865. "php": ">=8.2",
  11866. "sebastian/object-reflector": "^4.0",
  11867. "sebastian/recursion-context": "^6.0"
  11868. },
  11869. "require-dev": {
  11870. "phpunit/phpunit": "^11.0"
  11871. },
  11872. "type": "library",
  11873. "extra": {
  11874. "branch-alias": {
  11875. "dev-main": "6.0-dev"
  11876. }
  11877. },
  11878. "autoload": {
  11879. "classmap": [
  11880. "src/"
  11881. ]
  11882. },
  11883. "notification-url": "https://packagist.org/downloads/",
  11884. "license": [
  11885. "BSD-3-Clause"
  11886. ],
  11887. "authors": [
  11888. {
  11889. "name": "Sebastian Bergmann",
  11890. "email": "sebastian@phpunit.de"
  11891. }
  11892. ],
  11893. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  11894. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  11895. "support": {
  11896. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  11897. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  11898. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  11899. },
  11900. "funding": [
  11901. {
  11902. "url": "https://github.com/sebastianbergmann",
  11903. "type": "github"
  11904. }
  11905. ],
  11906. "time": "2024-07-03T05:00:13+00:00"
  11907. },
  11908. {
  11909. "name": "sebastian/object-reflector",
  11910. "version": "4.0.1",
  11911. "source": {
  11912. "type": "git",
  11913. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  11914. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  11915. },
  11916. "dist": {
  11917. "type": "zip",
  11918. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  11919. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  11920. "shasum": ""
  11921. },
  11922. "require": {
  11923. "php": ">=8.2"
  11924. },
  11925. "require-dev": {
  11926. "phpunit/phpunit": "^11.0"
  11927. },
  11928. "type": "library",
  11929. "extra": {
  11930. "branch-alias": {
  11931. "dev-main": "4.0-dev"
  11932. }
  11933. },
  11934. "autoload": {
  11935. "classmap": [
  11936. "src/"
  11937. ]
  11938. },
  11939. "notification-url": "https://packagist.org/downloads/",
  11940. "license": [
  11941. "BSD-3-Clause"
  11942. ],
  11943. "authors": [
  11944. {
  11945. "name": "Sebastian Bergmann",
  11946. "email": "sebastian@phpunit.de"
  11947. }
  11948. ],
  11949. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  11950. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  11951. "support": {
  11952. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  11953. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  11954. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  11955. },
  11956. "funding": [
  11957. {
  11958. "url": "https://github.com/sebastianbergmann",
  11959. "type": "github"
  11960. }
  11961. ],
  11962. "time": "2024-07-03T05:01:32+00:00"
  11963. },
  11964. {
  11965. "name": "sebastian/recursion-context",
  11966. "version": "6.0.2",
  11967. "source": {
  11968. "type": "git",
  11969. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  11970. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  11971. },
  11972. "dist": {
  11973. "type": "zip",
  11974. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  11975. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  11976. "shasum": ""
  11977. },
  11978. "require": {
  11979. "php": ">=8.2"
  11980. },
  11981. "require-dev": {
  11982. "phpunit/phpunit": "^11.0"
  11983. },
  11984. "type": "library",
  11985. "extra": {
  11986. "branch-alias": {
  11987. "dev-main": "6.0-dev"
  11988. }
  11989. },
  11990. "autoload": {
  11991. "classmap": [
  11992. "src/"
  11993. ]
  11994. },
  11995. "notification-url": "https://packagist.org/downloads/",
  11996. "license": [
  11997. "BSD-3-Clause"
  11998. ],
  11999. "authors": [
  12000. {
  12001. "name": "Sebastian Bergmann",
  12002. "email": "sebastian@phpunit.de"
  12003. },
  12004. {
  12005. "name": "Jeff Welch",
  12006. "email": "whatthejeff@gmail.com"
  12007. },
  12008. {
  12009. "name": "Adam Harvey",
  12010. "email": "aharvey@php.net"
  12011. }
  12012. ],
  12013. "description": "Provides functionality to recursively process PHP variables",
  12014. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12015. "support": {
  12016. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12017. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  12018. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  12019. },
  12020. "funding": [
  12021. {
  12022. "url": "https://github.com/sebastianbergmann",
  12023. "type": "github"
  12024. }
  12025. ],
  12026. "time": "2024-07-03T05:10:34+00:00"
  12027. },
  12028. {
  12029. "name": "sebastian/type",
  12030. "version": "5.1.0",
  12031. "source": {
  12032. "type": "git",
  12033. "url": "https://github.com/sebastianbergmann/type.git",
  12034. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  12035. },
  12036. "dist": {
  12037. "type": "zip",
  12038. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12039. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12040. "shasum": ""
  12041. },
  12042. "require": {
  12043. "php": ">=8.2"
  12044. },
  12045. "require-dev": {
  12046. "phpunit/phpunit": "^11.3"
  12047. },
  12048. "type": "library",
  12049. "extra": {
  12050. "branch-alias": {
  12051. "dev-main": "5.1-dev"
  12052. }
  12053. },
  12054. "autoload": {
  12055. "classmap": [
  12056. "src/"
  12057. ]
  12058. },
  12059. "notification-url": "https://packagist.org/downloads/",
  12060. "license": [
  12061. "BSD-3-Clause"
  12062. ],
  12063. "authors": [
  12064. {
  12065. "name": "Sebastian Bergmann",
  12066. "email": "sebastian@phpunit.de",
  12067. "role": "lead"
  12068. }
  12069. ],
  12070. "description": "Collection of value objects that represent the types of the PHP type system",
  12071. "homepage": "https://github.com/sebastianbergmann/type",
  12072. "support": {
  12073. "issues": "https://github.com/sebastianbergmann/type/issues",
  12074. "security": "https://github.com/sebastianbergmann/type/security/policy",
  12075. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  12076. },
  12077. "funding": [
  12078. {
  12079. "url": "https://github.com/sebastianbergmann",
  12080. "type": "github"
  12081. }
  12082. ],
  12083. "time": "2024-09-17T13:12:04+00:00"
  12084. },
  12085. {
  12086. "name": "sebastian/version",
  12087. "version": "5.0.2",
  12088. "source": {
  12089. "type": "git",
  12090. "url": "https://github.com/sebastianbergmann/version.git",
  12091. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  12092. },
  12093. "dist": {
  12094. "type": "zip",
  12095. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12096. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12097. "shasum": ""
  12098. },
  12099. "require": {
  12100. "php": ">=8.2"
  12101. },
  12102. "type": "library",
  12103. "extra": {
  12104. "branch-alias": {
  12105. "dev-main": "5.0-dev"
  12106. }
  12107. },
  12108. "autoload": {
  12109. "classmap": [
  12110. "src/"
  12111. ]
  12112. },
  12113. "notification-url": "https://packagist.org/downloads/",
  12114. "license": [
  12115. "BSD-3-Clause"
  12116. ],
  12117. "authors": [
  12118. {
  12119. "name": "Sebastian Bergmann",
  12120. "email": "sebastian@phpunit.de",
  12121. "role": "lead"
  12122. }
  12123. ],
  12124. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12125. "homepage": "https://github.com/sebastianbergmann/version",
  12126. "support": {
  12127. "issues": "https://github.com/sebastianbergmann/version/issues",
  12128. "security": "https://github.com/sebastianbergmann/version/security/policy",
  12129. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  12130. },
  12131. "funding": [
  12132. {
  12133. "url": "https://github.com/sebastianbergmann",
  12134. "type": "github"
  12135. }
  12136. ],
  12137. "time": "2024-10-09T05:16:32+00:00"
  12138. },
  12139. {
  12140. "name": "spatie/backtrace",
  12141. "version": "1.7.1",
  12142. "source": {
  12143. "type": "git",
  12144. "url": "https://github.com/spatie/backtrace.git",
  12145. "reference": "0f2477c520e3729de58e061b8192f161c99f770b"
  12146. },
  12147. "dist": {
  12148. "type": "zip",
  12149. "url": "https://api.github.com/repos/spatie/backtrace/zipball/0f2477c520e3729de58e061b8192f161c99f770b",
  12150. "reference": "0f2477c520e3729de58e061b8192f161c99f770b",
  12151. "shasum": ""
  12152. },
  12153. "require": {
  12154. "php": "^7.3 || ^8.0"
  12155. },
  12156. "require-dev": {
  12157. "ext-json": "*",
  12158. "laravel/serializable-closure": "^1.3 || ^2.0",
  12159. "phpunit/phpunit": "^9.3 || ^11.4.3",
  12160. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6",
  12161. "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0"
  12162. },
  12163. "type": "library",
  12164. "autoload": {
  12165. "psr-4": {
  12166. "Spatie\\Backtrace\\": "src"
  12167. }
  12168. },
  12169. "notification-url": "https://packagist.org/downloads/",
  12170. "license": [
  12171. "MIT"
  12172. ],
  12173. "authors": [
  12174. {
  12175. "name": "Freek Van de Herten",
  12176. "email": "freek@spatie.be",
  12177. "homepage": "https://spatie.be",
  12178. "role": "Developer"
  12179. }
  12180. ],
  12181. "description": "A better backtrace",
  12182. "homepage": "https://github.com/spatie/backtrace",
  12183. "keywords": [
  12184. "Backtrace",
  12185. "spatie"
  12186. ],
  12187. "support": {
  12188. "source": "https://github.com/spatie/backtrace/tree/1.7.1"
  12189. },
  12190. "funding": [
  12191. {
  12192. "url": "https://github.com/sponsors/spatie",
  12193. "type": "github"
  12194. },
  12195. {
  12196. "url": "https://spatie.be/open-source/support-us",
  12197. "type": "other"
  12198. }
  12199. ],
  12200. "time": "2024-12-02T13:28:15+00:00"
  12201. },
  12202. {
  12203. "name": "spatie/error-solutions",
  12204. "version": "1.1.2",
  12205. "source": {
  12206. "type": "git",
  12207. "url": "https://github.com/spatie/error-solutions.git",
  12208. "reference": "d239a65235a1eb128dfa0a4e4c4ef032ea11b541"
  12209. },
  12210. "dist": {
  12211. "type": "zip",
  12212. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/d239a65235a1eb128dfa0a4e4c4ef032ea11b541",
  12213. "reference": "d239a65235a1eb128dfa0a4e4c4ef032ea11b541",
  12214. "shasum": ""
  12215. },
  12216. "require": {
  12217. "php": "^8.0"
  12218. },
  12219. "require-dev": {
  12220. "illuminate/broadcasting": "^10.0|^11.0",
  12221. "illuminate/cache": "^10.0|^11.0",
  12222. "illuminate/support": "^10.0|^11.0",
  12223. "livewire/livewire": "^2.11|^3.3.5",
  12224. "openai-php/client": "^0.10.1",
  12225. "orchestra/testbench": "^7.0|8.22.3|^9.0",
  12226. "pestphp/pest": "^2.20",
  12227. "phpstan/phpstan": "^1.11",
  12228. "psr/simple-cache": "^3.0",
  12229. "psr/simple-cache-implementation": "^3.0",
  12230. "spatie/ray": "^1.28",
  12231. "symfony/cache": "^5.4|^6.0|^7.0",
  12232. "symfony/process": "^5.4|^6.0|^7.0",
  12233. "vlucas/phpdotenv": "^5.5"
  12234. },
  12235. "suggest": {
  12236. "openai-php/client": "Require get solutions from OpenAI",
  12237. "simple-cache-implementation": "To cache solutions from OpenAI"
  12238. },
  12239. "type": "library",
  12240. "autoload": {
  12241. "psr-4": {
  12242. "Spatie\\Ignition\\": "legacy/ignition",
  12243. "Spatie\\ErrorSolutions\\": "src",
  12244. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  12245. }
  12246. },
  12247. "notification-url": "https://packagist.org/downloads/",
  12248. "license": [
  12249. "MIT"
  12250. ],
  12251. "authors": [
  12252. {
  12253. "name": "Ruben Van Assche",
  12254. "email": "ruben@spatie.be",
  12255. "role": "Developer"
  12256. }
  12257. ],
  12258. "description": "This is my package error-solutions",
  12259. "homepage": "https://github.com/spatie/error-solutions",
  12260. "keywords": [
  12261. "error-solutions",
  12262. "spatie"
  12263. ],
  12264. "support": {
  12265. "issues": "https://github.com/spatie/error-solutions/issues",
  12266. "source": "https://github.com/spatie/error-solutions/tree/1.1.2"
  12267. },
  12268. "funding": [
  12269. {
  12270. "url": "https://github.com/Spatie",
  12271. "type": "github"
  12272. }
  12273. ],
  12274. "time": "2024-12-11T09:51:56+00:00"
  12275. },
  12276. {
  12277. "name": "spatie/flare-client-php",
  12278. "version": "1.10.0",
  12279. "source": {
  12280. "type": "git",
  12281. "url": "https://github.com/spatie/flare-client-php.git",
  12282. "reference": "140a42b2c5d59ac4ecf8f5b493386a4f2eb28272"
  12283. },
  12284. "dist": {
  12285. "type": "zip",
  12286. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/140a42b2c5d59ac4ecf8f5b493386a4f2eb28272",
  12287. "reference": "140a42b2c5d59ac4ecf8f5b493386a4f2eb28272",
  12288. "shasum": ""
  12289. },
  12290. "require": {
  12291. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  12292. "php": "^8.0",
  12293. "spatie/backtrace": "^1.6.1",
  12294. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  12295. "symfony/mime": "^5.2|^6.0|^7.0",
  12296. "symfony/process": "^5.2|^6.0|^7.0",
  12297. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  12298. },
  12299. "require-dev": {
  12300. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  12301. "pestphp/pest": "^1.20|^2.0",
  12302. "phpstan/extension-installer": "^1.1",
  12303. "phpstan/phpstan-deprecation-rules": "^1.0",
  12304. "phpstan/phpstan-phpunit": "^1.0",
  12305. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  12306. },
  12307. "type": "library",
  12308. "extra": {
  12309. "branch-alias": {
  12310. "dev-main": "1.3.x-dev"
  12311. }
  12312. },
  12313. "autoload": {
  12314. "files": [
  12315. "src/helpers.php"
  12316. ],
  12317. "psr-4": {
  12318. "Spatie\\FlareClient\\": "src"
  12319. }
  12320. },
  12321. "notification-url": "https://packagist.org/downloads/",
  12322. "license": [
  12323. "MIT"
  12324. ],
  12325. "description": "Send PHP errors to Flare",
  12326. "homepage": "https://github.com/spatie/flare-client-php",
  12327. "keywords": [
  12328. "exception",
  12329. "flare",
  12330. "reporting",
  12331. "spatie"
  12332. ],
  12333. "support": {
  12334. "issues": "https://github.com/spatie/flare-client-php/issues",
  12335. "source": "https://github.com/spatie/flare-client-php/tree/1.10.0"
  12336. },
  12337. "funding": [
  12338. {
  12339. "url": "https://github.com/spatie",
  12340. "type": "github"
  12341. }
  12342. ],
  12343. "time": "2024-12-02T14:30:06+00:00"
  12344. },
  12345. {
  12346. "name": "spatie/ignition",
  12347. "version": "1.15.0",
  12348. "source": {
  12349. "type": "git",
  12350. "url": "https://github.com/spatie/ignition.git",
  12351. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2"
  12352. },
  12353. "dist": {
  12354. "type": "zip",
  12355. "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  12356. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  12357. "shasum": ""
  12358. },
  12359. "require": {
  12360. "ext-json": "*",
  12361. "ext-mbstring": "*",
  12362. "php": "^8.0",
  12363. "spatie/error-solutions": "^1.0",
  12364. "spatie/flare-client-php": "^1.7",
  12365. "symfony/console": "^5.4|^6.0|^7.0",
  12366. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  12367. },
  12368. "require-dev": {
  12369. "illuminate/cache": "^9.52|^10.0|^11.0",
  12370. "mockery/mockery": "^1.4",
  12371. "pestphp/pest": "^1.20|^2.0",
  12372. "phpstan/extension-installer": "^1.1",
  12373. "phpstan/phpstan-deprecation-rules": "^1.0",
  12374. "phpstan/phpstan-phpunit": "^1.0",
  12375. "psr/simple-cache-implementation": "*",
  12376. "symfony/cache": "^5.4|^6.0|^7.0",
  12377. "symfony/process": "^5.4|^6.0|^7.0",
  12378. "vlucas/phpdotenv": "^5.5"
  12379. },
  12380. "suggest": {
  12381. "openai-php/client": "Require get solutions from OpenAI",
  12382. "simple-cache-implementation": "To cache solutions from OpenAI"
  12383. },
  12384. "type": "library",
  12385. "extra": {
  12386. "branch-alias": {
  12387. "dev-main": "1.5.x-dev"
  12388. }
  12389. },
  12390. "autoload": {
  12391. "psr-4": {
  12392. "Spatie\\Ignition\\": "src"
  12393. }
  12394. },
  12395. "notification-url": "https://packagist.org/downloads/",
  12396. "license": [
  12397. "MIT"
  12398. ],
  12399. "authors": [
  12400. {
  12401. "name": "Spatie",
  12402. "email": "info@spatie.be",
  12403. "role": "Developer"
  12404. }
  12405. ],
  12406. "description": "A beautiful error page for PHP applications.",
  12407. "homepage": "https://flareapp.io/ignition",
  12408. "keywords": [
  12409. "error",
  12410. "flare",
  12411. "laravel",
  12412. "page"
  12413. ],
  12414. "support": {
  12415. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12416. "forum": "https://twitter.com/flareappio",
  12417. "issues": "https://github.com/spatie/ignition/issues",
  12418. "source": "https://github.com/spatie/ignition"
  12419. },
  12420. "funding": [
  12421. {
  12422. "url": "https://github.com/spatie",
  12423. "type": "github"
  12424. }
  12425. ],
  12426. "time": "2024-06-12T14:55:22+00:00"
  12427. },
  12428. {
  12429. "name": "spatie/laravel-ignition",
  12430. "version": "2.9.0",
  12431. "source": {
  12432. "type": "git",
  12433. "url": "https://github.com/spatie/laravel-ignition.git",
  12434. "reference": "62042df15314b829d0f26e02108f559018e2aad0"
  12435. },
  12436. "dist": {
  12437. "type": "zip",
  12438. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/62042df15314b829d0f26e02108f559018e2aad0",
  12439. "reference": "62042df15314b829d0f26e02108f559018e2aad0",
  12440. "shasum": ""
  12441. },
  12442. "require": {
  12443. "ext-curl": "*",
  12444. "ext-json": "*",
  12445. "ext-mbstring": "*",
  12446. "illuminate/support": "^10.0|^11.0",
  12447. "php": "^8.1",
  12448. "spatie/ignition": "^1.15",
  12449. "symfony/console": "^6.2.3|^7.0",
  12450. "symfony/var-dumper": "^6.2.3|^7.0"
  12451. },
  12452. "require-dev": {
  12453. "livewire/livewire": "^2.11|^3.3.5",
  12454. "mockery/mockery": "^1.5.1",
  12455. "openai-php/client": "^0.8.1",
  12456. "orchestra/testbench": "8.22.3|^9.0",
  12457. "pestphp/pest": "^2.34",
  12458. "phpstan/extension-installer": "^1.3.1",
  12459. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  12460. "phpstan/phpstan-phpunit": "^1.3.16",
  12461. "vlucas/phpdotenv": "^5.5"
  12462. },
  12463. "suggest": {
  12464. "openai-php/client": "Require get solutions from OpenAI",
  12465. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  12466. },
  12467. "type": "library",
  12468. "extra": {
  12469. "laravel": {
  12470. "aliases": {
  12471. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  12472. },
  12473. "providers": [
  12474. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  12475. ]
  12476. }
  12477. },
  12478. "autoload": {
  12479. "files": [
  12480. "src/helpers.php"
  12481. ],
  12482. "psr-4": {
  12483. "Spatie\\LaravelIgnition\\": "src"
  12484. }
  12485. },
  12486. "notification-url": "https://packagist.org/downloads/",
  12487. "license": [
  12488. "MIT"
  12489. ],
  12490. "authors": [
  12491. {
  12492. "name": "Spatie",
  12493. "email": "info@spatie.be",
  12494. "role": "Developer"
  12495. }
  12496. ],
  12497. "description": "A beautiful error page for Laravel applications.",
  12498. "homepage": "https://flareapp.io/ignition",
  12499. "keywords": [
  12500. "error",
  12501. "flare",
  12502. "laravel",
  12503. "page"
  12504. ],
  12505. "support": {
  12506. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12507. "forum": "https://twitter.com/flareappio",
  12508. "issues": "https://github.com/spatie/laravel-ignition/issues",
  12509. "source": "https://github.com/spatie/laravel-ignition"
  12510. },
  12511. "funding": [
  12512. {
  12513. "url": "https://github.com/spatie",
  12514. "type": "github"
  12515. }
  12516. ],
  12517. "time": "2024-12-02T08:43:31+00:00"
  12518. },
  12519. {
  12520. "name": "spatie/laravel-ray",
  12521. "version": "1.39.0",
  12522. "source": {
  12523. "type": "git",
  12524. "url": "https://github.com/spatie/laravel-ray.git",
  12525. "reference": "31b601f98590606d20e76b5dd68578dc1642cd2c"
  12526. },
  12527. "dist": {
  12528. "type": "zip",
  12529. "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/31b601f98590606d20e76b5dd68578dc1642cd2c",
  12530. "reference": "31b601f98590606d20e76b5dd68578dc1642cd2c",
  12531. "shasum": ""
  12532. },
  12533. "require": {
  12534. "composer-runtime-api": "^2.2",
  12535. "ext-json": "*",
  12536. "illuminate/contracts": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12537. "illuminate/database": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12538. "illuminate/queue": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12539. "illuminate/support": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12540. "php": "^7.4 || ^8.0",
  12541. "spatie/backtrace": "^1.0",
  12542. "spatie/ray": "^1.41.3",
  12543. "symfony/stopwatch": "4.2 || ^5.1 || ^6.0 || ^7.0",
  12544. "zbateson/mail-mime-parser": "^1.3.1 || ^2.0 || ^3.0"
  12545. },
  12546. "require-dev": {
  12547. "guzzlehttp/guzzle": "^7.3",
  12548. "laravel/framework": "^7.20 || ^8.19 || ^9.0 || ^10.0 || ^11.0",
  12549. "orchestra/testbench-core": "^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0",
  12550. "pestphp/pest": "^1.22 || ^2.0",
  12551. "phpstan/phpstan": "^1.10.57 || ^2.0.2",
  12552. "phpunit/phpunit": "^9.3 || ^10.1",
  12553. "rector/rector": "dev-main",
  12554. "spatie/pest-plugin-snapshots": "^1.1 || ^2.0",
  12555. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12556. },
  12557. "type": "library",
  12558. "extra": {
  12559. "laravel": {
  12560. "providers": [
  12561. "Spatie\\LaravelRay\\RayServiceProvider"
  12562. ]
  12563. },
  12564. "branch-alias": {
  12565. "dev-main": "1.x-dev"
  12566. }
  12567. },
  12568. "autoload": {
  12569. "psr-4": {
  12570. "Spatie\\LaravelRay\\": "src"
  12571. }
  12572. },
  12573. "notification-url": "https://packagist.org/downloads/",
  12574. "license": [
  12575. "MIT"
  12576. ],
  12577. "authors": [
  12578. {
  12579. "name": "Freek Van der Herten",
  12580. "email": "freek@spatie.be",
  12581. "homepage": "https://spatie.be",
  12582. "role": "Developer"
  12583. }
  12584. ],
  12585. "description": "Easily debug Laravel apps",
  12586. "homepage": "https://github.com/spatie/laravel-ray",
  12587. "keywords": [
  12588. "laravel-ray",
  12589. "spatie"
  12590. ],
  12591. "support": {
  12592. "issues": "https://github.com/spatie/laravel-ray/issues",
  12593. "source": "https://github.com/spatie/laravel-ray/tree/1.39.0"
  12594. },
  12595. "funding": [
  12596. {
  12597. "url": "https://github.com/sponsors/spatie",
  12598. "type": "github"
  12599. },
  12600. {
  12601. "url": "https://spatie.be/open-source/support-us",
  12602. "type": "other"
  12603. }
  12604. ],
  12605. "time": "2024-12-11T09:34:41+00:00"
  12606. },
  12607. {
  12608. "name": "spatie/macroable",
  12609. "version": "2.0.0",
  12610. "source": {
  12611. "type": "git",
  12612. "url": "https://github.com/spatie/macroable.git",
  12613. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072"
  12614. },
  12615. "dist": {
  12616. "type": "zip",
  12617. "url": "https://api.github.com/repos/spatie/macroable/zipball/ec2c320f932e730607aff8052c44183cf3ecb072",
  12618. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072",
  12619. "shasum": ""
  12620. },
  12621. "require": {
  12622. "php": "^8.0"
  12623. },
  12624. "require-dev": {
  12625. "phpunit/phpunit": "^8.0|^9.3"
  12626. },
  12627. "type": "library",
  12628. "autoload": {
  12629. "psr-4": {
  12630. "Spatie\\Macroable\\": "src"
  12631. }
  12632. },
  12633. "notification-url": "https://packagist.org/downloads/",
  12634. "license": [
  12635. "MIT"
  12636. ],
  12637. "authors": [
  12638. {
  12639. "name": "Freek Van der Herten",
  12640. "email": "freek@spatie.be",
  12641. "homepage": "https://spatie.be",
  12642. "role": "Developer"
  12643. }
  12644. ],
  12645. "description": "A trait to dynamically add methods to a class",
  12646. "homepage": "https://github.com/spatie/macroable",
  12647. "keywords": [
  12648. "macroable",
  12649. "spatie"
  12650. ],
  12651. "support": {
  12652. "issues": "https://github.com/spatie/macroable/issues",
  12653. "source": "https://github.com/spatie/macroable/tree/2.0.0"
  12654. },
  12655. "time": "2021-03-26T22:39:02+00:00"
  12656. },
  12657. {
  12658. "name": "spatie/ray",
  12659. "version": "1.41.4",
  12660. "source": {
  12661. "type": "git",
  12662. "url": "https://github.com/spatie/ray.git",
  12663. "reference": "c5dbda0548c1881b30549ccc0b6d485f7471aaa5"
  12664. },
  12665. "dist": {
  12666. "type": "zip",
  12667. "url": "https://api.github.com/repos/spatie/ray/zipball/c5dbda0548c1881b30549ccc0b6d485f7471aaa5",
  12668. "reference": "c5dbda0548c1881b30549ccc0b6d485f7471aaa5",
  12669. "shasum": ""
  12670. },
  12671. "require": {
  12672. "ext-curl": "*",
  12673. "ext-json": "*",
  12674. "php": "^7.4 || ^8.0",
  12675. "ramsey/uuid": "^3.0 || ^4.1",
  12676. "spatie/backtrace": "^1.1",
  12677. "spatie/macroable": "^1.0 || ^2.0",
  12678. "symfony/stopwatch": "^4.2 || ^5.1 || ^6.0 || ^7.0",
  12679. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12680. },
  12681. "require-dev": {
  12682. "illuminate/support": "^7.20 || ^8.18 || ^9.0 || ^10.0 || ^11.0",
  12683. "nesbot/carbon": "^2.63",
  12684. "pestphp/pest": "^1.22",
  12685. "phpstan/phpstan": "^1.10.57 || ^2.0.2",
  12686. "phpunit/phpunit": "^9.5",
  12687. "rector/rector": "dev-main",
  12688. "spatie/phpunit-snapshot-assertions": "^4.2",
  12689. "spatie/test-time": "^1.2"
  12690. },
  12691. "bin": [
  12692. "bin/remove-ray.sh"
  12693. ],
  12694. "type": "library",
  12695. "extra": {
  12696. "branch-alias": {
  12697. "dev-main": "1.x-dev"
  12698. }
  12699. },
  12700. "autoload": {
  12701. "files": [
  12702. "src/helpers.php"
  12703. ],
  12704. "psr-4": {
  12705. "Spatie\\Ray\\": "src"
  12706. }
  12707. },
  12708. "notification-url": "https://packagist.org/downloads/",
  12709. "license": [
  12710. "MIT"
  12711. ],
  12712. "authors": [
  12713. {
  12714. "name": "Freek Van der Herten",
  12715. "email": "freek@spatie.be",
  12716. "homepage": "https://spatie.be",
  12717. "role": "Developer"
  12718. }
  12719. ],
  12720. "description": "Debug with Ray to fix problems faster",
  12721. "homepage": "https://github.com/spatie/ray",
  12722. "keywords": [
  12723. "ray",
  12724. "spatie"
  12725. ],
  12726. "support": {
  12727. "issues": "https://github.com/spatie/ray/issues",
  12728. "source": "https://github.com/spatie/ray/tree/1.41.4"
  12729. },
  12730. "funding": [
  12731. {
  12732. "url": "https://github.com/sponsors/spatie",
  12733. "type": "github"
  12734. },
  12735. {
  12736. "url": "https://spatie.be/open-source/support-us",
  12737. "type": "other"
  12738. }
  12739. ],
  12740. "time": "2024-12-09T11:32:15+00:00"
  12741. },
  12742. {
  12743. "name": "staabm/side-effects-detector",
  12744. "version": "1.0.5",
  12745. "source": {
  12746. "type": "git",
  12747. "url": "https://github.com/staabm/side-effects-detector.git",
  12748. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  12749. },
  12750. "dist": {
  12751. "type": "zip",
  12752. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  12753. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  12754. "shasum": ""
  12755. },
  12756. "require": {
  12757. "ext-tokenizer": "*",
  12758. "php": "^7.4 || ^8.0"
  12759. },
  12760. "require-dev": {
  12761. "phpstan/extension-installer": "^1.4.3",
  12762. "phpstan/phpstan": "^1.12.6",
  12763. "phpunit/phpunit": "^9.6.21",
  12764. "symfony/var-dumper": "^5.4.43",
  12765. "tomasvotruba/type-coverage": "1.0.0",
  12766. "tomasvotruba/unused-public": "1.0.0"
  12767. },
  12768. "type": "library",
  12769. "autoload": {
  12770. "classmap": [
  12771. "lib/"
  12772. ]
  12773. },
  12774. "notification-url": "https://packagist.org/downloads/",
  12775. "license": [
  12776. "MIT"
  12777. ],
  12778. "description": "A static analysis tool to detect side effects in PHP code",
  12779. "keywords": [
  12780. "static analysis"
  12781. ],
  12782. "support": {
  12783. "issues": "https://github.com/staabm/side-effects-detector/issues",
  12784. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  12785. },
  12786. "funding": [
  12787. {
  12788. "url": "https://github.com/staabm",
  12789. "type": "github"
  12790. }
  12791. ],
  12792. "time": "2024-10-20T05:08:20+00:00"
  12793. },
  12794. {
  12795. "name": "symfony/polyfill-iconv",
  12796. "version": "v1.31.0",
  12797. "source": {
  12798. "type": "git",
  12799. "url": "https://github.com/symfony/polyfill-iconv.git",
  12800. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  12801. },
  12802. "dist": {
  12803. "type": "zip",
  12804. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  12805. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  12806. "shasum": ""
  12807. },
  12808. "require": {
  12809. "php": ">=7.2"
  12810. },
  12811. "provide": {
  12812. "ext-iconv": "*"
  12813. },
  12814. "suggest": {
  12815. "ext-iconv": "For best performance"
  12816. },
  12817. "type": "library",
  12818. "extra": {
  12819. "thanks": {
  12820. "url": "https://github.com/symfony/polyfill",
  12821. "name": "symfony/polyfill"
  12822. }
  12823. },
  12824. "autoload": {
  12825. "files": [
  12826. "bootstrap.php"
  12827. ],
  12828. "psr-4": {
  12829. "Symfony\\Polyfill\\Iconv\\": ""
  12830. }
  12831. },
  12832. "notification-url": "https://packagist.org/downloads/",
  12833. "license": [
  12834. "MIT"
  12835. ],
  12836. "authors": [
  12837. {
  12838. "name": "Nicolas Grekas",
  12839. "email": "p@tchwork.com"
  12840. },
  12841. {
  12842. "name": "Symfony Community",
  12843. "homepage": "https://symfony.com/contributors"
  12844. }
  12845. ],
  12846. "description": "Symfony polyfill for the Iconv extension",
  12847. "homepage": "https://symfony.com",
  12848. "keywords": [
  12849. "compatibility",
  12850. "iconv",
  12851. "polyfill",
  12852. "portable",
  12853. "shim"
  12854. ],
  12855. "support": {
  12856. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  12857. },
  12858. "funding": [
  12859. {
  12860. "url": "https://symfony.com/sponsor",
  12861. "type": "custom"
  12862. },
  12863. {
  12864. "url": "https://github.com/fabpot",
  12865. "type": "github"
  12866. },
  12867. {
  12868. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12869. "type": "tidelift"
  12870. }
  12871. ],
  12872. "time": "2024-09-09T11:45:10+00:00"
  12873. },
  12874. {
  12875. "name": "symfony/stopwatch",
  12876. "version": "v7.2.0",
  12877. "source": {
  12878. "type": "git",
  12879. "url": "https://github.com/symfony/stopwatch.git",
  12880. "reference": "696f418b0d722a4225e1c3d95489d262971ca924"
  12881. },
  12882. "dist": {
  12883. "type": "zip",
  12884. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/696f418b0d722a4225e1c3d95489d262971ca924",
  12885. "reference": "696f418b0d722a4225e1c3d95489d262971ca924",
  12886. "shasum": ""
  12887. },
  12888. "require": {
  12889. "php": ">=8.2",
  12890. "symfony/service-contracts": "^2.5|^3"
  12891. },
  12892. "type": "library",
  12893. "autoload": {
  12894. "psr-4": {
  12895. "Symfony\\Component\\Stopwatch\\": ""
  12896. },
  12897. "exclude-from-classmap": [
  12898. "/Tests/"
  12899. ]
  12900. },
  12901. "notification-url": "https://packagist.org/downloads/",
  12902. "license": [
  12903. "MIT"
  12904. ],
  12905. "authors": [
  12906. {
  12907. "name": "Fabien Potencier",
  12908. "email": "fabien@symfony.com"
  12909. },
  12910. {
  12911. "name": "Symfony Community",
  12912. "homepage": "https://symfony.com/contributors"
  12913. }
  12914. ],
  12915. "description": "Provides a way to profile code",
  12916. "homepage": "https://symfony.com",
  12917. "support": {
  12918. "source": "https://github.com/symfony/stopwatch/tree/v7.2.0"
  12919. },
  12920. "funding": [
  12921. {
  12922. "url": "https://symfony.com/sponsor",
  12923. "type": "custom"
  12924. },
  12925. {
  12926. "url": "https://github.com/fabpot",
  12927. "type": "github"
  12928. },
  12929. {
  12930. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12931. "type": "tidelift"
  12932. }
  12933. ],
  12934. "time": "2024-09-25T14:21:43+00:00"
  12935. },
  12936. {
  12937. "name": "symfony/yaml",
  12938. "version": "v7.2.0",
  12939. "source": {
  12940. "type": "git",
  12941. "url": "https://github.com/symfony/yaml.git",
  12942. "reference": "099581e99f557e9f16b43c5916c26380b54abb22"
  12943. },
  12944. "dist": {
  12945. "type": "zip",
  12946. "url": "https://api.github.com/repos/symfony/yaml/zipball/099581e99f557e9f16b43c5916c26380b54abb22",
  12947. "reference": "099581e99f557e9f16b43c5916c26380b54abb22",
  12948. "shasum": ""
  12949. },
  12950. "require": {
  12951. "php": ">=8.2",
  12952. "symfony/deprecation-contracts": "^2.5|^3.0",
  12953. "symfony/polyfill-ctype": "^1.8"
  12954. },
  12955. "conflict": {
  12956. "symfony/console": "<6.4"
  12957. },
  12958. "require-dev": {
  12959. "symfony/console": "^6.4|^7.0"
  12960. },
  12961. "bin": [
  12962. "Resources/bin/yaml-lint"
  12963. ],
  12964. "type": "library",
  12965. "autoload": {
  12966. "psr-4": {
  12967. "Symfony\\Component\\Yaml\\": ""
  12968. },
  12969. "exclude-from-classmap": [
  12970. "/Tests/"
  12971. ]
  12972. },
  12973. "notification-url": "https://packagist.org/downloads/",
  12974. "license": [
  12975. "MIT"
  12976. ],
  12977. "authors": [
  12978. {
  12979. "name": "Fabien Potencier",
  12980. "email": "fabien@symfony.com"
  12981. },
  12982. {
  12983. "name": "Symfony Community",
  12984. "homepage": "https://symfony.com/contributors"
  12985. }
  12986. ],
  12987. "description": "Loads and dumps YAML files",
  12988. "homepage": "https://symfony.com",
  12989. "support": {
  12990. "source": "https://github.com/symfony/yaml/tree/v7.2.0"
  12991. },
  12992. "funding": [
  12993. {
  12994. "url": "https://symfony.com/sponsor",
  12995. "type": "custom"
  12996. },
  12997. {
  12998. "url": "https://github.com/fabpot",
  12999. "type": "github"
  13000. },
  13001. {
  13002. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13003. "type": "tidelift"
  13004. }
  13005. ],
  13006. "time": "2024-10-23T06:56:12+00:00"
  13007. },
  13008. {
  13009. "name": "ta-tikoma/phpunit-architecture-test",
  13010. "version": "0.8.4",
  13011. "source": {
  13012. "type": "git",
  13013. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  13014. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636"
  13015. },
  13016. "dist": {
  13017. "type": "zip",
  13018. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13019. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13020. "shasum": ""
  13021. },
  13022. "require": {
  13023. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  13024. "php": "^8.1.0",
  13025. "phpdocumentor/reflection-docblock": "^5.3.0",
  13026. "phpunit/phpunit": "^10.5.5 || ^11.0.0",
  13027. "symfony/finder": "^6.4.0 || ^7.0.0"
  13028. },
  13029. "require-dev": {
  13030. "laravel/pint": "^1.13.7",
  13031. "phpstan/phpstan": "^1.10.52"
  13032. },
  13033. "type": "library",
  13034. "autoload": {
  13035. "psr-4": {
  13036. "PHPUnit\\Architecture\\": "src/"
  13037. }
  13038. },
  13039. "notification-url": "https://packagist.org/downloads/",
  13040. "license": [
  13041. "MIT"
  13042. ],
  13043. "authors": [
  13044. {
  13045. "name": "Ni Shi",
  13046. "email": "futik0ma011@gmail.com"
  13047. },
  13048. {
  13049. "name": "Nuno Maduro",
  13050. "email": "enunomaduro@gmail.com"
  13051. }
  13052. ],
  13053. "description": "Methods for testing application architecture",
  13054. "keywords": [
  13055. "architecture",
  13056. "phpunit",
  13057. "stucture",
  13058. "test",
  13059. "testing"
  13060. ],
  13061. "support": {
  13062. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  13063. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.4"
  13064. },
  13065. "time": "2024-01-05T14:10:56+00:00"
  13066. },
  13067. {
  13068. "name": "theseer/tokenizer",
  13069. "version": "1.2.3",
  13070. "source": {
  13071. "type": "git",
  13072. "url": "https://github.com/theseer/tokenizer.git",
  13073. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13074. },
  13075. "dist": {
  13076. "type": "zip",
  13077. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13078. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13079. "shasum": ""
  13080. },
  13081. "require": {
  13082. "ext-dom": "*",
  13083. "ext-tokenizer": "*",
  13084. "ext-xmlwriter": "*",
  13085. "php": "^7.2 || ^8.0"
  13086. },
  13087. "type": "library",
  13088. "autoload": {
  13089. "classmap": [
  13090. "src/"
  13091. ]
  13092. },
  13093. "notification-url": "https://packagist.org/downloads/",
  13094. "license": [
  13095. "BSD-3-Clause"
  13096. ],
  13097. "authors": [
  13098. {
  13099. "name": "Arne Blankerts",
  13100. "email": "arne@blankerts.de",
  13101. "role": "Developer"
  13102. }
  13103. ],
  13104. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13105. "support": {
  13106. "issues": "https://github.com/theseer/tokenizer/issues",
  13107. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13108. },
  13109. "funding": [
  13110. {
  13111. "url": "https://github.com/theseer",
  13112. "type": "github"
  13113. }
  13114. ],
  13115. "time": "2024-03-03T12:36:25+00:00"
  13116. },
  13117. {
  13118. "name": "zbateson/mail-mime-parser",
  13119. "version": "2.4.1",
  13120. "source": {
  13121. "type": "git",
  13122. "url": "https://github.com/zbateson/mail-mime-parser.git",
  13123. "reference": "ff49e02f6489b38f7cc3d1bd3971adc0f872569c"
  13124. },
  13125. "dist": {
  13126. "type": "zip",
  13127. "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/ff49e02f6489b38f7cc3d1bd3971adc0f872569c",
  13128. "reference": "ff49e02f6489b38f7cc3d1bd3971adc0f872569c",
  13129. "shasum": ""
  13130. },
  13131. "require": {
  13132. "guzzlehttp/psr7": "^1.7.0|^2.0",
  13133. "php": ">=7.1",
  13134. "pimple/pimple": "^3.0",
  13135. "zbateson/mb-wrapper": "^1.0.1",
  13136. "zbateson/stream-decorators": "^1.0.6"
  13137. },
  13138. "require-dev": {
  13139. "friendsofphp/php-cs-fixer": "*",
  13140. "mikey179/vfsstream": "^1.6.0",
  13141. "phpstan/phpstan": "*",
  13142. "phpunit/phpunit": "<10"
  13143. },
  13144. "suggest": {
  13145. "ext-iconv": "For best support/performance",
  13146. "ext-mbstring": "For best support/performance"
  13147. },
  13148. "type": "library",
  13149. "autoload": {
  13150. "psr-4": {
  13151. "ZBateson\\MailMimeParser\\": "src/"
  13152. }
  13153. },
  13154. "notification-url": "https://packagist.org/downloads/",
  13155. "license": [
  13156. "BSD-2-Clause"
  13157. ],
  13158. "authors": [
  13159. {
  13160. "name": "Zaahid Bateson"
  13161. },
  13162. {
  13163. "name": "Contributors",
  13164. "homepage": "https://github.com/zbateson/mail-mime-parser/graphs/contributors"
  13165. }
  13166. ],
  13167. "description": "MIME email message parser",
  13168. "homepage": "https://mail-mime-parser.org",
  13169. "keywords": [
  13170. "MimeMailParser",
  13171. "email",
  13172. "mail",
  13173. "mailparse",
  13174. "mime",
  13175. "mimeparse",
  13176. "parser",
  13177. "php-imap"
  13178. ],
  13179. "support": {
  13180. "docs": "https://mail-mime-parser.org/#usage-guide",
  13181. "issues": "https://github.com/zbateson/mail-mime-parser/issues",
  13182. "source": "https://github.com/zbateson/mail-mime-parser"
  13183. },
  13184. "funding": [
  13185. {
  13186. "url": "https://github.com/zbateson",
  13187. "type": "github"
  13188. }
  13189. ],
  13190. "time": "2024-04-28T00:58:54+00:00"
  13191. },
  13192. {
  13193. "name": "zbateson/mb-wrapper",
  13194. "version": "1.2.1",
  13195. "source": {
  13196. "type": "git",
  13197. "url": "https://github.com/zbateson/mb-wrapper.git",
  13198. "reference": "09a8b77eb94af3823a9a6623dcc94f8d988da67f"
  13199. },
  13200. "dist": {
  13201. "type": "zip",
  13202. "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/09a8b77eb94af3823a9a6623dcc94f8d988da67f",
  13203. "reference": "09a8b77eb94af3823a9a6623dcc94f8d988da67f",
  13204. "shasum": ""
  13205. },
  13206. "require": {
  13207. "php": ">=7.1",
  13208. "symfony/polyfill-iconv": "^1.9",
  13209. "symfony/polyfill-mbstring": "^1.9"
  13210. },
  13211. "require-dev": {
  13212. "friendsofphp/php-cs-fixer": "*",
  13213. "phpstan/phpstan": "*",
  13214. "phpunit/phpunit": "<10.0"
  13215. },
  13216. "suggest": {
  13217. "ext-iconv": "For best support/performance",
  13218. "ext-mbstring": "For best support/performance"
  13219. },
  13220. "type": "library",
  13221. "autoload": {
  13222. "psr-4": {
  13223. "ZBateson\\MbWrapper\\": "src/"
  13224. }
  13225. },
  13226. "notification-url": "https://packagist.org/downloads/",
  13227. "license": [
  13228. "BSD-2-Clause"
  13229. ],
  13230. "authors": [
  13231. {
  13232. "name": "Zaahid Bateson"
  13233. }
  13234. ],
  13235. "description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
  13236. "keywords": [
  13237. "charset",
  13238. "encoding",
  13239. "http",
  13240. "iconv",
  13241. "mail",
  13242. "mb",
  13243. "mb_convert_encoding",
  13244. "mbstring",
  13245. "mime",
  13246. "multibyte",
  13247. "string"
  13248. ],
  13249. "support": {
  13250. "issues": "https://github.com/zbateson/mb-wrapper/issues",
  13251. "source": "https://github.com/zbateson/mb-wrapper/tree/1.2.1"
  13252. },
  13253. "funding": [
  13254. {
  13255. "url": "https://github.com/zbateson",
  13256. "type": "github"
  13257. }
  13258. ],
  13259. "time": "2024-03-18T04:31:04+00:00"
  13260. },
  13261. {
  13262. "name": "zbateson/stream-decorators",
  13263. "version": "1.2.1",
  13264. "source": {
  13265. "type": "git",
  13266. "url": "https://github.com/zbateson/stream-decorators.git",
  13267. "reference": "783b034024fda8eafa19675fb2552f8654d3a3e9"
  13268. },
  13269. "dist": {
  13270. "type": "zip",
  13271. "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/783b034024fda8eafa19675fb2552f8654d3a3e9",
  13272. "reference": "783b034024fda8eafa19675fb2552f8654d3a3e9",
  13273. "shasum": ""
  13274. },
  13275. "require": {
  13276. "guzzlehttp/psr7": "^1.9 | ^2.0",
  13277. "php": ">=7.2",
  13278. "zbateson/mb-wrapper": "^1.0.0"
  13279. },
  13280. "require-dev": {
  13281. "friendsofphp/php-cs-fixer": "*",
  13282. "phpstan/phpstan": "*",
  13283. "phpunit/phpunit": "<10.0"
  13284. },
  13285. "type": "library",
  13286. "autoload": {
  13287. "psr-4": {
  13288. "ZBateson\\StreamDecorators\\": "src/"
  13289. }
  13290. },
  13291. "notification-url": "https://packagist.org/downloads/",
  13292. "license": [
  13293. "BSD-2-Clause"
  13294. ],
  13295. "authors": [
  13296. {
  13297. "name": "Zaahid Bateson"
  13298. }
  13299. ],
  13300. "description": "PHP psr7 stream decorators for mime message part streams",
  13301. "keywords": [
  13302. "base64",
  13303. "charset",
  13304. "decorators",
  13305. "mail",
  13306. "mime",
  13307. "psr7",
  13308. "quoted-printable",
  13309. "stream",
  13310. "uuencode"
  13311. ],
  13312. "support": {
  13313. "issues": "https://github.com/zbateson/stream-decorators/issues",
  13314. "source": "https://github.com/zbateson/stream-decorators/tree/1.2.1"
  13315. },
  13316. "funding": [
  13317. {
  13318. "url": "https://github.com/zbateson",
  13319. "type": "github"
  13320. }
  13321. ],
  13322. "time": "2023-05-30T22:51:52+00:00"
  13323. }
  13324. ],
  13325. "aliases": [],
  13326. "minimum-stability": "stable",
  13327. "stability-flags": [],
  13328. "prefer-stable": true,
  13329. "prefer-lowest": false,
  13330. "platform": {
  13331. "php": "^8.2",
  13332. "ext-bcmath": "*",
  13333. "ext-intl": "*"
  13334. },
  13335. "platform-dev": [],
  13336. "plugin-api-version": "2.6.0"
  13337. }