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

composer.lock 483KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698126991270012701127021270312704127051270612707127081270912710127111271212713127141271512716127171271812719127201272112722127231272412725127261272712728127291273012731127321273312734127351273612737127381273912740127411274212743127441274512746127471274812749127501275112752127531275412755127561275712758127591276012761127621276312764127651276612767127681276912770127711277212773127741277512776127771277812779127801278112782127831278412785127861278712788127891279012791127921279312794127951279612797127981279912800128011280212803128041280512806128071280812809128101281112812128131281412815128161281712818128191282012821128221282312824128251282612827128281282912830128311283212833128341283512836128371283812839128401284112842128431284412845128461284712848128491285012851128521285312854128551285612857128581285912860128611286212863128641286512866128671286812869128701287112872128731287412875128761287712878128791288012881128821288312884128851288612887128881288912890128911289212893128941289512896128971289812899129001290112902129031290412905129061290712908129091291012911129121291312914129151291612917129181291912920129211292212923129241292512926129271292812929129301293112932129331293412935129361293712938129391294012941129421294312944129451294612947129481294912950129511295212953129541295512956129571295812959129601296112962129631296412965129661296712968129691297012971129721297312974129751297612977129781297912980129811298212983129841298512986129871298812989129901299112992129931299412995129961299712998129991300013001130021300313004130051300613007130081300913010130111301213013130141301513016130171301813019130201302113022130231302413025130261302713028130291303013031130321303313034130351303613037130381303913040130411304213043130441304513046130471304813049130501305113052130531305413055130561305713058130591306013061130621306313064130651306613067130681306913070130711307213073130741307513076130771307813079130801308113082130831308413085130861308713088130891309013091130921309313094130951309613097130981309913100131011310213103131041310513106131071310813109131101311113112131131311413115131161311713118131191312013121131221312313124131251312613127131281312913130131311313213133131341313513136131371313813139131401314113142131431314413145131461314713148131491315013151131521315313154131551315613157131581315913160131611316213163131641316513166131671316813169131701317113172131731317413175131761317713178131791318013181131821318313184131851318613187131881318913190131911319213193131941319513196131971319813199132001320113202132031320413205132061320713208132091321013211132121321313214132151321613217132181321913220132211322213223132241322513226132271322813229132301323113232132331323413235132361323713238132391324013241132421324313244132451324613247132481324913250132511325213253132541325513256132571325813259132601326113262132631326413265132661326713268132691327013271132721327313274132751327613277132781327913280132811328213283132841328513286132871328813289132901329113292132931329413295132961329713298132991330013301133021330313304133051330613307133081330913310133111331213313133141331513316133171331813319133201332113322133231332413325133261332713328133291333013331133321333313334133351333613337133381333913340133411334213343133441334513346133471334813349133501335113352133531335413355133561335713358133591336013361133621336313364133651336613367133681336913370133711337213373133741337513376133771337813379133801338113382133831338413385133861338713388133891339013391133921339313394133951339613397133981339913400
  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": "6f7204f976352f049caf598df4454ace",
  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. "providers": [
  260. "Wallo\\Transmatic\\TransmaticServiceProvider"
  261. ],
  262. "aliases": {
  263. "Transmatic": "Wallo\\Transmatic\\Facades\\Transmatic"
  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.334.1",
  501. "source": {
  502. "type": "git",
  503. "url": "https://github.com/aws/aws-sdk-php.git",
  504. "reference": "3938b3467f64a30fed7ee1762a6785f808a5ae4d"
  505. },
  506. "dist": {
  507. "type": "zip",
  508. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/3938b3467f64a30fed7ee1762a6785f808a5ae4d",
  509. "reference": "3938b3467f64a30fed7ee1762a6785f808a5ae4d",
  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.334.1"
  593. },
  594. "time": "2024-12-05T01:17:41+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. "providers": [
  628. "Aws\\Laravel\\AwsServiceProvider"
  629. ],
  630. "aliases": {
  631. "AWS": "Aws\\Laravel\\AwsFacade"
  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. "branch-alias": {
  699. "dev-master": "1.0-dev"
  700. },
  701. "laravel": {
  702. "providers": [
  703. "Barryvdh\\Snappy\\ServiceProvider"
  704. ],
  705. "aliases": {
  706. "PDF": "Barryvdh\\Snappy\\Facades\\SnappyPdf",
  707. "SnappyImage": "Barryvdh\\Snappy\\Facades\\SnappyImage"
  708. }
  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.3",
  1321. "source": {
  1322. "type": "git",
  1323. "url": "https://github.com/doctrine/deprecations.git",
  1324. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab"
  1325. },
  1326. "dist": {
  1327. "type": "zip",
  1328. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1329. "reference": "dfbaa3c2d2e9a9df1118213f3b8b0c597bb99fab",
  1330. "shasum": ""
  1331. },
  1332. "require": {
  1333. "php": "^7.1 || ^8.0"
  1334. },
  1335. "require-dev": {
  1336. "doctrine/coding-standard": "^9",
  1337. "phpstan/phpstan": "1.4.10 || 1.10.15",
  1338. "phpstan/phpstan-phpunit": "^1.0",
  1339. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  1340. "psalm/plugin-phpunit": "0.18.4",
  1341. "psr/log": "^1 || ^2 || ^3",
  1342. "vimeo/psalm": "4.30.0 || 5.12.0"
  1343. },
  1344. "suggest": {
  1345. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1346. },
  1347. "type": "library",
  1348. "autoload": {
  1349. "psr-4": {
  1350. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1351. }
  1352. },
  1353. "notification-url": "https://packagist.org/downloads/",
  1354. "license": [
  1355. "MIT"
  1356. ],
  1357. "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.",
  1358. "homepage": "https://www.doctrine-project.org/",
  1359. "support": {
  1360. "issues": "https://github.com/doctrine/deprecations/issues",
  1361. "source": "https://github.com/doctrine/deprecations/tree/1.1.3"
  1362. },
  1363. "time": "2024-01-30T19:34:25+00:00"
  1364. },
  1365. {
  1366. "name": "doctrine/inflector",
  1367. "version": "2.0.10",
  1368. "source": {
  1369. "type": "git",
  1370. "url": "https://github.com/doctrine/inflector.git",
  1371. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1372. },
  1373. "dist": {
  1374. "type": "zip",
  1375. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1376. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1377. "shasum": ""
  1378. },
  1379. "require": {
  1380. "php": "^7.2 || ^8.0"
  1381. },
  1382. "require-dev": {
  1383. "doctrine/coding-standard": "^11.0",
  1384. "phpstan/phpstan": "^1.8",
  1385. "phpstan/phpstan-phpunit": "^1.1",
  1386. "phpstan/phpstan-strict-rules": "^1.3",
  1387. "phpunit/phpunit": "^8.5 || ^9.5",
  1388. "vimeo/psalm": "^4.25 || ^5.4"
  1389. },
  1390. "type": "library",
  1391. "autoload": {
  1392. "psr-4": {
  1393. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1394. }
  1395. },
  1396. "notification-url": "https://packagist.org/downloads/",
  1397. "license": [
  1398. "MIT"
  1399. ],
  1400. "authors": [
  1401. {
  1402. "name": "Guilherme Blanco",
  1403. "email": "guilhermeblanco@gmail.com"
  1404. },
  1405. {
  1406. "name": "Roman Borschel",
  1407. "email": "roman@code-factory.org"
  1408. },
  1409. {
  1410. "name": "Benjamin Eberlei",
  1411. "email": "kontakt@beberlei.de"
  1412. },
  1413. {
  1414. "name": "Jonathan Wage",
  1415. "email": "jonwage@gmail.com"
  1416. },
  1417. {
  1418. "name": "Johannes Schmitt",
  1419. "email": "schmittjoh@gmail.com"
  1420. }
  1421. ],
  1422. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1423. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1424. "keywords": [
  1425. "inflection",
  1426. "inflector",
  1427. "lowercase",
  1428. "manipulation",
  1429. "php",
  1430. "plural",
  1431. "singular",
  1432. "strings",
  1433. "uppercase",
  1434. "words"
  1435. ],
  1436. "support": {
  1437. "issues": "https://github.com/doctrine/inflector/issues",
  1438. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1439. },
  1440. "funding": [
  1441. {
  1442. "url": "https://www.doctrine-project.org/sponsorship.html",
  1443. "type": "custom"
  1444. },
  1445. {
  1446. "url": "https://www.patreon.com/phpdoctrine",
  1447. "type": "patreon"
  1448. },
  1449. {
  1450. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1451. "type": "tidelift"
  1452. }
  1453. ],
  1454. "time": "2024-02-18T20:23:39+00:00"
  1455. },
  1456. {
  1457. "name": "doctrine/lexer",
  1458. "version": "3.0.1",
  1459. "source": {
  1460. "type": "git",
  1461. "url": "https://github.com/doctrine/lexer.git",
  1462. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1463. },
  1464. "dist": {
  1465. "type": "zip",
  1466. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1467. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1468. "shasum": ""
  1469. },
  1470. "require": {
  1471. "php": "^8.1"
  1472. },
  1473. "require-dev": {
  1474. "doctrine/coding-standard": "^12",
  1475. "phpstan/phpstan": "^1.10",
  1476. "phpunit/phpunit": "^10.5",
  1477. "psalm/plugin-phpunit": "^0.18.3",
  1478. "vimeo/psalm": "^5.21"
  1479. },
  1480. "type": "library",
  1481. "autoload": {
  1482. "psr-4": {
  1483. "Doctrine\\Common\\Lexer\\": "src"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "Guilherme Blanco",
  1493. "email": "guilhermeblanco@gmail.com"
  1494. },
  1495. {
  1496. "name": "Roman Borschel",
  1497. "email": "roman@code-factory.org"
  1498. },
  1499. {
  1500. "name": "Johannes Schmitt",
  1501. "email": "schmittjoh@gmail.com"
  1502. }
  1503. ],
  1504. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1505. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1506. "keywords": [
  1507. "annotations",
  1508. "docblock",
  1509. "lexer",
  1510. "parser",
  1511. "php"
  1512. ],
  1513. "support": {
  1514. "issues": "https://github.com/doctrine/lexer/issues",
  1515. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1516. },
  1517. "funding": [
  1518. {
  1519. "url": "https://www.doctrine-project.org/sponsorship.html",
  1520. "type": "custom"
  1521. },
  1522. {
  1523. "url": "https://www.patreon.com/phpdoctrine",
  1524. "type": "patreon"
  1525. },
  1526. {
  1527. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1528. "type": "tidelift"
  1529. }
  1530. ],
  1531. "time": "2024-02-05T11:56:58+00:00"
  1532. },
  1533. {
  1534. "name": "dragonmantank/cron-expression",
  1535. "version": "v3.4.0",
  1536. "source": {
  1537. "type": "git",
  1538. "url": "https://github.com/dragonmantank/cron-expression.git",
  1539. "reference": "8c784d071debd117328803d86b2097615b457500"
  1540. },
  1541. "dist": {
  1542. "type": "zip",
  1543. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  1544. "reference": "8c784d071debd117328803d86b2097615b457500",
  1545. "shasum": ""
  1546. },
  1547. "require": {
  1548. "php": "^7.2|^8.0",
  1549. "webmozart/assert": "^1.0"
  1550. },
  1551. "replace": {
  1552. "mtdowling/cron-expression": "^1.0"
  1553. },
  1554. "require-dev": {
  1555. "phpstan/extension-installer": "^1.0",
  1556. "phpstan/phpstan": "^1.0",
  1557. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1558. },
  1559. "type": "library",
  1560. "extra": {
  1561. "branch-alias": {
  1562. "dev-master": "3.x-dev"
  1563. }
  1564. },
  1565. "autoload": {
  1566. "psr-4": {
  1567. "Cron\\": "src/Cron/"
  1568. }
  1569. },
  1570. "notification-url": "https://packagist.org/downloads/",
  1571. "license": [
  1572. "MIT"
  1573. ],
  1574. "authors": [
  1575. {
  1576. "name": "Chris Tankersley",
  1577. "email": "chris@ctankersley.com",
  1578. "homepage": "https://github.com/dragonmantank"
  1579. }
  1580. ],
  1581. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1582. "keywords": [
  1583. "cron",
  1584. "schedule"
  1585. ],
  1586. "support": {
  1587. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1588. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1589. },
  1590. "funding": [
  1591. {
  1592. "url": "https://github.com/dragonmantank",
  1593. "type": "github"
  1594. }
  1595. ],
  1596. "time": "2024-10-09T13:47:03+00:00"
  1597. },
  1598. {
  1599. "name": "egulias/email-validator",
  1600. "version": "4.0.2",
  1601. "source": {
  1602. "type": "git",
  1603. "url": "https://github.com/egulias/EmailValidator.git",
  1604. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e"
  1605. },
  1606. "dist": {
  1607. "type": "zip",
  1608. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/ebaaf5be6c0286928352e054f2d5125608e5405e",
  1609. "reference": "ebaaf5be6c0286928352e054f2d5125608e5405e",
  1610. "shasum": ""
  1611. },
  1612. "require": {
  1613. "doctrine/lexer": "^2.0 || ^3.0",
  1614. "php": ">=8.1",
  1615. "symfony/polyfill-intl-idn": "^1.26"
  1616. },
  1617. "require-dev": {
  1618. "phpunit/phpunit": "^10.2",
  1619. "vimeo/psalm": "^5.12"
  1620. },
  1621. "suggest": {
  1622. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1623. },
  1624. "type": "library",
  1625. "extra": {
  1626. "branch-alias": {
  1627. "dev-master": "4.0.x-dev"
  1628. }
  1629. },
  1630. "autoload": {
  1631. "psr-4": {
  1632. "Egulias\\EmailValidator\\": "src"
  1633. }
  1634. },
  1635. "notification-url": "https://packagist.org/downloads/",
  1636. "license": [
  1637. "MIT"
  1638. ],
  1639. "authors": [
  1640. {
  1641. "name": "Eduardo Gulias Davis"
  1642. }
  1643. ],
  1644. "description": "A library for validating emails against several RFCs",
  1645. "homepage": "https://github.com/egulias/EmailValidator",
  1646. "keywords": [
  1647. "email",
  1648. "emailvalidation",
  1649. "emailvalidator",
  1650. "validation",
  1651. "validator"
  1652. ],
  1653. "support": {
  1654. "issues": "https://github.com/egulias/EmailValidator/issues",
  1655. "source": "https://github.com/egulias/EmailValidator/tree/4.0.2"
  1656. },
  1657. "funding": [
  1658. {
  1659. "url": "https://github.com/egulias",
  1660. "type": "github"
  1661. }
  1662. ],
  1663. "time": "2023-10-06T06:47:41+00:00"
  1664. },
  1665. {
  1666. "name": "filament/actions",
  1667. "version": "v3.2.128",
  1668. "source": {
  1669. "type": "git",
  1670. "url": "https://github.com/filamentphp/actions.git",
  1671. "reference": "1ee8b0a890b53e8b0b341134d3ba9bdaeee294d3"
  1672. },
  1673. "dist": {
  1674. "type": "zip",
  1675. "url": "https://api.github.com/repos/filamentphp/actions/zipball/1ee8b0a890b53e8b0b341134d3ba9bdaeee294d3",
  1676. "reference": "1ee8b0a890b53e8b0b341134d3ba9bdaeee294d3",
  1677. "shasum": ""
  1678. },
  1679. "require": {
  1680. "anourvalar/eloquent-serialize": "^1.2",
  1681. "filament/forms": "self.version",
  1682. "filament/infolists": "self.version",
  1683. "filament/notifications": "self.version",
  1684. "filament/support": "self.version",
  1685. "illuminate/contracts": "^10.45|^11.0",
  1686. "illuminate/database": "^10.45|^11.0",
  1687. "illuminate/support": "^10.45|^11.0",
  1688. "league/csv": "^9.14",
  1689. "openspout/openspout": "^4.23",
  1690. "php": "^8.1",
  1691. "spatie/laravel-package-tools": "^1.9"
  1692. },
  1693. "type": "library",
  1694. "extra": {
  1695. "laravel": {
  1696. "providers": [
  1697. "Filament\\Actions\\ActionsServiceProvider"
  1698. ]
  1699. }
  1700. },
  1701. "autoload": {
  1702. "psr-4": {
  1703. "Filament\\Actions\\": "src"
  1704. }
  1705. },
  1706. "notification-url": "https://packagist.org/downloads/",
  1707. "license": [
  1708. "MIT"
  1709. ],
  1710. "description": "Easily add beautiful action modals to any Livewire component.",
  1711. "homepage": "https://github.com/filamentphp/filament",
  1712. "support": {
  1713. "issues": "https://github.com/filamentphp/filament/issues",
  1714. "source": "https://github.com/filamentphp/filament"
  1715. },
  1716. "time": "2024-12-05T08:56:37+00:00"
  1717. },
  1718. {
  1719. "name": "filament/filament",
  1720. "version": "v3.2.128",
  1721. "source": {
  1722. "type": "git",
  1723. "url": "https://github.com/filamentphp/panels.git",
  1724. "reference": "27b834f6f1213c547580443e28e5028dfe125bdd"
  1725. },
  1726. "dist": {
  1727. "type": "zip",
  1728. "url": "https://api.github.com/repos/filamentphp/panels/zipball/27b834f6f1213c547580443e28e5028dfe125bdd",
  1729. "reference": "27b834f6f1213c547580443e28e5028dfe125bdd",
  1730. "shasum": ""
  1731. },
  1732. "require": {
  1733. "danharrin/livewire-rate-limiting": "^0.3|^1.0",
  1734. "filament/actions": "self.version",
  1735. "filament/forms": "self.version",
  1736. "filament/infolists": "self.version",
  1737. "filament/notifications": "self.version",
  1738. "filament/support": "self.version",
  1739. "filament/tables": "self.version",
  1740. "filament/widgets": "self.version",
  1741. "illuminate/auth": "^10.45|^11.0",
  1742. "illuminate/console": "^10.45|^11.0",
  1743. "illuminate/contracts": "^10.45|^11.0",
  1744. "illuminate/cookie": "^10.45|^11.0",
  1745. "illuminate/database": "^10.45|^11.0",
  1746. "illuminate/http": "^10.45|^11.0",
  1747. "illuminate/routing": "^10.45|^11.0",
  1748. "illuminate/session": "^10.45|^11.0",
  1749. "illuminate/support": "^10.45|^11.0",
  1750. "illuminate/view": "^10.45|^11.0",
  1751. "php": "^8.1",
  1752. "spatie/laravel-package-tools": "^1.9"
  1753. },
  1754. "type": "library",
  1755. "extra": {
  1756. "laravel": {
  1757. "providers": [
  1758. "Filament\\FilamentServiceProvider"
  1759. ]
  1760. }
  1761. },
  1762. "autoload": {
  1763. "files": [
  1764. "src/global_helpers.php",
  1765. "src/helpers.php"
  1766. ],
  1767. "psr-4": {
  1768. "Filament\\": "src"
  1769. }
  1770. },
  1771. "notification-url": "https://packagist.org/downloads/",
  1772. "license": [
  1773. "MIT"
  1774. ],
  1775. "description": "A collection of full-stack components for accelerated Laravel app development.",
  1776. "homepage": "https://github.com/filamentphp/filament",
  1777. "support": {
  1778. "issues": "https://github.com/filamentphp/filament/issues",
  1779. "source": "https://github.com/filamentphp/filament"
  1780. },
  1781. "time": "2024-12-05T08:56:42+00:00"
  1782. },
  1783. {
  1784. "name": "filament/forms",
  1785. "version": "v3.2.128",
  1786. "source": {
  1787. "type": "git",
  1788. "url": "https://github.com/filamentphp/forms.git",
  1789. "reference": "c86af3606b8fd3f908b29a03e3056628e4cea57e"
  1790. },
  1791. "dist": {
  1792. "type": "zip",
  1793. "url": "https://api.github.com/repos/filamentphp/forms/zipball/c86af3606b8fd3f908b29a03e3056628e4cea57e",
  1794. "reference": "c86af3606b8fd3f908b29a03e3056628e4cea57e",
  1795. "shasum": ""
  1796. },
  1797. "require": {
  1798. "danharrin/date-format-converter": "^0.3",
  1799. "filament/actions": "self.version",
  1800. "filament/support": "self.version",
  1801. "illuminate/console": "^10.45|^11.0",
  1802. "illuminate/contracts": "^10.45|^11.0",
  1803. "illuminate/database": "^10.45|^11.0",
  1804. "illuminate/filesystem": "^10.45|^11.0",
  1805. "illuminate/support": "^10.45|^11.0",
  1806. "illuminate/validation": "^10.45|^11.0",
  1807. "illuminate/view": "^10.45|^11.0",
  1808. "php": "^8.1",
  1809. "spatie/laravel-package-tools": "^1.9"
  1810. },
  1811. "type": "library",
  1812. "extra": {
  1813. "laravel": {
  1814. "providers": [
  1815. "Filament\\Forms\\FormsServiceProvider"
  1816. ]
  1817. }
  1818. },
  1819. "autoload": {
  1820. "files": [
  1821. "src/helpers.php"
  1822. ],
  1823. "psr-4": {
  1824. "Filament\\Forms\\": "src"
  1825. }
  1826. },
  1827. "notification-url": "https://packagist.org/downloads/",
  1828. "license": [
  1829. "MIT"
  1830. ],
  1831. "description": "Easily add beautiful forms to any Livewire component.",
  1832. "homepage": "https://github.com/filamentphp/filament",
  1833. "support": {
  1834. "issues": "https://github.com/filamentphp/filament/issues",
  1835. "source": "https://github.com/filamentphp/filament"
  1836. },
  1837. "time": "2024-12-05T08:56:35+00:00"
  1838. },
  1839. {
  1840. "name": "filament/infolists",
  1841. "version": "v3.2.128",
  1842. "source": {
  1843. "type": "git",
  1844. "url": "https://github.com/filamentphp/infolists.git",
  1845. "reference": "e655ac3900ab2109022aa0243cfb4126729ef431"
  1846. },
  1847. "dist": {
  1848. "type": "zip",
  1849. "url": "https://api.github.com/repos/filamentphp/infolists/zipball/e655ac3900ab2109022aa0243cfb4126729ef431",
  1850. "reference": "e655ac3900ab2109022aa0243cfb4126729ef431",
  1851. "shasum": ""
  1852. },
  1853. "require": {
  1854. "filament/actions": "self.version",
  1855. "filament/support": "self.version",
  1856. "illuminate/console": "^10.45|^11.0",
  1857. "illuminate/contracts": "^10.45|^11.0",
  1858. "illuminate/database": "^10.45|^11.0",
  1859. "illuminate/filesystem": "^10.45|^11.0",
  1860. "illuminate/support": "^10.45|^11.0",
  1861. "illuminate/view": "^10.45|^11.0",
  1862. "php": "^8.1",
  1863. "spatie/laravel-package-tools": "^1.9"
  1864. },
  1865. "type": "library",
  1866. "extra": {
  1867. "laravel": {
  1868. "providers": [
  1869. "Filament\\Infolists\\InfolistsServiceProvider"
  1870. ]
  1871. }
  1872. },
  1873. "autoload": {
  1874. "psr-4": {
  1875. "Filament\\Infolists\\": "src"
  1876. }
  1877. },
  1878. "notification-url": "https://packagist.org/downloads/",
  1879. "license": [
  1880. "MIT"
  1881. ],
  1882. "description": "Easily add beautiful read-only infolists to any Livewire component.",
  1883. "homepage": "https://github.com/filamentphp/filament",
  1884. "support": {
  1885. "issues": "https://github.com/filamentphp/filament/issues",
  1886. "source": "https://github.com/filamentphp/filament"
  1887. },
  1888. "time": "2024-11-29T09:30:56+00:00"
  1889. },
  1890. {
  1891. "name": "filament/notifications",
  1892. "version": "v3.2.128",
  1893. "source": {
  1894. "type": "git",
  1895. "url": "https://github.com/filamentphp/notifications.git",
  1896. "reference": "c19df07c801c5550de0d30957c5a316f53019533"
  1897. },
  1898. "dist": {
  1899. "type": "zip",
  1900. "url": "https://api.github.com/repos/filamentphp/notifications/zipball/c19df07c801c5550de0d30957c5a316f53019533",
  1901. "reference": "c19df07c801c5550de0d30957c5a316f53019533",
  1902. "shasum": ""
  1903. },
  1904. "require": {
  1905. "filament/actions": "self.version",
  1906. "filament/support": "self.version",
  1907. "illuminate/contracts": "^10.45|^11.0",
  1908. "illuminate/filesystem": "^10.45|^11.0",
  1909. "illuminate/notifications": "^10.45|^11.0",
  1910. "illuminate/support": "^10.45|^11.0",
  1911. "php": "^8.1",
  1912. "spatie/laravel-package-tools": "^1.9"
  1913. },
  1914. "type": "library",
  1915. "extra": {
  1916. "laravel": {
  1917. "providers": [
  1918. "Filament\\Notifications\\NotificationsServiceProvider"
  1919. ]
  1920. }
  1921. },
  1922. "autoload": {
  1923. "files": [
  1924. "src/Testing/Autoload.php"
  1925. ],
  1926. "psr-4": {
  1927. "Filament\\Notifications\\": "src"
  1928. }
  1929. },
  1930. "notification-url": "https://packagist.org/downloads/",
  1931. "license": [
  1932. "MIT"
  1933. ],
  1934. "description": "Easily add beautiful notifications to any Livewire app.",
  1935. "homepage": "https://github.com/filamentphp/filament",
  1936. "support": {
  1937. "issues": "https://github.com/filamentphp/filament/issues",
  1938. "source": "https://github.com/filamentphp/filament"
  1939. },
  1940. "time": "2024-10-23T07:36:14+00:00"
  1941. },
  1942. {
  1943. "name": "filament/support",
  1944. "version": "v3.2.128",
  1945. "source": {
  1946. "type": "git",
  1947. "url": "https://github.com/filamentphp/support.git",
  1948. "reference": "437d4f3305458f29c32ef4de5ef1d9dbdc74c3fe"
  1949. },
  1950. "dist": {
  1951. "type": "zip",
  1952. "url": "https://api.github.com/repos/filamentphp/support/zipball/437d4f3305458f29c32ef4de5ef1d9dbdc74c3fe",
  1953. "reference": "437d4f3305458f29c32ef4de5ef1d9dbdc74c3fe",
  1954. "shasum": ""
  1955. },
  1956. "require": {
  1957. "blade-ui-kit/blade-heroicons": "^2.5",
  1958. "doctrine/dbal": "^3.2|^4.0",
  1959. "ext-intl": "*",
  1960. "illuminate/contracts": "^10.45|^11.0",
  1961. "illuminate/support": "^10.45|^11.0",
  1962. "illuminate/view": "^10.45|^11.0",
  1963. "kirschbaum-development/eloquent-power-joins": "^3.0|^4.0",
  1964. "livewire/livewire": "3.5.12",
  1965. "php": "^8.1",
  1966. "ryangjchandler/blade-capture-directive": "^0.2|^0.3|^1.0",
  1967. "spatie/color": "^1.5",
  1968. "spatie/invade": "^1.0|^2.0",
  1969. "spatie/laravel-package-tools": "^1.9",
  1970. "symfony/console": "^6.0|^7.0",
  1971. "symfony/html-sanitizer": "^6.1|^7.0"
  1972. },
  1973. "type": "library",
  1974. "extra": {
  1975. "laravel": {
  1976. "providers": [
  1977. "Filament\\Support\\SupportServiceProvider"
  1978. ]
  1979. }
  1980. },
  1981. "autoload": {
  1982. "files": [
  1983. "src/helpers.php"
  1984. ],
  1985. "psr-4": {
  1986. "Filament\\Support\\": "src"
  1987. }
  1988. },
  1989. "notification-url": "https://packagist.org/downloads/",
  1990. "license": [
  1991. "MIT"
  1992. ],
  1993. "description": "Core helper methods and foundation code for all Filament packages.",
  1994. "homepage": "https://github.com/filamentphp/filament",
  1995. "support": {
  1996. "issues": "https://github.com/filamentphp/filament/issues",
  1997. "source": "https://github.com/filamentphp/filament"
  1998. },
  1999. "time": "2024-12-05T08:56:49+00:00"
  2000. },
  2001. {
  2002. "name": "filament/tables",
  2003. "version": "v3.2.128",
  2004. "source": {
  2005. "type": "git",
  2006. "url": "https://github.com/filamentphp/tables.git",
  2007. "reference": "4a60fda65574f248e082f109345216a38567093a"
  2008. },
  2009. "dist": {
  2010. "type": "zip",
  2011. "url": "https://api.github.com/repos/filamentphp/tables/zipball/4a60fda65574f248e082f109345216a38567093a",
  2012. "reference": "4a60fda65574f248e082f109345216a38567093a",
  2013. "shasum": ""
  2014. },
  2015. "require": {
  2016. "filament/actions": "self.version",
  2017. "filament/forms": "self.version",
  2018. "filament/support": "self.version",
  2019. "illuminate/console": "^10.45|^11.0",
  2020. "illuminate/contracts": "^10.45|^11.0",
  2021. "illuminate/database": "^10.45|^11.0",
  2022. "illuminate/filesystem": "^10.45|^11.0",
  2023. "illuminate/support": "^10.45|^11.0",
  2024. "illuminate/view": "^10.45|^11.0",
  2025. "php": "^8.1",
  2026. "spatie/laravel-package-tools": "^1.9"
  2027. },
  2028. "type": "library",
  2029. "extra": {
  2030. "laravel": {
  2031. "providers": [
  2032. "Filament\\Tables\\TablesServiceProvider"
  2033. ]
  2034. }
  2035. },
  2036. "autoload": {
  2037. "psr-4": {
  2038. "Filament\\Tables\\": "src"
  2039. }
  2040. },
  2041. "notification-url": "https://packagist.org/downloads/",
  2042. "license": [
  2043. "MIT"
  2044. ],
  2045. "description": "Easily add beautiful tables to any Livewire component.",
  2046. "homepage": "https://github.com/filamentphp/filament",
  2047. "support": {
  2048. "issues": "https://github.com/filamentphp/filament/issues",
  2049. "source": "https://github.com/filamentphp/filament"
  2050. },
  2051. "time": "2024-12-05T08:56:53+00:00"
  2052. },
  2053. {
  2054. "name": "filament/widgets",
  2055. "version": "v3.2.128",
  2056. "source": {
  2057. "type": "git",
  2058. "url": "https://github.com/filamentphp/widgets.git",
  2059. "reference": "6de1c84d71168fd1c6a5b1ae1e1b4ec5ee4b6f55"
  2060. },
  2061. "dist": {
  2062. "type": "zip",
  2063. "url": "https://api.github.com/repos/filamentphp/widgets/zipball/6de1c84d71168fd1c6a5b1ae1e1b4ec5ee4b6f55",
  2064. "reference": "6de1c84d71168fd1c6a5b1ae1e1b4ec5ee4b6f55",
  2065. "shasum": ""
  2066. },
  2067. "require": {
  2068. "filament/support": "self.version",
  2069. "php": "^8.1",
  2070. "spatie/laravel-package-tools": "^1.9"
  2071. },
  2072. "type": "library",
  2073. "extra": {
  2074. "laravel": {
  2075. "providers": [
  2076. "Filament\\Widgets\\WidgetsServiceProvider"
  2077. ]
  2078. }
  2079. },
  2080. "autoload": {
  2081. "psr-4": {
  2082. "Filament\\Widgets\\": "src"
  2083. }
  2084. },
  2085. "notification-url": "https://packagist.org/downloads/",
  2086. "license": [
  2087. "MIT"
  2088. ],
  2089. "description": "Easily add beautiful dashboard widgets to any Livewire component.",
  2090. "homepage": "https://github.com/filamentphp/filament",
  2091. "support": {
  2092. "issues": "https://github.com/filamentphp/filament/issues",
  2093. "source": "https://github.com/filamentphp/filament"
  2094. },
  2095. "time": "2024-11-27T16:52:29+00:00"
  2096. },
  2097. {
  2098. "name": "firebase/php-jwt",
  2099. "version": "v6.10.2",
  2100. "source": {
  2101. "type": "git",
  2102. "url": "https://github.com/firebase/php-jwt.git",
  2103. "reference": "30c19ed0f3264cb660ea496895cfb6ef7ee3653b"
  2104. },
  2105. "dist": {
  2106. "type": "zip",
  2107. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/30c19ed0f3264cb660ea496895cfb6ef7ee3653b",
  2108. "reference": "30c19ed0f3264cb660ea496895cfb6ef7ee3653b",
  2109. "shasum": ""
  2110. },
  2111. "require": {
  2112. "php": "^8.0"
  2113. },
  2114. "require-dev": {
  2115. "guzzlehttp/guzzle": "^7.4",
  2116. "phpspec/prophecy-phpunit": "^2.0",
  2117. "phpunit/phpunit": "^9.5",
  2118. "psr/cache": "^2.0||^3.0",
  2119. "psr/http-client": "^1.0",
  2120. "psr/http-factory": "^1.0"
  2121. },
  2122. "suggest": {
  2123. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  2124. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  2125. },
  2126. "type": "library",
  2127. "autoload": {
  2128. "psr-4": {
  2129. "Firebase\\JWT\\": "src"
  2130. }
  2131. },
  2132. "notification-url": "https://packagist.org/downloads/",
  2133. "license": [
  2134. "BSD-3-Clause"
  2135. ],
  2136. "authors": [
  2137. {
  2138. "name": "Neuman Vong",
  2139. "email": "neuman+pear@twilio.com",
  2140. "role": "Developer"
  2141. },
  2142. {
  2143. "name": "Anant Narayanan",
  2144. "email": "anant@php.net",
  2145. "role": "Developer"
  2146. }
  2147. ],
  2148. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  2149. "homepage": "https://github.com/firebase/php-jwt",
  2150. "keywords": [
  2151. "jwt",
  2152. "php"
  2153. ],
  2154. "support": {
  2155. "issues": "https://github.com/firebase/php-jwt/issues",
  2156. "source": "https://github.com/firebase/php-jwt/tree/v6.10.2"
  2157. },
  2158. "time": "2024-11-24T11:22:49+00:00"
  2159. },
  2160. {
  2161. "name": "fruitcake/php-cors",
  2162. "version": "v1.3.0",
  2163. "source": {
  2164. "type": "git",
  2165. "url": "https://github.com/fruitcake/php-cors.git",
  2166. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  2167. },
  2168. "dist": {
  2169. "type": "zip",
  2170. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  2171. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  2172. "shasum": ""
  2173. },
  2174. "require": {
  2175. "php": "^7.4|^8.0",
  2176. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  2177. },
  2178. "require-dev": {
  2179. "phpstan/phpstan": "^1.4",
  2180. "phpunit/phpunit": "^9",
  2181. "squizlabs/php_codesniffer": "^3.5"
  2182. },
  2183. "type": "library",
  2184. "extra": {
  2185. "branch-alias": {
  2186. "dev-master": "1.2-dev"
  2187. }
  2188. },
  2189. "autoload": {
  2190. "psr-4": {
  2191. "Fruitcake\\Cors\\": "src/"
  2192. }
  2193. },
  2194. "notification-url": "https://packagist.org/downloads/",
  2195. "license": [
  2196. "MIT"
  2197. ],
  2198. "authors": [
  2199. {
  2200. "name": "Fruitcake",
  2201. "homepage": "https://fruitcake.nl"
  2202. },
  2203. {
  2204. "name": "Barryvdh",
  2205. "email": "barryvdh@gmail.com"
  2206. }
  2207. ],
  2208. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  2209. "homepage": "https://github.com/fruitcake/php-cors",
  2210. "keywords": [
  2211. "cors",
  2212. "laravel",
  2213. "symfony"
  2214. ],
  2215. "support": {
  2216. "issues": "https://github.com/fruitcake/php-cors/issues",
  2217. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  2218. },
  2219. "funding": [
  2220. {
  2221. "url": "https://fruitcake.nl",
  2222. "type": "custom"
  2223. },
  2224. {
  2225. "url": "https://github.com/barryvdh",
  2226. "type": "github"
  2227. }
  2228. ],
  2229. "time": "2023-10-12T05:21:21+00:00"
  2230. },
  2231. {
  2232. "name": "graham-campbell/result-type",
  2233. "version": "v1.1.3",
  2234. "source": {
  2235. "type": "git",
  2236. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  2237. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  2238. },
  2239. "dist": {
  2240. "type": "zip",
  2241. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  2242. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  2243. "shasum": ""
  2244. },
  2245. "require": {
  2246. "php": "^7.2.5 || ^8.0",
  2247. "phpoption/phpoption": "^1.9.3"
  2248. },
  2249. "require-dev": {
  2250. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  2251. },
  2252. "type": "library",
  2253. "autoload": {
  2254. "psr-4": {
  2255. "GrahamCampbell\\ResultType\\": "src/"
  2256. }
  2257. },
  2258. "notification-url": "https://packagist.org/downloads/",
  2259. "license": [
  2260. "MIT"
  2261. ],
  2262. "authors": [
  2263. {
  2264. "name": "Graham Campbell",
  2265. "email": "hello@gjcampbell.co.uk",
  2266. "homepage": "https://github.com/GrahamCampbell"
  2267. }
  2268. ],
  2269. "description": "An Implementation Of The Result Type",
  2270. "keywords": [
  2271. "Graham Campbell",
  2272. "GrahamCampbell",
  2273. "Result Type",
  2274. "Result-Type",
  2275. "result"
  2276. ],
  2277. "support": {
  2278. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  2279. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  2280. },
  2281. "funding": [
  2282. {
  2283. "url": "https://github.com/GrahamCampbell",
  2284. "type": "github"
  2285. },
  2286. {
  2287. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  2288. "type": "tidelift"
  2289. }
  2290. ],
  2291. "time": "2024-07-20T21:45:45+00:00"
  2292. },
  2293. {
  2294. "name": "guava/filament-clusters",
  2295. "version": "1.4.0",
  2296. "source": {
  2297. "type": "git",
  2298. "url": "https://github.com/GuavaCZ/filament-clusters.git",
  2299. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694"
  2300. },
  2301. "dist": {
  2302. "type": "zip",
  2303. "url": "https://api.github.com/repos/GuavaCZ/filament-clusters/zipball/c4a2ad6342f630f494f5e923b65426d935d12694",
  2304. "reference": "c4a2ad6342f630f494f5e923b65426d935d12694",
  2305. "shasum": ""
  2306. },
  2307. "require": {
  2308. "filament/filament": "^3.0",
  2309. "illuminate/contracts": "^10.0 | ^11.0",
  2310. "php": "^8.1",
  2311. "spatie/laravel-package-tools": "^1.14.0"
  2312. },
  2313. "require-dev": {
  2314. "laravel/pint": "^1.0",
  2315. "nunomaduro/collision": "^7.8",
  2316. "nunomaduro/larastan": "^2.0.1",
  2317. "orchestra/testbench": "^8.8",
  2318. "pestphp/pest": "^2.0",
  2319. "pestphp/pest-plugin-arch": "^2.0",
  2320. "pestphp/pest-plugin-laravel": "^2.0",
  2321. "phpstan/extension-installer": "^1.1",
  2322. "phpstan/phpstan-deprecation-rules": "^1.0",
  2323. "phpstan/phpstan-phpunit": "^1.0"
  2324. },
  2325. "type": "library",
  2326. "extra": {
  2327. "laravel": {
  2328. "providers": [
  2329. "Guava\\FilamentClusters\\FilamentClustersServiceProvider"
  2330. ]
  2331. }
  2332. },
  2333. "autoload": {
  2334. "psr-4": {
  2335. "Guava\\FilamentClusters\\": "src/"
  2336. }
  2337. },
  2338. "notification-url": "https://packagist.org/downloads/",
  2339. "license": [
  2340. "MIT"
  2341. ],
  2342. "authors": [
  2343. {
  2344. "name": "Lukas Frey",
  2345. "email": "lukas.frey@guava.cz",
  2346. "role": "Developer"
  2347. }
  2348. ],
  2349. "description": "Filament clusters allow you to cluster multiple fields into one visually.",
  2350. "homepage": "https://github.com/GuavaCZ/filament-clusters",
  2351. "keywords": [
  2352. "Guava",
  2353. "filament-clusters",
  2354. "laravel"
  2355. ],
  2356. "support": {
  2357. "issues": "https://github.com/GuavaCZ/filament-clusters/issues",
  2358. "source": "https://github.com/GuavaCZ/filament-clusters/tree/1.4.0"
  2359. },
  2360. "funding": [
  2361. {
  2362. "url": "https://github.com/GuavaCZ",
  2363. "type": "github"
  2364. }
  2365. ],
  2366. "time": "2024-05-31T09:31:08+00:00"
  2367. },
  2368. {
  2369. "name": "guzzlehttp/guzzle",
  2370. "version": "7.9.2",
  2371. "source": {
  2372. "type": "git",
  2373. "url": "https://github.com/guzzle/guzzle.git",
  2374. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  2375. },
  2376. "dist": {
  2377. "type": "zip",
  2378. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  2379. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  2380. "shasum": ""
  2381. },
  2382. "require": {
  2383. "ext-json": "*",
  2384. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  2385. "guzzlehttp/psr7": "^2.7.0",
  2386. "php": "^7.2.5 || ^8.0",
  2387. "psr/http-client": "^1.0",
  2388. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  2389. },
  2390. "provide": {
  2391. "psr/http-client-implementation": "1.0"
  2392. },
  2393. "require-dev": {
  2394. "bamarni/composer-bin-plugin": "^1.8.2",
  2395. "ext-curl": "*",
  2396. "guzzle/client-integration-tests": "3.0.2",
  2397. "php-http/message-factory": "^1.1",
  2398. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  2399. "psr/log": "^1.1 || ^2.0 || ^3.0"
  2400. },
  2401. "suggest": {
  2402. "ext-curl": "Required for CURL handler support",
  2403. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  2404. "psr/log": "Required for using the Log middleware"
  2405. },
  2406. "type": "library",
  2407. "extra": {
  2408. "bamarni-bin": {
  2409. "bin-links": true,
  2410. "forward-command": false
  2411. }
  2412. },
  2413. "autoload": {
  2414. "files": [
  2415. "src/functions_include.php"
  2416. ],
  2417. "psr-4": {
  2418. "GuzzleHttp\\": "src/"
  2419. }
  2420. },
  2421. "notification-url": "https://packagist.org/downloads/",
  2422. "license": [
  2423. "MIT"
  2424. ],
  2425. "authors": [
  2426. {
  2427. "name": "Graham Campbell",
  2428. "email": "hello@gjcampbell.co.uk",
  2429. "homepage": "https://github.com/GrahamCampbell"
  2430. },
  2431. {
  2432. "name": "Michael Dowling",
  2433. "email": "mtdowling@gmail.com",
  2434. "homepage": "https://github.com/mtdowling"
  2435. },
  2436. {
  2437. "name": "Jeremy Lindblom",
  2438. "email": "jeremeamia@gmail.com",
  2439. "homepage": "https://github.com/jeremeamia"
  2440. },
  2441. {
  2442. "name": "George Mponos",
  2443. "email": "gmponos@gmail.com",
  2444. "homepage": "https://github.com/gmponos"
  2445. },
  2446. {
  2447. "name": "Tobias Nyholm",
  2448. "email": "tobias.nyholm@gmail.com",
  2449. "homepage": "https://github.com/Nyholm"
  2450. },
  2451. {
  2452. "name": "Márk Sági-Kazár",
  2453. "email": "mark.sagikazar@gmail.com",
  2454. "homepage": "https://github.com/sagikazarmark"
  2455. },
  2456. {
  2457. "name": "Tobias Schultze",
  2458. "email": "webmaster@tubo-world.de",
  2459. "homepage": "https://github.com/Tobion"
  2460. }
  2461. ],
  2462. "description": "Guzzle is a PHP HTTP client library",
  2463. "keywords": [
  2464. "client",
  2465. "curl",
  2466. "framework",
  2467. "http",
  2468. "http client",
  2469. "psr-18",
  2470. "psr-7",
  2471. "rest",
  2472. "web service"
  2473. ],
  2474. "support": {
  2475. "issues": "https://github.com/guzzle/guzzle/issues",
  2476. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  2477. },
  2478. "funding": [
  2479. {
  2480. "url": "https://github.com/GrahamCampbell",
  2481. "type": "github"
  2482. },
  2483. {
  2484. "url": "https://github.com/Nyholm",
  2485. "type": "github"
  2486. },
  2487. {
  2488. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  2489. "type": "tidelift"
  2490. }
  2491. ],
  2492. "time": "2024-07-24T11:22:20+00:00"
  2493. },
  2494. {
  2495. "name": "guzzlehttp/promises",
  2496. "version": "2.0.4",
  2497. "source": {
  2498. "type": "git",
  2499. "url": "https://github.com/guzzle/promises.git",
  2500. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  2501. },
  2502. "dist": {
  2503. "type": "zip",
  2504. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2505. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  2506. "shasum": ""
  2507. },
  2508. "require": {
  2509. "php": "^7.2.5 || ^8.0"
  2510. },
  2511. "require-dev": {
  2512. "bamarni/composer-bin-plugin": "^1.8.2",
  2513. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2514. },
  2515. "type": "library",
  2516. "extra": {
  2517. "bamarni-bin": {
  2518. "bin-links": true,
  2519. "forward-command": false
  2520. }
  2521. },
  2522. "autoload": {
  2523. "psr-4": {
  2524. "GuzzleHttp\\Promise\\": "src/"
  2525. }
  2526. },
  2527. "notification-url": "https://packagist.org/downloads/",
  2528. "license": [
  2529. "MIT"
  2530. ],
  2531. "authors": [
  2532. {
  2533. "name": "Graham Campbell",
  2534. "email": "hello@gjcampbell.co.uk",
  2535. "homepage": "https://github.com/GrahamCampbell"
  2536. },
  2537. {
  2538. "name": "Michael Dowling",
  2539. "email": "mtdowling@gmail.com",
  2540. "homepage": "https://github.com/mtdowling"
  2541. },
  2542. {
  2543. "name": "Tobias Nyholm",
  2544. "email": "tobias.nyholm@gmail.com",
  2545. "homepage": "https://github.com/Nyholm"
  2546. },
  2547. {
  2548. "name": "Tobias Schultze",
  2549. "email": "webmaster@tubo-world.de",
  2550. "homepage": "https://github.com/Tobion"
  2551. }
  2552. ],
  2553. "description": "Guzzle promises library",
  2554. "keywords": [
  2555. "promise"
  2556. ],
  2557. "support": {
  2558. "issues": "https://github.com/guzzle/promises/issues",
  2559. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  2560. },
  2561. "funding": [
  2562. {
  2563. "url": "https://github.com/GrahamCampbell",
  2564. "type": "github"
  2565. },
  2566. {
  2567. "url": "https://github.com/Nyholm",
  2568. "type": "github"
  2569. },
  2570. {
  2571. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  2572. "type": "tidelift"
  2573. }
  2574. ],
  2575. "time": "2024-10-17T10:06:22+00:00"
  2576. },
  2577. {
  2578. "name": "guzzlehttp/psr7",
  2579. "version": "2.7.0",
  2580. "source": {
  2581. "type": "git",
  2582. "url": "https://github.com/guzzle/psr7.git",
  2583. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  2584. },
  2585. "dist": {
  2586. "type": "zip",
  2587. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2588. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  2589. "shasum": ""
  2590. },
  2591. "require": {
  2592. "php": "^7.2.5 || ^8.0",
  2593. "psr/http-factory": "^1.0",
  2594. "psr/http-message": "^1.1 || ^2.0",
  2595. "ralouphie/getallheaders": "^3.0"
  2596. },
  2597. "provide": {
  2598. "psr/http-factory-implementation": "1.0",
  2599. "psr/http-message-implementation": "1.0"
  2600. },
  2601. "require-dev": {
  2602. "bamarni/composer-bin-plugin": "^1.8.2",
  2603. "http-interop/http-factory-tests": "0.9.0",
  2604. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  2605. },
  2606. "suggest": {
  2607. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  2608. },
  2609. "type": "library",
  2610. "extra": {
  2611. "bamarni-bin": {
  2612. "bin-links": true,
  2613. "forward-command": false
  2614. }
  2615. },
  2616. "autoload": {
  2617. "psr-4": {
  2618. "GuzzleHttp\\Psr7\\": "src/"
  2619. }
  2620. },
  2621. "notification-url": "https://packagist.org/downloads/",
  2622. "license": [
  2623. "MIT"
  2624. ],
  2625. "authors": [
  2626. {
  2627. "name": "Graham Campbell",
  2628. "email": "hello@gjcampbell.co.uk",
  2629. "homepage": "https://github.com/GrahamCampbell"
  2630. },
  2631. {
  2632. "name": "Michael Dowling",
  2633. "email": "mtdowling@gmail.com",
  2634. "homepage": "https://github.com/mtdowling"
  2635. },
  2636. {
  2637. "name": "George Mponos",
  2638. "email": "gmponos@gmail.com",
  2639. "homepage": "https://github.com/gmponos"
  2640. },
  2641. {
  2642. "name": "Tobias Nyholm",
  2643. "email": "tobias.nyholm@gmail.com",
  2644. "homepage": "https://github.com/Nyholm"
  2645. },
  2646. {
  2647. "name": "Márk Sági-Kazár",
  2648. "email": "mark.sagikazar@gmail.com",
  2649. "homepage": "https://github.com/sagikazarmark"
  2650. },
  2651. {
  2652. "name": "Tobias Schultze",
  2653. "email": "webmaster@tubo-world.de",
  2654. "homepage": "https://github.com/Tobion"
  2655. },
  2656. {
  2657. "name": "Márk Sági-Kazár",
  2658. "email": "mark.sagikazar@gmail.com",
  2659. "homepage": "https://sagikazarmark.hu"
  2660. }
  2661. ],
  2662. "description": "PSR-7 message implementation that also provides common utility methods",
  2663. "keywords": [
  2664. "http",
  2665. "message",
  2666. "psr-7",
  2667. "request",
  2668. "response",
  2669. "stream",
  2670. "uri",
  2671. "url"
  2672. ],
  2673. "support": {
  2674. "issues": "https://github.com/guzzle/psr7/issues",
  2675. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  2676. },
  2677. "funding": [
  2678. {
  2679. "url": "https://github.com/GrahamCampbell",
  2680. "type": "github"
  2681. },
  2682. {
  2683. "url": "https://github.com/Nyholm",
  2684. "type": "github"
  2685. },
  2686. {
  2687. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  2688. "type": "tidelift"
  2689. }
  2690. ],
  2691. "time": "2024-07-18T11:15:46+00:00"
  2692. },
  2693. {
  2694. "name": "guzzlehttp/uri-template",
  2695. "version": "v1.0.3",
  2696. "source": {
  2697. "type": "git",
  2698. "url": "https://github.com/guzzle/uri-template.git",
  2699. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c"
  2700. },
  2701. "dist": {
  2702. "type": "zip",
  2703. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2704. "reference": "ecea8feef63bd4fef1f037ecb288386999ecc11c",
  2705. "shasum": ""
  2706. },
  2707. "require": {
  2708. "php": "^7.2.5 || ^8.0",
  2709. "symfony/polyfill-php80": "^1.24"
  2710. },
  2711. "require-dev": {
  2712. "bamarni/composer-bin-plugin": "^1.8.2",
  2713. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2714. "uri-template/tests": "1.0.0"
  2715. },
  2716. "type": "library",
  2717. "extra": {
  2718. "bamarni-bin": {
  2719. "bin-links": true,
  2720. "forward-command": false
  2721. }
  2722. },
  2723. "autoload": {
  2724. "psr-4": {
  2725. "GuzzleHttp\\UriTemplate\\": "src"
  2726. }
  2727. },
  2728. "notification-url": "https://packagist.org/downloads/",
  2729. "license": [
  2730. "MIT"
  2731. ],
  2732. "authors": [
  2733. {
  2734. "name": "Graham Campbell",
  2735. "email": "hello@gjcampbell.co.uk",
  2736. "homepage": "https://github.com/GrahamCampbell"
  2737. },
  2738. {
  2739. "name": "Michael Dowling",
  2740. "email": "mtdowling@gmail.com",
  2741. "homepage": "https://github.com/mtdowling"
  2742. },
  2743. {
  2744. "name": "George Mponos",
  2745. "email": "gmponos@gmail.com",
  2746. "homepage": "https://github.com/gmponos"
  2747. },
  2748. {
  2749. "name": "Tobias Nyholm",
  2750. "email": "tobias.nyholm@gmail.com",
  2751. "homepage": "https://github.com/Nyholm"
  2752. }
  2753. ],
  2754. "description": "A polyfill class for uri_template of PHP",
  2755. "keywords": [
  2756. "guzzlehttp",
  2757. "uri-template"
  2758. ],
  2759. "support": {
  2760. "issues": "https://github.com/guzzle/uri-template/issues",
  2761. "source": "https://github.com/guzzle/uri-template/tree/v1.0.3"
  2762. },
  2763. "funding": [
  2764. {
  2765. "url": "https://github.com/GrahamCampbell",
  2766. "type": "github"
  2767. },
  2768. {
  2769. "url": "https://github.com/Nyholm",
  2770. "type": "github"
  2771. },
  2772. {
  2773. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2774. "type": "tidelift"
  2775. }
  2776. ],
  2777. "time": "2023-12-03T19:50:20+00:00"
  2778. },
  2779. {
  2780. "name": "jaocero/radio-deck",
  2781. "version": "v1.2.9",
  2782. "source": {
  2783. "type": "git",
  2784. "url": "https://github.com/199ocero/radio-deck.git",
  2785. "reference": "f99c40700d9ff1a8419cee44fcd4304908919f8e"
  2786. },
  2787. "dist": {
  2788. "type": "zip",
  2789. "url": "https://api.github.com/repos/199ocero/radio-deck/zipball/f99c40700d9ff1a8419cee44fcd4304908919f8e",
  2790. "reference": "f99c40700d9ff1a8419cee44fcd4304908919f8e",
  2791. "shasum": ""
  2792. },
  2793. "require": {
  2794. "filament/forms": "^3.0",
  2795. "illuminate/contracts": "^10.0|^11.0",
  2796. "php": "^8.1",
  2797. "spatie/laravel-package-tools": "^1.15.0"
  2798. },
  2799. "require-dev": {
  2800. "nunomaduro/collision": "^7.9",
  2801. "orchestra/testbench": "^8.0|^9.0",
  2802. "pestphp/pest": "^2.0",
  2803. "pestphp/pest-plugin-arch": "^2.0",
  2804. "pestphp/pest-plugin-laravel": "^2.0"
  2805. },
  2806. "type": "library",
  2807. "extra": {
  2808. "laravel": {
  2809. "providers": [
  2810. "JaOcero\\RadioDeck\\RadioDeckServiceProvider"
  2811. ]
  2812. }
  2813. },
  2814. "autoload": {
  2815. "psr-4": {
  2816. "JaOcero\\RadioDeck\\": "src/",
  2817. "JaOcero\\RadioDeck\\Database\\Factories\\": "database/factories/"
  2818. }
  2819. },
  2820. "notification-url": "https://packagist.org/downloads/",
  2821. "license": [
  2822. "MIT"
  2823. ],
  2824. "authors": [
  2825. {
  2826. "name": "Jay-Are Ocero",
  2827. "email": "199ocero@gmail.com",
  2828. "role": "Developer"
  2829. }
  2830. ],
  2831. "description": "Turn filament default radio button into a selectable card with icons, title and description.",
  2832. "homepage": "https://github.com/jaocero/radio-deck",
  2833. "keywords": [
  2834. "filament-form",
  2835. "filament-plugin",
  2836. "filamentphp",
  2837. "jaocero",
  2838. "laravel",
  2839. "radio-deck"
  2840. ],
  2841. "support": {
  2842. "issues": "https://github.com/jaocero/radio-deck/issues",
  2843. "source": "https://github.com/jaocero/radio-deck"
  2844. },
  2845. "funding": [
  2846. {
  2847. "url": "https://github.com/jaocero",
  2848. "type": "github"
  2849. }
  2850. ],
  2851. "time": "2024-12-07T13:41:25+00:00"
  2852. },
  2853. {
  2854. "name": "kirschbaum-development/eloquent-power-joins",
  2855. "version": "4.0.1",
  2856. "source": {
  2857. "type": "git",
  2858. "url": "https://github.com/kirschbaum-development/eloquent-power-joins.git",
  2859. "reference": "3c1af9b86b02f1e39219849c1d2fee7cf77e8638"
  2860. },
  2861. "dist": {
  2862. "type": "zip",
  2863. "url": "https://api.github.com/repos/kirschbaum-development/eloquent-power-joins/zipball/3c1af9b86b02f1e39219849c1d2fee7cf77e8638",
  2864. "reference": "3c1af9b86b02f1e39219849c1d2fee7cf77e8638",
  2865. "shasum": ""
  2866. },
  2867. "require": {
  2868. "illuminate/database": "^10.0|^11.0",
  2869. "illuminate/support": "^10.0|^11.0",
  2870. "php": "^8.1"
  2871. },
  2872. "require-dev": {
  2873. "friendsofphp/php-cs-fixer": "dev-master",
  2874. "laravel/legacy-factories": "^1.0@dev",
  2875. "orchestra/testbench": "^8.0|^9.0",
  2876. "phpunit/phpunit": "^10.0"
  2877. },
  2878. "type": "library",
  2879. "extra": {
  2880. "laravel": {
  2881. "providers": [
  2882. "Kirschbaum\\PowerJoins\\PowerJoinsServiceProvider"
  2883. ]
  2884. }
  2885. },
  2886. "autoload": {
  2887. "psr-4": {
  2888. "Kirschbaum\\PowerJoins\\": "src"
  2889. }
  2890. },
  2891. "notification-url": "https://packagist.org/downloads/",
  2892. "license": [
  2893. "MIT"
  2894. ],
  2895. "authors": [
  2896. {
  2897. "name": "Luis Dalmolin",
  2898. "email": "luis.nh@gmail.com",
  2899. "role": "Developer"
  2900. }
  2901. ],
  2902. "description": "The Laravel magic applied to joins.",
  2903. "homepage": "https://github.com/kirschbaum-development/eloquent-power-joins",
  2904. "keywords": [
  2905. "eloquent",
  2906. "join",
  2907. "laravel",
  2908. "mysql"
  2909. ],
  2910. "support": {
  2911. "issues": "https://github.com/kirschbaum-development/eloquent-power-joins/issues",
  2912. "source": "https://github.com/kirschbaum-development/eloquent-power-joins/tree/4.0.1"
  2913. },
  2914. "time": "2024-11-26T13:22:08+00:00"
  2915. },
  2916. {
  2917. "name": "knplabs/knp-snappy",
  2918. "version": "v1.5.0",
  2919. "source": {
  2920. "type": "git",
  2921. "url": "https://github.com/KnpLabs/snappy.git",
  2922. "reference": "98468898b50c09f26d56d905b79b0f52a2215da6"
  2923. },
  2924. "dist": {
  2925. "type": "zip",
  2926. "url": "https://api.github.com/repos/KnpLabs/snappy/zipball/98468898b50c09f26d56d905b79b0f52a2215da6",
  2927. "reference": "98468898b50c09f26d56d905b79b0f52a2215da6",
  2928. "shasum": ""
  2929. },
  2930. "require": {
  2931. "php": ">=8.1",
  2932. "psr/log": "^2.0||^3.0",
  2933. "symfony/process": "^5.0||^6.0||^7.0"
  2934. },
  2935. "require-dev": {
  2936. "friendsofphp/php-cs-fixer": "^3.0",
  2937. "pedrotroller/php-cs-custom-fixer": "^2.19",
  2938. "phpstan/phpstan": "^1.0.0",
  2939. "phpstan/phpstan-phpunit": "^1.0.0",
  2940. "phpunit/phpunit": "^8.5"
  2941. },
  2942. "type": "library",
  2943. "extra": {
  2944. "branch-alias": {
  2945. "dev-master": "1.x-dev"
  2946. }
  2947. },
  2948. "autoload": {
  2949. "psr-4": {
  2950. "Knp\\Snappy\\": "src/Knp/Snappy"
  2951. }
  2952. },
  2953. "notification-url": "https://packagist.org/downloads/",
  2954. "license": [
  2955. "MIT"
  2956. ],
  2957. "authors": [
  2958. {
  2959. "name": "KNP Labs Team",
  2960. "homepage": "http://knplabs.com"
  2961. },
  2962. {
  2963. "name": "Symfony Community",
  2964. "homepage": "http://github.com/KnpLabs/snappy/contributors"
  2965. }
  2966. ],
  2967. "description": "PHP library allowing thumbnail, snapshot or PDF generation from a url or a html page. Wrapper for wkhtmltopdf/wkhtmltoimage.",
  2968. "homepage": "http://github.com/KnpLabs/snappy",
  2969. "keywords": [
  2970. "knp",
  2971. "knplabs",
  2972. "pdf",
  2973. "snapshot",
  2974. "thumbnail",
  2975. "wkhtmltopdf"
  2976. ],
  2977. "support": {
  2978. "issues": "https://github.com/KnpLabs/snappy/issues",
  2979. "source": "https://github.com/KnpLabs/snappy/tree/v1.5.0"
  2980. },
  2981. "time": "2023-12-18T09:12:11+00:00"
  2982. },
  2983. {
  2984. "name": "laravel/framework",
  2985. "version": "v11.34.2",
  2986. "source": {
  2987. "type": "git",
  2988. "url": "https://github.com/laravel/framework.git",
  2989. "reference": "865da6d73dd353f07a7bcbd778c55966a620121f"
  2990. },
  2991. "dist": {
  2992. "type": "zip",
  2993. "url": "https://api.github.com/repos/laravel/framework/zipball/865da6d73dd353f07a7bcbd778c55966a620121f",
  2994. "reference": "865da6d73dd353f07a7bcbd778c55966a620121f",
  2995. "shasum": ""
  2996. },
  2997. "require": {
  2998. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  2999. "composer-runtime-api": "^2.2",
  3000. "doctrine/inflector": "^2.0.5",
  3001. "dragonmantank/cron-expression": "^3.4",
  3002. "egulias/email-validator": "^3.2.1|^4.0",
  3003. "ext-ctype": "*",
  3004. "ext-filter": "*",
  3005. "ext-hash": "*",
  3006. "ext-mbstring": "*",
  3007. "ext-openssl": "*",
  3008. "ext-session": "*",
  3009. "ext-tokenizer": "*",
  3010. "fruitcake/php-cors": "^1.3",
  3011. "guzzlehttp/guzzle": "^7.8.2",
  3012. "guzzlehttp/uri-template": "^1.0",
  3013. "laravel/prompts": "^0.1.18|^0.2.0|^0.3.0",
  3014. "laravel/serializable-closure": "^1.3|^2.0",
  3015. "league/commonmark": "^2.2.1",
  3016. "league/flysystem": "^3.25.1",
  3017. "league/flysystem-local": "^3.25.1",
  3018. "monolog/monolog": "^3.0",
  3019. "nesbot/carbon": "^2.72.2|^3.4",
  3020. "nunomaduro/termwind": "^2.0",
  3021. "php": "^8.2",
  3022. "psr/container": "^1.1.1|^2.0.1",
  3023. "psr/log": "^1.0|^2.0|^3.0",
  3024. "psr/simple-cache": "^1.0|^2.0|^3.0",
  3025. "ramsey/uuid": "^4.7",
  3026. "symfony/console": "^7.0.3",
  3027. "symfony/error-handler": "^7.0.3",
  3028. "symfony/finder": "^7.0.3",
  3029. "symfony/http-foundation": "^7.0.3",
  3030. "symfony/http-kernel": "^7.0.3",
  3031. "symfony/mailer": "^7.0.3",
  3032. "symfony/mime": "^7.0.3",
  3033. "symfony/polyfill-php83": "^1.31",
  3034. "symfony/process": "^7.0.3",
  3035. "symfony/routing": "^7.0.3",
  3036. "symfony/uid": "^7.0.3",
  3037. "symfony/var-dumper": "^7.0.3",
  3038. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  3039. "vlucas/phpdotenv": "^5.6.1",
  3040. "voku/portable-ascii": "^2.0.2"
  3041. },
  3042. "conflict": {
  3043. "mockery/mockery": "1.6.8",
  3044. "tightenco/collect": "<5.5.33"
  3045. },
  3046. "provide": {
  3047. "psr/container-implementation": "1.1|2.0",
  3048. "psr/log-implementation": "1.0|2.0|3.0",
  3049. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  3050. },
  3051. "replace": {
  3052. "illuminate/auth": "self.version",
  3053. "illuminate/broadcasting": "self.version",
  3054. "illuminate/bus": "self.version",
  3055. "illuminate/cache": "self.version",
  3056. "illuminate/collections": "self.version",
  3057. "illuminate/concurrency": "self.version",
  3058. "illuminate/conditionable": "self.version",
  3059. "illuminate/config": "self.version",
  3060. "illuminate/console": "self.version",
  3061. "illuminate/container": "self.version",
  3062. "illuminate/contracts": "self.version",
  3063. "illuminate/cookie": "self.version",
  3064. "illuminate/database": "self.version",
  3065. "illuminate/encryption": "self.version",
  3066. "illuminate/events": "self.version",
  3067. "illuminate/filesystem": "self.version",
  3068. "illuminate/hashing": "self.version",
  3069. "illuminate/http": "self.version",
  3070. "illuminate/log": "self.version",
  3071. "illuminate/macroable": "self.version",
  3072. "illuminate/mail": "self.version",
  3073. "illuminate/notifications": "self.version",
  3074. "illuminate/pagination": "self.version",
  3075. "illuminate/pipeline": "self.version",
  3076. "illuminate/process": "self.version",
  3077. "illuminate/queue": "self.version",
  3078. "illuminate/redis": "self.version",
  3079. "illuminate/routing": "self.version",
  3080. "illuminate/session": "self.version",
  3081. "illuminate/support": "self.version",
  3082. "illuminate/testing": "self.version",
  3083. "illuminate/translation": "self.version",
  3084. "illuminate/validation": "self.version",
  3085. "illuminate/view": "self.version",
  3086. "spatie/once": "*"
  3087. },
  3088. "require-dev": {
  3089. "ably/ably-php": "^1.0",
  3090. "aws/aws-sdk-php": "^3.322.9",
  3091. "ext-gmp": "*",
  3092. "fakerphp/faker": "^1.24",
  3093. "guzzlehttp/promises": "^2.0.3",
  3094. "guzzlehttp/psr7": "^2.4",
  3095. "league/flysystem-aws-s3-v3": "^3.25.1",
  3096. "league/flysystem-ftp": "^3.25.1",
  3097. "league/flysystem-path-prefixing": "^3.25.1",
  3098. "league/flysystem-read-only": "^3.25.1",
  3099. "league/flysystem-sftp-v3": "^3.25.1",
  3100. "mockery/mockery": "^1.6.10",
  3101. "nyholm/psr7": "^1.2",
  3102. "orchestra/testbench-core": "^9.6",
  3103. "pda/pheanstalk": "^5.0.6",
  3104. "phpstan/phpstan": "^1.11.5",
  3105. "phpunit/phpunit": "^10.5.35|^11.3.6",
  3106. "predis/predis": "^2.3",
  3107. "resend/resend-php": "^0.10.0",
  3108. "symfony/cache": "^7.0.3",
  3109. "symfony/http-client": "^7.0.3",
  3110. "symfony/psr-http-message-bridge": "^7.0.3",
  3111. "symfony/translation": "^7.0.3"
  3112. },
  3113. "suggest": {
  3114. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  3115. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  3116. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  3117. "ext-apcu": "Required to use the APC cache driver.",
  3118. "ext-fileinfo": "Required to use the Filesystem class.",
  3119. "ext-ftp": "Required to use the Flysystem FTP driver.",
  3120. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  3121. "ext-memcached": "Required to use the memcache cache driver.",
  3122. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  3123. "ext-pdo": "Required to use all database features.",
  3124. "ext-posix": "Required to use all features of the queue worker.",
  3125. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  3126. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  3127. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  3128. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3129. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  3130. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  3131. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  3132. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  3133. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  3134. "mockery/mockery": "Required to use mocking (^1.6).",
  3135. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3136. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  3137. "phpunit/phpunit": "Required to use assertions and run tests (^10.5|^11.0).",
  3138. "predis/predis": "Required to use the predis connector (^2.3).",
  3139. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  3140. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  3141. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  3142. "symfony/cache": "Required to PSR-6 cache bridge (^7.0).",
  3143. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.0).",
  3144. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.0).",
  3145. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.0).",
  3146. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.0).",
  3147. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.0)."
  3148. },
  3149. "type": "library",
  3150. "extra": {
  3151. "branch-alias": {
  3152. "dev-master": "11.x-dev"
  3153. }
  3154. },
  3155. "autoload": {
  3156. "files": [
  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-11-27T15:43:57+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.5",
  3258. "source": {
  3259. "type": "git",
  3260. "url": "https://github.com/laravel/sanctum.git",
  3261. "reference": "fe361b9a63407a228f884eb78d7217f680b50140"
  3262. },
  3263. "dist": {
  3264. "type": "zip",
  3265. "url": "https://api.github.com/repos/laravel/sanctum/zipball/fe361b9a63407a228f884eb78d7217f680b50140",
  3266. "reference": "fe361b9a63407a228f884eb78d7217f680b50140",
  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-11-26T14:36:23+00:00"
  3318. },
  3319. {
  3320. "name": "laravel/serializable-closure",
  3321. "version": "v2.0.0",
  3322. "source": {
  3323. "type": "git",
  3324. "url": "https://github.com/laravel/serializable-closure.git",
  3325. "reference": "0d8d3d8086984996df86596a86dea60398093a81"
  3326. },
  3327. "dist": {
  3328. "type": "zip",
  3329. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/0d8d3d8086984996df86596a86dea60398093a81",
  3330. "reference": "0d8d3d8086984996df86596a86dea60398093a81",
  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-11-19T01:38:44+00:00"
  3379. },
  3380. {
  3381. "name": "laravel/socialite",
  3382. "version": "v5.16.0",
  3383. "source": {
  3384. "type": "git",
  3385. "url": "https://github.com/laravel/socialite.git",
  3386. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf"
  3387. },
  3388. "dist": {
  3389. "type": "zip",
  3390. "url": "https://api.github.com/repos/laravel/socialite/zipball/40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  3391. "reference": "40a2dc98c53d9dc6d55eadb0d490d3d72b73f1bf",
  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.10.1",
  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. "branch-alias": {
  3414. "dev-master": "5.x-dev"
  3415. },
  3416. "laravel": {
  3417. "providers": [
  3418. "Laravel\\Socialite\\SocialiteServiceProvider"
  3419. ],
  3420. "aliases": {
  3421. "Socialite": "Laravel\\Socialite\\Facades\\Socialite"
  3422. }
  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-09-03T09:46:57+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.18.0",
  3710. "source": {
  3711. "type": "git",
  3712. "url": "https://github.com/thephpleague/csv.git",
  3713. "reference": "b02d010e4055ae992247f6ffd1e7b103ef2a0790"
  3714. },
  3715. "dist": {
  3716. "type": "zip",
  3717. "url": "https://api.github.com/repos/thephpleague/csv/zipball/b02d010e4055ae992247f6ffd1e7b103ef2a0790",
  3718. "reference": "b02d010e4055ae992247f6ffd1e7b103ef2a0790",
  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.6",
  3731. "phpstan/phpstan-deprecation-rules": "^1.2.1",
  3732. "phpstan/phpstan-phpunit": "^1.4.0",
  3733. "phpstan/phpstan-strict-rules": "^1.6.1",
  3734. "phpunit/phpunit": "^10.5.16 || ^11.4.1",
  3735. "symfony/var-dumper": "^6.4.8 || ^7.1.5"
  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-10-18T08:14:48+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.10.1",
  3985. "source": {
  3986. "type": "git",
  3987. "url": "https://github.com/thephpleague/oauth1-client.git",
  3988. "reference": "d6365b901b5c287dd41f143033315e2f777e1167"
  3989. },
  3990. "dist": {
  3991. "type": "zip",
  3992. "url": "https://api.github.com/repos/thephpleague/oauth1-client/zipball/d6365b901b5c287dd41f143033315e2f777e1167",
  3993. "reference": "d6365b901b5c287dd41f143033315e2f777e1167",
  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.10.1"
  4055. },
  4056. "time": "2022-04-15T14:02:14+00:00"
  4057. },
  4058. {
  4059. "name": "league/uri",
  4060. "version": "7.4.1",
  4061. "source": {
  4062. "type": "git",
  4063. "url": "https://github.com/thephpleague/uri.git",
  4064. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4"
  4065. },
  4066. "dist": {
  4067. "type": "zip",
  4068. "url": "https://api.github.com/repos/thephpleague/uri/zipball/bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  4069. "reference": "bedb6e55eff0c933668addaa7efa1e1f2c417cc4",
  4070. "shasum": ""
  4071. },
  4072. "require": {
  4073. "league/uri-interfaces": "^7.3",
  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.4.1"
  4139. },
  4140. "funding": [
  4141. {
  4142. "url": "https://github.com/sponsors/nyamsprod",
  4143. "type": "github"
  4144. }
  4145. ],
  4146. "time": "2024-03-23T07:42:40+00:00"
  4147. },
  4148. {
  4149. "name": "league/uri-interfaces",
  4150. "version": "7.4.1",
  4151. "source": {
  4152. "type": "git",
  4153. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4154. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718"
  4155. },
  4156. "dist": {
  4157. "type": "zip",
  4158. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/8d43ef5c841032c87e2de015972c06f3865ef718",
  4159. "reference": "8d43ef5c841032c87e2de015972c06f3865ef718",
  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.4.1"
  4223. },
  4224. "funding": [
  4225. {
  4226. "url": "https://github.com/sponsors/nyamsprod",
  4227. "type": "github"
  4228. }
  4229. ],
  4230. "time": "2024-03-23T07:42:40+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.1",
  4378. "source": {
  4379. "type": "git",
  4380. "url": "https://github.com/matomo-org/device-detector.git",
  4381. "reference": "0d364e0dd6c177da3c24cd4049178026324fd7ac"
  4382. },
  4383. "dist": {
  4384. "type": "zip",
  4385. "url": "https://api.github.com/repos/matomo-org/device-detector/zipball/0d364e0dd6c177da3c24cd4049178026324fd7ac",
  4386. "reference": "0d364e0dd6c177da3c24cd4049178026324fd7ac",
  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-09-24T13:50:04+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.2",
  5069. "source": {
  5070. "type": "git",
  5071. "url": "https://github.com/openspout/openspout.git",
  5072. "reference": "d6dd654b5db502f28c5773edfa785b516745a142"
  5073. },
  5074. "dist": {
  5075. "type": "zip",
  5076. "url": "https://api.github.com/repos/openspout/openspout/zipball/d6dd654b5db502f28c5773edfa785b516745a142",
  5077. "reference": "d6dd654b5db502f28c5773edfa785b516745a142",
  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.4.4"
  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.2"
  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-06T06:17:37+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.42",
  5354. "source": {
  5355. "type": "git",
  5356. "url": "https://github.com/phpseclib/phpseclib.git",
  5357. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98"
  5358. },
  5359. "dist": {
  5360. "type": "zip",
  5361. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  5362. "reference": "db92f1b1987b12b13f248fe76c3a52cadb67bb98",
  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.42"
  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-09-16T03:06:04+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.6",
  5925. "source": {
  5926. "type": "git",
  5927. "url": "https://github.com/bobthecow/psysh.git",
  5928. "reference": "3b5ea0efaa791cd1c65ecc493aec3e2aa55ff57c"
  5929. },
  5930. "dist": {
  5931. "type": "zip",
  5932. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/3b5ea0efaa791cd1c65ecc493aec3e2aa55ff57c",
  5933. "reference": "3b5ea0efaa791cd1c65ecc493aec3e2aa55ff57c",
  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.6"
  5998. },
  5999. "time": "2024-12-07T20:08:52+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.1",
  6307. "source": {
  6308. "type": "git",
  6309. "url": "https://github.com/spatie/color.git",
  6310. "reference": "4c540ffbef68a3df3d209718ae06deaab081e708"
  6311. },
  6312. "dist": {
  6313. "type": "zip",
  6314. "url": "https://api.github.com/repos/spatie/color/zipball/4c540ffbef68a3df3d209718ae06deaab081e708",
  6315. "reference": "4c540ffbef68a3df3d209718ae06deaab081e708",
  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.1"
  6354. },
  6355. "funding": [
  6356. {
  6357. "url": "https://github.com/spatie",
  6358. "type": "github"
  6359. }
  6360. ],
  6361. "time": "2024-11-18T15:00:47+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.16.6",
  6425. "source": {
  6426. "type": "git",
  6427. "url": "https://github.com/spatie/laravel-package-tools.git",
  6428. "reference": "1f26942dc1e5c49eacfced34fdbc29ed234bd7b3"
  6429. },
  6430. "dist": {
  6431. "type": "zip",
  6432. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/1f26942dc1e5c49eacfced34fdbc29ed234bd7b3",
  6433. "reference": "1f26942dc1e5c49eacfced34fdbc29ed234bd7b3",
  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",
  6443. "pestphp/pest": "^1.22",
  6444. "phpunit/phpunit": "^9.5.24",
  6445. "spatie/pest-plugin-test-time": "^1.1"
  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.16.6"
  6473. },
  6474. "funding": [
  6475. {
  6476. "url": "https://github.com/spatie",
  6477. "type": "github"
  6478. }
  6479. ],
  6480. "time": "2024-11-18T15:02:02+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.0",
  6668. "source": {
  6669. "type": "git",
  6670. "url": "https://github.com/symfony/console.git",
  6671. "reference": "23c8aae6d764e2bae02d2a99f7532a7f6ed619cf"
  6672. },
  6673. "dist": {
  6674. "type": "zip",
  6675. "url": "https://api.github.com/repos/symfony/console/zipball/23c8aae6d764e2bae02d2a99f7532a7f6ed619cf",
  6676. "reference": "23c8aae6d764e2bae02d2a99f7532a7f6ed619cf",
  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.0"
  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-11-06T14:24:19+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.0",
  6893. "source": {
  6894. "type": "git",
  6895. "url": "https://github.com/symfony/error-handler.git",
  6896. "reference": "672b3dd1ef8b87119b446d67c58c106c43f965fe"
  6897. },
  6898. "dist": {
  6899. "type": "zip",
  6900. "url": "https://api.github.com/repos/symfony/error-handler/zipball/672b3dd1ef8b87119b446d67c58c106c43f965fe",
  6901. "reference": "672b3dd1ef8b87119b446d67c58c106c43f965fe",
  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.0"
  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-11-05T15:35:02+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.0",
  7335. "source": {
  7336. "type": "git",
  7337. "url": "https://github.com/symfony/http-kernel.git",
  7338. "reference": "6b4722a25e0aed1ccb4914b9bcbd493cc4676b4d"
  7339. },
  7340. "dist": {
  7341. "type": "zip",
  7342. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6b4722a25e0aed1ccb4914b9bcbd493cc4676b4d",
  7343. "reference": "6b4722a25e0aed1ccb4914b9bcbd493cc4676b4d",
  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.0"
  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-11-29T08:42:40+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.0",
  7612. "source": {
  7613. "type": "git",
  7614. "url": "https://github.com/symfony/mime.git",
  7615. "reference": "cc84a4b81f62158c3846ac7ff10f696aae2b524d"
  7616. },
  7617. "dist": {
  7618. "type": "zip",
  7619. "url": "https://api.github.com/repos/symfony/mime/zipball/cc84a4b81f62158c3846ac7ff10f696aae2b524d",
  7620. "reference": "cc84a4b81f62158c3846ac7ff10f696aae2b524d",
  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.0"
  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-11-23T09:19:39+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. "name": "symfony/polyfill",
  7720. "url": "https://github.com/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. "name": "symfony/polyfill",
  7796. "url": "https://github.com/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. "name": "symfony/polyfill",
  7875. "url": "https://github.com/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. "name": "symfony/polyfill",
  7957. "url": "https://github.com/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. "name": "symfony/polyfill",
  8041. "url": "https://github.com/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. "name": "symfony/polyfill",
  8115. "url": "https://github.com/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. "name": "symfony/polyfill",
  8195. "url": "https://github.com/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. "name": "symfony/polyfill",
  8277. "url": "https://github.com/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.6.1",
  9245. "source": {
  9246. "type": "git",
  9247. "url": "https://github.com/paratestphp/paratest.git",
  9248. "reference": "9ac8eda68f17acda4dad4aa02ecdcc327d7e6675"
  9249. },
  9250. "dist": {
  9251. "type": "zip",
  9252. "url": "https://api.github.com/repos/paratestphp/paratest/zipball/9ac8eda68f17acda4dad4aa02ecdcc327d7e6675",
  9253. "reference": "9ac8eda68f17acda4dad4aa02ecdcc327d7e6675",
  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.7",
  9265. "phpunit/php-file-iterator": "^5.1.0",
  9266. "phpunit/php-timer": "^7.0.1",
  9267. "phpunit/phpunit": "^11.4.4",
  9268. "sebastian/environment": "^7.2.0",
  9269. "symfony/console": "^6.4.14 || ^7.1.7",
  9270. "symfony/process": "^6.4.14 || ^7.1.7"
  9271. },
  9272. "require-dev": {
  9273. "doctrine/coding-standard": "^12.0.0",
  9274. "ext-pcov": "*",
  9275. "ext-posix": "*",
  9276. "phpstan/phpstan": "^2",
  9277. "phpstan/phpstan-deprecation-rules": "^2",
  9278. "phpstan/phpstan-phpunit": "^2",
  9279. "phpstan/phpstan-strict-rules": "^2",
  9280. "squizlabs/php_codesniffer": "^3.11.1",
  9281. "symfony/filesystem": "^6.4.13 || ^7.1.6"
  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.6.1"
  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-05T10:55:39+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.6.0",
  10012. "source": {
  10013. "type": "git",
  10014. "url": "https://github.com/pestphp/pest.git",
  10015. "reference": "918a8fc16996849937e281482bd34f236881ce96"
  10016. },
  10017. "dist": {
  10018. "type": "zip",
  10019. "url": "https://api.github.com/repos/pestphp/pest/zipball/918a8fc16996849937e281482bd34f236881ce96",
  10020. "reference": "918a8fc16996849937e281482bd34f236881ce96",
  10021. "shasum": ""
  10022. },
  10023. "require": {
  10024. "brianium/paratest": "^7.6.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.4.4"
  10032. },
  10033. "conflict": {
  10034. "filp/whoops": "<2.16.0",
  10035. "phpunit/phpunit": ">11.4.4",
  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.1.8"
  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.6.0"
  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-01T22:46:00+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": "phpstan/phpstan",
  10741. "version": "1.12.12",
  10742. "source": {
  10743. "type": "git",
  10744. "url": "https://github.com/phpstan/phpstan.git",
  10745. "reference": "b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0"
  10746. },
  10747. "dist": {
  10748. "type": "zip",
  10749. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0",
  10750. "reference": "b5ae1b88f471d3fd4ba1aa0046234b5ca3776dd0",
  10751. "shasum": ""
  10752. },
  10753. "require": {
  10754. "php": "^7.2|^8.0"
  10755. },
  10756. "conflict": {
  10757. "phpstan/phpstan-shim": "*"
  10758. },
  10759. "bin": [
  10760. "phpstan",
  10761. "phpstan.phar"
  10762. ],
  10763. "type": "library",
  10764. "autoload": {
  10765. "files": [
  10766. "bootstrap.php"
  10767. ]
  10768. },
  10769. "notification-url": "https://packagist.org/downloads/",
  10770. "license": [
  10771. "MIT"
  10772. ],
  10773. "description": "PHPStan - PHP Static Analysis Tool",
  10774. "keywords": [
  10775. "dev",
  10776. "static analysis"
  10777. ],
  10778. "support": {
  10779. "docs": "https://phpstan.org/user-guide/getting-started",
  10780. "forum": "https://github.com/phpstan/phpstan/discussions",
  10781. "issues": "https://github.com/phpstan/phpstan/issues",
  10782. "security": "https://github.com/phpstan/phpstan/security/policy",
  10783. "source": "https://github.com/phpstan/phpstan-src"
  10784. },
  10785. "funding": [
  10786. {
  10787. "url": "https://github.com/ondrejmirtes",
  10788. "type": "github"
  10789. },
  10790. {
  10791. "url": "https://github.com/phpstan",
  10792. "type": "github"
  10793. }
  10794. ],
  10795. "time": "2024-11-28T22:13:23+00:00"
  10796. },
  10797. {
  10798. "name": "phpunit/php-code-coverage",
  10799. "version": "11.0.7",
  10800. "source": {
  10801. "type": "git",
  10802. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  10803. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca"
  10804. },
  10805. "dist": {
  10806. "type": "zip",
  10807. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  10808. "reference": "f7f08030e8811582cc459871d28d6f5a1a4d35ca",
  10809. "shasum": ""
  10810. },
  10811. "require": {
  10812. "ext-dom": "*",
  10813. "ext-libxml": "*",
  10814. "ext-xmlwriter": "*",
  10815. "nikic/php-parser": "^5.3.1",
  10816. "php": ">=8.2",
  10817. "phpunit/php-file-iterator": "^5.1.0",
  10818. "phpunit/php-text-template": "^4.0.1",
  10819. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  10820. "sebastian/complexity": "^4.0.1",
  10821. "sebastian/environment": "^7.2.0",
  10822. "sebastian/lines-of-code": "^3.0.1",
  10823. "sebastian/version": "^5.0.2",
  10824. "theseer/tokenizer": "^1.2.3"
  10825. },
  10826. "require-dev": {
  10827. "phpunit/phpunit": "^11.4.1"
  10828. },
  10829. "suggest": {
  10830. "ext-pcov": "PHP extension that provides line coverage",
  10831. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  10832. },
  10833. "type": "library",
  10834. "extra": {
  10835. "branch-alias": {
  10836. "dev-main": "11.0.x-dev"
  10837. }
  10838. },
  10839. "autoload": {
  10840. "classmap": [
  10841. "src/"
  10842. ]
  10843. },
  10844. "notification-url": "https://packagist.org/downloads/",
  10845. "license": [
  10846. "BSD-3-Clause"
  10847. ],
  10848. "authors": [
  10849. {
  10850. "name": "Sebastian Bergmann",
  10851. "email": "sebastian@phpunit.de",
  10852. "role": "lead"
  10853. }
  10854. ],
  10855. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  10856. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  10857. "keywords": [
  10858. "coverage",
  10859. "testing",
  10860. "xunit"
  10861. ],
  10862. "support": {
  10863. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  10864. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  10865. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.7"
  10866. },
  10867. "funding": [
  10868. {
  10869. "url": "https://github.com/sebastianbergmann",
  10870. "type": "github"
  10871. }
  10872. ],
  10873. "time": "2024-10-09T06:21:38+00:00"
  10874. },
  10875. {
  10876. "name": "phpunit/php-file-iterator",
  10877. "version": "5.1.0",
  10878. "source": {
  10879. "type": "git",
  10880. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  10881. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  10882. },
  10883. "dist": {
  10884. "type": "zip",
  10885. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  10886. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  10887. "shasum": ""
  10888. },
  10889. "require": {
  10890. "php": ">=8.2"
  10891. },
  10892. "require-dev": {
  10893. "phpunit/phpunit": "^11.0"
  10894. },
  10895. "type": "library",
  10896. "extra": {
  10897. "branch-alias": {
  10898. "dev-main": "5.0-dev"
  10899. }
  10900. },
  10901. "autoload": {
  10902. "classmap": [
  10903. "src/"
  10904. ]
  10905. },
  10906. "notification-url": "https://packagist.org/downloads/",
  10907. "license": [
  10908. "BSD-3-Clause"
  10909. ],
  10910. "authors": [
  10911. {
  10912. "name": "Sebastian Bergmann",
  10913. "email": "sebastian@phpunit.de",
  10914. "role": "lead"
  10915. }
  10916. ],
  10917. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  10918. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  10919. "keywords": [
  10920. "filesystem",
  10921. "iterator"
  10922. ],
  10923. "support": {
  10924. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  10925. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  10926. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  10927. },
  10928. "funding": [
  10929. {
  10930. "url": "https://github.com/sebastianbergmann",
  10931. "type": "github"
  10932. }
  10933. ],
  10934. "time": "2024-08-27T05:02:59+00:00"
  10935. },
  10936. {
  10937. "name": "phpunit/php-invoker",
  10938. "version": "5.0.1",
  10939. "source": {
  10940. "type": "git",
  10941. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  10942. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  10943. },
  10944. "dist": {
  10945. "type": "zip",
  10946. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  10947. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  10948. "shasum": ""
  10949. },
  10950. "require": {
  10951. "php": ">=8.2"
  10952. },
  10953. "require-dev": {
  10954. "ext-pcntl": "*",
  10955. "phpunit/phpunit": "^11.0"
  10956. },
  10957. "suggest": {
  10958. "ext-pcntl": "*"
  10959. },
  10960. "type": "library",
  10961. "extra": {
  10962. "branch-alias": {
  10963. "dev-main": "5.0-dev"
  10964. }
  10965. },
  10966. "autoload": {
  10967. "classmap": [
  10968. "src/"
  10969. ]
  10970. },
  10971. "notification-url": "https://packagist.org/downloads/",
  10972. "license": [
  10973. "BSD-3-Clause"
  10974. ],
  10975. "authors": [
  10976. {
  10977. "name": "Sebastian Bergmann",
  10978. "email": "sebastian@phpunit.de",
  10979. "role": "lead"
  10980. }
  10981. ],
  10982. "description": "Invoke callables with a timeout",
  10983. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  10984. "keywords": [
  10985. "process"
  10986. ],
  10987. "support": {
  10988. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  10989. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  10990. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  10991. },
  10992. "funding": [
  10993. {
  10994. "url": "https://github.com/sebastianbergmann",
  10995. "type": "github"
  10996. }
  10997. ],
  10998. "time": "2024-07-03T05:07:44+00:00"
  10999. },
  11000. {
  11001. "name": "phpunit/php-text-template",
  11002. "version": "4.0.1",
  11003. "source": {
  11004. "type": "git",
  11005. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11006. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  11007. },
  11008. "dist": {
  11009. "type": "zip",
  11010. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11011. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11012. "shasum": ""
  11013. },
  11014. "require": {
  11015. "php": ">=8.2"
  11016. },
  11017. "require-dev": {
  11018. "phpunit/phpunit": "^11.0"
  11019. },
  11020. "type": "library",
  11021. "extra": {
  11022. "branch-alias": {
  11023. "dev-main": "4.0-dev"
  11024. }
  11025. },
  11026. "autoload": {
  11027. "classmap": [
  11028. "src/"
  11029. ]
  11030. },
  11031. "notification-url": "https://packagist.org/downloads/",
  11032. "license": [
  11033. "BSD-3-Clause"
  11034. ],
  11035. "authors": [
  11036. {
  11037. "name": "Sebastian Bergmann",
  11038. "email": "sebastian@phpunit.de",
  11039. "role": "lead"
  11040. }
  11041. ],
  11042. "description": "Simple template engine.",
  11043. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11044. "keywords": [
  11045. "template"
  11046. ],
  11047. "support": {
  11048. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11049. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  11050. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  11051. },
  11052. "funding": [
  11053. {
  11054. "url": "https://github.com/sebastianbergmann",
  11055. "type": "github"
  11056. }
  11057. ],
  11058. "time": "2024-07-03T05:08:43+00:00"
  11059. },
  11060. {
  11061. "name": "phpunit/php-timer",
  11062. "version": "7.0.1",
  11063. "source": {
  11064. "type": "git",
  11065. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11066. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  11067. },
  11068. "dist": {
  11069. "type": "zip",
  11070. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11071. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11072. "shasum": ""
  11073. },
  11074. "require": {
  11075. "php": ">=8.2"
  11076. },
  11077. "require-dev": {
  11078. "phpunit/phpunit": "^11.0"
  11079. },
  11080. "type": "library",
  11081. "extra": {
  11082. "branch-alias": {
  11083. "dev-main": "7.0-dev"
  11084. }
  11085. },
  11086. "autoload": {
  11087. "classmap": [
  11088. "src/"
  11089. ]
  11090. },
  11091. "notification-url": "https://packagist.org/downloads/",
  11092. "license": [
  11093. "BSD-3-Clause"
  11094. ],
  11095. "authors": [
  11096. {
  11097. "name": "Sebastian Bergmann",
  11098. "email": "sebastian@phpunit.de",
  11099. "role": "lead"
  11100. }
  11101. ],
  11102. "description": "Utility class for timing",
  11103. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11104. "keywords": [
  11105. "timer"
  11106. ],
  11107. "support": {
  11108. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11109. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  11110. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  11111. },
  11112. "funding": [
  11113. {
  11114. "url": "https://github.com/sebastianbergmann",
  11115. "type": "github"
  11116. }
  11117. ],
  11118. "time": "2024-07-03T05:09:35+00:00"
  11119. },
  11120. {
  11121. "name": "phpunit/phpunit",
  11122. "version": "11.4.4",
  11123. "source": {
  11124. "type": "git",
  11125. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11126. "reference": "f9ba7bd3c9f3ff54ec379d7a1c2e3f13fe0bbde4"
  11127. },
  11128. "dist": {
  11129. "type": "zip",
  11130. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f9ba7bd3c9f3ff54ec379d7a1c2e3f13fe0bbde4",
  11131. "reference": "f9ba7bd3c9f3ff54ec379d7a1c2e3f13fe0bbde4",
  11132. "shasum": ""
  11133. },
  11134. "require": {
  11135. "ext-dom": "*",
  11136. "ext-json": "*",
  11137. "ext-libxml": "*",
  11138. "ext-mbstring": "*",
  11139. "ext-xml": "*",
  11140. "ext-xmlwriter": "*",
  11141. "myclabs/deep-copy": "^1.12.1",
  11142. "phar-io/manifest": "^2.0.4",
  11143. "phar-io/version": "^3.2.1",
  11144. "php": ">=8.2",
  11145. "phpunit/php-code-coverage": "^11.0.7",
  11146. "phpunit/php-file-iterator": "^5.1.0",
  11147. "phpunit/php-invoker": "^5.0.1",
  11148. "phpunit/php-text-template": "^4.0.1",
  11149. "phpunit/php-timer": "^7.0.1",
  11150. "sebastian/cli-parser": "^3.0.2",
  11151. "sebastian/code-unit": "^3.0.1",
  11152. "sebastian/comparator": "^6.2.1",
  11153. "sebastian/diff": "^6.0.2",
  11154. "sebastian/environment": "^7.2.0",
  11155. "sebastian/exporter": "^6.1.3",
  11156. "sebastian/global-state": "^7.0.2",
  11157. "sebastian/object-enumerator": "^6.0.1",
  11158. "sebastian/type": "^5.1.0",
  11159. "sebastian/version": "^5.0.2"
  11160. },
  11161. "suggest": {
  11162. "ext-soap": "To be able to generate mocks based on WSDL files"
  11163. },
  11164. "bin": [
  11165. "phpunit"
  11166. ],
  11167. "type": "library",
  11168. "extra": {
  11169. "branch-alias": {
  11170. "dev-main": "11.4-dev"
  11171. }
  11172. },
  11173. "autoload": {
  11174. "files": [
  11175. "src/Framework/Assert/Functions.php"
  11176. ],
  11177. "classmap": [
  11178. "src/"
  11179. ]
  11180. },
  11181. "notification-url": "https://packagist.org/downloads/",
  11182. "license": [
  11183. "BSD-3-Clause"
  11184. ],
  11185. "authors": [
  11186. {
  11187. "name": "Sebastian Bergmann",
  11188. "email": "sebastian@phpunit.de",
  11189. "role": "lead"
  11190. }
  11191. ],
  11192. "description": "The PHP Unit Testing framework.",
  11193. "homepage": "https://phpunit.de/",
  11194. "keywords": [
  11195. "phpunit",
  11196. "testing",
  11197. "xunit"
  11198. ],
  11199. "support": {
  11200. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11201. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11202. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.4.4"
  11203. },
  11204. "funding": [
  11205. {
  11206. "url": "https://phpunit.de/sponsors.html",
  11207. "type": "custom"
  11208. },
  11209. {
  11210. "url": "https://github.com/sebastianbergmann",
  11211. "type": "github"
  11212. },
  11213. {
  11214. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11215. "type": "tidelift"
  11216. }
  11217. ],
  11218. "time": "2024-11-27T10:44:52+00:00"
  11219. },
  11220. {
  11221. "name": "pimple/pimple",
  11222. "version": "v3.5.0",
  11223. "source": {
  11224. "type": "git",
  11225. "url": "https://github.com/silexphp/Pimple.git",
  11226. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed"
  11227. },
  11228. "dist": {
  11229. "type": "zip",
  11230. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  11231. "reference": "a94b3a4db7fb774b3d78dad2315ddc07629e1bed",
  11232. "shasum": ""
  11233. },
  11234. "require": {
  11235. "php": ">=7.2.5",
  11236. "psr/container": "^1.1 || ^2.0"
  11237. },
  11238. "require-dev": {
  11239. "symfony/phpunit-bridge": "^5.4@dev"
  11240. },
  11241. "type": "library",
  11242. "extra": {
  11243. "branch-alias": {
  11244. "dev-master": "3.4.x-dev"
  11245. }
  11246. },
  11247. "autoload": {
  11248. "psr-0": {
  11249. "Pimple": "src/"
  11250. }
  11251. },
  11252. "notification-url": "https://packagist.org/downloads/",
  11253. "license": [
  11254. "MIT"
  11255. ],
  11256. "authors": [
  11257. {
  11258. "name": "Fabien Potencier",
  11259. "email": "fabien@symfony.com"
  11260. }
  11261. ],
  11262. "description": "Pimple, a simple Dependency Injection Container",
  11263. "homepage": "https://pimple.symfony.com",
  11264. "keywords": [
  11265. "container",
  11266. "dependency injection"
  11267. ],
  11268. "support": {
  11269. "source": "https://github.com/silexphp/Pimple/tree/v3.5.0"
  11270. },
  11271. "time": "2021-10-28T11:13:42+00:00"
  11272. },
  11273. {
  11274. "name": "rector/rector",
  11275. "version": "1.2.10",
  11276. "source": {
  11277. "type": "git",
  11278. "url": "https://github.com/rectorphp/rector.git",
  11279. "reference": "40f9cf38c05296bd32f444121336a521a293fa61"
  11280. },
  11281. "dist": {
  11282. "type": "zip",
  11283. "url": "https://api.github.com/repos/rectorphp/rector/zipball/40f9cf38c05296bd32f444121336a521a293fa61",
  11284. "reference": "40f9cf38c05296bd32f444121336a521a293fa61",
  11285. "shasum": ""
  11286. },
  11287. "require": {
  11288. "php": "^7.2|^8.0",
  11289. "phpstan/phpstan": "^1.12.5"
  11290. },
  11291. "conflict": {
  11292. "rector/rector-doctrine": "*",
  11293. "rector/rector-downgrade-php": "*",
  11294. "rector/rector-phpunit": "*",
  11295. "rector/rector-symfony": "*"
  11296. },
  11297. "suggest": {
  11298. "ext-dom": "To manipulate phpunit.xml via the custom-rule command"
  11299. },
  11300. "bin": [
  11301. "bin/rector"
  11302. ],
  11303. "type": "library",
  11304. "autoload": {
  11305. "files": [
  11306. "bootstrap.php"
  11307. ]
  11308. },
  11309. "notification-url": "https://packagist.org/downloads/",
  11310. "license": [
  11311. "MIT"
  11312. ],
  11313. "description": "Instant Upgrade and Automated Refactoring of any PHP code",
  11314. "keywords": [
  11315. "automation",
  11316. "dev",
  11317. "migration",
  11318. "refactoring"
  11319. ],
  11320. "support": {
  11321. "issues": "https://github.com/rectorphp/rector/issues",
  11322. "source": "https://github.com/rectorphp/rector/tree/1.2.10"
  11323. },
  11324. "funding": [
  11325. {
  11326. "url": "https://github.com/tomasvotruba",
  11327. "type": "github"
  11328. }
  11329. ],
  11330. "time": "2024-11-08T13:59:10+00:00"
  11331. },
  11332. {
  11333. "name": "sebastian/cli-parser",
  11334. "version": "3.0.2",
  11335. "source": {
  11336. "type": "git",
  11337. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11338. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  11339. },
  11340. "dist": {
  11341. "type": "zip",
  11342. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11343. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11344. "shasum": ""
  11345. },
  11346. "require": {
  11347. "php": ">=8.2"
  11348. },
  11349. "require-dev": {
  11350. "phpunit/phpunit": "^11.0"
  11351. },
  11352. "type": "library",
  11353. "extra": {
  11354. "branch-alias": {
  11355. "dev-main": "3.0-dev"
  11356. }
  11357. },
  11358. "autoload": {
  11359. "classmap": [
  11360. "src/"
  11361. ]
  11362. },
  11363. "notification-url": "https://packagist.org/downloads/",
  11364. "license": [
  11365. "BSD-3-Clause"
  11366. ],
  11367. "authors": [
  11368. {
  11369. "name": "Sebastian Bergmann",
  11370. "email": "sebastian@phpunit.de",
  11371. "role": "lead"
  11372. }
  11373. ],
  11374. "description": "Library for parsing CLI options",
  11375. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11376. "support": {
  11377. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11378. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11379. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  11380. },
  11381. "funding": [
  11382. {
  11383. "url": "https://github.com/sebastianbergmann",
  11384. "type": "github"
  11385. }
  11386. ],
  11387. "time": "2024-07-03T04:41:36+00:00"
  11388. },
  11389. {
  11390. "name": "sebastian/code-unit",
  11391. "version": "3.0.1",
  11392. "source": {
  11393. "type": "git",
  11394. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11395. "reference": "6bb7d09d6623567178cf54126afa9c2310114268"
  11396. },
  11397. "dist": {
  11398. "type": "zip",
  11399. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/6bb7d09d6623567178cf54126afa9c2310114268",
  11400. "reference": "6bb7d09d6623567178cf54126afa9c2310114268",
  11401. "shasum": ""
  11402. },
  11403. "require": {
  11404. "php": ">=8.2"
  11405. },
  11406. "require-dev": {
  11407. "phpunit/phpunit": "^11.0"
  11408. },
  11409. "type": "library",
  11410. "extra": {
  11411. "branch-alias": {
  11412. "dev-main": "3.0-dev"
  11413. }
  11414. },
  11415. "autoload": {
  11416. "classmap": [
  11417. "src/"
  11418. ]
  11419. },
  11420. "notification-url": "https://packagist.org/downloads/",
  11421. "license": [
  11422. "BSD-3-Clause"
  11423. ],
  11424. "authors": [
  11425. {
  11426. "name": "Sebastian Bergmann",
  11427. "email": "sebastian@phpunit.de",
  11428. "role": "lead"
  11429. }
  11430. ],
  11431. "description": "Collection of value objects that represent the PHP code units",
  11432. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11433. "support": {
  11434. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11435. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  11436. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.1"
  11437. },
  11438. "funding": [
  11439. {
  11440. "url": "https://github.com/sebastianbergmann",
  11441. "type": "github"
  11442. }
  11443. ],
  11444. "time": "2024-07-03T04:44:28+00:00"
  11445. },
  11446. {
  11447. "name": "sebastian/code-unit-reverse-lookup",
  11448. "version": "4.0.1",
  11449. "source": {
  11450. "type": "git",
  11451. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11452. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  11453. },
  11454. "dist": {
  11455. "type": "zip",
  11456. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  11457. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  11458. "shasum": ""
  11459. },
  11460. "require": {
  11461. "php": ">=8.2"
  11462. },
  11463. "require-dev": {
  11464. "phpunit/phpunit": "^11.0"
  11465. },
  11466. "type": "library",
  11467. "extra": {
  11468. "branch-alias": {
  11469. "dev-main": "4.0-dev"
  11470. }
  11471. },
  11472. "autoload": {
  11473. "classmap": [
  11474. "src/"
  11475. ]
  11476. },
  11477. "notification-url": "https://packagist.org/downloads/",
  11478. "license": [
  11479. "BSD-3-Clause"
  11480. ],
  11481. "authors": [
  11482. {
  11483. "name": "Sebastian Bergmann",
  11484. "email": "sebastian@phpunit.de"
  11485. }
  11486. ],
  11487. "description": "Looks up which function or method a line of code belongs to",
  11488. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11489. "support": {
  11490. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11491. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  11492. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  11493. },
  11494. "funding": [
  11495. {
  11496. "url": "https://github.com/sebastianbergmann",
  11497. "type": "github"
  11498. }
  11499. ],
  11500. "time": "2024-07-03T04:45:54+00:00"
  11501. },
  11502. {
  11503. "name": "sebastian/comparator",
  11504. "version": "6.2.1",
  11505. "source": {
  11506. "type": "git",
  11507. "url": "https://github.com/sebastianbergmann/comparator.git",
  11508. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739"
  11509. },
  11510. "dist": {
  11511. "type": "zip",
  11512. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/43d129d6a0f81c78bee378b46688293eb7ea3739",
  11513. "reference": "43d129d6a0f81c78bee378b46688293eb7ea3739",
  11514. "shasum": ""
  11515. },
  11516. "require": {
  11517. "ext-dom": "*",
  11518. "ext-mbstring": "*",
  11519. "php": ">=8.2",
  11520. "sebastian/diff": "^6.0",
  11521. "sebastian/exporter": "^6.0"
  11522. },
  11523. "require-dev": {
  11524. "phpunit/phpunit": "^11.4"
  11525. },
  11526. "type": "library",
  11527. "extra": {
  11528. "branch-alias": {
  11529. "dev-main": "6.2-dev"
  11530. }
  11531. },
  11532. "autoload": {
  11533. "classmap": [
  11534. "src/"
  11535. ]
  11536. },
  11537. "notification-url": "https://packagist.org/downloads/",
  11538. "license": [
  11539. "BSD-3-Clause"
  11540. ],
  11541. "authors": [
  11542. {
  11543. "name": "Sebastian Bergmann",
  11544. "email": "sebastian@phpunit.de"
  11545. },
  11546. {
  11547. "name": "Jeff Welch",
  11548. "email": "whatthejeff@gmail.com"
  11549. },
  11550. {
  11551. "name": "Volker Dusch",
  11552. "email": "github@wallbash.com"
  11553. },
  11554. {
  11555. "name": "Bernhard Schussek",
  11556. "email": "bschussek@2bepublished.at"
  11557. }
  11558. ],
  11559. "description": "Provides the functionality to compare PHP values for equality",
  11560. "homepage": "https://github.com/sebastianbergmann/comparator",
  11561. "keywords": [
  11562. "comparator",
  11563. "compare",
  11564. "equality"
  11565. ],
  11566. "support": {
  11567. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11568. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11569. "source": "https://github.com/sebastianbergmann/comparator/tree/6.2.1"
  11570. },
  11571. "funding": [
  11572. {
  11573. "url": "https://github.com/sebastianbergmann",
  11574. "type": "github"
  11575. }
  11576. ],
  11577. "time": "2024-10-31T05:30:08+00:00"
  11578. },
  11579. {
  11580. "name": "sebastian/complexity",
  11581. "version": "4.0.1",
  11582. "source": {
  11583. "type": "git",
  11584. "url": "https://github.com/sebastianbergmann/complexity.git",
  11585. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  11586. },
  11587. "dist": {
  11588. "type": "zip",
  11589. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  11590. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  11591. "shasum": ""
  11592. },
  11593. "require": {
  11594. "nikic/php-parser": "^5.0",
  11595. "php": ">=8.2"
  11596. },
  11597. "require-dev": {
  11598. "phpunit/phpunit": "^11.0"
  11599. },
  11600. "type": "library",
  11601. "extra": {
  11602. "branch-alias": {
  11603. "dev-main": "4.0-dev"
  11604. }
  11605. },
  11606. "autoload": {
  11607. "classmap": [
  11608. "src/"
  11609. ]
  11610. },
  11611. "notification-url": "https://packagist.org/downloads/",
  11612. "license": [
  11613. "BSD-3-Clause"
  11614. ],
  11615. "authors": [
  11616. {
  11617. "name": "Sebastian Bergmann",
  11618. "email": "sebastian@phpunit.de",
  11619. "role": "lead"
  11620. }
  11621. ],
  11622. "description": "Library for calculating the complexity of PHP code units",
  11623. "homepage": "https://github.com/sebastianbergmann/complexity",
  11624. "support": {
  11625. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11626. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11627. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  11628. },
  11629. "funding": [
  11630. {
  11631. "url": "https://github.com/sebastianbergmann",
  11632. "type": "github"
  11633. }
  11634. ],
  11635. "time": "2024-07-03T04:49:50+00:00"
  11636. },
  11637. {
  11638. "name": "sebastian/diff",
  11639. "version": "6.0.2",
  11640. "source": {
  11641. "type": "git",
  11642. "url": "https://github.com/sebastianbergmann/diff.git",
  11643. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  11644. },
  11645. "dist": {
  11646. "type": "zip",
  11647. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  11648. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  11649. "shasum": ""
  11650. },
  11651. "require": {
  11652. "php": ">=8.2"
  11653. },
  11654. "require-dev": {
  11655. "phpunit/phpunit": "^11.0",
  11656. "symfony/process": "^4.2 || ^5"
  11657. },
  11658. "type": "library",
  11659. "extra": {
  11660. "branch-alias": {
  11661. "dev-main": "6.0-dev"
  11662. }
  11663. },
  11664. "autoload": {
  11665. "classmap": [
  11666. "src/"
  11667. ]
  11668. },
  11669. "notification-url": "https://packagist.org/downloads/",
  11670. "license": [
  11671. "BSD-3-Clause"
  11672. ],
  11673. "authors": [
  11674. {
  11675. "name": "Sebastian Bergmann",
  11676. "email": "sebastian@phpunit.de"
  11677. },
  11678. {
  11679. "name": "Kore Nordmann",
  11680. "email": "mail@kore-nordmann.de"
  11681. }
  11682. ],
  11683. "description": "Diff implementation",
  11684. "homepage": "https://github.com/sebastianbergmann/diff",
  11685. "keywords": [
  11686. "diff",
  11687. "udiff",
  11688. "unidiff",
  11689. "unified diff"
  11690. ],
  11691. "support": {
  11692. "issues": "https://github.com/sebastianbergmann/diff/issues",
  11693. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  11694. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  11695. },
  11696. "funding": [
  11697. {
  11698. "url": "https://github.com/sebastianbergmann",
  11699. "type": "github"
  11700. }
  11701. ],
  11702. "time": "2024-07-03T04:53:05+00:00"
  11703. },
  11704. {
  11705. "name": "sebastian/environment",
  11706. "version": "7.2.0",
  11707. "source": {
  11708. "type": "git",
  11709. "url": "https://github.com/sebastianbergmann/environment.git",
  11710. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  11711. },
  11712. "dist": {
  11713. "type": "zip",
  11714. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11715. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  11716. "shasum": ""
  11717. },
  11718. "require": {
  11719. "php": ">=8.2"
  11720. },
  11721. "require-dev": {
  11722. "phpunit/phpunit": "^11.0"
  11723. },
  11724. "suggest": {
  11725. "ext-posix": "*"
  11726. },
  11727. "type": "library",
  11728. "extra": {
  11729. "branch-alias": {
  11730. "dev-main": "7.2-dev"
  11731. }
  11732. },
  11733. "autoload": {
  11734. "classmap": [
  11735. "src/"
  11736. ]
  11737. },
  11738. "notification-url": "https://packagist.org/downloads/",
  11739. "license": [
  11740. "BSD-3-Clause"
  11741. ],
  11742. "authors": [
  11743. {
  11744. "name": "Sebastian Bergmann",
  11745. "email": "sebastian@phpunit.de"
  11746. }
  11747. ],
  11748. "description": "Provides functionality to handle HHVM/PHP environments",
  11749. "homepage": "https://github.com/sebastianbergmann/environment",
  11750. "keywords": [
  11751. "Xdebug",
  11752. "environment",
  11753. "hhvm"
  11754. ],
  11755. "support": {
  11756. "issues": "https://github.com/sebastianbergmann/environment/issues",
  11757. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  11758. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  11759. },
  11760. "funding": [
  11761. {
  11762. "url": "https://github.com/sebastianbergmann",
  11763. "type": "github"
  11764. }
  11765. ],
  11766. "time": "2024-07-03T04:54:44+00:00"
  11767. },
  11768. {
  11769. "name": "sebastian/exporter",
  11770. "version": "6.3.0",
  11771. "source": {
  11772. "type": "git",
  11773. "url": "https://github.com/sebastianbergmann/exporter.git",
  11774. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  11775. },
  11776. "dist": {
  11777. "type": "zip",
  11778. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11779. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  11780. "shasum": ""
  11781. },
  11782. "require": {
  11783. "ext-mbstring": "*",
  11784. "php": ">=8.2",
  11785. "sebastian/recursion-context": "^6.0"
  11786. },
  11787. "require-dev": {
  11788. "phpunit/phpunit": "^11.3"
  11789. },
  11790. "type": "library",
  11791. "extra": {
  11792. "branch-alias": {
  11793. "dev-main": "6.1-dev"
  11794. }
  11795. },
  11796. "autoload": {
  11797. "classmap": [
  11798. "src/"
  11799. ]
  11800. },
  11801. "notification-url": "https://packagist.org/downloads/",
  11802. "license": [
  11803. "BSD-3-Clause"
  11804. ],
  11805. "authors": [
  11806. {
  11807. "name": "Sebastian Bergmann",
  11808. "email": "sebastian@phpunit.de"
  11809. },
  11810. {
  11811. "name": "Jeff Welch",
  11812. "email": "whatthejeff@gmail.com"
  11813. },
  11814. {
  11815. "name": "Volker Dusch",
  11816. "email": "github@wallbash.com"
  11817. },
  11818. {
  11819. "name": "Adam Harvey",
  11820. "email": "aharvey@php.net"
  11821. },
  11822. {
  11823. "name": "Bernhard Schussek",
  11824. "email": "bschussek@gmail.com"
  11825. }
  11826. ],
  11827. "description": "Provides the functionality to export PHP variables for visualization",
  11828. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  11829. "keywords": [
  11830. "export",
  11831. "exporter"
  11832. ],
  11833. "support": {
  11834. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  11835. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  11836. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  11837. },
  11838. "funding": [
  11839. {
  11840. "url": "https://github.com/sebastianbergmann",
  11841. "type": "github"
  11842. }
  11843. ],
  11844. "time": "2024-12-05T09:17:50+00:00"
  11845. },
  11846. {
  11847. "name": "sebastian/global-state",
  11848. "version": "7.0.2",
  11849. "source": {
  11850. "type": "git",
  11851. "url": "https://github.com/sebastianbergmann/global-state.git",
  11852. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  11853. },
  11854. "dist": {
  11855. "type": "zip",
  11856. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  11857. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  11858. "shasum": ""
  11859. },
  11860. "require": {
  11861. "php": ">=8.2",
  11862. "sebastian/object-reflector": "^4.0",
  11863. "sebastian/recursion-context": "^6.0"
  11864. },
  11865. "require-dev": {
  11866. "ext-dom": "*",
  11867. "phpunit/phpunit": "^11.0"
  11868. },
  11869. "type": "library",
  11870. "extra": {
  11871. "branch-alias": {
  11872. "dev-main": "7.0-dev"
  11873. }
  11874. },
  11875. "autoload": {
  11876. "classmap": [
  11877. "src/"
  11878. ]
  11879. },
  11880. "notification-url": "https://packagist.org/downloads/",
  11881. "license": [
  11882. "BSD-3-Clause"
  11883. ],
  11884. "authors": [
  11885. {
  11886. "name": "Sebastian Bergmann",
  11887. "email": "sebastian@phpunit.de"
  11888. }
  11889. ],
  11890. "description": "Snapshotting of global state",
  11891. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  11892. "keywords": [
  11893. "global state"
  11894. ],
  11895. "support": {
  11896. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  11897. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  11898. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  11899. },
  11900. "funding": [
  11901. {
  11902. "url": "https://github.com/sebastianbergmann",
  11903. "type": "github"
  11904. }
  11905. ],
  11906. "time": "2024-07-03T04:57:36+00:00"
  11907. },
  11908. {
  11909. "name": "sebastian/lines-of-code",
  11910. "version": "3.0.1",
  11911. "source": {
  11912. "type": "git",
  11913. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  11914. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  11915. },
  11916. "dist": {
  11917. "type": "zip",
  11918. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11919. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  11920. "shasum": ""
  11921. },
  11922. "require": {
  11923. "nikic/php-parser": "^5.0",
  11924. "php": ">=8.2"
  11925. },
  11926. "require-dev": {
  11927. "phpunit/phpunit": "^11.0"
  11928. },
  11929. "type": "library",
  11930. "extra": {
  11931. "branch-alias": {
  11932. "dev-main": "3.0-dev"
  11933. }
  11934. },
  11935. "autoload": {
  11936. "classmap": [
  11937. "src/"
  11938. ]
  11939. },
  11940. "notification-url": "https://packagist.org/downloads/",
  11941. "license": [
  11942. "BSD-3-Clause"
  11943. ],
  11944. "authors": [
  11945. {
  11946. "name": "Sebastian Bergmann",
  11947. "email": "sebastian@phpunit.de",
  11948. "role": "lead"
  11949. }
  11950. ],
  11951. "description": "Library for counting the lines of code in PHP source code",
  11952. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  11953. "support": {
  11954. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  11955. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  11956. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  11957. },
  11958. "funding": [
  11959. {
  11960. "url": "https://github.com/sebastianbergmann",
  11961. "type": "github"
  11962. }
  11963. ],
  11964. "time": "2024-07-03T04:58:38+00:00"
  11965. },
  11966. {
  11967. "name": "sebastian/object-enumerator",
  11968. "version": "6.0.1",
  11969. "source": {
  11970. "type": "git",
  11971. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  11972. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  11973. },
  11974. "dist": {
  11975. "type": "zip",
  11976. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  11977. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  11978. "shasum": ""
  11979. },
  11980. "require": {
  11981. "php": ">=8.2",
  11982. "sebastian/object-reflector": "^4.0",
  11983. "sebastian/recursion-context": "^6.0"
  11984. },
  11985. "require-dev": {
  11986. "phpunit/phpunit": "^11.0"
  11987. },
  11988. "type": "library",
  11989. "extra": {
  11990. "branch-alias": {
  11991. "dev-main": "6.0-dev"
  11992. }
  11993. },
  11994. "autoload": {
  11995. "classmap": [
  11996. "src/"
  11997. ]
  11998. },
  11999. "notification-url": "https://packagist.org/downloads/",
  12000. "license": [
  12001. "BSD-3-Clause"
  12002. ],
  12003. "authors": [
  12004. {
  12005. "name": "Sebastian Bergmann",
  12006. "email": "sebastian@phpunit.de"
  12007. }
  12008. ],
  12009. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12010. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12011. "support": {
  12012. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12013. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  12014. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  12015. },
  12016. "funding": [
  12017. {
  12018. "url": "https://github.com/sebastianbergmann",
  12019. "type": "github"
  12020. }
  12021. ],
  12022. "time": "2024-07-03T05:00:13+00:00"
  12023. },
  12024. {
  12025. "name": "sebastian/object-reflector",
  12026. "version": "4.0.1",
  12027. "source": {
  12028. "type": "git",
  12029. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12030. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  12031. },
  12032. "dist": {
  12033. "type": "zip",
  12034. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12035. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12036. "shasum": ""
  12037. },
  12038. "require": {
  12039. "php": ">=8.2"
  12040. },
  12041. "require-dev": {
  12042. "phpunit/phpunit": "^11.0"
  12043. },
  12044. "type": "library",
  12045. "extra": {
  12046. "branch-alias": {
  12047. "dev-main": "4.0-dev"
  12048. }
  12049. },
  12050. "autoload": {
  12051. "classmap": [
  12052. "src/"
  12053. ]
  12054. },
  12055. "notification-url": "https://packagist.org/downloads/",
  12056. "license": [
  12057. "BSD-3-Clause"
  12058. ],
  12059. "authors": [
  12060. {
  12061. "name": "Sebastian Bergmann",
  12062. "email": "sebastian@phpunit.de"
  12063. }
  12064. ],
  12065. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12066. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12067. "support": {
  12068. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12069. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  12070. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  12071. },
  12072. "funding": [
  12073. {
  12074. "url": "https://github.com/sebastianbergmann",
  12075. "type": "github"
  12076. }
  12077. ],
  12078. "time": "2024-07-03T05:01:32+00:00"
  12079. },
  12080. {
  12081. "name": "sebastian/recursion-context",
  12082. "version": "6.0.2",
  12083. "source": {
  12084. "type": "git",
  12085. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12086. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  12087. },
  12088. "dist": {
  12089. "type": "zip",
  12090. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  12091. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  12092. "shasum": ""
  12093. },
  12094. "require": {
  12095. "php": ">=8.2"
  12096. },
  12097. "require-dev": {
  12098. "phpunit/phpunit": "^11.0"
  12099. },
  12100. "type": "library",
  12101. "extra": {
  12102. "branch-alias": {
  12103. "dev-main": "6.0-dev"
  12104. }
  12105. },
  12106. "autoload": {
  12107. "classmap": [
  12108. "src/"
  12109. ]
  12110. },
  12111. "notification-url": "https://packagist.org/downloads/",
  12112. "license": [
  12113. "BSD-3-Clause"
  12114. ],
  12115. "authors": [
  12116. {
  12117. "name": "Sebastian Bergmann",
  12118. "email": "sebastian@phpunit.de"
  12119. },
  12120. {
  12121. "name": "Jeff Welch",
  12122. "email": "whatthejeff@gmail.com"
  12123. },
  12124. {
  12125. "name": "Adam Harvey",
  12126. "email": "aharvey@php.net"
  12127. }
  12128. ],
  12129. "description": "Provides functionality to recursively process PHP variables",
  12130. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12131. "support": {
  12132. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12133. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  12134. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  12135. },
  12136. "funding": [
  12137. {
  12138. "url": "https://github.com/sebastianbergmann",
  12139. "type": "github"
  12140. }
  12141. ],
  12142. "time": "2024-07-03T05:10:34+00:00"
  12143. },
  12144. {
  12145. "name": "sebastian/type",
  12146. "version": "5.1.0",
  12147. "source": {
  12148. "type": "git",
  12149. "url": "https://github.com/sebastianbergmann/type.git",
  12150. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  12151. },
  12152. "dist": {
  12153. "type": "zip",
  12154. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12155. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12156. "shasum": ""
  12157. },
  12158. "require": {
  12159. "php": ">=8.2"
  12160. },
  12161. "require-dev": {
  12162. "phpunit/phpunit": "^11.3"
  12163. },
  12164. "type": "library",
  12165. "extra": {
  12166. "branch-alias": {
  12167. "dev-main": "5.1-dev"
  12168. }
  12169. },
  12170. "autoload": {
  12171. "classmap": [
  12172. "src/"
  12173. ]
  12174. },
  12175. "notification-url": "https://packagist.org/downloads/",
  12176. "license": [
  12177. "BSD-3-Clause"
  12178. ],
  12179. "authors": [
  12180. {
  12181. "name": "Sebastian Bergmann",
  12182. "email": "sebastian@phpunit.de",
  12183. "role": "lead"
  12184. }
  12185. ],
  12186. "description": "Collection of value objects that represent the types of the PHP type system",
  12187. "homepage": "https://github.com/sebastianbergmann/type",
  12188. "support": {
  12189. "issues": "https://github.com/sebastianbergmann/type/issues",
  12190. "security": "https://github.com/sebastianbergmann/type/security/policy",
  12191. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  12192. },
  12193. "funding": [
  12194. {
  12195. "url": "https://github.com/sebastianbergmann",
  12196. "type": "github"
  12197. }
  12198. ],
  12199. "time": "2024-09-17T13:12:04+00:00"
  12200. },
  12201. {
  12202. "name": "sebastian/version",
  12203. "version": "5.0.2",
  12204. "source": {
  12205. "type": "git",
  12206. "url": "https://github.com/sebastianbergmann/version.git",
  12207. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  12208. },
  12209. "dist": {
  12210. "type": "zip",
  12211. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12212. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12213. "shasum": ""
  12214. },
  12215. "require": {
  12216. "php": ">=8.2"
  12217. },
  12218. "type": "library",
  12219. "extra": {
  12220. "branch-alias": {
  12221. "dev-main": "5.0-dev"
  12222. }
  12223. },
  12224. "autoload": {
  12225. "classmap": [
  12226. "src/"
  12227. ]
  12228. },
  12229. "notification-url": "https://packagist.org/downloads/",
  12230. "license": [
  12231. "BSD-3-Clause"
  12232. ],
  12233. "authors": [
  12234. {
  12235. "name": "Sebastian Bergmann",
  12236. "email": "sebastian@phpunit.de",
  12237. "role": "lead"
  12238. }
  12239. ],
  12240. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12241. "homepage": "https://github.com/sebastianbergmann/version",
  12242. "support": {
  12243. "issues": "https://github.com/sebastianbergmann/version/issues",
  12244. "security": "https://github.com/sebastianbergmann/version/security/policy",
  12245. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  12246. },
  12247. "funding": [
  12248. {
  12249. "url": "https://github.com/sebastianbergmann",
  12250. "type": "github"
  12251. }
  12252. ],
  12253. "time": "2024-10-09T05:16:32+00:00"
  12254. },
  12255. {
  12256. "name": "spatie/backtrace",
  12257. "version": "1.7.1",
  12258. "source": {
  12259. "type": "git",
  12260. "url": "https://github.com/spatie/backtrace.git",
  12261. "reference": "0f2477c520e3729de58e061b8192f161c99f770b"
  12262. },
  12263. "dist": {
  12264. "type": "zip",
  12265. "url": "https://api.github.com/repos/spatie/backtrace/zipball/0f2477c520e3729de58e061b8192f161c99f770b",
  12266. "reference": "0f2477c520e3729de58e061b8192f161c99f770b",
  12267. "shasum": ""
  12268. },
  12269. "require": {
  12270. "php": "^7.3 || ^8.0"
  12271. },
  12272. "require-dev": {
  12273. "ext-json": "*",
  12274. "laravel/serializable-closure": "^1.3 || ^2.0",
  12275. "phpunit/phpunit": "^9.3 || ^11.4.3",
  12276. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6",
  12277. "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0"
  12278. },
  12279. "type": "library",
  12280. "autoload": {
  12281. "psr-4": {
  12282. "Spatie\\Backtrace\\": "src"
  12283. }
  12284. },
  12285. "notification-url": "https://packagist.org/downloads/",
  12286. "license": [
  12287. "MIT"
  12288. ],
  12289. "authors": [
  12290. {
  12291. "name": "Freek Van de Herten",
  12292. "email": "freek@spatie.be",
  12293. "homepage": "https://spatie.be",
  12294. "role": "Developer"
  12295. }
  12296. ],
  12297. "description": "A better backtrace",
  12298. "homepage": "https://github.com/spatie/backtrace",
  12299. "keywords": [
  12300. "Backtrace",
  12301. "spatie"
  12302. ],
  12303. "support": {
  12304. "source": "https://github.com/spatie/backtrace/tree/1.7.1"
  12305. },
  12306. "funding": [
  12307. {
  12308. "url": "https://github.com/sponsors/spatie",
  12309. "type": "github"
  12310. },
  12311. {
  12312. "url": "https://spatie.be/open-source/support-us",
  12313. "type": "other"
  12314. }
  12315. ],
  12316. "time": "2024-12-02T13:28:15+00:00"
  12317. },
  12318. {
  12319. "name": "spatie/error-solutions",
  12320. "version": "1.1.1",
  12321. "source": {
  12322. "type": "git",
  12323. "url": "https://github.com/spatie/error-solutions.git",
  12324. "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67"
  12325. },
  12326. "dist": {
  12327. "type": "zip",
  12328. "url": "https://api.github.com/repos/spatie/error-solutions/zipball/ae7393122eda72eed7cc4f176d1e96ea444f2d67",
  12329. "reference": "ae7393122eda72eed7cc4f176d1e96ea444f2d67",
  12330. "shasum": ""
  12331. },
  12332. "require": {
  12333. "php": "^8.0"
  12334. },
  12335. "require-dev": {
  12336. "illuminate/broadcasting": "^10.0|^11.0",
  12337. "illuminate/cache": "^10.0|^11.0",
  12338. "illuminate/support": "^10.0|^11.0",
  12339. "livewire/livewire": "^2.11|^3.3.5",
  12340. "openai-php/client": "^0.10.1",
  12341. "orchestra/testbench": "^7.0|8.22.3|^9.0",
  12342. "pestphp/pest": "^2.20",
  12343. "phpstan/phpstan": "^1.11",
  12344. "psr/simple-cache": "^3.0",
  12345. "psr/simple-cache-implementation": "^3.0",
  12346. "spatie/ray": "^1.28",
  12347. "symfony/cache": "^5.4|^6.0|^7.0",
  12348. "symfony/process": "^5.4|^6.0|^7.0",
  12349. "vlucas/phpdotenv": "^5.5"
  12350. },
  12351. "suggest": {
  12352. "openai-php/client": "Require get solutions from OpenAI",
  12353. "simple-cache-implementation": "To cache solutions from OpenAI"
  12354. },
  12355. "type": "library",
  12356. "autoload": {
  12357. "psr-4": {
  12358. "Spatie\\Ignition\\": "legacy/ignition",
  12359. "Spatie\\ErrorSolutions\\": "src",
  12360. "Spatie\\LaravelIgnition\\": "legacy/laravel-ignition"
  12361. }
  12362. },
  12363. "notification-url": "https://packagist.org/downloads/",
  12364. "license": [
  12365. "MIT"
  12366. ],
  12367. "authors": [
  12368. {
  12369. "name": "Ruben Van Assche",
  12370. "email": "ruben@spatie.be",
  12371. "role": "Developer"
  12372. }
  12373. ],
  12374. "description": "This is my package error-solutions",
  12375. "homepage": "https://github.com/spatie/error-solutions",
  12376. "keywords": [
  12377. "error-solutions",
  12378. "spatie"
  12379. ],
  12380. "support": {
  12381. "issues": "https://github.com/spatie/error-solutions/issues",
  12382. "source": "https://github.com/spatie/error-solutions/tree/1.1.1"
  12383. },
  12384. "funding": [
  12385. {
  12386. "url": "https://github.com/Spatie",
  12387. "type": "github"
  12388. }
  12389. ],
  12390. "time": "2024-07-25T11:06:04+00:00"
  12391. },
  12392. {
  12393. "name": "spatie/flare-client-php",
  12394. "version": "1.10.0",
  12395. "source": {
  12396. "type": "git",
  12397. "url": "https://github.com/spatie/flare-client-php.git",
  12398. "reference": "140a42b2c5d59ac4ecf8f5b493386a4f2eb28272"
  12399. },
  12400. "dist": {
  12401. "type": "zip",
  12402. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/140a42b2c5d59ac4ecf8f5b493386a4f2eb28272",
  12403. "reference": "140a42b2c5d59ac4ecf8f5b493386a4f2eb28272",
  12404. "shasum": ""
  12405. },
  12406. "require": {
  12407. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0",
  12408. "php": "^8.0",
  12409. "spatie/backtrace": "^1.6.1",
  12410. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  12411. "symfony/mime": "^5.2|^6.0|^7.0",
  12412. "symfony/process": "^5.2|^6.0|^7.0",
  12413. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  12414. },
  12415. "require-dev": {
  12416. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  12417. "pestphp/pest": "^1.20|^2.0",
  12418. "phpstan/extension-installer": "^1.1",
  12419. "phpstan/phpstan-deprecation-rules": "^1.0",
  12420. "phpstan/phpstan-phpunit": "^1.0",
  12421. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  12422. },
  12423. "type": "library",
  12424. "extra": {
  12425. "branch-alias": {
  12426. "dev-main": "1.3.x-dev"
  12427. }
  12428. },
  12429. "autoload": {
  12430. "files": [
  12431. "src/helpers.php"
  12432. ],
  12433. "psr-4": {
  12434. "Spatie\\FlareClient\\": "src"
  12435. }
  12436. },
  12437. "notification-url": "https://packagist.org/downloads/",
  12438. "license": [
  12439. "MIT"
  12440. ],
  12441. "description": "Send PHP errors to Flare",
  12442. "homepage": "https://github.com/spatie/flare-client-php",
  12443. "keywords": [
  12444. "exception",
  12445. "flare",
  12446. "reporting",
  12447. "spatie"
  12448. ],
  12449. "support": {
  12450. "issues": "https://github.com/spatie/flare-client-php/issues",
  12451. "source": "https://github.com/spatie/flare-client-php/tree/1.10.0"
  12452. },
  12453. "funding": [
  12454. {
  12455. "url": "https://github.com/spatie",
  12456. "type": "github"
  12457. }
  12458. ],
  12459. "time": "2024-12-02T14:30:06+00:00"
  12460. },
  12461. {
  12462. "name": "spatie/ignition",
  12463. "version": "1.15.0",
  12464. "source": {
  12465. "type": "git",
  12466. "url": "https://github.com/spatie/ignition.git",
  12467. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2"
  12468. },
  12469. "dist": {
  12470. "type": "zip",
  12471. "url": "https://api.github.com/repos/spatie/ignition/zipball/e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  12472. "reference": "e3a68e137371e1eb9edc7f78ffa733f3b98991d2",
  12473. "shasum": ""
  12474. },
  12475. "require": {
  12476. "ext-json": "*",
  12477. "ext-mbstring": "*",
  12478. "php": "^8.0",
  12479. "spatie/error-solutions": "^1.0",
  12480. "spatie/flare-client-php": "^1.7",
  12481. "symfony/console": "^5.4|^6.0|^7.0",
  12482. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  12483. },
  12484. "require-dev": {
  12485. "illuminate/cache": "^9.52|^10.0|^11.0",
  12486. "mockery/mockery": "^1.4",
  12487. "pestphp/pest": "^1.20|^2.0",
  12488. "phpstan/extension-installer": "^1.1",
  12489. "phpstan/phpstan-deprecation-rules": "^1.0",
  12490. "phpstan/phpstan-phpunit": "^1.0",
  12491. "psr/simple-cache-implementation": "*",
  12492. "symfony/cache": "^5.4|^6.0|^7.0",
  12493. "symfony/process": "^5.4|^6.0|^7.0",
  12494. "vlucas/phpdotenv": "^5.5"
  12495. },
  12496. "suggest": {
  12497. "openai-php/client": "Require get solutions from OpenAI",
  12498. "simple-cache-implementation": "To cache solutions from OpenAI"
  12499. },
  12500. "type": "library",
  12501. "extra": {
  12502. "branch-alias": {
  12503. "dev-main": "1.5.x-dev"
  12504. }
  12505. },
  12506. "autoload": {
  12507. "psr-4": {
  12508. "Spatie\\Ignition\\": "src"
  12509. }
  12510. },
  12511. "notification-url": "https://packagist.org/downloads/",
  12512. "license": [
  12513. "MIT"
  12514. ],
  12515. "authors": [
  12516. {
  12517. "name": "Spatie",
  12518. "email": "info@spatie.be",
  12519. "role": "Developer"
  12520. }
  12521. ],
  12522. "description": "A beautiful error page for PHP applications.",
  12523. "homepage": "https://flareapp.io/ignition",
  12524. "keywords": [
  12525. "error",
  12526. "flare",
  12527. "laravel",
  12528. "page"
  12529. ],
  12530. "support": {
  12531. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12532. "forum": "https://twitter.com/flareappio",
  12533. "issues": "https://github.com/spatie/ignition/issues",
  12534. "source": "https://github.com/spatie/ignition"
  12535. },
  12536. "funding": [
  12537. {
  12538. "url": "https://github.com/spatie",
  12539. "type": "github"
  12540. }
  12541. ],
  12542. "time": "2024-06-12T14:55:22+00:00"
  12543. },
  12544. {
  12545. "name": "spatie/laravel-ignition",
  12546. "version": "2.9.0",
  12547. "source": {
  12548. "type": "git",
  12549. "url": "https://github.com/spatie/laravel-ignition.git",
  12550. "reference": "62042df15314b829d0f26e02108f559018e2aad0"
  12551. },
  12552. "dist": {
  12553. "type": "zip",
  12554. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/62042df15314b829d0f26e02108f559018e2aad0",
  12555. "reference": "62042df15314b829d0f26e02108f559018e2aad0",
  12556. "shasum": ""
  12557. },
  12558. "require": {
  12559. "ext-curl": "*",
  12560. "ext-json": "*",
  12561. "ext-mbstring": "*",
  12562. "illuminate/support": "^10.0|^11.0",
  12563. "php": "^8.1",
  12564. "spatie/ignition": "^1.15",
  12565. "symfony/console": "^6.2.3|^7.0",
  12566. "symfony/var-dumper": "^6.2.3|^7.0"
  12567. },
  12568. "require-dev": {
  12569. "livewire/livewire": "^2.11|^3.3.5",
  12570. "mockery/mockery": "^1.5.1",
  12571. "openai-php/client": "^0.8.1",
  12572. "orchestra/testbench": "8.22.3|^9.0",
  12573. "pestphp/pest": "^2.34",
  12574. "phpstan/extension-installer": "^1.3.1",
  12575. "phpstan/phpstan-deprecation-rules": "^1.1.1",
  12576. "phpstan/phpstan-phpunit": "^1.3.16",
  12577. "vlucas/phpdotenv": "^5.5"
  12578. },
  12579. "suggest": {
  12580. "openai-php/client": "Require get solutions from OpenAI",
  12581. "psr/simple-cache-implementation": "Needed to cache solutions from OpenAI"
  12582. },
  12583. "type": "library",
  12584. "extra": {
  12585. "laravel": {
  12586. "aliases": {
  12587. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  12588. },
  12589. "providers": [
  12590. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  12591. ]
  12592. }
  12593. },
  12594. "autoload": {
  12595. "files": [
  12596. "src/helpers.php"
  12597. ],
  12598. "psr-4": {
  12599. "Spatie\\LaravelIgnition\\": "src"
  12600. }
  12601. },
  12602. "notification-url": "https://packagist.org/downloads/",
  12603. "license": [
  12604. "MIT"
  12605. ],
  12606. "authors": [
  12607. {
  12608. "name": "Spatie",
  12609. "email": "info@spatie.be",
  12610. "role": "Developer"
  12611. }
  12612. ],
  12613. "description": "A beautiful error page for Laravel applications.",
  12614. "homepage": "https://flareapp.io/ignition",
  12615. "keywords": [
  12616. "error",
  12617. "flare",
  12618. "laravel",
  12619. "page"
  12620. ],
  12621. "support": {
  12622. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  12623. "forum": "https://twitter.com/flareappio",
  12624. "issues": "https://github.com/spatie/laravel-ignition/issues",
  12625. "source": "https://github.com/spatie/laravel-ignition"
  12626. },
  12627. "funding": [
  12628. {
  12629. "url": "https://github.com/spatie",
  12630. "type": "github"
  12631. }
  12632. ],
  12633. "time": "2024-12-02T08:43:31+00:00"
  12634. },
  12635. {
  12636. "name": "spatie/laravel-ray",
  12637. "version": "1.37.1",
  12638. "source": {
  12639. "type": "git",
  12640. "url": "https://github.com/spatie/laravel-ray.git",
  12641. "reference": "c2bedfd1172648df2c80aaceb2541d70f1d9a5b9"
  12642. },
  12643. "dist": {
  12644. "type": "zip",
  12645. "url": "https://api.github.com/repos/spatie/laravel-ray/zipball/c2bedfd1172648df2c80aaceb2541d70f1d9a5b9",
  12646. "reference": "c2bedfd1172648df2c80aaceb2541d70f1d9a5b9",
  12647. "shasum": ""
  12648. },
  12649. "require": {
  12650. "ext-json": "*",
  12651. "illuminate/contracts": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12652. "illuminate/database": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12653. "illuminate/queue": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12654. "illuminate/support": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12655. "php": "^7.4|^8.0",
  12656. "rector/rector": "^0.19.2|^1.0",
  12657. "spatie/backtrace": "^1.0",
  12658. "spatie/ray": "^1.41.1",
  12659. "symfony/stopwatch": "4.2|^5.1|^6.0|^7.0",
  12660. "zbateson/mail-mime-parser": "^1.3.1|^2.0|^3.0"
  12661. },
  12662. "require-dev": {
  12663. "guzzlehttp/guzzle": "^7.3",
  12664. "laravel/framework": "^7.20|^8.19|^9.0|^10.0|^11.0",
  12665. "orchestra/testbench-core": "^5.0|^6.0|^7.0|^8.0|^9.0",
  12666. "pestphp/pest": "^1.22|^2.0",
  12667. "phpstan/phpstan": "^1.10.57",
  12668. "phpunit/phpunit": "^9.3|^10.1",
  12669. "spatie/pest-plugin-snapshots": "^1.1|^2.0",
  12670. "symfony/var-dumper": "^4.2|^5.1|^6.0|^7.0.3"
  12671. },
  12672. "type": "library",
  12673. "extra": {
  12674. "laravel": {
  12675. "providers": [
  12676. "Spatie\\LaravelRay\\RayServiceProvider"
  12677. ]
  12678. },
  12679. "branch-alias": {
  12680. "dev-main": "1.x-dev"
  12681. }
  12682. },
  12683. "autoload": {
  12684. "psr-4": {
  12685. "Spatie\\LaravelRay\\": "src"
  12686. }
  12687. },
  12688. "notification-url": "https://packagist.org/downloads/",
  12689. "license": [
  12690. "MIT"
  12691. ],
  12692. "authors": [
  12693. {
  12694. "name": "Freek Van der Herten",
  12695. "email": "freek@spatie.be",
  12696. "homepage": "https://spatie.be",
  12697. "role": "Developer"
  12698. }
  12699. ],
  12700. "description": "Easily debug Laravel apps",
  12701. "homepage": "https://github.com/spatie/laravel-ray",
  12702. "keywords": [
  12703. "laravel-ray",
  12704. "spatie"
  12705. ],
  12706. "support": {
  12707. "issues": "https://github.com/spatie/laravel-ray/issues",
  12708. "source": "https://github.com/spatie/laravel-ray/tree/1.37.1"
  12709. },
  12710. "funding": [
  12711. {
  12712. "url": "https://github.com/sponsors/spatie",
  12713. "type": "github"
  12714. },
  12715. {
  12716. "url": "https://spatie.be/open-source/support-us",
  12717. "type": "other"
  12718. }
  12719. ],
  12720. "time": "2024-07-12T12:35:17+00:00"
  12721. },
  12722. {
  12723. "name": "spatie/macroable",
  12724. "version": "2.0.0",
  12725. "source": {
  12726. "type": "git",
  12727. "url": "https://github.com/spatie/macroable.git",
  12728. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072"
  12729. },
  12730. "dist": {
  12731. "type": "zip",
  12732. "url": "https://api.github.com/repos/spatie/macroable/zipball/ec2c320f932e730607aff8052c44183cf3ecb072",
  12733. "reference": "ec2c320f932e730607aff8052c44183cf3ecb072",
  12734. "shasum": ""
  12735. },
  12736. "require": {
  12737. "php": "^8.0"
  12738. },
  12739. "require-dev": {
  12740. "phpunit/phpunit": "^8.0|^9.3"
  12741. },
  12742. "type": "library",
  12743. "autoload": {
  12744. "psr-4": {
  12745. "Spatie\\Macroable\\": "src"
  12746. }
  12747. },
  12748. "notification-url": "https://packagist.org/downloads/",
  12749. "license": [
  12750. "MIT"
  12751. ],
  12752. "authors": [
  12753. {
  12754. "name": "Freek Van der Herten",
  12755. "email": "freek@spatie.be",
  12756. "homepage": "https://spatie.be",
  12757. "role": "Developer"
  12758. }
  12759. ],
  12760. "description": "A trait to dynamically add methods to a class",
  12761. "homepage": "https://github.com/spatie/macroable",
  12762. "keywords": [
  12763. "macroable",
  12764. "spatie"
  12765. ],
  12766. "support": {
  12767. "issues": "https://github.com/spatie/macroable/issues",
  12768. "source": "https://github.com/spatie/macroable/tree/2.0.0"
  12769. },
  12770. "time": "2021-03-26T22:39:02+00:00"
  12771. },
  12772. {
  12773. "name": "spatie/ray",
  12774. "version": "1.41.3",
  12775. "source": {
  12776. "type": "git",
  12777. "url": "https://github.com/spatie/ray.git",
  12778. "reference": "e2ecbc17a493dab635f3cf026858b46f0ccbb053"
  12779. },
  12780. "dist": {
  12781. "type": "zip",
  12782. "url": "https://api.github.com/repos/spatie/ray/zipball/e2ecbc17a493dab635f3cf026858b46f0ccbb053",
  12783. "reference": "e2ecbc17a493dab635f3cf026858b46f0ccbb053",
  12784. "shasum": ""
  12785. },
  12786. "require": {
  12787. "ext-curl": "*",
  12788. "ext-json": "*",
  12789. "php": "^7.4 || ^8.0",
  12790. "ramsey/uuid": "^3.0 || ^4.1",
  12791. "spatie/backtrace": "^1.1",
  12792. "spatie/macroable": "^1.0 || ^2.0",
  12793. "symfony/stopwatch": "^4.2 || ^5.1 || ^6.0 || ^7.0",
  12794. "symfony/var-dumper": "^4.2 || ^5.1 || ^6.0 || ^7.0.3"
  12795. },
  12796. "require-dev": {
  12797. "illuminate/support": "^7.20 || ^8.18 || ^9.0 || ^10.0 || ^11.0",
  12798. "nesbot/carbon": "^2.63",
  12799. "pestphp/pest": "^1.22",
  12800. "phpstan/phpstan": "^1.10.57 || ^2.0.2",
  12801. "phpunit/phpunit": "^9.5",
  12802. "rector/rector": "dev-main",
  12803. "spatie/phpunit-snapshot-assertions": "^4.2",
  12804. "spatie/test-time": "^1.2"
  12805. },
  12806. "bin": [
  12807. "bin/remove-ray.sh"
  12808. ],
  12809. "type": "library",
  12810. "extra": {
  12811. "branch-alias": {
  12812. "dev-main": "1.x-dev"
  12813. }
  12814. },
  12815. "autoload": {
  12816. "files": [
  12817. "src/helpers.php"
  12818. ],
  12819. "psr-4": {
  12820. "Spatie\\Ray\\": "src"
  12821. }
  12822. },
  12823. "notification-url": "https://packagist.org/downloads/",
  12824. "license": [
  12825. "MIT"
  12826. ],
  12827. "authors": [
  12828. {
  12829. "name": "Freek Van der Herten",
  12830. "email": "freek@spatie.be",
  12831. "homepage": "https://spatie.be",
  12832. "role": "Developer"
  12833. }
  12834. ],
  12835. "description": "Debug with Ray to fix problems faster",
  12836. "homepage": "https://github.com/spatie/ray",
  12837. "keywords": [
  12838. "ray",
  12839. "spatie"
  12840. ],
  12841. "support": {
  12842. "issues": "https://github.com/spatie/ray/issues",
  12843. "source": "https://github.com/spatie/ray/tree/1.41.3"
  12844. },
  12845. "funding": [
  12846. {
  12847. "url": "https://github.com/sponsors/spatie",
  12848. "type": "github"
  12849. },
  12850. {
  12851. "url": "https://spatie.be/open-source/support-us",
  12852. "type": "other"
  12853. }
  12854. ],
  12855. "time": "2024-12-02T12:33:18+00:00"
  12856. },
  12857. {
  12858. "name": "symfony/polyfill-iconv",
  12859. "version": "v1.31.0",
  12860. "source": {
  12861. "type": "git",
  12862. "url": "https://github.com/symfony/polyfill-iconv.git",
  12863. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956"
  12864. },
  12865. "dist": {
  12866. "type": "zip",
  12867. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/48becf00c920479ca2e910c22a5a39e5d47ca956",
  12868. "reference": "48becf00c920479ca2e910c22a5a39e5d47ca956",
  12869. "shasum": ""
  12870. },
  12871. "require": {
  12872. "php": ">=7.2"
  12873. },
  12874. "provide": {
  12875. "ext-iconv": "*"
  12876. },
  12877. "suggest": {
  12878. "ext-iconv": "For best performance"
  12879. },
  12880. "type": "library",
  12881. "extra": {
  12882. "thanks": {
  12883. "name": "symfony/polyfill",
  12884. "url": "https://github.com/symfony/polyfill"
  12885. }
  12886. },
  12887. "autoload": {
  12888. "files": [
  12889. "bootstrap.php"
  12890. ],
  12891. "psr-4": {
  12892. "Symfony\\Polyfill\\Iconv\\": ""
  12893. }
  12894. },
  12895. "notification-url": "https://packagist.org/downloads/",
  12896. "license": [
  12897. "MIT"
  12898. ],
  12899. "authors": [
  12900. {
  12901. "name": "Nicolas Grekas",
  12902. "email": "p@tchwork.com"
  12903. },
  12904. {
  12905. "name": "Symfony Community",
  12906. "homepage": "https://symfony.com/contributors"
  12907. }
  12908. ],
  12909. "description": "Symfony polyfill for the Iconv extension",
  12910. "homepage": "https://symfony.com",
  12911. "keywords": [
  12912. "compatibility",
  12913. "iconv",
  12914. "polyfill",
  12915. "portable",
  12916. "shim"
  12917. ],
  12918. "support": {
  12919. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.31.0"
  12920. },
  12921. "funding": [
  12922. {
  12923. "url": "https://symfony.com/sponsor",
  12924. "type": "custom"
  12925. },
  12926. {
  12927. "url": "https://github.com/fabpot",
  12928. "type": "github"
  12929. },
  12930. {
  12931. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12932. "type": "tidelift"
  12933. }
  12934. ],
  12935. "time": "2024-09-09T11:45:10+00:00"
  12936. },
  12937. {
  12938. "name": "symfony/stopwatch",
  12939. "version": "v7.2.0",
  12940. "source": {
  12941. "type": "git",
  12942. "url": "https://github.com/symfony/stopwatch.git",
  12943. "reference": "696f418b0d722a4225e1c3d95489d262971ca924"
  12944. },
  12945. "dist": {
  12946. "type": "zip",
  12947. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/696f418b0d722a4225e1c3d95489d262971ca924",
  12948. "reference": "696f418b0d722a4225e1c3d95489d262971ca924",
  12949. "shasum": ""
  12950. },
  12951. "require": {
  12952. "php": ">=8.2",
  12953. "symfony/service-contracts": "^2.5|^3"
  12954. },
  12955. "type": "library",
  12956. "autoload": {
  12957. "psr-4": {
  12958. "Symfony\\Component\\Stopwatch\\": ""
  12959. },
  12960. "exclude-from-classmap": [
  12961. "/Tests/"
  12962. ]
  12963. },
  12964. "notification-url": "https://packagist.org/downloads/",
  12965. "license": [
  12966. "MIT"
  12967. ],
  12968. "authors": [
  12969. {
  12970. "name": "Fabien Potencier",
  12971. "email": "fabien@symfony.com"
  12972. },
  12973. {
  12974. "name": "Symfony Community",
  12975. "homepage": "https://symfony.com/contributors"
  12976. }
  12977. ],
  12978. "description": "Provides a way to profile code",
  12979. "homepage": "https://symfony.com",
  12980. "support": {
  12981. "source": "https://github.com/symfony/stopwatch/tree/v7.2.0"
  12982. },
  12983. "funding": [
  12984. {
  12985. "url": "https://symfony.com/sponsor",
  12986. "type": "custom"
  12987. },
  12988. {
  12989. "url": "https://github.com/fabpot",
  12990. "type": "github"
  12991. },
  12992. {
  12993. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  12994. "type": "tidelift"
  12995. }
  12996. ],
  12997. "time": "2024-09-25T14:21:43+00:00"
  12998. },
  12999. {
  13000. "name": "symfony/yaml",
  13001. "version": "v7.2.0",
  13002. "source": {
  13003. "type": "git",
  13004. "url": "https://github.com/symfony/yaml.git",
  13005. "reference": "099581e99f557e9f16b43c5916c26380b54abb22"
  13006. },
  13007. "dist": {
  13008. "type": "zip",
  13009. "url": "https://api.github.com/repos/symfony/yaml/zipball/099581e99f557e9f16b43c5916c26380b54abb22",
  13010. "reference": "099581e99f557e9f16b43c5916c26380b54abb22",
  13011. "shasum": ""
  13012. },
  13013. "require": {
  13014. "php": ">=8.2",
  13015. "symfony/deprecation-contracts": "^2.5|^3.0",
  13016. "symfony/polyfill-ctype": "^1.8"
  13017. },
  13018. "conflict": {
  13019. "symfony/console": "<6.4"
  13020. },
  13021. "require-dev": {
  13022. "symfony/console": "^6.4|^7.0"
  13023. },
  13024. "bin": [
  13025. "Resources/bin/yaml-lint"
  13026. ],
  13027. "type": "library",
  13028. "autoload": {
  13029. "psr-4": {
  13030. "Symfony\\Component\\Yaml\\": ""
  13031. },
  13032. "exclude-from-classmap": [
  13033. "/Tests/"
  13034. ]
  13035. },
  13036. "notification-url": "https://packagist.org/downloads/",
  13037. "license": [
  13038. "MIT"
  13039. ],
  13040. "authors": [
  13041. {
  13042. "name": "Fabien Potencier",
  13043. "email": "fabien@symfony.com"
  13044. },
  13045. {
  13046. "name": "Symfony Community",
  13047. "homepage": "https://symfony.com/contributors"
  13048. }
  13049. ],
  13050. "description": "Loads and dumps YAML files",
  13051. "homepage": "https://symfony.com",
  13052. "support": {
  13053. "source": "https://github.com/symfony/yaml/tree/v7.2.0"
  13054. },
  13055. "funding": [
  13056. {
  13057. "url": "https://symfony.com/sponsor",
  13058. "type": "custom"
  13059. },
  13060. {
  13061. "url": "https://github.com/fabpot",
  13062. "type": "github"
  13063. },
  13064. {
  13065. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  13066. "type": "tidelift"
  13067. }
  13068. ],
  13069. "time": "2024-10-23T06:56:12+00:00"
  13070. },
  13071. {
  13072. "name": "ta-tikoma/phpunit-architecture-test",
  13073. "version": "0.8.4",
  13074. "source": {
  13075. "type": "git",
  13076. "url": "https://github.com/ta-tikoma/phpunit-architecture-test.git",
  13077. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636"
  13078. },
  13079. "dist": {
  13080. "type": "zip",
  13081. "url": "https://api.github.com/repos/ta-tikoma/phpunit-architecture-test/zipball/89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13082. "reference": "89f0dea1cb0f0d5744d3ec1764a286af5e006636",
  13083. "shasum": ""
  13084. },
  13085. "require": {
  13086. "nikic/php-parser": "^4.18.0 || ^5.0.0",
  13087. "php": "^8.1.0",
  13088. "phpdocumentor/reflection-docblock": "^5.3.0",
  13089. "phpunit/phpunit": "^10.5.5 || ^11.0.0",
  13090. "symfony/finder": "^6.4.0 || ^7.0.0"
  13091. },
  13092. "require-dev": {
  13093. "laravel/pint": "^1.13.7",
  13094. "phpstan/phpstan": "^1.10.52"
  13095. },
  13096. "type": "library",
  13097. "autoload": {
  13098. "psr-4": {
  13099. "PHPUnit\\Architecture\\": "src/"
  13100. }
  13101. },
  13102. "notification-url": "https://packagist.org/downloads/",
  13103. "license": [
  13104. "MIT"
  13105. ],
  13106. "authors": [
  13107. {
  13108. "name": "Ni Shi",
  13109. "email": "futik0ma011@gmail.com"
  13110. },
  13111. {
  13112. "name": "Nuno Maduro",
  13113. "email": "enunomaduro@gmail.com"
  13114. }
  13115. ],
  13116. "description": "Methods for testing application architecture",
  13117. "keywords": [
  13118. "architecture",
  13119. "phpunit",
  13120. "stucture",
  13121. "test",
  13122. "testing"
  13123. ],
  13124. "support": {
  13125. "issues": "https://github.com/ta-tikoma/phpunit-architecture-test/issues",
  13126. "source": "https://github.com/ta-tikoma/phpunit-architecture-test/tree/0.8.4"
  13127. },
  13128. "time": "2024-01-05T14:10:56+00:00"
  13129. },
  13130. {
  13131. "name": "theseer/tokenizer",
  13132. "version": "1.2.3",
  13133. "source": {
  13134. "type": "git",
  13135. "url": "https://github.com/theseer/tokenizer.git",
  13136. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  13137. },
  13138. "dist": {
  13139. "type": "zip",
  13140. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13141. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  13142. "shasum": ""
  13143. },
  13144. "require": {
  13145. "ext-dom": "*",
  13146. "ext-tokenizer": "*",
  13147. "ext-xmlwriter": "*",
  13148. "php": "^7.2 || ^8.0"
  13149. },
  13150. "type": "library",
  13151. "autoload": {
  13152. "classmap": [
  13153. "src/"
  13154. ]
  13155. },
  13156. "notification-url": "https://packagist.org/downloads/",
  13157. "license": [
  13158. "BSD-3-Clause"
  13159. ],
  13160. "authors": [
  13161. {
  13162. "name": "Arne Blankerts",
  13163. "email": "arne@blankerts.de",
  13164. "role": "Developer"
  13165. }
  13166. ],
  13167. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  13168. "support": {
  13169. "issues": "https://github.com/theseer/tokenizer/issues",
  13170. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  13171. },
  13172. "funding": [
  13173. {
  13174. "url": "https://github.com/theseer",
  13175. "type": "github"
  13176. }
  13177. ],
  13178. "time": "2024-03-03T12:36:25+00:00"
  13179. },
  13180. {
  13181. "name": "zbateson/mail-mime-parser",
  13182. "version": "2.4.1",
  13183. "source": {
  13184. "type": "git",
  13185. "url": "https://github.com/zbateson/mail-mime-parser.git",
  13186. "reference": "ff49e02f6489b38f7cc3d1bd3971adc0f872569c"
  13187. },
  13188. "dist": {
  13189. "type": "zip",
  13190. "url": "https://api.github.com/repos/zbateson/mail-mime-parser/zipball/ff49e02f6489b38f7cc3d1bd3971adc0f872569c",
  13191. "reference": "ff49e02f6489b38f7cc3d1bd3971adc0f872569c",
  13192. "shasum": ""
  13193. },
  13194. "require": {
  13195. "guzzlehttp/psr7": "^1.7.0|^2.0",
  13196. "php": ">=7.1",
  13197. "pimple/pimple": "^3.0",
  13198. "zbateson/mb-wrapper": "^1.0.1",
  13199. "zbateson/stream-decorators": "^1.0.6"
  13200. },
  13201. "require-dev": {
  13202. "friendsofphp/php-cs-fixer": "*",
  13203. "mikey179/vfsstream": "^1.6.0",
  13204. "phpstan/phpstan": "*",
  13205. "phpunit/phpunit": "<10"
  13206. },
  13207. "suggest": {
  13208. "ext-iconv": "For best support/performance",
  13209. "ext-mbstring": "For best support/performance"
  13210. },
  13211. "type": "library",
  13212. "autoload": {
  13213. "psr-4": {
  13214. "ZBateson\\MailMimeParser\\": "src/"
  13215. }
  13216. },
  13217. "notification-url": "https://packagist.org/downloads/",
  13218. "license": [
  13219. "BSD-2-Clause"
  13220. ],
  13221. "authors": [
  13222. {
  13223. "name": "Zaahid Bateson"
  13224. },
  13225. {
  13226. "name": "Contributors",
  13227. "homepage": "https://github.com/zbateson/mail-mime-parser/graphs/contributors"
  13228. }
  13229. ],
  13230. "description": "MIME email message parser",
  13231. "homepage": "https://mail-mime-parser.org",
  13232. "keywords": [
  13233. "MimeMailParser",
  13234. "email",
  13235. "mail",
  13236. "mailparse",
  13237. "mime",
  13238. "mimeparse",
  13239. "parser",
  13240. "php-imap"
  13241. ],
  13242. "support": {
  13243. "docs": "https://mail-mime-parser.org/#usage-guide",
  13244. "issues": "https://github.com/zbateson/mail-mime-parser/issues",
  13245. "source": "https://github.com/zbateson/mail-mime-parser"
  13246. },
  13247. "funding": [
  13248. {
  13249. "url": "https://github.com/zbateson",
  13250. "type": "github"
  13251. }
  13252. ],
  13253. "time": "2024-04-28T00:58:54+00:00"
  13254. },
  13255. {
  13256. "name": "zbateson/mb-wrapper",
  13257. "version": "1.2.1",
  13258. "source": {
  13259. "type": "git",
  13260. "url": "https://github.com/zbateson/mb-wrapper.git",
  13261. "reference": "09a8b77eb94af3823a9a6623dcc94f8d988da67f"
  13262. },
  13263. "dist": {
  13264. "type": "zip",
  13265. "url": "https://api.github.com/repos/zbateson/mb-wrapper/zipball/09a8b77eb94af3823a9a6623dcc94f8d988da67f",
  13266. "reference": "09a8b77eb94af3823a9a6623dcc94f8d988da67f",
  13267. "shasum": ""
  13268. },
  13269. "require": {
  13270. "php": ">=7.1",
  13271. "symfony/polyfill-iconv": "^1.9",
  13272. "symfony/polyfill-mbstring": "^1.9"
  13273. },
  13274. "require-dev": {
  13275. "friendsofphp/php-cs-fixer": "*",
  13276. "phpstan/phpstan": "*",
  13277. "phpunit/phpunit": "<10.0"
  13278. },
  13279. "suggest": {
  13280. "ext-iconv": "For best support/performance",
  13281. "ext-mbstring": "For best support/performance"
  13282. },
  13283. "type": "library",
  13284. "autoload": {
  13285. "psr-4": {
  13286. "ZBateson\\MbWrapper\\": "src/"
  13287. }
  13288. },
  13289. "notification-url": "https://packagist.org/downloads/",
  13290. "license": [
  13291. "BSD-2-Clause"
  13292. ],
  13293. "authors": [
  13294. {
  13295. "name": "Zaahid Bateson"
  13296. }
  13297. ],
  13298. "description": "Wrapper for mbstring with fallback to iconv for encoding conversion and string manipulation",
  13299. "keywords": [
  13300. "charset",
  13301. "encoding",
  13302. "http",
  13303. "iconv",
  13304. "mail",
  13305. "mb",
  13306. "mb_convert_encoding",
  13307. "mbstring",
  13308. "mime",
  13309. "multibyte",
  13310. "string"
  13311. ],
  13312. "support": {
  13313. "issues": "https://github.com/zbateson/mb-wrapper/issues",
  13314. "source": "https://github.com/zbateson/mb-wrapper/tree/1.2.1"
  13315. },
  13316. "funding": [
  13317. {
  13318. "url": "https://github.com/zbateson",
  13319. "type": "github"
  13320. }
  13321. ],
  13322. "time": "2024-03-18T04:31:04+00:00"
  13323. },
  13324. {
  13325. "name": "zbateson/stream-decorators",
  13326. "version": "1.2.1",
  13327. "source": {
  13328. "type": "git",
  13329. "url": "https://github.com/zbateson/stream-decorators.git",
  13330. "reference": "783b034024fda8eafa19675fb2552f8654d3a3e9"
  13331. },
  13332. "dist": {
  13333. "type": "zip",
  13334. "url": "https://api.github.com/repos/zbateson/stream-decorators/zipball/783b034024fda8eafa19675fb2552f8654d3a3e9",
  13335. "reference": "783b034024fda8eafa19675fb2552f8654d3a3e9",
  13336. "shasum": ""
  13337. },
  13338. "require": {
  13339. "guzzlehttp/psr7": "^1.9 | ^2.0",
  13340. "php": ">=7.2",
  13341. "zbateson/mb-wrapper": "^1.0.0"
  13342. },
  13343. "require-dev": {
  13344. "friendsofphp/php-cs-fixer": "*",
  13345. "phpstan/phpstan": "*",
  13346. "phpunit/phpunit": "<10.0"
  13347. },
  13348. "type": "library",
  13349. "autoload": {
  13350. "psr-4": {
  13351. "ZBateson\\StreamDecorators\\": "src/"
  13352. }
  13353. },
  13354. "notification-url": "https://packagist.org/downloads/",
  13355. "license": [
  13356. "BSD-2-Clause"
  13357. ],
  13358. "authors": [
  13359. {
  13360. "name": "Zaahid Bateson"
  13361. }
  13362. ],
  13363. "description": "PHP psr7 stream decorators for mime message part streams",
  13364. "keywords": [
  13365. "base64",
  13366. "charset",
  13367. "decorators",
  13368. "mail",
  13369. "mime",
  13370. "psr7",
  13371. "quoted-printable",
  13372. "stream",
  13373. "uuencode"
  13374. ],
  13375. "support": {
  13376. "issues": "https://github.com/zbateson/stream-decorators/issues",
  13377. "source": "https://github.com/zbateson/stream-decorators/tree/1.2.1"
  13378. },
  13379. "funding": [
  13380. {
  13381. "url": "https://github.com/zbateson",
  13382. "type": "github"
  13383. }
  13384. ],
  13385. "time": "2023-05-30T22:51:52+00:00"
  13386. }
  13387. ],
  13388. "aliases": [],
  13389. "minimum-stability": "stable",
  13390. "stability-flags": [],
  13391. "prefer-stable": true,
  13392. "prefer-lowest": false,
  13393. "platform": {
  13394. "php": "^8.2",
  13395. "ext-bcmath": "*",
  13396. "ext-intl": "*"
  13397. },
  13398. "platform-dev": [],
  13399. "plugin-api-version": "2.6.0"
  13400. }