composer.lock 458 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478104791048010481104821048310484104851048610487104881048910490104911049210493104941049510496104971049810499105001050110502105031050410505105061050710508105091051010511105121051310514105151051610517105181051910520105211052210523105241052510526105271052810529105301053110532105331053410535105361053710538105391054010541105421054310544105451054610547105481054910550105511055210553105541055510556105571055810559105601056110562105631056410565105661056710568105691057010571105721057310574105751057610577105781057910580105811058210583105841058510586105871058810589105901059110592105931059410595105961059710598105991060010601106021060310604106051060610607106081060910610106111061210613106141061510616106171061810619106201062110622106231062410625106261062710628106291063010631106321063310634106351063610637106381063910640106411064210643106441064510646106471064810649106501065110652106531065410655106561065710658106591066010661106621066310664106651066610667106681066910670106711067210673106741067510676106771067810679106801068110682106831068410685106861068710688106891069010691106921069310694106951069610697106981069910700107011070210703107041070510706107071070810709107101071110712107131071410715107161071710718107191072010721107221072310724107251072610727107281072910730107311073210733107341073510736107371073810739107401074110742107431074410745107461074710748107491075010751107521075310754107551075610757107581075910760107611076210763107641076510766107671076810769107701077110772107731077410775107761077710778107791078010781107821078310784107851078610787107881078910790107911079210793107941079510796107971079810799108001080110802108031080410805108061080710808108091081010811108121081310814108151081610817108181081910820108211082210823108241082510826108271082810829108301083110832108331083410835108361083710838108391084010841108421084310844108451084610847108481084910850108511085210853108541085510856108571085810859108601086110862108631086410865108661086710868108691087010871108721087310874108751087610877108781087910880108811088210883108841088510886108871088810889108901089110892108931089410895108961089710898108991090010901109021090310904109051090610907109081090910910109111091210913109141091510916109171091810919109201092110922109231092410925109261092710928109291093010931109321093310934109351093610937109381093910940109411094210943109441094510946109471094810949109501095110952109531095410955109561095710958109591096010961109621096310964109651096610967109681096910970109711097210973109741097510976109771097810979109801098110982109831098410985109861098710988109891099010991109921099310994109951099610997109981099911000110011100211003110041100511006110071100811009110101101111012110131101411015110161101711018110191102011021110221102311024110251102611027110281102911030110311103211033110341103511036110371103811039110401104111042110431104411045110461104711048110491105011051110521105311054110551105611057110581105911060110611106211063110641106511066110671106811069110701107111072110731107411075110761107711078110791108011081110821108311084110851108611087110881108911090110911109211093110941109511096110971109811099111001110111102111031110411105111061110711108111091111011111111121111311114111151111611117111181111911120111211112211123111241112511126111271112811129111301113111132111331113411135111361113711138111391114011141111421114311144111451114611147111481114911150111511115211153111541115511156111571115811159111601116111162111631116411165111661116711168111691117011171111721117311174111751117611177111781117911180111811118211183111841118511186111871118811189111901119111192111931119411195111961119711198111991120011201112021120311204112051120611207112081120911210112111121211213112141121511216112171121811219112201122111222112231122411225112261122711228112291123011231112321123311234112351123611237112381123911240112411124211243112441124511246112471124811249112501125111252112531125411255112561125711258112591126011261112621126311264112651126611267112681126911270112711127211273112741127511276112771127811279112801128111282112831128411285112861128711288112891129011291112921129311294112951129611297112981129911300113011130211303113041130511306113071130811309113101131111312113131131411315113161131711318113191132011321113221132311324113251132611327113281132911330113311133211333113341133511336113371133811339113401134111342113431134411345113461134711348113491135011351113521135311354113551135611357113581135911360113611136211363113641136511366113671136811369113701137111372113731137411375113761137711378113791138011381113821138311384113851138611387113881138911390113911139211393113941139511396113971139811399114001140111402114031140411405114061140711408114091141011411114121141311414114151141611417114181141911420114211142211423114241142511426114271142811429114301143111432114331143411435114361143711438114391144011441114421144311444114451144611447114481144911450114511145211453114541145511456114571145811459114601146111462114631146411465114661146711468114691147011471114721147311474114751147611477114781147911480114811148211483114841148511486114871148811489114901149111492114931149411495114961149711498114991150011501115021150311504115051150611507115081150911510115111151211513115141151511516115171151811519115201152111522115231152411525115261152711528115291153011531115321153311534115351153611537115381153911540115411154211543115441154511546115471154811549115501155111552115531155411555115561155711558115591156011561115621156311564115651156611567115681156911570115711157211573115741157511576115771157811579115801158111582115831158411585115861158711588115891159011591115921159311594115951159611597115981159911600116011160211603116041160511606116071160811609116101161111612116131161411615116161161711618116191162011621116221162311624116251162611627116281162911630116311163211633116341163511636116371163811639116401164111642116431164411645116461164711648116491165011651116521165311654116551165611657116581165911660116611166211663116641166511666116671166811669116701167111672116731167411675116761167711678116791168011681116821168311684116851168611687116881168911690116911169211693116941169511696116971169811699117001170111702117031170411705117061170711708117091171011711117121171311714117151171611717117181171911720117211172211723117241172511726117271172811729117301173111732117331173411735117361173711738117391174011741117421174311744117451174611747117481174911750117511175211753117541175511756117571175811759117601176111762117631176411765117661176711768117691177011771117721177311774117751177611777117781177911780117811178211783117841178511786117871178811789117901179111792117931179411795117961179711798117991180011801118021180311804118051180611807118081180911810118111181211813118141181511816118171181811819118201182111822118231182411825118261182711828118291183011831118321183311834118351183611837118381183911840118411184211843118441184511846118471184811849118501185111852118531185411855118561185711858118591186011861118621186311864118651186611867118681186911870118711187211873118741187511876118771187811879118801188111882118831188411885118861188711888118891189011891118921189311894118951189611897118981189911900119011190211903119041190511906119071190811909119101191111912119131191411915119161191711918119191192011921119221192311924119251192611927119281192911930119311193211933119341193511936119371193811939119401194111942119431194411945119461194711948119491195011951119521195311954119551195611957119581195911960119611196211963119641196511966119671196811969119701197111972119731197411975119761197711978119791198011981119821198311984119851198611987119881198911990119911199211993119941199511996119971199811999120001200112002120031200412005120061200712008120091201012011120121201312014120151201612017120181201912020120211202212023120241202512026120271202812029120301203112032120331203412035120361203712038120391204012041120421204312044120451204612047120481204912050120511205212053120541205512056120571205812059120601206112062120631206412065120661206712068120691207012071120721207312074120751207612077120781207912080120811208212083120841208512086120871208812089120901209112092120931209412095120961209712098120991210012101121021210312104121051210612107121081210912110121111211212113121141211512116121171211812119121201212112122121231212412125121261212712128121291213012131121321213312134121351213612137121381213912140121411214212143121441214512146121471214812149121501215112152121531215412155121561215712158121591216012161121621216312164121651216612167121681216912170121711217212173121741217512176121771217812179121801218112182121831218412185121861218712188121891219012191121921219312194121951219612197121981219912200122011220212203122041220512206122071220812209122101221112212122131221412215122161221712218122191222012221122221222312224122251222612227122281222912230122311223212233122341223512236122371223812239122401224112242122431224412245122461224712248122491225012251122521225312254122551225612257122581225912260122611226212263122641226512266122671226812269122701227112272122731227412275122761227712278122791228012281122821228312284122851228612287122881228912290122911229212293122941229512296122971229812299123001230112302123031230412305123061230712308123091231012311123121231312314123151231612317123181231912320123211232212323123241232512326123271232812329123301233112332123331233412335123361233712338123391234012341123421234312344123451234612347123481234912350123511235212353123541235512356123571235812359123601236112362123631236412365123661236712368123691237012371123721237312374123751237612377123781237912380123811238212383123841238512386123871238812389123901239112392123931239412395123961239712398123991240012401124021240312404124051240612407124081240912410124111241212413124141241512416124171241812419124201242112422124231242412425124261242712428124291243012431124321243312434124351243612437124381243912440124411244212443124441244512446124471244812449124501245112452124531245412455124561245712458124591246012461124621246312464124651246612467124681246912470124711247212473124741247512476124771247812479124801248112482124831248412485124861248712488124891249012491124921249312494124951249612497124981249912500125011250212503125041250512506125071250812509125101251112512125131251412515125161251712518125191252012521125221252312524125251252612527125281252912530125311253212533125341253512536125371253812539125401254112542125431254412545125461254712548125491255012551125521255312554125551255612557125581255912560125611256212563125641256512566125671256812569125701257112572125731257412575125761257712578125791258012581125821258312584125851258612587125881258912590125911259212593125941259512596125971259812599126001260112602126031260412605126061260712608126091261012611126121261312614126151261612617126181261912620126211262212623126241262512626126271262812629126301263112632126331263412635126361263712638126391264012641126421264312644126451264612647126481264912650126511265212653126541265512656126571265812659126601266112662126631266412665126661266712668126691267012671126721267312674126751267612677126781267912680126811268212683126841268512686126871268812689126901269112692126931269412695126961269712698
  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": "a011d3030ab0153865ef4cd6a7b615a3",
  8. "packages": [
  9. {
  10. "name": "aws/aws-crt-php",
  11. "version": "v1.2.7",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/awslabs/aws-crt-php.git",
  15. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/d71d9906c7bb63a28295447ba12e74723bd3730e",
  20. "reference": "d71d9906c7bb63a28295447ba12e74723bd3730e",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": ">=5.5"
  25. },
  26. "require-dev": {
  27. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  28. "yoast/phpunit-polyfills": "^1.0"
  29. },
  30. "suggest": {
  31. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  32. },
  33. "type": "library",
  34. "autoload": {
  35. "classmap": [
  36. "src/"
  37. ]
  38. },
  39. "notification-url": "https://packagist.org/downloads/",
  40. "license": [
  41. "Apache-2.0"
  42. ],
  43. "authors": [
  44. {
  45. "name": "AWS SDK Common Runtime Team",
  46. "email": "aws-sdk-common-runtime@amazon.com"
  47. }
  48. ],
  49. "description": "AWS Common Runtime for PHP",
  50. "homepage": "https://github.com/awslabs/aws-crt-php",
  51. "keywords": [
  52. "amazon",
  53. "aws",
  54. "crt",
  55. "sdk"
  56. ],
  57. "support": {
  58. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  59. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.7"
  60. },
  61. "time": "2024-10-18T22:15:13+00:00"
  62. },
  63. {
  64. "name": "aws/aws-sdk-php",
  65. "version": "3.342.4",
  66. "source": {
  67. "type": "git",
  68. "url": "https://github.com/aws/aws-sdk-php.git",
  69. "reference": "65cc842b9998d415b05d635b6146d0728934ff4a"
  70. },
  71. "dist": {
  72. "type": "zip",
  73. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/65cc842b9998d415b05d635b6146d0728934ff4a",
  74. "reference": "65cc842b9998d415b05d635b6146d0728934ff4a",
  75. "shasum": ""
  76. },
  77. "require": {
  78. "aws/aws-crt-php": "^1.2.3",
  79. "ext-json": "*",
  80. "ext-pcre": "*",
  81. "ext-simplexml": "*",
  82. "guzzlehttp/guzzle": "^7.4.5",
  83. "guzzlehttp/promises": "^2.0",
  84. "guzzlehttp/psr7": "^2.4.5",
  85. "mtdowling/jmespath.php": "^2.8.0",
  86. "php": ">=8.1",
  87. "psr/http-message": "^2.0"
  88. },
  89. "require-dev": {
  90. "andrewsville/php-token-reflection": "^1.4",
  91. "aws/aws-php-sns-message-validator": "~1.0",
  92. "behat/behat": "~3.0",
  93. "composer/composer": "^2.7.8",
  94. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  95. "doctrine/cache": "~1.4",
  96. "ext-dom": "*",
  97. "ext-openssl": "*",
  98. "ext-pcntl": "*",
  99. "ext-sockets": "*",
  100. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  101. "psr/cache": "^2.0 || ^3.0",
  102. "psr/simple-cache": "^2.0 || ^3.0",
  103. "sebastian/comparator": "^1.2.3 || ^4.0 || ^5.0",
  104. "symfony/filesystem": "^v6.4.0 || ^v7.1.0",
  105. "yoast/phpunit-polyfills": "^2.0"
  106. },
  107. "suggest": {
  108. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  109. "doctrine/cache": "To use the DoctrineCacheAdapter",
  110. "ext-curl": "To send requests using cURL",
  111. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  112. "ext-sockets": "To use client-side monitoring"
  113. },
  114. "type": "library",
  115. "extra": {
  116. "branch-alias": {
  117. "dev-master": "3.0-dev"
  118. }
  119. },
  120. "autoload": {
  121. "files": [
  122. "src/functions.php"
  123. ],
  124. "psr-4": {
  125. "Aws\\": "src/"
  126. },
  127. "exclude-from-classmap": [
  128. "src/data/"
  129. ]
  130. },
  131. "notification-url": "https://packagist.org/downloads/",
  132. "license": [
  133. "Apache-2.0"
  134. ],
  135. "authors": [
  136. {
  137. "name": "Amazon Web Services",
  138. "homepage": "http://aws.amazon.com"
  139. }
  140. ],
  141. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  142. "homepage": "http://aws.amazon.com/sdkforphp",
  143. "keywords": [
  144. "amazon",
  145. "aws",
  146. "cloud",
  147. "dynamodb",
  148. "ec2",
  149. "glacier",
  150. "s3",
  151. "sdk"
  152. ],
  153. "support": {
  154. "forum": "https://github.com/aws/aws-sdk-php/discussions",
  155. "issues": "https://github.com/aws/aws-sdk-php/issues",
  156. "source": "https://github.com/aws/aws-sdk-php/tree/3.342.4"
  157. },
  158. "time": "2025-03-11T18:27:07+00:00"
  159. },
  160. {
  161. "name": "bacon/bacon-qr-code",
  162. "version": "v3.0.1",
  163. "source": {
  164. "type": "git",
  165. "url": "https://github.com/Bacon/BaconQrCode.git",
  166. "reference": "f9cc1f52b5a463062251d666761178dbdb6b544f"
  167. },
  168. "dist": {
  169. "type": "zip",
  170. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/f9cc1f52b5a463062251d666761178dbdb6b544f",
  171. "reference": "f9cc1f52b5a463062251d666761178dbdb6b544f",
  172. "shasum": ""
  173. },
  174. "require": {
  175. "dasprid/enum": "^1.0.3",
  176. "ext-iconv": "*",
  177. "php": "^8.1"
  178. },
  179. "require-dev": {
  180. "phly/keep-a-changelog": "^2.12",
  181. "phpunit/phpunit": "^10.5.11 || 11.0.4",
  182. "spatie/phpunit-snapshot-assertions": "^5.1.5",
  183. "squizlabs/php_codesniffer": "^3.9"
  184. },
  185. "suggest": {
  186. "ext-imagick": "to generate QR code images"
  187. },
  188. "type": "library",
  189. "autoload": {
  190. "psr-4": {
  191. "BaconQrCode\\": "src/"
  192. }
  193. },
  194. "notification-url": "https://packagist.org/downloads/",
  195. "license": [
  196. "BSD-2-Clause"
  197. ],
  198. "authors": [
  199. {
  200. "name": "Ben Scholzen 'DASPRiD'",
  201. "email": "mail@dasprids.de",
  202. "homepage": "https://dasprids.de/",
  203. "role": "Developer"
  204. }
  205. ],
  206. "description": "BaconQrCode is a QR code generator for PHP.",
  207. "homepage": "https://github.com/Bacon/BaconQrCode",
  208. "support": {
  209. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  210. "source": "https://github.com/Bacon/BaconQrCode/tree/v3.0.1"
  211. },
  212. "time": "2024-10-01T13:55:55+00:00"
  213. },
  214. {
  215. "name": "brick/math",
  216. "version": "0.11.0",
  217. "source": {
  218. "type": "git",
  219. "url": "https://github.com/brick/math.git",
  220. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  221. },
  222. "dist": {
  223. "type": "zip",
  224. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  225. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  226. "shasum": ""
  227. },
  228. "require": {
  229. "php": "^8.0"
  230. },
  231. "require-dev": {
  232. "php-coveralls/php-coveralls": "^2.2",
  233. "phpunit/phpunit": "^9.0",
  234. "vimeo/psalm": "5.0.0"
  235. },
  236. "type": "library",
  237. "autoload": {
  238. "psr-4": {
  239. "Brick\\Math\\": "src/"
  240. }
  241. },
  242. "notification-url": "https://packagist.org/downloads/",
  243. "license": [
  244. "MIT"
  245. ],
  246. "description": "Arbitrary-precision arithmetic library",
  247. "keywords": [
  248. "Arbitrary-precision",
  249. "BigInteger",
  250. "BigRational",
  251. "arithmetic",
  252. "bigdecimal",
  253. "bignum",
  254. "brick",
  255. "math"
  256. ],
  257. "support": {
  258. "issues": "https://github.com/brick/math/issues",
  259. "source": "https://github.com/brick/math/tree/0.11.0"
  260. },
  261. "funding": [
  262. {
  263. "url": "https://github.com/BenMorel",
  264. "type": "github"
  265. }
  266. ],
  267. "time": "2023-01-15T23:15:59+00:00"
  268. },
  269. {
  270. "name": "buzz/laravel-h-captcha",
  271. "version": "v1.0.6",
  272. "source": {
  273. "type": "git",
  274. "url": "https://github.com/thinhbuzz/laravel-h-captcha.git",
  275. "reference": "b42e87229d6abeeba7e6ff0d785649b57c69e03e"
  276. },
  277. "dist": {
  278. "type": "zip",
  279. "url": "https://api.github.com/repos/thinhbuzz/laravel-h-captcha/zipball/b42e87229d6abeeba7e6ff0d785649b57c69e03e",
  280. "reference": "b42e87229d6abeeba7e6ff0d785649b57c69e03e",
  281. "shasum": ""
  282. },
  283. "require": {
  284. "guzzlehttp/guzzle": "6.*|7.*",
  285. "illuminate/support": "5.*|6.*|7.*|8.*|9.*|10.*|11.*|12.*",
  286. "php": ">=5.4.0"
  287. },
  288. "type": "library",
  289. "extra": {
  290. "laravel": {
  291. "aliases": {
  292. "Captcha": "Buzz\\LaravelHCaptcha\\CaptchaFacade"
  293. },
  294. "providers": [
  295. "Buzz\\LaravelHCaptcha\\CaptchaServiceProvider"
  296. ]
  297. }
  298. },
  299. "autoload": {
  300. "psr-4": {
  301. "Buzz\\LaravelHCaptcha\\": "src"
  302. }
  303. },
  304. "notification-url": "https://packagist.org/downloads/",
  305. "license": [
  306. "MIT"
  307. ],
  308. "authors": [
  309. {
  310. "name": "ThinhBuzz",
  311. "email": "mr.thinhbuzz@gmail.com",
  312. "homepage": "https://www.facebook.com/thinh.buzz"
  313. }
  314. ],
  315. "description": "hCaptcha for Laravel",
  316. "homepage": "https://github.com/thinhbuzz/laravel-h-captcha",
  317. "keywords": [
  318. "captcha",
  319. "h-captcha",
  320. "hcaptcha",
  321. "laravel"
  322. ],
  323. "support": {
  324. "issues": "https://github.com/thinhbuzz/laravel-h-captcha/issues",
  325. "source": "https://github.com/thinhbuzz/laravel-h-captcha/tree/v1.0.6"
  326. },
  327. "time": "2025-03-04T13:06:32+00:00"
  328. },
  329. {
  330. "name": "carbonphp/carbon-doctrine-types",
  331. "version": "2.1.0",
  332. "source": {
  333. "type": "git",
  334. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  335. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb"
  336. },
  337. "dist": {
  338. "type": "zip",
  339. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  340. "reference": "99f76ffa36cce3b70a4a6abce41dba15ca2e84cb",
  341. "shasum": ""
  342. },
  343. "require": {
  344. "php": "^7.4 || ^8.0"
  345. },
  346. "conflict": {
  347. "doctrine/dbal": "<3.7.0 || >=4.0.0"
  348. },
  349. "require-dev": {
  350. "doctrine/dbal": "^3.7.0",
  351. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  352. "phpunit/phpunit": "^10.3"
  353. },
  354. "type": "library",
  355. "autoload": {
  356. "psr-4": {
  357. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  358. }
  359. },
  360. "notification-url": "https://packagist.org/downloads/",
  361. "license": [
  362. "MIT"
  363. ],
  364. "authors": [
  365. {
  366. "name": "KyleKatarn",
  367. "email": "kylekatarnls@gmail.com"
  368. }
  369. ],
  370. "description": "Types to use Carbon in Doctrine",
  371. "keywords": [
  372. "carbon",
  373. "date",
  374. "datetime",
  375. "doctrine",
  376. "time"
  377. ],
  378. "support": {
  379. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  380. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/2.1.0"
  381. },
  382. "funding": [
  383. {
  384. "url": "https://github.com/kylekatarnls",
  385. "type": "github"
  386. },
  387. {
  388. "url": "https://opencollective.com/Carbon",
  389. "type": "open_collective"
  390. },
  391. {
  392. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  393. "type": "tidelift"
  394. }
  395. ],
  396. "time": "2023-12-11T17:09:12+00:00"
  397. },
  398. {
  399. "name": "dasprid/enum",
  400. "version": "1.0.6",
  401. "source": {
  402. "type": "git",
  403. "url": "https://github.com/DASPRiD/Enum.git",
  404. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90"
  405. },
  406. "dist": {
  407. "type": "zip",
  408. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  409. "reference": "8dfd07c6d2cf31c8da90c53b83c026c7696dda90",
  410. "shasum": ""
  411. },
  412. "require": {
  413. "php": ">=7.1 <9.0"
  414. },
  415. "require-dev": {
  416. "phpunit/phpunit": "^7 || ^8 || ^9 || ^10 || ^11",
  417. "squizlabs/php_codesniffer": "*"
  418. },
  419. "type": "library",
  420. "autoload": {
  421. "psr-4": {
  422. "DASPRiD\\Enum\\": "src/"
  423. }
  424. },
  425. "notification-url": "https://packagist.org/downloads/",
  426. "license": [
  427. "BSD-2-Clause"
  428. ],
  429. "authors": [
  430. {
  431. "name": "Ben Scholzen 'DASPRiD'",
  432. "email": "mail@dasprids.de",
  433. "homepage": "https://dasprids.de/",
  434. "role": "Developer"
  435. }
  436. ],
  437. "description": "PHP 7.1 enum implementation",
  438. "keywords": [
  439. "enum",
  440. "map"
  441. ],
  442. "support": {
  443. "issues": "https://github.com/DASPRiD/Enum/issues",
  444. "source": "https://github.com/DASPRiD/Enum/tree/1.0.6"
  445. },
  446. "time": "2024-08-09T14:30:48+00:00"
  447. },
  448. {
  449. "name": "defuse/php-encryption",
  450. "version": "v2.4.0",
  451. "source": {
  452. "type": "git",
  453. "url": "https://github.com/defuse/php-encryption.git",
  454. "reference": "f53396c2d34225064647a05ca76c1da9d99e5828"
  455. },
  456. "dist": {
  457. "type": "zip",
  458. "url": "https://api.github.com/repos/defuse/php-encryption/zipball/f53396c2d34225064647a05ca76c1da9d99e5828",
  459. "reference": "f53396c2d34225064647a05ca76c1da9d99e5828",
  460. "shasum": ""
  461. },
  462. "require": {
  463. "ext-openssl": "*",
  464. "paragonie/random_compat": ">= 2",
  465. "php": ">=5.6.0"
  466. },
  467. "require-dev": {
  468. "phpunit/phpunit": "^5|^6|^7|^8|^9|^10",
  469. "yoast/phpunit-polyfills": "^2.0.0"
  470. },
  471. "bin": [
  472. "bin/generate-defuse-key"
  473. ],
  474. "type": "library",
  475. "autoload": {
  476. "psr-4": {
  477. "Defuse\\Crypto\\": "src"
  478. }
  479. },
  480. "notification-url": "https://packagist.org/downloads/",
  481. "license": [
  482. "MIT"
  483. ],
  484. "authors": [
  485. {
  486. "name": "Taylor Hornby",
  487. "email": "taylor@defuse.ca",
  488. "homepage": "https://defuse.ca/"
  489. },
  490. {
  491. "name": "Scott Arciszewski",
  492. "email": "info@paragonie.com",
  493. "homepage": "https://paragonie.com"
  494. }
  495. ],
  496. "description": "Secure PHP Encryption Library",
  497. "keywords": [
  498. "aes",
  499. "authenticated encryption",
  500. "cipher",
  501. "crypto",
  502. "cryptography",
  503. "encrypt",
  504. "encryption",
  505. "openssl",
  506. "security",
  507. "symmetric key cryptography"
  508. ],
  509. "support": {
  510. "issues": "https://github.com/defuse/php-encryption/issues",
  511. "source": "https://github.com/defuse/php-encryption/tree/v2.4.0"
  512. },
  513. "time": "2023-06-19T06:10:36+00:00"
  514. },
  515. {
  516. "name": "dflydev/dot-access-data",
  517. "version": "v3.0.3",
  518. "source": {
  519. "type": "git",
  520. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  521. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  522. },
  523. "dist": {
  524. "type": "zip",
  525. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  526. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  527. "shasum": ""
  528. },
  529. "require": {
  530. "php": "^7.1 || ^8.0"
  531. },
  532. "require-dev": {
  533. "phpstan/phpstan": "^0.12.42",
  534. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  535. "scrutinizer/ocular": "1.6.0",
  536. "squizlabs/php_codesniffer": "^3.5",
  537. "vimeo/psalm": "^4.0.0"
  538. },
  539. "type": "library",
  540. "extra": {
  541. "branch-alias": {
  542. "dev-main": "3.x-dev"
  543. }
  544. },
  545. "autoload": {
  546. "psr-4": {
  547. "Dflydev\\DotAccessData\\": "src/"
  548. }
  549. },
  550. "notification-url": "https://packagist.org/downloads/",
  551. "license": [
  552. "MIT"
  553. ],
  554. "authors": [
  555. {
  556. "name": "Dragonfly Development Inc.",
  557. "email": "info@dflydev.com",
  558. "homepage": "http://dflydev.com"
  559. },
  560. {
  561. "name": "Beau Simensen",
  562. "email": "beau@dflydev.com",
  563. "homepage": "http://beausimensen.com"
  564. },
  565. {
  566. "name": "Carlos Frutos",
  567. "email": "carlos@kiwing.it",
  568. "homepage": "https://github.com/cfrutos"
  569. },
  570. {
  571. "name": "Colin O'Dell",
  572. "email": "colinodell@gmail.com",
  573. "homepage": "https://www.colinodell.com"
  574. }
  575. ],
  576. "description": "Given a deep data structure, access data by dot notation.",
  577. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  578. "keywords": [
  579. "access",
  580. "data",
  581. "dot",
  582. "notation"
  583. ],
  584. "support": {
  585. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  586. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  587. },
  588. "time": "2024-07-08T12:26:09+00:00"
  589. },
  590. {
  591. "name": "doctrine/cache",
  592. "version": "2.2.0",
  593. "source": {
  594. "type": "git",
  595. "url": "https://github.com/doctrine/cache.git",
  596. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb"
  597. },
  598. "dist": {
  599. "type": "zip",
  600. "url": "https://api.github.com/repos/doctrine/cache/zipball/1ca8f21980e770095a31456042471a57bc4c68fb",
  601. "reference": "1ca8f21980e770095a31456042471a57bc4c68fb",
  602. "shasum": ""
  603. },
  604. "require": {
  605. "php": "~7.1 || ^8.0"
  606. },
  607. "conflict": {
  608. "doctrine/common": ">2.2,<2.4"
  609. },
  610. "require-dev": {
  611. "cache/integration-tests": "dev-master",
  612. "doctrine/coding-standard": "^9",
  613. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  614. "psr/cache": "^1.0 || ^2.0 || ^3.0",
  615. "symfony/cache": "^4.4 || ^5.4 || ^6",
  616. "symfony/var-exporter": "^4.4 || ^5.4 || ^6"
  617. },
  618. "type": "library",
  619. "autoload": {
  620. "psr-4": {
  621. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  622. }
  623. },
  624. "notification-url": "https://packagist.org/downloads/",
  625. "license": [
  626. "MIT"
  627. ],
  628. "authors": [
  629. {
  630. "name": "Guilherme Blanco",
  631. "email": "guilhermeblanco@gmail.com"
  632. },
  633. {
  634. "name": "Roman Borschel",
  635. "email": "roman@code-factory.org"
  636. },
  637. {
  638. "name": "Benjamin Eberlei",
  639. "email": "kontakt@beberlei.de"
  640. },
  641. {
  642. "name": "Jonathan Wage",
  643. "email": "jonwage@gmail.com"
  644. },
  645. {
  646. "name": "Johannes Schmitt",
  647. "email": "schmittjoh@gmail.com"
  648. }
  649. ],
  650. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  651. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  652. "keywords": [
  653. "abstraction",
  654. "apcu",
  655. "cache",
  656. "caching",
  657. "couchdb",
  658. "memcached",
  659. "php",
  660. "redis",
  661. "xcache"
  662. ],
  663. "support": {
  664. "issues": "https://github.com/doctrine/cache/issues",
  665. "source": "https://github.com/doctrine/cache/tree/2.2.0"
  666. },
  667. "funding": [
  668. {
  669. "url": "https://www.doctrine-project.org/sponsorship.html",
  670. "type": "custom"
  671. },
  672. {
  673. "url": "https://www.patreon.com/phpdoctrine",
  674. "type": "patreon"
  675. },
  676. {
  677. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fcache",
  678. "type": "tidelift"
  679. }
  680. ],
  681. "time": "2022-05-20T20:07:39+00:00"
  682. },
  683. {
  684. "name": "doctrine/dbal",
  685. "version": "3.9.4",
  686. "source": {
  687. "type": "git",
  688. "url": "https://github.com/doctrine/dbal.git",
  689. "reference": "ec16c82f20be1a7224e65ac67144a29199f87959"
  690. },
  691. "dist": {
  692. "type": "zip",
  693. "url": "https://api.github.com/repos/doctrine/dbal/zipball/ec16c82f20be1a7224e65ac67144a29199f87959",
  694. "reference": "ec16c82f20be1a7224e65ac67144a29199f87959",
  695. "shasum": ""
  696. },
  697. "require": {
  698. "composer-runtime-api": "^2",
  699. "doctrine/cache": "^1.11|^2.0",
  700. "doctrine/deprecations": "^0.5.3|^1",
  701. "doctrine/event-manager": "^1|^2",
  702. "php": "^7.4 || ^8.0",
  703. "psr/cache": "^1|^2|^3",
  704. "psr/log": "^1|^2|^3"
  705. },
  706. "require-dev": {
  707. "doctrine/coding-standard": "12.0.0",
  708. "fig/log-test": "^1",
  709. "jetbrains/phpstorm-stubs": "2023.1",
  710. "phpstan/phpstan": "2.1.1",
  711. "phpstan/phpstan-strict-rules": "^2",
  712. "phpunit/phpunit": "9.6.22",
  713. "slevomat/coding-standard": "8.13.1",
  714. "squizlabs/php_codesniffer": "3.10.2",
  715. "symfony/cache": "^5.4|^6.0|^7.0",
  716. "symfony/console": "^4.4|^5.4|^6.0|^7.0"
  717. },
  718. "suggest": {
  719. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  720. },
  721. "bin": [
  722. "bin/doctrine-dbal"
  723. ],
  724. "type": "library",
  725. "autoload": {
  726. "psr-4": {
  727. "Doctrine\\DBAL\\": "src"
  728. }
  729. },
  730. "notification-url": "https://packagist.org/downloads/",
  731. "license": [
  732. "MIT"
  733. ],
  734. "authors": [
  735. {
  736. "name": "Guilherme Blanco",
  737. "email": "guilhermeblanco@gmail.com"
  738. },
  739. {
  740. "name": "Roman Borschel",
  741. "email": "roman@code-factory.org"
  742. },
  743. {
  744. "name": "Benjamin Eberlei",
  745. "email": "kontakt@beberlei.de"
  746. },
  747. {
  748. "name": "Jonathan Wage",
  749. "email": "jonwage@gmail.com"
  750. }
  751. ],
  752. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  753. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  754. "keywords": [
  755. "abstraction",
  756. "database",
  757. "db2",
  758. "dbal",
  759. "mariadb",
  760. "mssql",
  761. "mysql",
  762. "oci8",
  763. "oracle",
  764. "pdo",
  765. "pgsql",
  766. "postgresql",
  767. "queryobject",
  768. "sasql",
  769. "sql",
  770. "sqlite",
  771. "sqlserver",
  772. "sqlsrv"
  773. ],
  774. "support": {
  775. "issues": "https://github.com/doctrine/dbal/issues",
  776. "source": "https://github.com/doctrine/dbal/tree/3.9.4"
  777. },
  778. "funding": [
  779. {
  780. "url": "https://www.doctrine-project.org/sponsorship.html",
  781. "type": "custom"
  782. },
  783. {
  784. "url": "https://www.patreon.com/phpdoctrine",
  785. "type": "patreon"
  786. },
  787. {
  788. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  789. "type": "tidelift"
  790. }
  791. ],
  792. "time": "2025-01-16T08:28:55+00:00"
  793. },
  794. {
  795. "name": "doctrine/deprecations",
  796. "version": "1.1.4",
  797. "source": {
  798. "type": "git",
  799. "url": "https://github.com/doctrine/deprecations.git",
  800. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9"
  801. },
  802. "dist": {
  803. "type": "zip",
  804. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/31610dbb31faa98e6b5447b62340826f54fbc4e9",
  805. "reference": "31610dbb31faa98e6b5447b62340826f54fbc4e9",
  806. "shasum": ""
  807. },
  808. "require": {
  809. "php": "^7.1 || ^8.0"
  810. },
  811. "require-dev": {
  812. "doctrine/coding-standard": "^9 || ^12",
  813. "phpstan/phpstan": "1.4.10 || 2.0.3",
  814. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  815. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  816. "psr/log": "^1 || ^2 || ^3"
  817. },
  818. "suggest": {
  819. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  820. },
  821. "type": "library",
  822. "autoload": {
  823. "psr-4": {
  824. "Doctrine\\Deprecations\\": "src"
  825. }
  826. },
  827. "notification-url": "https://packagist.org/downloads/",
  828. "license": [
  829. "MIT"
  830. ],
  831. "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.",
  832. "homepage": "https://www.doctrine-project.org/",
  833. "support": {
  834. "issues": "https://github.com/doctrine/deprecations/issues",
  835. "source": "https://github.com/doctrine/deprecations/tree/1.1.4"
  836. },
  837. "time": "2024-12-07T21:18:45+00:00"
  838. },
  839. {
  840. "name": "doctrine/event-manager",
  841. "version": "2.0.1",
  842. "source": {
  843. "type": "git",
  844. "url": "https://github.com/doctrine/event-manager.git",
  845. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e"
  846. },
  847. "dist": {
  848. "type": "zip",
  849. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/b680156fa328f1dfd874fd48c7026c41570b9c6e",
  850. "reference": "b680156fa328f1dfd874fd48c7026c41570b9c6e",
  851. "shasum": ""
  852. },
  853. "require": {
  854. "php": "^8.1"
  855. },
  856. "conflict": {
  857. "doctrine/common": "<2.9"
  858. },
  859. "require-dev": {
  860. "doctrine/coding-standard": "^12",
  861. "phpstan/phpstan": "^1.8.8",
  862. "phpunit/phpunit": "^10.5",
  863. "vimeo/psalm": "^5.24"
  864. },
  865. "type": "library",
  866. "autoload": {
  867. "psr-4": {
  868. "Doctrine\\Common\\": "src"
  869. }
  870. },
  871. "notification-url": "https://packagist.org/downloads/",
  872. "license": [
  873. "MIT"
  874. ],
  875. "authors": [
  876. {
  877. "name": "Guilherme Blanco",
  878. "email": "guilhermeblanco@gmail.com"
  879. },
  880. {
  881. "name": "Roman Borschel",
  882. "email": "roman@code-factory.org"
  883. },
  884. {
  885. "name": "Benjamin Eberlei",
  886. "email": "kontakt@beberlei.de"
  887. },
  888. {
  889. "name": "Jonathan Wage",
  890. "email": "jonwage@gmail.com"
  891. },
  892. {
  893. "name": "Johannes Schmitt",
  894. "email": "schmittjoh@gmail.com"
  895. },
  896. {
  897. "name": "Marco Pivetta",
  898. "email": "ocramius@gmail.com"
  899. }
  900. ],
  901. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  902. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  903. "keywords": [
  904. "event",
  905. "event dispatcher",
  906. "event manager",
  907. "event system",
  908. "events"
  909. ],
  910. "support": {
  911. "issues": "https://github.com/doctrine/event-manager/issues",
  912. "source": "https://github.com/doctrine/event-manager/tree/2.0.1"
  913. },
  914. "funding": [
  915. {
  916. "url": "https://www.doctrine-project.org/sponsorship.html",
  917. "type": "custom"
  918. },
  919. {
  920. "url": "https://www.patreon.com/phpdoctrine",
  921. "type": "patreon"
  922. },
  923. {
  924. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fevent-manager",
  925. "type": "tidelift"
  926. }
  927. ],
  928. "time": "2024-05-22T20:47:39+00:00"
  929. },
  930. {
  931. "name": "doctrine/inflector",
  932. "version": "2.0.10",
  933. "source": {
  934. "type": "git",
  935. "url": "https://github.com/doctrine/inflector.git",
  936. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  937. },
  938. "dist": {
  939. "type": "zip",
  940. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  941. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  942. "shasum": ""
  943. },
  944. "require": {
  945. "php": "^7.2 || ^8.0"
  946. },
  947. "require-dev": {
  948. "doctrine/coding-standard": "^11.0",
  949. "phpstan/phpstan": "^1.8",
  950. "phpstan/phpstan-phpunit": "^1.1",
  951. "phpstan/phpstan-strict-rules": "^1.3",
  952. "phpunit/phpunit": "^8.5 || ^9.5",
  953. "vimeo/psalm": "^4.25 || ^5.4"
  954. },
  955. "type": "library",
  956. "autoload": {
  957. "psr-4": {
  958. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  959. }
  960. },
  961. "notification-url": "https://packagist.org/downloads/",
  962. "license": [
  963. "MIT"
  964. ],
  965. "authors": [
  966. {
  967. "name": "Guilherme Blanco",
  968. "email": "guilhermeblanco@gmail.com"
  969. },
  970. {
  971. "name": "Roman Borschel",
  972. "email": "roman@code-factory.org"
  973. },
  974. {
  975. "name": "Benjamin Eberlei",
  976. "email": "kontakt@beberlei.de"
  977. },
  978. {
  979. "name": "Jonathan Wage",
  980. "email": "jonwage@gmail.com"
  981. },
  982. {
  983. "name": "Johannes Schmitt",
  984. "email": "schmittjoh@gmail.com"
  985. }
  986. ],
  987. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  988. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  989. "keywords": [
  990. "inflection",
  991. "inflector",
  992. "lowercase",
  993. "manipulation",
  994. "php",
  995. "plural",
  996. "singular",
  997. "strings",
  998. "uppercase",
  999. "words"
  1000. ],
  1001. "support": {
  1002. "issues": "https://github.com/doctrine/inflector/issues",
  1003. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1004. },
  1005. "funding": [
  1006. {
  1007. "url": "https://www.doctrine-project.org/sponsorship.html",
  1008. "type": "custom"
  1009. },
  1010. {
  1011. "url": "https://www.patreon.com/phpdoctrine",
  1012. "type": "patreon"
  1013. },
  1014. {
  1015. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1016. "type": "tidelift"
  1017. }
  1018. ],
  1019. "time": "2024-02-18T20:23:39+00:00"
  1020. },
  1021. {
  1022. "name": "doctrine/lexer",
  1023. "version": "3.0.1",
  1024. "source": {
  1025. "type": "git",
  1026. "url": "https://github.com/doctrine/lexer.git",
  1027. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  1028. },
  1029. "dist": {
  1030. "type": "zip",
  1031. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1032. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  1033. "shasum": ""
  1034. },
  1035. "require": {
  1036. "php": "^8.1"
  1037. },
  1038. "require-dev": {
  1039. "doctrine/coding-standard": "^12",
  1040. "phpstan/phpstan": "^1.10",
  1041. "phpunit/phpunit": "^10.5",
  1042. "psalm/plugin-phpunit": "^0.18.3",
  1043. "vimeo/psalm": "^5.21"
  1044. },
  1045. "type": "library",
  1046. "autoload": {
  1047. "psr-4": {
  1048. "Doctrine\\Common\\Lexer\\": "src"
  1049. }
  1050. },
  1051. "notification-url": "https://packagist.org/downloads/",
  1052. "license": [
  1053. "MIT"
  1054. ],
  1055. "authors": [
  1056. {
  1057. "name": "Guilherme Blanco",
  1058. "email": "guilhermeblanco@gmail.com"
  1059. },
  1060. {
  1061. "name": "Roman Borschel",
  1062. "email": "roman@code-factory.org"
  1063. },
  1064. {
  1065. "name": "Johannes Schmitt",
  1066. "email": "schmittjoh@gmail.com"
  1067. }
  1068. ],
  1069. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1070. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1071. "keywords": [
  1072. "annotations",
  1073. "docblock",
  1074. "lexer",
  1075. "parser",
  1076. "php"
  1077. ],
  1078. "support": {
  1079. "issues": "https://github.com/doctrine/lexer/issues",
  1080. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1081. },
  1082. "funding": [
  1083. {
  1084. "url": "https://www.doctrine-project.org/sponsorship.html",
  1085. "type": "custom"
  1086. },
  1087. {
  1088. "url": "https://www.patreon.com/phpdoctrine",
  1089. "type": "patreon"
  1090. },
  1091. {
  1092. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1093. "type": "tidelift"
  1094. }
  1095. ],
  1096. "time": "2024-02-05T11:56:58+00:00"
  1097. },
  1098. {
  1099. "name": "doctrine/sql-formatter",
  1100. "version": "1.5.2",
  1101. "source": {
  1102. "type": "git",
  1103. "url": "https://github.com/doctrine/sql-formatter.git",
  1104. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8"
  1105. },
  1106. "dist": {
  1107. "type": "zip",
  1108. "url": "https://api.github.com/repos/doctrine/sql-formatter/zipball/d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1109. "reference": "d6d00aba6fd2957fe5216fe2b7673e9985db20c8",
  1110. "shasum": ""
  1111. },
  1112. "require": {
  1113. "php": "^8.1"
  1114. },
  1115. "require-dev": {
  1116. "doctrine/coding-standard": "^12",
  1117. "ergebnis/phpunit-slow-test-detector": "^2.14",
  1118. "phpstan/phpstan": "^1.10",
  1119. "phpunit/phpunit": "^10.5"
  1120. },
  1121. "bin": [
  1122. "bin/sql-formatter"
  1123. ],
  1124. "type": "library",
  1125. "autoload": {
  1126. "psr-4": {
  1127. "Doctrine\\SqlFormatter\\": "src"
  1128. }
  1129. },
  1130. "notification-url": "https://packagist.org/downloads/",
  1131. "license": [
  1132. "MIT"
  1133. ],
  1134. "authors": [
  1135. {
  1136. "name": "Jeremy Dorn",
  1137. "email": "jeremy@jeremydorn.com",
  1138. "homepage": "https://jeremydorn.com/"
  1139. }
  1140. ],
  1141. "description": "a PHP SQL highlighting library",
  1142. "homepage": "https://github.com/doctrine/sql-formatter/",
  1143. "keywords": [
  1144. "highlight",
  1145. "sql"
  1146. ],
  1147. "support": {
  1148. "issues": "https://github.com/doctrine/sql-formatter/issues",
  1149. "source": "https://github.com/doctrine/sql-formatter/tree/1.5.2"
  1150. },
  1151. "time": "2025-01-24T11:45:48+00:00"
  1152. },
  1153. {
  1154. "name": "dragonmantank/cron-expression",
  1155. "version": "v3.4.0",
  1156. "source": {
  1157. "type": "git",
  1158. "url": "https://github.com/dragonmantank/cron-expression.git",
  1159. "reference": "8c784d071debd117328803d86b2097615b457500"
  1160. },
  1161. "dist": {
  1162. "type": "zip",
  1163. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  1164. "reference": "8c784d071debd117328803d86b2097615b457500",
  1165. "shasum": ""
  1166. },
  1167. "require": {
  1168. "php": "^7.2|^8.0",
  1169. "webmozart/assert": "^1.0"
  1170. },
  1171. "replace": {
  1172. "mtdowling/cron-expression": "^1.0"
  1173. },
  1174. "require-dev": {
  1175. "phpstan/extension-installer": "^1.0",
  1176. "phpstan/phpstan": "^1.0",
  1177. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1178. },
  1179. "type": "library",
  1180. "extra": {
  1181. "branch-alias": {
  1182. "dev-master": "3.x-dev"
  1183. }
  1184. },
  1185. "autoload": {
  1186. "psr-4": {
  1187. "Cron\\": "src/Cron/"
  1188. }
  1189. },
  1190. "notification-url": "https://packagist.org/downloads/",
  1191. "license": [
  1192. "MIT"
  1193. ],
  1194. "authors": [
  1195. {
  1196. "name": "Chris Tankersley",
  1197. "email": "chris@ctankersley.com",
  1198. "homepage": "https://github.com/dragonmantank"
  1199. }
  1200. ],
  1201. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1202. "keywords": [
  1203. "cron",
  1204. "schedule"
  1205. ],
  1206. "support": {
  1207. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1208. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1209. },
  1210. "funding": [
  1211. {
  1212. "url": "https://github.com/dragonmantank",
  1213. "type": "github"
  1214. }
  1215. ],
  1216. "time": "2024-10-09T13:47:03+00:00"
  1217. },
  1218. {
  1219. "name": "egulias/email-validator",
  1220. "version": "4.0.3",
  1221. "source": {
  1222. "type": "git",
  1223. "url": "https://github.com/egulias/EmailValidator.git",
  1224. "reference": "b115554301161fa21467629f1e1391c1936de517"
  1225. },
  1226. "dist": {
  1227. "type": "zip",
  1228. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/b115554301161fa21467629f1e1391c1936de517",
  1229. "reference": "b115554301161fa21467629f1e1391c1936de517",
  1230. "shasum": ""
  1231. },
  1232. "require": {
  1233. "doctrine/lexer": "^2.0 || ^3.0",
  1234. "php": ">=8.1",
  1235. "symfony/polyfill-intl-idn": "^1.26"
  1236. },
  1237. "require-dev": {
  1238. "phpunit/phpunit": "^10.2",
  1239. "vimeo/psalm": "^5.12"
  1240. },
  1241. "suggest": {
  1242. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1243. },
  1244. "type": "library",
  1245. "extra": {
  1246. "branch-alias": {
  1247. "dev-master": "4.0.x-dev"
  1248. }
  1249. },
  1250. "autoload": {
  1251. "psr-4": {
  1252. "Egulias\\EmailValidator\\": "src"
  1253. }
  1254. },
  1255. "notification-url": "https://packagist.org/downloads/",
  1256. "license": [
  1257. "MIT"
  1258. ],
  1259. "authors": [
  1260. {
  1261. "name": "Eduardo Gulias Davis"
  1262. }
  1263. ],
  1264. "description": "A library for validating emails against several RFCs",
  1265. "homepage": "https://github.com/egulias/EmailValidator",
  1266. "keywords": [
  1267. "email",
  1268. "emailvalidation",
  1269. "emailvalidator",
  1270. "validation",
  1271. "validator"
  1272. ],
  1273. "support": {
  1274. "issues": "https://github.com/egulias/EmailValidator/issues",
  1275. "source": "https://github.com/egulias/EmailValidator/tree/4.0.3"
  1276. },
  1277. "funding": [
  1278. {
  1279. "url": "https://github.com/egulias",
  1280. "type": "github"
  1281. }
  1282. ],
  1283. "time": "2024-12-27T00:36:43+00:00"
  1284. },
  1285. {
  1286. "name": "endroid/qr-code",
  1287. "version": "6.0.5",
  1288. "source": {
  1289. "type": "git",
  1290. "url": "https://github.com/endroid/qr-code.git",
  1291. "reference": "238baddf22500bbfeb2fa1ddc1eb2bd9374a6998"
  1292. },
  1293. "dist": {
  1294. "type": "zip",
  1295. "url": "https://api.github.com/repos/endroid/qr-code/zipball/238baddf22500bbfeb2fa1ddc1eb2bd9374a6998",
  1296. "reference": "238baddf22500bbfeb2fa1ddc1eb2bd9374a6998",
  1297. "shasum": ""
  1298. },
  1299. "require": {
  1300. "bacon/bacon-qr-code": "^3.0",
  1301. "php": "^8.2"
  1302. },
  1303. "require-dev": {
  1304. "endroid/quality": "dev-main",
  1305. "ext-gd": "*",
  1306. "khanamiryan/qrcode-detector-decoder": "^2.0.2",
  1307. "setasign/fpdf": "^1.8.2"
  1308. },
  1309. "suggest": {
  1310. "ext-gd": "Enables you to write PNG images",
  1311. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  1312. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  1313. "setasign/fpdf": "Enables you to use the PDF writer"
  1314. },
  1315. "type": "library",
  1316. "extra": {
  1317. "branch-alias": {
  1318. "dev-main": "6.x-dev"
  1319. }
  1320. },
  1321. "autoload": {
  1322. "psr-4": {
  1323. "Endroid\\QrCode\\": "src/"
  1324. }
  1325. },
  1326. "notification-url": "https://packagist.org/downloads/",
  1327. "license": [
  1328. "MIT"
  1329. ],
  1330. "authors": [
  1331. {
  1332. "name": "Jeroen van den Enden",
  1333. "email": "info@endroid.nl"
  1334. }
  1335. ],
  1336. "description": "Endroid QR Code",
  1337. "homepage": "https://github.com/endroid/qr-code",
  1338. "keywords": [
  1339. "code",
  1340. "endroid",
  1341. "php",
  1342. "qr",
  1343. "qrcode"
  1344. ],
  1345. "support": {
  1346. "issues": "https://github.com/endroid/qr-code/issues",
  1347. "source": "https://github.com/endroid/qr-code/tree/6.0.5"
  1348. },
  1349. "funding": [
  1350. {
  1351. "url": "https://github.com/endroid",
  1352. "type": "github"
  1353. }
  1354. ],
  1355. "time": "2025-03-07T08:15:43+00:00"
  1356. },
  1357. {
  1358. "name": "evenement/evenement",
  1359. "version": "v3.0.2",
  1360. "source": {
  1361. "type": "git",
  1362. "url": "https://github.com/igorw/evenement.git",
  1363. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc"
  1364. },
  1365. "dist": {
  1366. "type": "zip",
  1367. "url": "https://api.github.com/repos/igorw/evenement/zipball/0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1368. "reference": "0a16b0d71ab13284339abb99d9d2bd813640efbc",
  1369. "shasum": ""
  1370. },
  1371. "require": {
  1372. "php": ">=7.0"
  1373. },
  1374. "require-dev": {
  1375. "phpunit/phpunit": "^9 || ^6"
  1376. },
  1377. "type": "library",
  1378. "autoload": {
  1379. "psr-4": {
  1380. "Evenement\\": "src/"
  1381. }
  1382. },
  1383. "notification-url": "https://packagist.org/downloads/",
  1384. "license": [
  1385. "MIT"
  1386. ],
  1387. "authors": [
  1388. {
  1389. "name": "Igor Wiedler",
  1390. "email": "igor@wiedler.ch"
  1391. }
  1392. ],
  1393. "description": "Événement is a very simple event dispatching library for PHP",
  1394. "keywords": [
  1395. "event-dispatcher",
  1396. "event-emitter"
  1397. ],
  1398. "support": {
  1399. "issues": "https://github.com/igorw/evenement/issues",
  1400. "source": "https://github.com/igorw/evenement/tree/v3.0.2"
  1401. },
  1402. "time": "2023-08-08T05:53:35+00:00"
  1403. },
  1404. {
  1405. "name": "ezyang/htmlpurifier",
  1406. "version": "v4.18.0",
  1407. "source": {
  1408. "type": "git",
  1409. "url": "https://github.com/ezyang/htmlpurifier.git",
  1410. "reference": "cb56001e54359df7ae76dc522d08845dc741621b"
  1411. },
  1412. "dist": {
  1413. "type": "zip",
  1414. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/cb56001e54359df7ae76dc522d08845dc741621b",
  1415. "reference": "cb56001e54359df7ae76dc522d08845dc741621b",
  1416. "shasum": ""
  1417. },
  1418. "require": {
  1419. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0"
  1420. },
  1421. "require-dev": {
  1422. "cerdic/css-tidy": "^1.7 || ^2.0",
  1423. "simpletest/simpletest": "dev-master"
  1424. },
  1425. "suggest": {
  1426. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  1427. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  1428. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  1429. "ext-tidy": "Used for pretty-printing HTML"
  1430. },
  1431. "type": "library",
  1432. "autoload": {
  1433. "files": [
  1434. "library/HTMLPurifier.composer.php"
  1435. ],
  1436. "psr-0": {
  1437. "HTMLPurifier": "library/"
  1438. },
  1439. "exclude-from-classmap": [
  1440. "/library/HTMLPurifier/Language/"
  1441. ]
  1442. },
  1443. "notification-url": "https://packagist.org/downloads/",
  1444. "license": [
  1445. "LGPL-2.1-or-later"
  1446. ],
  1447. "authors": [
  1448. {
  1449. "name": "Edward Z. Yang",
  1450. "email": "admin@htmlpurifier.org",
  1451. "homepage": "http://ezyang.com"
  1452. }
  1453. ],
  1454. "description": "Standards compliant HTML filter written in PHP",
  1455. "homepage": "http://htmlpurifier.org/",
  1456. "keywords": [
  1457. "html"
  1458. ],
  1459. "support": {
  1460. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  1461. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.18.0"
  1462. },
  1463. "time": "2024-11-01T03:51:45+00:00"
  1464. },
  1465. {
  1466. "name": "firebase/php-jwt",
  1467. "version": "v6.11.0",
  1468. "source": {
  1469. "type": "git",
  1470. "url": "https://github.com/firebase/php-jwt.git",
  1471. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712"
  1472. },
  1473. "dist": {
  1474. "type": "zip",
  1475. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1476. "reference": "8f718f4dfc9c5d5f0c994cdfd103921b43592712",
  1477. "shasum": ""
  1478. },
  1479. "require": {
  1480. "php": "^8.0"
  1481. },
  1482. "require-dev": {
  1483. "guzzlehttp/guzzle": "^7.4",
  1484. "phpspec/prophecy-phpunit": "^2.0",
  1485. "phpunit/phpunit": "^9.5",
  1486. "psr/cache": "^2.0||^3.0",
  1487. "psr/http-client": "^1.0",
  1488. "psr/http-factory": "^1.0"
  1489. },
  1490. "suggest": {
  1491. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1492. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1493. },
  1494. "type": "library",
  1495. "autoload": {
  1496. "psr-4": {
  1497. "Firebase\\JWT\\": "src"
  1498. }
  1499. },
  1500. "notification-url": "https://packagist.org/downloads/",
  1501. "license": [
  1502. "BSD-3-Clause"
  1503. ],
  1504. "authors": [
  1505. {
  1506. "name": "Neuman Vong",
  1507. "email": "neuman+pear@twilio.com",
  1508. "role": "Developer"
  1509. },
  1510. {
  1511. "name": "Anant Narayanan",
  1512. "email": "anant@php.net",
  1513. "role": "Developer"
  1514. }
  1515. ],
  1516. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1517. "homepage": "https://github.com/firebase/php-jwt",
  1518. "keywords": [
  1519. "jwt",
  1520. "php"
  1521. ],
  1522. "support": {
  1523. "issues": "https://github.com/firebase/php-jwt/issues",
  1524. "source": "https://github.com/firebase/php-jwt/tree/v6.11.0"
  1525. },
  1526. "time": "2025-01-23T05:11:06+00:00"
  1527. },
  1528. {
  1529. "name": "fruitcake/php-cors",
  1530. "version": "v1.3.0",
  1531. "source": {
  1532. "type": "git",
  1533. "url": "https://github.com/fruitcake/php-cors.git",
  1534. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  1535. },
  1536. "dist": {
  1537. "type": "zip",
  1538. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  1539. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  1540. "shasum": ""
  1541. },
  1542. "require": {
  1543. "php": "^7.4|^8.0",
  1544. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  1545. },
  1546. "require-dev": {
  1547. "phpstan/phpstan": "^1.4",
  1548. "phpunit/phpunit": "^9",
  1549. "squizlabs/php_codesniffer": "^3.5"
  1550. },
  1551. "type": "library",
  1552. "extra": {
  1553. "branch-alias": {
  1554. "dev-master": "1.2-dev"
  1555. }
  1556. },
  1557. "autoload": {
  1558. "psr-4": {
  1559. "Fruitcake\\Cors\\": "src/"
  1560. }
  1561. },
  1562. "notification-url": "https://packagist.org/downloads/",
  1563. "license": [
  1564. "MIT"
  1565. ],
  1566. "authors": [
  1567. {
  1568. "name": "Fruitcake",
  1569. "homepage": "https://fruitcake.nl"
  1570. },
  1571. {
  1572. "name": "Barryvdh",
  1573. "email": "barryvdh@gmail.com"
  1574. }
  1575. ],
  1576. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1577. "homepage": "https://github.com/fruitcake/php-cors",
  1578. "keywords": [
  1579. "cors",
  1580. "laravel",
  1581. "symfony"
  1582. ],
  1583. "support": {
  1584. "issues": "https://github.com/fruitcake/php-cors/issues",
  1585. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  1586. },
  1587. "funding": [
  1588. {
  1589. "url": "https://fruitcake.nl",
  1590. "type": "custom"
  1591. },
  1592. {
  1593. "url": "https://github.com/barryvdh",
  1594. "type": "github"
  1595. }
  1596. ],
  1597. "time": "2023-10-12T05:21:21+00:00"
  1598. },
  1599. {
  1600. "name": "graham-campbell/result-type",
  1601. "version": "v1.1.3",
  1602. "source": {
  1603. "type": "git",
  1604. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1605. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  1606. },
  1607. "dist": {
  1608. "type": "zip",
  1609. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  1610. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  1611. "shasum": ""
  1612. },
  1613. "require": {
  1614. "php": "^7.2.5 || ^8.0",
  1615. "phpoption/phpoption": "^1.9.3"
  1616. },
  1617. "require-dev": {
  1618. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1619. },
  1620. "type": "library",
  1621. "autoload": {
  1622. "psr-4": {
  1623. "GrahamCampbell\\ResultType\\": "src/"
  1624. }
  1625. },
  1626. "notification-url": "https://packagist.org/downloads/",
  1627. "license": [
  1628. "MIT"
  1629. ],
  1630. "authors": [
  1631. {
  1632. "name": "Graham Campbell",
  1633. "email": "hello@gjcampbell.co.uk",
  1634. "homepage": "https://github.com/GrahamCampbell"
  1635. }
  1636. ],
  1637. "description": "An Implementation Of The Result Type",
  1638. "keywords": [
  1639. "Graham Campbell",
  1640. "GrahamCampbell",
  1641. "Result Type",
  1642. "Result-Type",
  1643. "result"
  1644. ],
  1645. "support": {
  1646. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1647. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  1648. },
  1649. "funding": [
  1650. {
  1651. "url": "https://github.com/GrahamCampbell",
  1652. "type": "github"
  1653. },
  1654. {
  1655. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1656. "type": "tidelift"
  1657. }
  1658. ],
  1659. "time": "2024-07-20T21:45:45+00:00"
  1660. },
  1661. {
  1662. "name": "guzzlehttp/guzzle",
  1663. "version": "7.9.2",
  1664. "source": {
  1665. "type": "git",
  1666. "url": "https://github.com/guzzle/guzzle.git",
  1667. "reference": "d281ed313b989f213357e3be1a179f02196ac99b"
  1668. },
  1669. "dist": {
  1670. "type": "zip",
  1671. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/d281ed313b989f213357e3be1a179f02196ac99b",
  1672. "reference": "d281ed313b989f213357e3be1a179f02196ac99b",
  1673. "shasum": ""
  1674. },
  1675. "require": {
  1676. "ext-json": "*",
  1677. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1678. "guzzlehttp/psr7": "^2.7.0",
  1679. "php": "^7.2.5 || ^8.0",
  1680. "psr/http-client": "^1.0",
  1681. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1682. },
  1683. "provide": {
  1684. "psr/http-client-implementation": "1.0"
  1685. },
  1686. "require-dev": {
  1687. "bamarni/composer-bin-plugin": "^1.8.2",
  1688. "ext-curl": "*",
  1689. "guzzle/client-integration-tests": "3.0.2",
  1690. "php-http/message-factory": "^1.1",
  1691. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1692. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1693. },
  1694. "suggest": {
  1695. "ext-curl": "Required for CURL handler support",
  1696. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1697. "psr/log": "Required for using the Log middleware"
  1698. },
  1699. "type": "library",
  1700. "extra": {
  1701. "bamarni-bin": {
  1702. "bin-links": true,
  1703. "forward-command": false
  1704. }
  1705. },
  1706. "autoload": {
  1707. "files": [
  1708. "src/functions_include.php"
  1709. ],
  1710. "psr-4": {
  1711. "GuzzleHttp\\": "src/"
  1712. }
  1713. },
  1714. "notification-url": "https://packagist.org/downloads/",
  1715. "license": [
  1716. "MIT"
  1717. ],
  1718. "authors": [
  1719. {
  1720. "name": "Graham Campbell",
  1721. "email": "hello@gjcampbell.co.uk",
  1722. "homepage": "https://github.com/GrahamCampbell"
  1723. },
  1724. {
  1725. "name": "Michael Dowling",
  1726. "email": "mtdowling@gmail.com",
  1727. "homepage": "https://github.com/mtdowling"
  1728. },
  1729. {
  1730. "name": "Jeremy Lindblom",
  1731. "email": "jeremeamia@gmail.com",
  1732. "homepage": "https://github.com/jeremeamia"
  1733. },
  1734. {
  1735. "name": "George Mponos",
  1736. "email": "gmponos@gmail.com",
  1737. "homepage": "https://github.com/gmponos"
  1738. },
  1739. {
  1740. "name": "Tobias Nyholm",
  1741. "email": "tobias.nyholm@gmail.com",
  1742. "homepage": "https://github.com/Nyholm"
  1743. },
  1744. {
  1745. "name": "Márk Sági-Kazár",
  1746. "email": "mark.sagikazar@gmail.com",
  1747. "homepage": "https://github.com/sagikazarmark"
  1748. },
  1749. {
  1750. "name": "Tobias Schultze",
  1751. "email": "webmaster@tubo-world.de",
  1752. "homepage": "https://github.com/Tobion"
  1753. }
  1754. ],
  1755. "description": "Guzzle is a PHP HTTP client library",
  1756. "keywords": [
  1757. "client",
  1758. "curl",
  1759. "framework",
  1760. "http",
  1761. "http client",
  1762. "psr-18",
  1763. "psr-7",
  1764. "rest",
  1765. "web service"
  1766. ],
  1767. "support": {
  1768. "issues": "https://github.com/guzzle/guzzle/issues",
  1769. "source": "https://github.com/guzzle/guzzle/tree/7.9.2"
  1770. },
  1771. "funding": [
  1772. {
  1773. "url": "https://github.com/GrahamCampbell",
  1774. "type": "github"
  1775. },
  1776. {
  1777. "url": "https://github.com/Nyholm",
  1778. "type": "github"
  1779. },
  1780. {
  1781. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1782. "type": "tidelift"
  1783. }
  1784. ],
  1785. "time": "2024-07-24T11:22:20+00:00"
  1786. },
  1787. {
  1788. "name": "guzzlehttp/promises",
  1789. "version": "2.0.4",
  1790. "source": {
  1791. "type": "git",
  1792. "url": "https://github.com/guzzle/promises.git",
  1793. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455"
  1794. },
  1795. "dist": {
  1796. "type": "zip",
  1797. "url": "https://api.github.com/repos/guzzle/promises/zipball/f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1798. "reference": "f9c436286ab2892c7db7be8c8da4ef61ccf7b455",
  1799. "shasum": ""
  1800. },
  1801. "require": {
  1802. "php": "^7.2.5 || ^8.0"
  1803. },
  1804. "require-dev": {
  1805. "bamarni/composer-bin-plugin": "^1.8.2",
  1806. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1807. },
  1808. "type": "library",
  1809. "extra": {
  1810. "bamarni-bin": {
  1811. "bin-links": true,
  1812. "forward-command": false
  1813. }
  1814. },
  1815. "autoload": {
  1816. "psr-4": {
  1817. "GuzzleHttp\\Promise\\": "src/"
  1818. }
  1819. },
  1820. "notification-url": "https://packagist.org/downloads/",
  1821. "license": [
  1822. "MIT"
  1823. ],
  1824. "authors": [
  1825. {
  1826. "name": "Graham Campbell",
  1827. "email": "hello@gjcampbell.co.uk",
  1828. "homepage": "https://github.com/GrahamCampbell"
  1829. },
  1830. {
  1831. "name": "Michael Dowling",
  1832. "email": "mtdowling@gmail.com",
  1833. "homepage": "https://github.com/mtdowling"
  1834. },
  1835. {
  1836. "name": "Tobias Nyholm",
  1837. "email": "tobias.nyholm@gmail.com",
  1838. "homepage": "https://github.com/Nyholm"
  1839. },
  1840. {
  1841. "name": "Tobias Schultze",
  1842. "email": "webmaster@tubo-world.de",
  1843. "homepage": "https://github.com/Tobion"
  1844. }
  1845. ],
  1846. "description": "Guzzle promises library",
  1847. "keywords": [
  1848. "promise"
  1849. ],
  1850. "support": {
  1851. "issues": "https://github.com/guzzle/promises/issues",
  1852. "source": "https://github.com/guzzle/promises/tree/2.0.4"
  1853. },
  1854. "funding": [
  1855. {
  1856. "url": "https://github.com/GrahamCampbell",
  1857. "type": "github"
  1858. },
  1859. {
  1860. "url": "https://github.com/Nyholm",
  1861. "type": "github"
  1862. },
  1863. {
  1864. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1865. "type": "tidelift"
  1866. }
  1867. ],
  1868. "time": "2024-10-17T10:06:22+00:00"
  1869. },
  1870. {
  1871. "name": "guzzlehttp/psr7",
  1872. "version": "2.7.0",
  1873. "source": {
  1874. "type": "git",
  1875. "url": "https://github.com/guzzle/psr7.git",
  1876. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201"
  1877. },
  1878. "dist": {
  1879. "type": "zip",
  1880. "url": "https://api.github.com/repos/guzzle/psr7/zipball/a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1881. "reference": "a70f5c95fb43bc83f07c9c948baa0dc1829bf201",
  1882. "shasum": ""
  1883. },
  1884. "require": {
  1885. "php": "^7.2.5 || ^8.0",
  1886. "psr/http-factory": "^1.0",
  1887. "psr/http-message": "^1.1 || ^2.0",
  1888. "ralouphie/getallheaders": "^3.0"
  1889. },
  1890. "provide": {
  1891. "psr/http-factory-implementation": "1.0",
  1892. "psr/http-message-implementation": "1.0"
  1893. },
  1894. "require-dev": {
  1895. "bamarni/composer-bin-plugin": "^1.8.2",
  1896. "http-interop/http-factory-tests": "0.9.0",
  1897. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1898. },
  1899. "suggest": {
  1900. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1901. },
  1902. "type": "library",
  1903. "extra": {
  1904. "bamarni-bin": {
  1905. "bin-links": true,
  1906. "forward-command": false
  1907. }
  1908. },
  1909. "autoload": {
  1910. "psr-4": {
  1911. "GuzzleHttp\\Psr7\\": "src/"
  1912. }
  1913. },
  1914. "notification-url": "https://packagist.org/downloads/",
  1915. "license": [
  1916. "MIT"
  1917. ],
  1918. "authors": [
  1919. {
  1920. "name": "Graham Campbell",
  1921. "email": "hello@gjcampbell.co.uk",
  1922. "homepage": "https://github.com/GrahamCampbell"
  1923. },
  1924. {
  1925. "name": "Michael Dowling",
  1926. "email": "mtdowling@gmail.com",
  1927. "homepage": "https://github.com/mtdowling"
  1928. },
  1929. {
  1930. "name": "George Mponos",
  1931. "email": "gmponos@gmail.com",
  1932. "homepage": "https://github.com/gmponos"
  1933. },
  1934. {
  1935. "name": "Tobias Nyholm",
  1936. "email": "tobias.nyholm@gmail.com",
  1937. "homepage": "https://github.com/Nyholm"
  1938. },
  1939. {
  1940. "name": "Márk Sági-Kazár",
  1941. "email": "mark.sagikazar@gmail.com",
  1942. "homepage": "https://github.com/sagikazarmark"
  1943. },
  1944. {
  1945. "name": "Tobias Schultze",
  1946. "email": "webmaster@tubo-world.de",
  1947. "homepage": "https://github.com/Tobion"
  1948. },
  1949. {
  1950. "name": "Márk Sági-Kazár",
  1951. "email": "mark.sagikazar@gmail.com",
  1952. "homepage": "https://sagikazarmark.hu"
  1953. }
  1954. ],
  1955. "description": "PSR-7 message implementation that also provides common utility methods",
  1956. "keywords": [
  1957. "http",
  1958. "message",
  1959. "psr-7",
  1960. "request",
  1961. "response",
  1962. "stream",
  1963. "uri",
  1964. "url"
  1965. ],
  1966. "support": {
  1967. "issues": "https://github.com/guzzle/psr7/issues",
  1968. "source": "https://github.com/guzzle/psr7/tree/2.7.0"
  1969. },
  1970. "funding": [
  1971. {
  1972. "url": "https://github.com/GrahamCampbell",
  1973. "type": "github"
  1974. },
  1975. {
  1976. "url": "https://github.com/Nyholm",
  1977. "type": "github"
  1978. },
  1979. {
  1980. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1981. "type": "tidelift"
  1982. }
  1983. ],
  1984. "time": "2024-07-18T11:15:46+00:00"
  1985. },
  1986. {
  1987. "name": "guzzlehttp/uri-template",
  1988. "version": "v1.0.4",
  1989. "source": {
  1990. "type": "git",
  1991. "url": "https://github.com/guzzle/uri-template.git",
  1992. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2"
  1993. },
  1994. "dist": {
  1995. "type": "zip",
  1996. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2",
  1997. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2",
  1998. "shasum": ""
  1999. },
  2000. "require": {
  2001. "php": "^7.2.5 || ^8.0",
  2002. "symfony/polyfill-php80": "^1.24"
  2003. },
  2004. "require-dev": {
  2005. "bamarni/composer-bin-plugin": "^1.8.2",
  2006. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  2007. "uri-template/tests": "1.0.0"
  2008. },
  2009. "type": "library",
  2010. "extra": {
  2011. "bamarni-bin": {
  2012. "bin-links": true,
  2013. "forward-command": false
  2014. }
  2015. },
  2016. "autoload": {
  2017. "psr-4": {
  2018. "GuzzleHttp\\UriTemplate\\": "src"
  2019. }
  2020. },
  2021. "notification-url": "https://packagist.org/downloads/",
  2022. "license": [
  2023. "MIT"
  2024. ],
  2025. "authors": [
  2026. {
  2027. "name": "Graham Campbell",
  2028. "email": "hello@gjcampbell.co.uk",
  2029. "homepage": "https://github.com/GrahamCampbell"
  2030. },
  2031. {
  2032. "name": "Michael Dowling",
  2033. "email": "mtdowling@gmail.com",
  2034. "homepage": "https://github.com/mtdowling"
  2035. },
  2036. {
  2037. "name": "George Mponos",
  2038. "email": "gmponos@gmail.com",
  2039. "homepage": "https://github.com/gmponos"
  2040. },
  2041. {
  2042. "name": "Tobias Nyholm",
  2043. "email": "tobias.nyholm@gmail.com",
  2044. "homepage": "https://github.com/Nyholm"
  2045. }
  2046. ],
  2047. "description": "A polyfill class for uri_template of PHP",
  2048. "keywords": [
  2049. "guzzlehttp",
  2050. "uri-template"
  2051. ],
  2052. "support": {
  2053. "issues": "https://github.com/guzzle/uri-template/issues",
  2054. "source": "https://github.com/guzzle/uri-template/tree/v1.0.4"
  2055. },
  2056. "funding": [
  2057. {
  2058. "url": "https://github.com/GrahamCampbell",
  2059. "type": "github"
  2060. },
  2061. {
  2062. "url": "https://github.com/Nyholm",
  2063. "type": "github"
  2064. },
  2065. {
  2066. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  2067. "type": "tidelift"
  2068. }
  2069. ],
  2070. "time": "2025-02-03T10:55:03+00:00"
  2071. },
  2072. {
  2073. "name": "intervention/image",
  2074. "version": "2.7.2",
  2075. "source": {
  2076. "type": "git",
  2077. "url": "https://github.com/Intervention/image.git",
  2078. "reference": "04be355f8d6734c826045d02a1079ad658322dad"
  2079. },
  2080. "dist": {
  2081. "type": "zip",
  2082. "url": "https://api.github.com/repos/Intervention/image/zipball/04be355f8d6734c826045d02a1079ad658322dad",
  2083. "reference": "04be355f8d6734c826045d02a1079ad658322dad",
  2084. "shasum": ""
  2085. },
  2086. "require": {
  2087. "ext-fileinfo": "*",
  2088. "guzzlehttp/psr7": "~1.1 || ^2.0",
  2089. "php": ">=5.4.0"
  2090. },
  2091. "require-dev": {
  2092. "mockery/mockery": "~0.9.2",
  2093. "phpunit/phpunit": "^4.8 || ^5.7 || ^7.5.15"
  2094. },
  2095. "suggest": {
  2096. "ext-gd": "to use GD library based image processing.",
  2097. "ext-imagick": "to use Imagick based image processing.",
  2098. "intervention/imagecache": "Caching extension for the Intervention Image library"
  2099. },
  2100. "type": "library",
  2101. "extra": {
  2102. "laravel": {
  2103. "aliases": {
  2104. "Image": "Intervention\\Image\\Facades\\Image"
  2105. },
  2106. "providers": [
  2107. "Intervention\\Image\\ImageServiceProvider"
  2108. ]
  2109. },
  2110. "branch-alias": {
  2111. "dev-master": "2.4-dev"
  2112. }
  2113. },
  2114. "autoload": {
  2115. "psr-4": {
  2116. "Intervention\\Image\\": "src/Intervention/Image"
  2117. }
  2118. },
  2119. "notification-url": "https://packagist.org/downloads/",
  2120. "license": [
  2121. "MIT"
  2122. ],
  2123. "authors": [
  2124. {
  2125. "name": "Oliver Vogel",
  2126. "email": "oliver@intervention.io",
  2127. "homepage": "https://intervention.io/"
  2128. }
  2129. ],
  2130. "description": "Image handling and manipulation library with support for Laravel integration",
  2131. "homepage": "http://image.intervention.io/",
  2132. "keywords": [
  2133. "gd",
  2134. "image",
  2135. "imagick",
  2136. "laravel",
  2137. "thumbnail",
  2138. "watermark"
  2139. ],
  2140. "support": {
  2141. "issues": "https://github.com/Intervention/image/issues",
  2142. "source": "https://github.com/Intervention/image/tree/2.7.2"
  2143. },
  2144. "funding": [
  2145. {
  2146. "url": "https://paypal.me/interventionio",
  2147. "type": "custom"
  2148. },
  2149. {
  2150. "url": "https://github.com/Intervention",
  2151. "type": "github"
  2152. }
  2153. ],
  2154. "time": "2022-05-21T17:30:32+00:00"
  2155. },
  2156. {
  2157. "name": "jaybizzle/crawler-detect",
  2158. "version": "v1.3.4",
  2159. "source": {
  2160. "type": "git",
  2161. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  2162. "reference": "d3b7ff28994e1b0de764ab7412fa269a79634ff3"
  2163. },
  2164. "dist": {
  2165. "type": "zip",
  2166. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/d3b7ff28994e1b0de764ab7412fa269a79634ff3",
  2167. "reference": "d3b7ff28994e1b0de764ab7412fa269a79634ff3",
  2168. "shasum": ""
  2169. },
  2170. "require": {
  2171. "php": ">=7.1.0"
  2172. },
  2173. "require-dev": {
  2174. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  2175. },
  2176. "type": "library",
  2177. "autoload": {
  2178. "psr-4": {
  2179. "Jaybizzle\\CrawlerDetect\\": "src/"
  2180. }
  2181. },
  2182. "notification-url": "https://packagist.org/downloads/",
  2183. "license": [
  2184. "MIT"
  2185. ],
  2186. "authors": [
  2187. {
  2188. "name": "Mark Beech",
  2189. "email": "m@rkbee.ch",
  2190. "role": "Developer"
  2191. }
  2192. ],
  2193. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  2194. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  2195. "keywords": [
  2196. "crawler",
  2197. "crawler detect",
  2198. "crawler detector",
  2199. "crawlerdetect",
  2200. "php crawler detect"
  2201. ],
  2202. "support": {
  2203. "issues": "https://github.com/JayBizzle/Crawler-Detect/issues",
  2204. "source": "https://github.com/JayBizzle/Crawler-Detect/tree/v1.3.4"
  2205. },
  2206. "time": "2025-03-05T23:12:10+00:00"
  2207. },
  2208. {
  2209. "name": "jenssegers/agent",
  2210. "version": "v2.6.4",
  2211. "source": {
  2212. "type": "git",
  2213. "url": "https://github.com/jenssegers/agent.git",
  2214. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  2215. },
  2216. "dist": {
  2217. "type": "zip",
  2218. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  2219. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  2220. "shasum": ""
  2221. },
  2222. "require": {
  2223. "jaybizzle/crawler-detect": "^1.2",
  2224. "mobiledetect/mobiledetectlib": "^2.7.6",
  2225. "php": ">=5.6"
  2226. },
  2227. "require-dev": {
  2228. "php-coveralls/php-coveralls": "^2.1",
  2229. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  2230. },
  2231. "suggest": {
  2232. "illuminate/support": "Required for laravel service providers"
  2233. },
  2234. "type": "library",
  2235. "extra": {
  2236. "laravel": {
  2237. "aliases": {
  2238. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  2239. },
  2240. "providers": [
  2241. "Jenssegers\\Agent\\AgentServiceProvider"
  2242. ]
  2243. },
  2244. "branch-alias": {
  2245. "dev-master": "3.0-dev"
  2246. }
  2247. },
  2248. "autoload": {
  2249. "psr-4": {
  2250. "Jenssegers\\Agent\\": "src/"
  2251. }
  2252. },
  2253. "notification-url": "https://packagist.org/downloads/",
  2254. "license": [
  2255. "MIT"
  2256. ],
  2257. "authors": [
  2258. {
  2259. "name": "Jens Segers",
  2260. "homepage": "https://jenssegers.com"
  2261. }
  2262. ],
  2263. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  2264. "homepage": "https://github.com/jenssegers/agent",
  2265. "keywords": [
  2266. "Agent",
  2267. "browser",
  2268. "desktop",
  2269. "laravel",
  2270. "mobile",
  2271. "platform",
  2272. "user agent",
  2273. "useragent"
  2274. ],
  2275. "support": {
  2276. "issues": "https://github.com/jenssegers/agent/issues",
  2277. "source": "https://github.com/jenssegers/agent/tree/v2.6.4"
  2278. },
  2279. "funding": [
  2280. {
  2281. "url": "https://github.com/jenssegers",
  2282. "type": "github"
  2283. },
  2284. {
  2285. "url": "https://tidelift.com/funding/github/packagist/jenssegers/agent",
  2286. "type": "tidelift"
  2287. }
  2288. ],
  2289. "time": "2020-06-13T08:05:20+00:00"
  2290. },
  2291. {
  2292. "name": "laravel-notification-channels/expo",
  2293. "version": "v2.1.0",
  2294. "source": {
  2295. "type": "git",
  2296. "url": "https://github.com/laravel-notification-channels/expo.git",
  2297. "reference": "4a01760a361de6ca61d022d4a3e4efce54bdd74b"
  2298. },
  2299. "dist": {
  2300. "type": "zip",
  2301. "url": "https://api.github.com/repos/laravel-notification-channels/expo/zipball/4a01760a361de6ca61d022d4a3e4efce54bdd74b",
  2302. "reference": "4a01760a361de6ca61d022d4a3e4efce54bdd74b",
  2303. "shasum": ""
  2304. },
  2305. "require": {
  2306. "ext-json": "*",
  2307. "guzzlehttp/guzzle": "^7.1",
  2308. "illuminate/contracts": "^11.0|^12.0",
  2309. "illuminate/notifications": "^11.0|^12.0",
  2310. "illuminate/support": "^11.0|^12.0",
  2311. "php": "~8.3"
  2312. },
  2313. "require-dev": {
  2314. "larastan/larastan": "^3.0",
  2315. "laravel/pint": "^1.0",
  2316. "orchestra/testbench": "^9.11",
  2317. "phpunit/phpunit": "^11.0"
  2318. },
  2319. "suggest": {
  2320. "ext-zlib": "Required for compressing payloads exceeding 1 KiB in size."
  2321. },
  2322. "type": "library",
  2323. "extra": {
  2324. "laravel": {
  2325. "providers": [
  2326. "NotificationChannels\\Expo\\ExpoServiceProvider"
  2327. ]
  2328. }
  2329. },
  2330. "autoload": {
  2331. "psr-4": {
  2332. "NotificationChannels\\Expo\\": "src"
  2333. }
  2334. },
  2335. "notification-url": "https://packagist.org/downloads/",
  2336. "license": [
  2337. "MIT"
  2338. ],
  2339. "authors": [
  2340. {
  2341. "name": "Muhammed Sari",
  2342. "email": "muhammed@dive.be",
  2343. "homepage": "https://dive.be",
  2344. "role": "Developer"
  2345. }
  2346. ],
  2347. "description": "Expo Notifications Channel for Laravel",
  2348. "homepage": "https://github.com/laravel-notification-channels/expo",
  2349. "support": {
  2350. "issues": "https://github.com/laravel-notification-channels/expo/issues",
  2351. "source": "https://github.com/laravel-notification-channels/expo/tree/v2.1.0"
  2352. },
  2353. "time": "2025-02-24T22:52:18+00:00"
  2354. },
  2355. {
  2356. "name": "laravel-notification-channels/webpush",
  2357. "version": "10.2.0",
  2358. "source": {
  2359. "type": "git",
  2360. "url": "https://github.com/laravel-notification-channels/webpush.git",
  2361. "reference": "84cbb367a9b53ab65bd3c6bb24181cb4e82d774c"
  2362. },
  2363. "dist": {
  2364. "type": "zip",
  2365. "url": "https://api.github.com/repos/laravel-notification-channels/webpush/zipball/84cbb367a9b53ab65bd3c6bb24181cb4e82d774c",
  2366. "reference": "84cbb367a9b53ab65bd3c6bb24181cb4e82d774c",
  2367. "shasum": ""
  2368. },
  2369. "require": {
  2370. "illuminate/notifications": "^11.0|^12.0",
  2371. "illuminate/support": "^11.0|^12.0",
  2372. "minishlink/web-push": "^9.0",
  2373. "php": "^8.2"
  2374. },
  2375. "require-dev": {
  2376. "larastan/larastan": "^3.1",
  2377. "laravel/pint": "^1.21",
  2378. "mockery/mockery": "^1.0",
  2379. "orchestra/testbench": "^9.2|^10.0",
  2380. "phpunit/phpunit": "^10.5|^11.5.3",
  2381. "rector/rector": "^2.0"
  2382. },
  2383. "type": "library",
  2384. "extra": {
  2385. "laravel": {
  2386. "providers": [
  2387. "NotificationChannels\\WebPush\\WebPushServiceProvider"
  2388. ]
  2389. }
  2390. },
  2391. "autoload": {
  2392. "psr-4": {
  2393. "NotificationChannels\\WebPush\\": "src"
  2394. }
  2395. },
  2396. "notification-url": "https://packagist.org/downloads/",
  2397. "license": [
  2398. "MIT"
  2399. ],
  2400. "authors": [
  2401. {
  2402. "name": "Cretu Eusebiu",
  2403. "email": "me@cretueusebiu.com",
  2404. "homepage": "http://cretueusebiu.com",
  2405. "role": "Developer"
  2406. },
  2407. {
  2408. "name": "Joost de Bruijn",
  2409. "email": "joost@aqualabs.nl",
  2410. "role": "Maintainer"
  2411. }
  2412. ],
  2413. "description": "Web Push Notifications driver for Laravel.",
  2414. "homepage": "https://github.com/laravel-notification-channels/webpush",
  2415. "support": {
  2416. "issues": "https://github.com/laravel-notification-channels/webpush/issues",
  2417. "source": "https://github.com/laravel-notification-channels/webpush/tree/10.2.0"
  2418. },
  2419. "time": "2025-03-03T18:54:38+00:00"
  2420. },
  2421. {
  2422. "name": "laravel/framework",
  2423. "version": "v12.1.1",
  2424. "source": {
  2425. "type": "git",
  2426. "url": "https://github.com/laravel/framework.git",
  2427. "reference": "9be5738f1ca1530055bb9d6db81f909a7ed34842"
  2428. },
  2429. "dist": {
  2430. "type": "zip",
  2431. "url": "https://api.github.com/repos/laravel/framework/zipball/9be5738f1ca1530055bb9d6db81f909a7ed34842",
  2432. "reference": "9be5738f1ca1530055bb9d6db81f909a7ed34842",
  2433. "shasum": ""
  2434. },
  2435. "require": {
  2436. "brick/math": "^0.11|^0.12",
  2437. "composer-runtime-api": "^2.2",
  2438. "doctrine/inflector": "^2.0.5",
  2439. "dragonmantank/cron-expression": "^3.4",
  2440. "egulias/email-validator": "^3.2.1|^4.0",
  2441. "ext-ctype": "*",
  2442. "ext-filter": "*",
  2443. "ext-hash": "*",
  2444. "ext-mbstring": "*",
  2445. "ext-openssl": "*",
  2446. "ext-session": "*",
  2447. "ext-tokenizer": "*",
  2448. "fruitcake/php-cors": "^1.3",
  2449. "guzzlehttp/guzzle": "^7.8.2",
  2450. "guzzlehttp/uri-template": "^1.0",
  2451. "laravel/prompts": "^0.3.0",
  2452. "laravel/serializable-closure": "^1.3|^2.0",
  2453. "league/commonmark": "^2.6",
  2454. "league/flysystem": "^3.25.1",
  2455. "league/flysystem-local": "^3.25.1",
  2456. "league/uri": "^7.5.1",
  2457. "monolog/monolog": "^3.0",
  2458. "nesbot/carbon": "^3.8.4",
  2459. "nunomaduro/termwind": "^2.0",
  2460. "php": "^8.2",
  2461. "psr/container": "^1.1.1|^2.0.1",
  2462. "psr/log": "^1.0|^2.0|^3.0",
  2463. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2464. "ramsey/uuid": "^4.7",
  2465. "symfony/console": "^7.2.0",
  2466. "symfony/error-handler": "^7.2.0",
  2467. "symfony/finder": "^7.2.0",
  2468. "symfony/http-foundation": "^7.2.0",
  2469. "symfony/http-kernel": "^7.2.0",
  2470. "symfony/mailer": "^7.2.0",
  2471. "symfony/mime": "^7.2.0",
  2472. "symfony/polyfill-php83": "^1.31",
  2473. "symfony/process": "^7.2.0",
  2474. "symfony/routing": "^7.2.0",
  2475. "symfony/uid": "^7.2.0",
  2476. "symfony/var-dumper": "^7.2.0",
  2477. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2478. "vlucas/phpdotenv": "^5.6.1",
  2479. "voku/portable-ascii": "^2.0.2"
  2480. },
  2481. "conflict": {
  2482. "tightenco/collect": "<5.5.33"
  2483. },
  2484. "provide": {
  2485. "psr/container-implementation": "1.1|2.0",
  2486. "psr/log-implementation": "1.0|2.0|3.0",
  2487. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2488. },
  2489. "replace": {
  2490. "illuminate/auth": "self.version",
  2491. "illuminate/broadcasting": "self.version",
  2492. "illuminate/bus": "self.version",
  2493. "illuminate/cache": "self.version",
  2494. "illuminate/collections": "self.version",
  2495. "illuminate/concurrency": "self.version",
  2496. "illuminate/conditionable": "self.version",
  2497. "illuminate/config": "self.version",
  2498. "illuminate/console": "self.version",
  2499. "illuminate/container": "self.version",
  2500. "illuminate/contracts": "self.version",
  2501. "illuminate/cookie": "self.version",
  2502. "illuminate/database": "self.version",
  2503. "illuminate/encryption": "self.version",
  2504. "illuminate/events": "self.version",
  2505. "illuminate/filesystem": "self.version",
  2506. "illuminate/hashing": "self.version",
  2507. "illuminate/http": "self.version",
  2508. "illuminate/log": "self.version",
  2509. "illuminate/macroable": "self.version",
  2510. "illuminate/mail": "self.version",
  2511. "illuminate/notifications": "self.version",
  2512. "illuminate/pagination": "self.version",
  2513. "illuminate/pipeline": "self.version",
  2514. "illuminate/process": "self.version",
  2515. "illuminate/queue": "self.version",
  2516. "illuminate/redis": "self.version",
  2517. "illuminate/routing": "self.version",
  2518. "illuminate/session": "self.version",
  2519. "illuminate/support": "self.version",
  2520. "illuminate/testing": "self.version",
  2521. "illuminate/translation": "self.version",
  2522. "illuminate/validation": "self.version",
  2523. "illuminate/view": "self.version",
  2524. "spatie/once": "*"
  2525. },
  2526. "require-dev": {
  2527. "ably/ably-php": "^1.0",
  2528. "aws/aws-sdk-php": "^3.322.9",
  2529. "ext-gmp": "*",
  2530. "fakerphp/faker": "^1.24",
  2531. "guzzlehttp/promises": "^2.0.3",
  2532. "guzzlehttp/psr7": "^2.4",
  2533. "laravel/pint": "^1.18",
  2534. "league/flysystem-aws-s3-v3": "^3.25.1",
  2535. "league/flysystem-ftp": "^3.25.1",
  2536. "league/flysystem-path-prefixing": "^3.25.1",
  2537. "league/flysystem-read-only": "^3.25.1",
  2538. "league/flysystem-sftp-v3": "^3.25.1",
  2539. "mockery/mockery": "^1.6.10",
  2540. "orchestra/testbench-core": "^10.0.0",
  2541. "pda/pheanstalk": "^5.0.6",
  2542. "php-http/discovery": "^1.15",
  2543. "phpstan/phpstan": "^2.0",
  2544. "phpunit/phpunit": "^10.5.35|^11.5.3|^12.0.1",
  2545. "predis/predis": "^2.3",
  2546. "resend/resend-php": "^0.10.0",
  2547. "symfony/cache": "^7.2.0",
  2548. "symfony/http-client": "^7.2.0",
  2549. "symfony/psr-http-message-bridge": "^7.2.0",
  2550. "symfony/translation": "^7.2.0"
  2551. },
  2552. "suggest": {
  2553. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2554. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.322.9).",
  2555. "brianium/paratest": "Required to run tests in parallel (^7.0|^8.0).",
  2556. "ext-apcu": "Required to use the APC cache driver.",
  2557. "ext-fileinfo": "Required to use the Filesystem class.",
  2558. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2559. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2560. "ext-memcached": "Required to use the memcache cache driver.",
  2561. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2562. "ext-pdo": "Required to use all database features.",
  2563. "ext-posix": "Required to use all features of the queue worker.",
  2564. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0|^6.0).",
  2565. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2566. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2567. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2568. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.25.1).",
  2569. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.25.1).",
  2570. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.25.1).",
  2571. "league/flysystem-read-only": "Required to use read-only disks (^3.25.1)",
  2572. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.25.1).",
  2573. "mockery/mockery": "Required to use mocking (^1.6).",
  2574. "pda/pheanstalk": "Required to use the beanstalk queue driver (^5.0).",
  2575. "php-http/discovery": "Required to use PSR-7 bridging features (^1.15).",
  2576. "phpunit/phpunit": "Required to use assertions and run tests (^10.5.35|^11.5.3|^12.0.1).",
  2577. "predis/predis": "Required to use the predis connector (^2.3).",
  2578. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2579. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2580. "resend/resend-php": "Required to enable support for the Resend mail transport (^0.10.0).",
  2581. "symfony/cache": "Required to PSR-6 cache bridge (^7.2).",
  2582. "symfony/filesystem": "Required to enable support for relative symbolic links (^7.2).",
  2583. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^7.2).",
  2584. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^7.2).",
  2585. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^7.2).",
  2586. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^7.2)."
  2587. },
  2588. "type": "library",
  2589. "extra": {
  2590. "branch-alias": {
  2591. "dev-master": "12.x-dev"
  2592. }
  2593. },
  2594. "autoload": {
  2595. "files": [
  2596. "src/Illuminate/Collections/functions.php",
  2597. "src/Illuminate/Collections/helpers.php",
  2598. "src/Illuminate/Events/functions.php",
  2599. "src/Illuminate/Filesystem/functions.php",
  2600. "src/Illuminate/Foundation/helpers.php",
  2601. "src/Illuminate/Log/functions.php",
  2602. "src/Illuminate/Support/functions.php",
  2603. "src/Illuminate/Support/helpers.php"
  2604. ],
  2605. "psr-4": {
  2606. "Illuminate\\": "src/Illuminate/",
  2607. "Illuminate\\Support\\": [
  2608. "src/Illuminate/Macroable/",
  2609. "src/Illuminate/Collections/",
  2610. "src/Illuminate/Conditionable/"
  2611. ]
  2612. }
  2613. },
  2614. "notification-url": "https://packagist.org/downloads/",
  2615. "license": [
  2616. "MIT"
  2617. ],
  2618. "authors": [
  2619. {
  2620. "name": "Taylor Otwell",
  2621. "email": "taylor@laravel.com"
  2622. }
  2623. ],
  2624. "description": "The Laravel Framework.",
  2625. "homepage": "https://laravel.com",
  2626. "keywords": [
  2627. "framework",
  2628. "laravel"
  2629. ],
  2630. "support": {
  2631. "issues": "https://github.com/laravel/framework/issues",
  2632. "source": "https://github.com/laravel/framework"
  2633. },
  2634. "time": "2025-03-05T15:31:19+00:00"
  2635. },
  2636. {
  2637. "name": "laravel/helpers",
  2638. "version": "v1.7.2",
  2639. "source": {
  2640. "type": "git",
  2641. "url": "https://github.com/laravel/helpers.git",
  2642. "reference": "672d79d5b5f65dc821e57783fa11f22c4d762d70"
  2643. },
  2644. "dist": {
  2645. "type": "zip",
  2646. "url": "https://api.github.com/repos/laravel/helpers/zipball/672d79d5b5f65dc821e57783fa11f22c4d762d70",
  2647. "reference": "672d79d5b5f65dc821e57783fa11f22c4d762d70",
  2648. "shasum": ""
  2649. },
  2650. "require": {
  2651. "illuminate/support": "~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2652. "php": "^7.2.0|^8.0"
  2653. },
  2654. "require-dev": {
  2655. "phpstan/phpstan": "^1.10",
  2656. "phpunit/phpunit": "^7.0|^8.0|^9.0|^10.0"
  2657. },
  2658. "type": "library",
  2659. "extra": {
  2660. "branch-alias": {
  2661. "dev-master": "1.x-dev"
  2662. }
  2663. },
  2664. "autoload": {
  2665. "files": [
  2666. "src/helpers.php"
  2667. ]
  2668. },
  2669. "notification-url": "https://packagist.org/downloads/",
  2670. "license": [
  2671. "MIT"
  2672. ],
  2673. "authors": [
  2674. {
  2675. "name": "Taylor Otwell",
  2676. "email": "taylor@laravel.com"
  2677. },
  2678. {
  2679. "name": "Dries Vints",
  2680. "email": "dries@laravel.com"
  2681. }
  2682. ],
  2683. "description": "Provides backwards compatibility for helpers in the latest Laravel release.",
  2684. "keywords": [
  2685. "helpers",
  2686. "laravel"
  2687. ],
  2688. "support": {
  2689. "source": "https://github.com/laravel/helpers/tree/v1.7.2"
  2690. },
  2691. "time": "2025-01-24T15:41:25+00:00"
  2692. },
  2693. {
  2694. "name": "laravel/horizon",
  2695. "version": "v5.31.0",
  2696. "source": {
  2697. "type": "git",
  2698. "url": "https://github.com/laravel/horizon.git",
  2699. "reference": "a21e7d64784b24eaf3bf873f82affbf67707a72a"
  2700. },
  2701. "dist": {
  2702. "type": "zip",
  2703. "url": "https://api.github.com/repos/laravel/horizon/zipball/a21e7d64784b24eaf3bf873f82affbf67707a72a",
  2704. "reference": "a21e7d64784b24eaf3bf873f82affbf67707a72a",
  2705. "shasum": ""
  2706. },
  2707. "require": {
  2708. "ext-json": "*",
  2709. "ext-pcntl": "*",
  2710. "ext-posix": "*",
  2711. "illuminate/contracts": "^9.21|^10.0|^11.0|^12.0",
  2712. "illuminate/queue": "^9.21|^10.0|^11.0|^12.0",
  2713. "illuminate/support": "^9.21|^10.0|^11.0|^12.0",
  2714. "nesbot/carbon": "^2.17|^3.0",
  2715. "php": "^8.0",
  2716. "ramsey/uuid": "^4.0",
  2717. "symfony/console": "^6.0|^7.0",
  2718. "symfony/error-handler": "^6.0|^7.0",
  2719. "symfony/polyfill-php83": "^1.28",
  2720. "symfony/process": "^6.0|^7.0"
  2721. },
  2722. "require-dev": {
  2723. "mockery/mockery": "^1.0",
  2724. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  2725. "phpstan/phpstan": "^1.10",
  2726. "phpunit/phpunit": "^9.0|^10.4|^11.5",
  2727. "predis/predis": "^1.1|^2.0"
  2728. },
  2729. "suggest": {
  2730. "ext-redis": "Required to use the Redis PHP driver.",
  2731. "predis/predis": "Required when not using the Redis PHP driver (^1.1|^2.0)."
  2732. },
  2733. "type": "library",
  2734. "extra": {
  2735. "laravel": {
  2736. "aliases": {
  2737. "Horizon": "Laravel\\Horizon\\Horizon"
  2738. },
  2739. "providers": [
  2740. "Laravel\\Horizon\\HorizonServiceProvider"
  2741. ]
  2742. },
  2743. "branch-alias": {
  2744. "dev-master": "5.x-dev"
  2745. }
  2746. },
  2747. "autoload": {
  2748. "psr-4": {
  2749. "Laravel\\Horizon\\": "src/"
  2750. }
  2751. },
  2752. "notification-url": "https://packagist.org/downloads/",
  2753. "license": [
  2754. "MIT"
  2755. ],
  2756. "authors": [
  2757. {
  2758. "name": "Taylor Otwell",
  2759. "email": "taylor@laravel.com"
  2760. }
  2761. ],
  2762. "description": "Dashboard and code-driven configuration for Laravel queues.",
  2763. "keywords": [
  2764. "laravel",
  2765. "queue"
  2766. ],
  2767. "support": {
  2768. "issues": "https://github.com/laravel/horizon/issues",
  2769. "source": "https://github.com/laravel/horizon/tree/v5.31.0"
  2770. },
  2771. "time": "2025-03-04T14:56:42+00:00"
  2772. },
  2773. {
  2774. "name": "laravel/passport",
  2775. "version": "v12.4.2",
  2776. "source": {
  2777. "type": "git",
  2778. "url": "https://github.com/laravel/passport.git",
  2779. "reference": "65a885607b62d361aedaeb10a946bc6b5a954262"
  2780. },
  2781. "dist": {
  2782. "type": "zip",
  2783. "url": "https://api.github.com/repos/laravel/passport/zipball/65a885607b62d361aedaeb10a946bc6b5a954262",
  2784. "reference": "65a885607b62d361aedaeb10a946bc6b5a954262",
  2785. "shasum": ""
  2786. },
  2787. "require": {
  2788. "ext-json": "*",
  2789. "firebase/php-jwt": "^6.4",
  2790. "illuminate/auth": "^9.21|^10.0|^11.0|^12.0",
  2791. "illuminate/console": "^9.21|^10.0|^11.0|^12.0",
  2792. "illuminate/container": "^9.21|^10.0|^11.0|^12.0",
  2793. "illuminate/contracts": "^9.21|^10.0|^11.0|^12.0",
  2794. "illuminate/cookie": "^9.21|^10.0|^11.0|^12.0",
  2795. "illuminate/database": "^9.21|^10.0|^11.0|^12.0",
  2796. "illuminate/encryption": "^9.21|^10.0|^11.0|^12.0",
  2797. "illuminate/http": "^9.21|^10.0|^11.0|^12.0",
  2798. "illuminate/support": "^9.21|^10.0|^11.0|^12.0",
  2799. "lcobucci/jwt": "^4.3|^5.0",
  2800. "league/oauth2-server": "^8.5.3",
  2801. "nyholm/psr7": "^1.5",
  2802. "php": "^8.0",
  2803. "phpseclib/phpseclib": "^2.0|^3.0",
  2804. "symfony/console": "^6.0|^7.0",
  2805. "symfony/psr-http-message-bridge": "^2.1|^6.0|^7.0"
  2806. },
  2807. "require-dev": {
  2808. "mockery/mockery": "^1.0",
  2809. "orchestra/testbench": "^7.35|^8.14|^9.0|^10.0",
  2810. "phpstan/phpstan": "^1.10",
  2811. "phpunit/phpunit": "^9.3|^10.5|^11.5"
  2812. },
  2813. "type": "library",
  2814. "extra": {
  2815. "laravel": {
  2816. "providers": [
  2817. "Laravel\\Passport\\PassportServiceProvider"
  2818. ]
  2819. }
  2820. },
  2821. "autoload": {
  2822. "psr-4": {
  2823. "Laravel\\Passport\\": "src/",
  2824. "Laravel\\Passport\\Database\\Factories\\": "database/factories/"
  2825. }
  2826. },
  2827. "notification-url": "https://packagist.org/downloads/",
  2828. "license": [
  2829. "MIT"
  2830. ],
  2831. "authors": [
  2832. {
  2833. "name": "Taylor Otwell",
  2834. "email": "taylor@laravel.com"
  2835. }
  2836. ],
  2837. "description": "Laravel Passport provides OAuth2 server support to Laravel.",
  2838. "keywords": [
  2839. "laravel",
  2840. "oauth",
  2841. "passport"
  2842. ],
  2843. "support": {
  2844. "issues": "https://github.com/laravel/passport/issues",
  2845. "source": "https://github.com/laravel/passport"
  2846. },
  2847. "time": "2025-02-12T16:11:33+00:00"
  2848. },
  2849. {
  2850. "name": "laravel/prompts",
  2851. "version": "v0.3.5",
  2852. "source": {
  2853. "type": "git",
  2854. "url": "https://github.com/laravel/prompts.git",
  2855. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1"
  2856. },
  2857. "dist": {
  2858. "type": "zip",
  2859. "url": "https://api.github.com/repos/laravel/prompts/zipball/57b8f7efe40333cdb925700891c7d7465325d3b1",
  2860. "reference": "57b8f7efe40333cdb925700891c7d7465325d3b1",
  2861. "shasum": ""
  2862. },
  2863. "require": {
  2864. "composer-runtime-api": "^2.2",
  2865. "ext-mbstring": "*",
  2866. "php": "^8.1",
  2867. "symfony/console": "^6.2|^7.0"
  2868. },
  2869. "conflict": {
  2870. "illuminate/console": ">=10.17.0 <10.25.0",
  2871. "laravel/framework": ">=10.17.0 <10.25.0"
  2872. },
  2873. "require-dev": {
  2874. "illuminate/collections": "^10.0|^11.0|^12.0",
  2875. "mockery/mockery": "^1.5",
  2876. "pestphp/pest": "^2.3|^3.4",
  2877. "phpstan/phpstan": "^1.11",
  2878. "phpstan/phpstan-mockery": "^1.1"
  2879. },
  2880. "suggest": {
  2881. "ext-pcntl": "Required for the spinner to be animated."
  2882. },
  2883. "type": "library",
  2884. "extra": {
  2885. "branch-alias": {
  2886. "dev-main": "0.3.x-dev"
  2887. }
  2888. },
  2889. "autoload": {
  2890. "files": [
  2891. "src/helpers.php"
  2892. ],
  2893. "psr-4": {
  2894. "Laravel\\Prompts\\": "src/"
  2895. }
  2896. },
  2897. "notification-url": "https://packagist.org/downloads/",
  2898. "license": [
  2899. "MIT"
  2900. ],
  2901. "description": "Add beautiful and user-friendly forms to your command-line applications.",
  2902. "support": {
  2903. "issues": "https://github.com/laravel/prompts/issues",
  2904. "source": "https://github.com/laravel/prompts/tree/v0.3.5"
  2905. },
  2906. "time": "2025-02-11T13:34:40+00:00"
  2907. },
  2908. {
  2909. "name": "laravel/pulse",
  2910. "version": "v1.4.0",
  2911. "source": {
  2912. "type": "git",
  2913. "url": "https://github.com/laravel/pulse.git",
  2914. "reference": "62099ede70df2272544f0c0657eda0c73d25a6b2"
  2915. },
  2916. "dist": {
  2917. "type": "zip",
  2918. "url": "https://api.github.com/repos/laravel/pulse/zipball/62099ede70df2272544f0c0657eda0c73d25a6b2",
  2919. "reference": "62099ede70df2272544f0c0657eda0c73d25a6b2",
  2920. "shasum": ""
  2921. },
  2922. "require": {
  2923. "doctrine/sql-formatter": "^1.4.1",
  2924. "guzzlehttp/promises": "^1.0|^2.0",
  2925. "illuminate/auth": "^10.48.4|^11.0.8|^12.0",
  2926. "illuminate/cache": "^10.48.4|^11.0.8|^12.0",
  2927. "illuminate/config": "^10.48.4|^11.0.8|^12.0",
  2928. "illuminate/console": "^10.48.4|^11.0.8|^12.0",
  2929. "illuminate/contracts": "^10.48.4|^11.0.8|^12.0",
  2930. "illuminate/database": "^10.48.4|^11.0.8|^12.0",
  2931. "illuminate/events": "^10.48.4|^11.0.8|^12.0",
  2932. "illuminate/http": "^10.48.4|^11.0.8|^12.0",
  2933. "illuminate/queue": "^10.48.4|^11.0.8|^12.0",
  2934. "illuminate/redis": "^10.48.4|^11.0.8|^12.0",
  2935. "illuminate/routing": "^10.48.4|^11.0.8|^12.0",
  2936. "illuminate/support": "^10.48.4|^11.0.8|^12.0",
  2937. "illuminate/view": "^10.48.4|^11.0.8|^12.0",
  2938. "livewire/livewire": "^3.4.9",
  2939. "nesbot/carbon": "^2.67|^3.0",
  2940. "php": "^8.1",
  2941. "symfony/console": "^6.0|^7.0"
  2942. },
  2943. "conflict": {
  2944. "nunomaduro/collision": "<7.7.0"
  2945. },
  2946. "require-dev": {
  2947. "guzzlehttp/guzzle": "^7.7",
  2948. "mockery/mockery": "^1.0",
  2949. "orchestra/testbench": "^8.23.1|^9.0|^10.0",
  2950. "pestphp/pest": "^2.0",
  2951. "pestphp/pest-plugin-laravel": "^2.2",
  2952. "phpstan/phpstan": "^1.11",
  2953. "predis/predis": "^1.0|^2.0"
  2954. },
  2955. "type": "library",
  2956. "extra": {
  2957. "laravel": {
  2958. "aliases": {
  2959. "Pulse": "Laravel\\Pulse\\Facades\\Pulse"
  2960. },
  2961. "providers": [
  2962. "Laravel\\Pulse\\PulseServiceProvider"
  2963. ]
  2964. },
  2965. "branch-alias": {
  2966. "dev-master": "1.x-dev"
  2967. }
  2968. },
  2969. "autoload": {
  2970. "psr-4": {
  2971. "Laravel\\Pulse\\": "src/"
  2972. }
  2973. },
  2974. "notification-url": "https://packagist.org/downloads/",
  2975. "license": [
  2976. "MIT"
  2977. ],
  2978. "authors": [
  2979. {
  2980. "name": "Taylor Otwell",
  2981. "email": "taylor@laravel.com"
  2982. }
  2983. ],
  2984. "description": "Laravel Pulse is a real-time application performance monitoring tool and dashboard for your Laravel application.",
  2985. "homepage": "https://github.com/laravel/pulse",
  2986. "keywords": [
  2987. "laravel"
  2988. ],
  2989. "support": {
  2990. "issues": "https://github.com/laravel/pulse/issues",
  2991. "source": "https://github.com/laravel/pulse"
  2992. },
  2993. "time": "2025-02-11T13:36:44+00:00"
  2994. },
  2995. {
  2996. "name": "laravel/serializable-closure",
  2997. "version": "v2.0.3",
  2998. "source": {
  2999. "type": "git",
  3000. "url": "https://github.com/laravel/serializable-closure.git",
  3001. "reference": "f379c13663245f7aa4512a7869f62eb14095f23f"
  3002. },
  3003. "dist": {
  3004. "type": "zip",
  3005. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/f379c13663245f7aa4512a7869f62eb14095f23f",
  3006. "reference": "f379c13663245f7aa4512a7869f62eb14095f23f",
  3007. "shasum": ""
  3008. },
  3009. "require": {
  3010. "php": "^8.1"
  3011. },
  3012. "require-dev": {
  3013. "illuminate/support": "^10.0|^11.0|^12.0",
  3014. "nesbot/carbon": "^2.67|^3.0",
  3015. "pestphp/pest": "^2.36|^3.0",
  3016. "phpstan/phpstan": "^2.0",
  3017. "symfony/var-dumper": "^6.2.0|^7.0.0"
  3018. },
  3019. "type": "library",
  3020. "extra": {
  3021. "branch-alias": {
  3022. "dev-master": "2.x-dev"
  3023. }
  3024. },
  3025. "autoload": {
  3026. "psr-4": {
  3027. "Laravel\\SerializableClosure\\": "src/"
  3028. }
  3029. },
  3030. "notification-url": "https://packagist.org/downloads/",
  3031. "license": [
  3032. "MIT"
  3033. ],
  3034. "authors": [
  3035. {
  3036. "name": "Taylor Otwell",
  3037. "email": "taylor@laravel.com"
  3038. },
  3039. {
  3040. "name": "Nuno Maduro",
  3041. "email": "nuno@laravel.com"
  3042. }
  3043. ],
  3044. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  3045. "keywords": [
  3046. "closure",
  3047. "laravel",
  3048. "serializable"
  3049. ],
  3050. "support": {
  3051. "issues": "https://github.com/laravel/serializable-closure/issues",
  3052. "source": "https://github.com/laravel/serializable-closure"
  3053. },
  3054. "time": "2025-02-11T15:03:05+00:00"
  3055. },
  3056. {
  3057. "name": "laravel/tinker",
  3058. "version": "v2.10.1",
  3059. "source": {
  3060. "type": "git",
  3061. "url": "https://github.com/laravel/tinker.git",
  3062. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
  3063. },
  3064. "dist": {
  3065. "type": "zip",
  3066. "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
  3067. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
  3068. "shasum": ""
  3069. },
  3070. "require": {
  3071. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3072. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3073. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  3074. "php": "^7.2.5|^8.0",
  3075. "psy/psysh": "^0.11.1|^0.12.0",
  3076. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  3077. },
  3078. "require-dev": {
  3079. "mockery/mockery": "~1.3.3|^1.4.2",
  3080. "phpstan/phpstan": "^1.10",
  3081. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  3082. },
  3083. "suggest": {
  3084. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  3085. },
  3086. "type": "library",
  3087. "extra": {
  3088. "laravel": {
  3089. "providers": [
  3090. "Laravel\\Tinker\\TinkerServiceProvider"
  3091. ]
  3092. }
  3093. },
  3094. "autoload": {
  3095. "psr-4": {
  3096. "Laravel\\Tinker\\": "src/"
  3097. }
  3098. },
  3099. "notification-url": "https://packagist.org/downloads/",
  3100. "license": [
  3101. "MIT"
  3102. ],
  3103. "authors": [
  3104. {
  3105. "name": "Taylor Otwell",
  3106. "email": "taylor@laravel.com"
  3107. }
  3108. ],
  3109. "description": "Powerful REPL for the Laravel framework.",
  3110. "keywords": [
  3111. "REPL",
  3112. "Tinker",
  3113. "laravel",
  3114. "psysh"
  3115. ],
  3116. "support": {
  3117. "issues": "https://github.com/laravel/tinker/issues",
  3118. "source": "https://github.com/laravel/tinker/tree/v2.10.1"
  3119. },
  3120. "time": "2025-01-27T14:24:01+00:00"
  3121. },
  3122. {
  3123. "name": "laravel/ui",
  3124. "version": "v4.6.1",
  3125. "source": {
  3126. "type": "git",
  3127. "url": "https://github.com/laravel/ui.git",
  3128. "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88"
  3129. },
  3130. "dist": {
  3131. "type": "zip",
  3132. "url": "https://api.github.com/repos/laravel/ui/zipball/7d6ffa38d79f19c9b3e70a751a9af845e8f41d88",
  3133. "reference": "7d6ffa38d79f19c9b3e70a751a9af845e8f41d88",
  3134. "shasum": ""
  3135. },
  3136. "require": {
  3137. "illuminate/console": "^9.21|^10.0|^11.0|^12.0",
  3138. "illuminate/filesystem": "^9.21|^10.0|^11.0|^12.0",
  3139. "illuminate/support": "^9.21|^10.0|^11.0|^12.0",
  3140. "illuminate/validation": "^9.21|^10.0|^11.0|^12.0",
  3141. "php": "^8.0",
  3142. "symfony/console": "^6.0|^7.0"
  3143. },
  3144. "require-dev": {
  3145. "orchestra/testbench": "^7.35|^8.15|^9.0|^10.0",
  3146. "phpunit/phpunit": "^9.3|^10.4|^11.5"
  3147. },
  3148. "type": "library",
  3149. "extra": {
  3150. "laravel": {
  3151. "providers": [
  3152. "Laravel\\Ui\\UiServiceProvider"
  3153. ]
  3154. },
  3155. "branch-alias": {
  3156. "dev-master": "4.x-dev"
  3157. }
  3158. },
  3159. "autoload": {
  3160. "psr-4": {
  3161. "Laravel\\Ui\\": "src/",
  3162. "Illuminate\\Foundation\\Auth\\": "auth-backend/"
  3163. }
  3164. },
  3165. "notification-url": "https://packagist.org/downloads/",
  3166. "license": [
  3167. "MIT"
  3168. ],
  3169. "authors": [
  3170. {
  3171. "name": "Taylor Otwell",
  3172. "email": "taylor@laravel.com"
  3173. }
  3174. ],
  3175. "description": "Laravel UI utilities and presets.",
  3176. "keywords": [
  3177. "laravel",
  3178. "ui"
  3179. ],
  3180. "support": {
  3181. "source": "https://github.com/laravel/ui/tree/v4.6.1"
  3182. },
  3183. "time": "2025-01-28T15:15:29+00:00"
  3184. },
  3185. {
  3186. "name": "lcobucci/clock",
  3187. "version": "3.3.1",
  3188. "source": {
  3189. "type": "git",
  3190. "url": "https://github.com/lcobucci/clock.git",
  3191. "reference": "db3713a61addfffd615b79bf0bc22f0ccc61b86b"
  3192. },
  3193. "dist": {
  3194. "type": "zip",
  3195. "url": "https://api.github.com/repos/lcobucci/clock/zipball/db3713a61addfffd615b79bf0bc22f0ccc61b86b",
  3196. "reference": "db3713a61addfffd615b79bf0bc22f0ccc61b86b",
  3197. "shasum": ""
  3198. },
  3199. "require": {
  3200. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  3201. "psr/clock": "^1.0"
  3202. },
  3203. "provide": {
  3204. "psr/clock-implementation": "1.0"
  3205. },
  3206. "require-dev": {
  3207. "infection/infection": "^0.29",
  3208. "lcobucci/coding-standard": "^11.1.0",
  3209. "phpstan/extension-installer": "^1.3.1",
  3210. "phpstan/phpstan": "^1.10.25",
  3211. "phpstan/phpstan-deprecation-rules": "^1.1.3",
  3212. "phpstan/phpstan-phpunit": "^1.3.13",
  3213. "phpstan/phpstan-strict-rules": "^1.5.1",
  3214. "phpunit/phpunit": "^11.3.6"
  3215. },
  3216. "type": "library",
  3217. "autoload": {
  3218. "psr-4": {
  3219. "Lcobucci\\Clock\\": "src"
  3220. }
  3221. },
  3222. "notification-url": "https://packagist.org/downloads/",
  3223. "license": [
  3224. "MIT"
  3225. ],
  3226. "authors": [
  3227. {
  3228. "name": "Luís Cobucci",
  3229. "email": "lcobucci@gmail.com"
  3230. }
  3231. ],
  3232. "description": "Yet another clock abstraction",
  3233. "support": {
  3234. "issues": "https://github.com/lcobucci/clock/issues",
  3235. "source": "https://github.com/lcobucci/clock/tree/3.3.1"
  3236. },
  3237. "funding": [
  3238. {
  3239. "url": "https://github.com/lcobucci",
  3240. "type": "github"
  3241. },
  3242. {
  3243. "url": "https://www.patreon.com/lcobucci",
  3244. "type": "patreon"
  3245. }
  3246. ],
  3247. "time": "2024-09-24T20:45:14+00:00"
  3248. },
  3249. {
  3250. "name": "lcobucci/jwt",
  3251. "version": "5.5.0",
  3252. "source": {
  3253. "type": "git",
  3254. "url": "https://github.com/lcobucci/jwt.git",
  3255. "reference": "a835af59b030d3f2967725697cf88300f579088e"
  3256. },
  3257. "dist": {
  3258. "type": "zip",
  3259. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/a835af59b030d3f2967725697cf88300f579088e",
  3260. "reference": "a835af59b030d3f2967725697cf88300f579088e",
  3261. "shasum": ""
  3262. },
  3263. "require": {
  3264. "ext-openssl": "*",
  3265. "ext-sodium": "*",
  3266. "php": "~8.2.0 || ~8.3.0 || ~8.4.0",
  3267. "psr/clock": "^1.0"
  3268. },
  3269. "require-dev": {
  3270. "infection/infection": "^0.29",
  3271. "lcobucci/clock": "^3.2",
  3272. "lcobucci/coding-standard": "^11.0",
  3273. "phpbench/phpbench": "^1.2",
  3274. "phpstan/extension-installer": "^1.2",
  3275. "phpstan/phpstan": "^1.10.7",
  3276. "phpstan/phpstan-deprecation-rules": "^1.1.3",
  3277. "phpstan/phpstan-phpunit": "^1.3.10",
  3278. "phpstan/phpstan-strict-rules": "^1.5.0",
  3279. "phpunit/phpunit": "^11.1"
  3280. },
  3281. "suggest": {
  3282. "lcobucci/clock": ">= 3.2"
  3283. },
  3284. "type": "library",
  3285. "autoload": {
  3286. "psr-4": {
  3287. "Lcobucci\\JWT\\": "src"
  3288. }
  3289. },
  3290. "notification-url": "https://packagist.org/downloads/",
  3291. "license": [
  3292. "BSD-3-Clause"
  3293. ],
  3294. "authors": [
  3295. {
  3296. "name": "Luís Cobucci",
  3297. "email": "lcobucci@gmail.com",
  3298. "role": "Developer"
  3299. }
  3300. ],
  3301. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3302. "keywords": [
  3303. "JWS",
  3304. "jwt"
  3305. ],
  3306. "support": {
  3307. "issues": "https://github.com/lcobucci/jwt/issues",
  3308. "source": "https://github.com/lcobucci/jwt/tree/5.5.0"
  3309. },
  3310. "funding": [
  3311. {
  3312. "url": "https://github.com/lcobucci",
  3313. "type": "github"
  3314. },
  3315. {
  3316. "url": "https://www.patreon.com/lcobucci",
  3317. "type": "patreon"
  3318. }
  3319. ],
  3320. "time": "2025-01-26T21:29:45+00:00"
  3321. },
  3322. {
  3323. "name": "league/commonmark",
  3324. "version": "2.6.1",
  3325. "source": {
  3326. "type": "git",
  3327. "url": "https://github.com/thephpleague/commonmark.git",
  3328. "reference": "d990688c91cedfb69753ffc2512727ec646df2ad"
  3329. },
  3330. "dist": {
  3331. "type": "zip",
  3332. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/d990688c91cedfb69753ffc2512727ec646df2ad",
  3333. "reference": "d990688c91cedfb69753ffc2512727ec646df2ad",
  3334. "shasum": ""
  3335. },
  3336. "require": {
  3337. "ext-mbstring": "*",
  3338. "league/config": "^1.1.1",
  3339. "php": "^7.4 || ^8.0",
  3340. "psr/event-dispatcher": "^1.0",
  3341. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  3342. "symfony/polyfill-php80": "^1.16"
  3343. },
  3344. "require-dev": {
  3345. "cebe/markdown": "^1.0",
  3346. "commonmark/cmark": "0.31.1",
  3347. "commonmark/commonmark.js": "0.31.1",
  3348. "composer/package-versions-deprecated": "^1.8",
  3349. "embed/embed": "^4.4",
  3350. "erusev/parsedown": "^1.0",
  3351. "ext-json": "*",
  3352. "github/gfm": "0.29.0",
  3353. "michelf/php-markdown": "^1.4 || ^2.0",
  3354. "nyholm/psr7": "^1.5",
  3355. "phpstan/phpstan": "^1.8.2",
  3356. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  3357. "scrutinizer/ocular": "^1.8.1",
  3358. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  3359. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  3360. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  3361. "unleashedtech/php-coding-standard": "^3.1.1",
  3362. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  3363. },
  3364. "suggest": {
  3365. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  3366. },
  3367. "type": "library",
  3368. "extra": {
  3369. "branch-alias": {
  3370. "dev-main": "2.7-dev"
  3371. }
  3372. },
  3373. "autoload": {
  3374. "psr-4": {
  3375. "League\\CommonMark\\": "src"
  3376. }
  3377. },
  3378. "notification-url": "https://packagist.org/downloads/",
  3379. "license": [
  3380. "BSD-3-Clause"
  3381. ],
  3382. "authors": [
  3383. {
  3384. "name": "Colin O'Dell",
  3385. "email": "colinodell@gmail.com",
  3386. "homepage": "https://www.colinodell.com",
  3387. "role": "Lead Developer"
  3388. }
  3389. ],
  3390. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  3391. "homepage": "https://commonmark.thephpleague.com",
  3392. "keywords": [
  3393. "commonmark",
  3394. "flavored",
  3395. "gfm",
  3396. "github",
  3397. "github-flavored",
  3398. "markdown",
  3399. "md",
  3400. "parser"
  3401. ],
  3402. "support": {
  3403. "docs": "https://commonmark.thephpleague.com/",
  3404. "forum": "https://github.com/thephpleague/commonmark/discussions",
  3405. "issues": "https://github.com/thephpleague/commonmark/issues",
  3406. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  3407. "source": "https://github.com/thephpleague/commonmark"
  3408. },
  3409. "funding": [
  3410. {
  3411. "url": "https://www.colinodell.com/sponsor",
  3412. "type": "custom"
  3413. },
  3414. {
  3415. "url": "https://www.paypal.me/colinpodell/10.00",
  3416. "type": "custom"
  3417. },
  3418. {
  3419. "url": "https://github.com/colinodell",
  3420. "type": "github"
  3421. },
  3422. {
  3423. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  3424. "type": "tidelift"
  3425. }
  3426. ],
  3427. "time": "2024-12-29T14:10:59+00:00"
  3428. },
  3429. {
  3430. "name": "league/config",
  3431. "version": "v1.2.0",
  3432. "source": {
  3433. "type": "git",
  3434. "url": "https://github.com/thephpleague/config.git",
  3435. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  3436. },
  3437. "dist": {
  3438. "type": "zip",
  3439. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3440. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  3441. "shasum": ""
  3442. },
  3443. "require": {
  3444. "dflydev/dot-access-data": "^3.0.1",
  3445. "nette/schema": "^1.2",
  3446. "php": "^7.4 || ^8.0"
  3447. },
  3448. "require-dev": {
  3449. "phpstan/phpstan": "^1.8.2",
  3450. "phpunit/phpunit": "^9.5.5",
  3451. "scrutinizer/ocular": "^1.8.1",
  3452. "unleashedtech/php-coding-standard": "^3.1",
  3453. "vimeo/psalm": "^4.7.3"
  3454. },
  3455. "type": "library",
  3456. "extra": {
  3457. "branch-alias": {
  3458. "dev-main": "1.2-dev"
  3459. }
  3460. },
  3461. "autoload": {
  3462. "psr-4": {
  3463. "League\\Config\\": "src"
  3464. }
  3465. },
  3466. "notification-url": "https://packagist.org/downloads/",
  3467. "license": [
  3468. "BSD-3-Clause"
  3469. ],
  3470. "authors": [
  3471. {
  3472. "name": "Colin O'Dell",
  3473. "email": "colinodell@gmail.com",
  3474. "homepage": "https://www.colinodell.com",
  3475. "role": "Lead Developer"
  3476. }
  3477. ],
  3478. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  3479. "homepage": "https://config.thephpleague.com",
  3480. "keywords": [
  3481. "array",
  3482. "config",
  3483. "configuration",
  3484. "dot",
  3485. "dot-access",
  3486. "nested",
  3487. "schema"
  3488. ],
  3489. "support": {
  3490. "docs": "https://config.thephpleague.com/",
  3491. "issues": "https://github.com/thephpleague/config/issues",
  3492. "rss": "https://github.com/thephpleague/config/releases.atom",
  3493. "source": "https://github.com/thephpleague/config"
  3494. },
  3495. "funding": [
  3496. {
  3497. "url": "https://www.colinodell.com/sponsor",
  3498. "type": "custom"
  3499. },
  3500. {
  3501. "url": "https://www.paypal.me/colinpodell/10.00",
  3502. "type": "custom"
  3503. },
  3504. {
  3505. "url": "https://github.com/colinodell",
  3506. "type": "github"
  3507. }
  3508. ],
  3509. "time": "2022-12-11T20:36:23+00:00"
  3510. },
  3511. {
  3512. "name": "league/event",
  3513. "version": "2.2.0",
  3514. "source": {
  3515. "type": "git",
  3516. "url": "https://github.com/thephpleague/event.git",
  3517. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119"
  3518. },
  3519. "dist": {
  3520. "type": "zip",
  3521. "url": "https://api.github.com/repos/thephpleague/event/zipball/d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  3522. "reference": "d2cc124cf9a3fab2bb4ff963307f60361ce4d119",
  3523. "shasum": ""
  3524. },
  3525. "require": {
  3526. "php": ">=5.4.0"
  3527. },
  3528. "require-dev": {
  3529. "henrikbjorn/phpspec-code-coverage": "~1.0.1",
  3530. "phpspec/phpspec": "^2.2"
  3531. },
  3532. "type": "library",
  3533. "extra": {
  3534. "branch-alias": {
  3535. "dev-master": "2.2-dev"
  3536. }
  3537. },
  3538. "autoload": {
  3539. "psr-4": {
  3540. "League\\Event\\": "src/"
  3541. }
  3542. },
  3543. "notification-url": "https://packagist.org/downloads/",
  3544. "license": [
  3545. "MIT"
  3546. ],
  3547. "authors": [
  3548. {
  3549. "name": "Frank de Jonge",
  3550. "email": "info@frenky.net"
  3551. }
  3552. ],
  3553. "description": "Event package",
  3554. "keywords": [
  3555. "emitter",
  3556. "event",
  3557. "listener"
  3558. ],
  3559. "support": {
  3560. "issues": "https://github.com/thephpleague/event/issues",
  3561. "source": "https://github.com/thephpleague/event/tree/master"
  3562. },
  3563. "time": "2018-11-26T11:52:41+00:00"
  3564. },
  3565. {
  3566. "name": "league/flysystem",
  3567. "version": "3.29.1",
  3568. "source": {
  3569. "type": "git",
  3570. "url": "https://github.com/thephpleague/flysystem.git",
  3571. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  3572. },
  3573. "dist": {
  3574. "type": "zip",
  3575. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3576. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  3577. "shasum": ""
  3578. },
  3579. "require": {
  3580. "league/flysystem-local": "^3.0.0",
  3581. "league/mime-type-detection": "^1.0.0",
  3582. "php": "^8.0.2"
  3583. },
  3584. "conflict": {
  3585. "async-aws/core": "<1.19.0",
  3586. "async-aws/s3": "<1.14.0",
  3587. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  3588. "guzzlehttp/guzzle": "<7.0",
  3589. "guzzlehttp/ringphp": "<1.1.1",
  3590. "phpseclib/phpseclib": "3.0.15",
  3591. "symfony/http-client": "<5.2"
  3592. },
  3593. "require-dev": {
  3594. "async-aws/s3": "^1.5 || ^2.0",
  3595. "async-aws/simple-s3": "^1.1 || ^2.0",
  3596. "aws/aws-sdk-php": "^3.295.10",
  3597. "composer/semver": "^3.0",
  3598. "ext-fileinfo": "*",
  3599. "ext-ftp": "*",
  3600. "ext-mongodb": "^1.3",
  3601. "ext-zip": "*",
  3602. "friendsofphp/php-cs-fixer": "^3.5",
  3603. "google/cloud-storage": "^1.23",
  3604. "guzzlehttp/psr7": "^2.6",
  3605. "microsoft/azure-storage-blob": "^1.1",
  3606. "mongodb/mongodb": "^1.2",
  3607. "phpseclib/phpseclib": "^3.0.36",
  3608. "phpstan/phpstan": "^1.10",
  3609. "phpunit/phpunit": "^9.5.11|^10.0",
  3610. "sabre/dav": "^4.6.0"
  3611. },
  3612. "type": "library",
  3613. "autoload": {
  3614. "psr-4": {
  3615. "League\\Flysystem\\": "src"
  3616. }
  3617. },
  3618. "notification-url": "https://packagist.org/downloads/",
  3619. "license": [
  3620. "MIT"
  3621. ],
  3622. "authors": [
  3623. {
  3624. "name": "Frank de Jonge",
  3625. "email": "info@frankdejonge.nl"
  3626. }
  3627. ],
  3628. "description": "File storage abstraction for PHP",
  3629. "keywords": [
  3630. "WebDAV",
  3631. "aws",
  3632. "cloud",
  3633. "file",
  3634. "files",
  3635. "filesystem",
  3636. "filesystems",
  3637. "ftp",
  3638. "s3",
  3639. "sftp",
  3640. "storage"
  3641. ],
  3642. "support": {
  3643. "issues": "https://github.com/thephpleague/flysystem/issues",
  3644. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  3645. },
  3646. "time": "2024-10-08T08:58:34+00:00"
  3647. },
  3648. {
  3649. "name": "league/flysystem-aws-s3-v3",
  3650. "version": "3.29.0",
  3651. "source": {
  3652. "type": "git",
  3653. "url": "https://github.com/thephpleague/flysystem-aws-s3-v3.git",
  3654. "reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9"
  3655. },
  3656. "dist": {
  3657. "type": "zip",
  3658. "url": "https://api.github.com/repos/thephpleague/flysystem-aws-s3-v3/zipball/c6ff6d4606e48249b63f269eba7fabdb584e76a9",
  3659. "reference": "c6ff6d4606e48249b63f269eba7fabdb584e76a9",
  3660. "shasum": ""
  3661. },
  3662. "require": {
  3663. "aws/aws-sdk-php": "^3.295.10",
  3664. "league/flysystem": "^3.10.0",
  3665. "league/mime-type-detection": "^1.0.0",
  3666. "php": "^8.0.2"
  3667. },
  3668. "conflict": {
  3669. "guzzlehttp/guzzle": "<7.0",
  3670. "guzzlehttp/ringphp": "<1.1.1"
  3671. },
  3672. "type": "library",
  3673. "autoload": {
  3674. "psr-4": {
  3675. "League\\Flysystem\\AwsS3V3\\": ""
  3676. }
  3677. },
  3678. "notification-url": "https://packagist.org/downloads/",
  3679. "license": [
  3680. "MIT"
  3681. ],
  3682. "authors": [
  3683. {
  3684. "name": "Frank de Jonge",
  3685. "email": "info@frankdejonge.nl"
  3686. }
  3687. ],
  3688. "description": "AWS S3 filesystem adapter for Flysystem.",
  3689. "keywords": [
  3690. "Flysystem",
  3691. "aws",
  3692. "file",
  3693. "files",
  3694. "filesystem",
  3695. "s3",
  3696. "storage"
  3697. ],
  3698. "support": {
  3699. "source": "https://github.com/thephpleague/flysystem-aws-s3-v3/tree/3.29.0"
  3700. },
  3701. "time": "2024-08-17T13:10:48+00:00"
  3702. },
  3703. {
  3704. "name": "league/flysystem-local",
  3705. "version": "3.29.0",
  3706. "source": {
  3707. "type": "git",
  3708. "url": "https://github.com/thephpleague/flysystem-local.git",
  3709. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  3710. },
  3711. "dist": {
  3712. "type": "zip",
  3713. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3714. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  3715. "shasum": ""
  3716. },
  3717. "require": {
  3718. "ext-fileinfo": "*",
  3719. "league/flysystem": "^3.0.0",
  3720. "league/mime-type-detection": "^1.0.0",
  3721. "php": "^8.0.2"
  3722. },
  3723. "type": "library",
  3724. "autoload": {
  3725. "psr-4": {
  3726. "League\\Flysystem\\Local\\": ""
  3727. }
  3728. },
  3729. "notification-url": "https://packagist.org/downloads/",
  3730. "license": [
  3731. "MIT"
  3732. ],
  3733. "authors": [
  3734. {
  3735. "name": "Frank de Jonge",
  3736. "email": "info@frankdejonge.nl"
  3737. }
  3738. ],
  3739. "description": "Local filesystem adapter for Flysystem.",
  3740. "keywords": [
  3741. "Flysystem",
  3742. "file",
  3743. "files",
  3744. "filesystem",
  3745. "local"
  3746. ],
  3747. "support": {
  3748. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  3749. },
  3750. "time": "2024-08-09T21:24:39+00:00"
  3751. },
  3752. {
  3753. "name": "league/iso3166",
  3754. "version": "4.3.2",
  3755. "source": {
  3756. "type": "git",
  3757. "url": "https://github.com/alcohol/iso3166.git",
  3758. "reference": "5133fed7d54728222f4058702487dccedda20472"
  3759. },
  3760. "dist": {
  3761. "type": "zip",
  3762. "url": "https://api.github.com/repos/alcohol/iso3166/zipball/5133fed7d54728222f4058702487dccedda20472",
  3763. "reference": "5133fed7d54728222f4058702487dccedda20472",
  3764. "shasum": ""
  3765. },
  3766. "require": {
  3767. "ext-mbstring": "*",
  3768. "php": "^7.4 || ^8.0"
  3769. },
  3770. "require-dev": {
  3771. "phpstan/phpstan": "^1.12.6",
  3772. "phpstan/phpstan-deprecation-rules": "^1.2.1",
  3773. "phpstan/phpstan-strict-rules": "^1.6.1",
  3774. "phpunit/phpunit": "^9.6.21"
  3775. },
  3776. "type": "library",
  3777. "extra": {
  3778. "branch-alias": {
  3779. "dev-master": "4.x-dev"
  3780. }
  3781. },
  3782. "autoload": {
  3783. "psr-4": {
  3784. "League\\ISO3166\\": "src"
  3785. }
  3786. },
  3787. "notification-url": "https://packagist.org/downloads/",
  3788. "license": [
  3789. "MIT"
  3790. ],
  3791. "authors": [
  3792. {
  3793. "name": "Rob Bast",
  3794. "email": "rob.bast@gmail.com"
  3795. }
  3796. ],
  3797. "description": "ISO 3166-1 PHP Library",
  3798. "homepage": "https://github.com/alcohol/iso3166",
  3799. "keywords": [
  3800. "3166",
  3801. "3166-1",
  3802. "ISO 3166",
  3803. "countries",
  3804. "iso",
  3805. "library"
  3806. ],
  3807. "support": {
  3808. "issues": "https://github.com/alcohol/iso3166/issues",
  3809. "source": "https://github.com/alcohol/iso3166"
  3810. },
  3811. "funding": [
  3812. {
  3813. "url": "https://github.com/alcohol",
  3814. "type": "github"
  3815. }
  3816. ],
  3817. "time": "2024-10-10T07:39:24+00:00"
  3818. },
  3819. {
  3820. "name": "league/mime-type-detection",
  3821. "version": "1.16.0",
  3822. "source": {
  3823. "type": "git",
  3824. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3825. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  3826. },
  3827. "dist": {
  3828. "type": "zip",
  3829. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  3830. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  3831. "shasum": ""
  3832. },
  3833. "require": {
  3834. "ext-fileinfo": "*",
  3835. "php": "^7.4 || ^8.0"
  3836. },
  3837. "require-dev": {
  3838. "friendsofphp/php-cs-fixer": "^3.2",
  3839. "phpstan/phpstan": "^0.12.68",
  3840. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  3841. },
  3842. "type": "library",
  3843. "autoload": {
  3844. "psr-4": {
  3845. "League\\MimeTypeDetection\\": "src"
  3846. }
  3847. },
  3848. "notification-url": "https://packagist.org/downloads/",
  3849. "license": [
  3850. "MIT"
  3851. ],
  3852. "authors": [
  3853. {
  3854. "name": "Frank de Jonge",
  3855. "email": "info@frankdejonge.nl"
  3856. }
  3857. ],
  3858. "description": "Mime-type detection for Flysystem",
  3859. "support": {
  3860. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  3861. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  3862. },
  3863. "funding": [
  3864. {
  3865. "url": "https://github.com/frankdejonge",
  3866. "type": "github"
  3867. },
  3868. {
  3869. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  3870. "type": "tidelift"
  3871. }
  3872. ],
  3873. "time": "2024-09-21T08:32:55+00:00"
  3874. },
  3875. {
  3876. "name": "league/oauth2-server",
  3877. "version": "8.5.5",
  3878. "source": {
  3879. "type": "git",
  3880. "url": "https://github.com/thephpleague/oauth2-server.git",
  3881. "reference": "cc8778350f905667e796b3c2364a9d3bd7a73518"
  3882. },
  3883. "dist": {
  3884. "type": "zip",
  3885. "url": "https://api.github.com/repos/thephpleague/oauth2-server/zipball/cc8778350f905667e796b3c2364a9d3bd7a73518",
  3886. "reference": "cc8778350f905667e796b3c2364a9d3bd7a73518",
  3887. "shasum": ""
  3888. },
  3889. "require": {
  3890. "defuse/php-encryption": "^2.3",
  3891. "ext-openssl": "*",
  3892. "lcobucci/clock": "^2.2 || ^3.0",
  3893. "lcobucci/jwt": "^4.3 || ^5.0",
  3894. "league/event": "^2.2",
  3895. "league/uri": "^6.7 || ^7.0",
  3896. "php": "^8.0",
  3897. "psr/http-message": "^1.0.1 || ^2.0"
  3898. },
  3899. "replace": {
  3900. "league/oauth2server": "*",
  3901. "lncd/oauth2": "*"
  3902. },
  3903. "require-dev": {
  3904. "laminas/laminas-diactoros": "^3.0.0",
  3905. "phpstan/phpstan": "^0.12.57",
  3906. "phpstan/phpstan-phpunit": "^0.12.16",
  3907. "phpunit/phpunit": "^9.6.6",
  3908. "roave/security-advisories": "dev-master"
  3909. },
  3910. "type": "library",
  3911. "autoload": {
  3912. "psr-4": {
  3913. "League\\OAuth2\\Server\\": "src/"
  3914. }
  3915. },
  3916. "notification-url": "https://packagist.org/downloads/",
  3917. "license": [
  3918. "MIT"
  3919. ],
  3920. "authors": [
  3921. {
  3922. "name": "Alex Bilbie",
  3923. "email": "hello@alexbilbie.com",
  3924. "homepage": "http://www.alexbilbie.com",
  3925. "role": "Developer"
  3926. },
  3927. {
  3928. "name": "Andy Millington",
  3929. "email": "andrew@noexceptions.io",
  3930. "homepage": "https://www.noexceptions.io",
  3931. "role": "Developer"
  3932. }
  3933. ],
  3934. "description": "A lightweight and powerful OAuth 2.0 authorization and resource server library with support for all the core specification grants. This library will allow you to secure your API with OAuth and allow your applications users to approve apps that want to access their data from your API.",
  3935. "homepage": "https://oauth2.thephpleague.com/",
  3936. "keywords": [
  3937. "Authentication",
  3938. "api",
  3939. "auth",
  3940. "authorisation",
  3941. "authorization",
  3942. "oauth",
  3943. "oauth 2",
  3944. "oauth 2.0",
  3945. "oauth2",
  3946. "protect",
  3947. "resource",
  3948. "secure",
  3949. "server"
  3950. ],
  3951. "support": {
  3952. "issues": "https://github.com/thephpleague/oauth2-server/issues",
  3953. "source": "https://github.com/thephpleague/oauth2-server/tree/8.5.5"
  3954. },
  3955. "funding": [
  3956. {
  3957. "url": "https://github.com/sephster",
  3958. "type": "github"
  3959. }
  3960. ],
  3961. "time": "2024-12-20T23:06:10+00:00"
  3962. },
  3963. {
  3964. "name": "league/uri",
  3965. "version": "7.5.1",
  3966. "source": {
  3967. "type": "git",
  3968. "url": "https://github.com/thephpleague/uri.git",
  3969. "reference": "81fb5145d2644324614cc532b28efd0215bda430"
  3970. },
  3971. "dist": {
  3972. "type": "zip",
  3973. "url": "https://api.github.com/repos/thephpleague/uri/zipball/81fb5145d2644324614cc532b28efd0215bda430",
  3974. "reference": "81fb5145d2644324614cc532b28efd0215bda430",
  3975. "shasum": ""
  3976. },
  3977. "require": {
  3978. "league/uri-interfaces": "^7.5",
  3979. "php": "^8.1"
  3980. },
  3981. "conflict": {
  3982. "league/uri-schemes": "^1.0"
  3983. },
  3984. "suggest": {
  3985. "ext-bcmath": "to improve IPV4 host parsing",
  3986. "ext-fileinfo": "to create Data URI from file contennts",
  3987. "ext-gmp": "to improve IPV4 host parsing",
  3988. "ext-intl": "to handle IDN host with the best performance",
  3989. "jeremykendall/php-domain-parser": "to resolve Public Suffix and Top Level Domain",
  3990. "league/uri-components": "Needed to easily manipulate URI objects components",
  3991. "php-64bit": "to improve IPV4 host parsing",
  3992. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  3993. },
  3994. "type": "library",
  3995. "extra": {
  3996. "branch-alias": {
  3997. "dev-master": "7.x-dev"
  3998. }
  3999. },
  4000. "autoload": {
  4001. "psr-4": {
  4002. "League\\Uri\\": ""
  4003. }
  4004. },
  4005. "notification-url": "https://packagist.org/downloads/",
  4006. "license": [
  4007. "MIT"
  4008. ],
  4009. "authors": [
  4010. {
  4011. "name": "Ignace Nyamagana Butera",
  4012. "email": "nyamsprod@gmail.com",
  4013. "homepage": "https://nyamsprod.com"
  4014. }
  4015. ],
  4016. "description": "URI manipulation library",
  4017. "homepage": "https://uri.thephpleague.com",
  4018. "keywords": [
  4019. "data-uri",
  4020. "file-uri",
  4021. "ftp",
  4022. "hostname",
  4023. "http",
  4024. "https",
  4025. "middleware",
  4026. "parse_str",
  4027. "parse_url",
  4028. "psr-7",
  4029. "query-string",
  4030. "querystring",
  4031. "rfc3986",
  4032. "rfc3987",
  4033. "rfc6570",
  4034. "uri",
  4035. "uri-template",
  4036. "url",
  4037. "ws"
  4038. ],
  4039. "support": {
  4040. "docs": "https://uri.thephpleague.com",
  4041. "forum": "https://thephpleague.slack.com",
  4042. "issues": "https://github.com/thephpleague/uri-src/issues",
  4043. "source": "https://github.com/thephpleague/uri/tree/7.5.1"
  4044. },
  4045. "funding": [
  4046. {
  4047. "url": "https://github.com/sponsors/nyamsprod",
  4048. "type": "github"
  4049. }
  4050. ],
  4051. "time": "2024-12-08T08:40:02+00:00"
  4052. },
  4053. {
  4054. "name": "league/uri-interfaces",
  4055. "version": "7.5.0",
  4056. "source": {
  4057. "type": "git",
  4058. "url": "https://github.com/thephpleague/uri-interfaces.git",
  4059. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742"
  4060. },
  4061. "dist": {
  4062. "type": "zip",
  4063. "url": "https://api.github.com/repos/thephpleague/uri-interfaces/zipball/08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4064. "reference": "08cfc6c4f3d811584fb09c37e2849e6a7f9b0742",
  4065. "shasum": ""
  4066. },
  4067. "require": {
  4068. "ext-filter": "*",
  4069. "php": "^8.1",
  4070. "psr/http-factory": "^1",
  4071. "psr/http-message": "^1.1 || ^2.0"
  4072. },
  4073. "suggest": {
  4074. "ext-bcmath": "to improve IPV4 host parsing",
  4075. "ext-gmp": "to improve IPV4 host parsing",
  4076. "ext-intl": "to handle IDN host with the best performance",
  4077. "php-64bit": "to improve IPV4 host parsing",
  4078. "symfony/polyfill-intl-idn": "to handle IDN host via the Symfony polyfill if ext-intl is not present"
  4079. },
  4080. "type": "library",
  4081. "extra": {
  4082. "branch-alias": {
  4083. "dev-master": "7.x-dev"
  4084. }
  4085. },
  4086. "autoload": {
  4087. "psr-4": {
  4088. "League\\Uri\\": ""
  4089. }
  4090. },
  4091. "notification-url": "https://packagist.org/downloads/",
  4092. "license": [
  4093. "MIT"
  4094. ],
  4095. "authors": [
  4096. {
  4097. "name": "Ignace Nyamagana Butera",
  4098. "email": "nyamsprod@gmail.com",
  4099. "homepage": "https://nyamsprod.com"
  4100. }
  4101. ],
  4102. "description": "Common interfaces and classes for URI representation and interaction",
  4103. "homepage": "https://uri.thephpleague.com",
  4104. "keywords": [
  4105. "data-uri",
  4106. "file-uri",
  4107. "ftp",
  4108. "hostname",
  4109. "http",
  4110. "https",
  4111. "parse_str",
  4112. "parse_url",
  4113. "psr-7",
  4114. "query-string",
  4115. "querystring",
  4116. "rfc3986",
  4117. "rfc3987",
  4118. "rfc6570",
  4119. "uri",
  4120. "url",
  4121. "ws"
  4122. ],
  4123. "support": {
  4124. "docs": "https://uri.thephpleague.com",
  4125. "forum": "https://thephpleague.slack.com",
  4126. "issues": "https://github.com/thephpleague/uri-src/issues",
  4127. "source": "https://github.com/thephpleague/uri-interfaces/tree/7.5.0"
  4128. },
  4129. "funding": [
  4130. {
  4131. "url": "https://github.com/sponsors/nyamsprod",
  4132. "type": "github"
  4133. }
  4134. ],
  4135. "time": "2024-12-08T08:18:47+00:00"
  4136. },
  4137. {
  4138. "name": "livewire/livewire",
  4139. "version": "v3.6.1",
  4140. "source": {
  4141. "type": "git",
  4142. "url": "https://github.com/livewire/livewire.git",
  4143. "reference": "0df0a762698176d714e42e2dfed92b6b9e24b8e4"
  4144. },
  4145. "dist": {
  4146. "type": "zip",
  4147. "url": "https://api.github.com/repos/livewire/livewire/zipball/0df0a762698176d714e42e2dfed92b6b9e24b8e4",
  4148. "reference": "0df0a762698176d714e42e2dfed92b6b9e24b8e4",
  4149. "shasum": ""
  4150. },
  4151. "require": {
  4152. "illuminate/database": "^10.0|^11.0|^12.0",
  4153. "illuminate/routing": "^10.0|^11.0|^12.0",
  4154. "illuminate/support": "^10.0|^11.0|^12.0",
  4155. "illuminate/validation": "^10.0|^11.0|^12.0",
  4156. "laravel/prompts": "^0.1.24|^0.2|^0.3",
  4157. "league/mime-type-detection": "^1.9",
  4158. "php": "^8.1",
  4159. "symfony/console": "^6.0|^7.0",
  4160. "symfony/http-kernel": "^6.2|^7.0"
  4161. },
  4162. "require-dev": {
  4163. "calebporzio/sushi": "^2.1",
  4164. "laravel/framework": "^10.15.0|^11.0|^12.0",
  4165. "mockery/mockery": "^1.3.1",
  4166. "orchestra/testbench": "^8.21.0|^9.0|^10.0",
  4167. "orchestra/testbench-dusk": "^8.24|^9.1|^10.0",
  4168. "phpunit/phpunit": "^10.4|^11.5",
  4169. "psy/psysh": "^0.11.22|^0.12"
  4170. },
  4171. "type": "library",
  4172. "extra": {
  4173. "laravel": {
  4174. "aliases": {
  4175. "Livewire": "Livewire\\Livewire"
  4176. },
  4177. "providers": [
  4178. "Livewire\\LivewireServiceProvider"
  4179. ]
  4180. }
  4181. },
  4182. "autoload": {
  4183. "files": [
  4184. "src/helpers.php"
  4185. ],
  4186. "psr-4": {
  4187. "Livewire\\": "src/"
  4188. }
  4189. },
  4190. "notification-url": "https://packagist.org/downloads/",
  4191. "license": [
  4192. "MIT"
  4193. ],
  4194. "authors": [
  4195. {
  4196. "name": "Caleb Porzio",
  4197. "email": "calebporzio@gmail.com"
  4198. }
  4199. ],
  4200. "description": "A front-end framework for Laravel.",
  4201. "support": {
  4202. "issues": "https://github.com/livewire/livewire/issues",
  4203. "source": "https://github.com/livewire/livewire/tree/v3.6.1"
  4204. },
  4205. "funding": [
  4206. {
  4207. "url": "https://github.com/livewire",
  4208. "type": "github"
  4209. }
  4210. ],
  4211. "time": "2025-03-04T21:48:52+00:00"
  4212. },
  4213. {
  4214. "name": "minishlink/web-push",
  4215. "version": "v9.0.2",
  4216. "source": {
  4217. "type": "git",
  4218. "url": "https://github.com/web-push-libs/web-push-php.git",
  4219. "reference": "9c9623bf2f455015cb03f21f175cd42345e039a0"
  4220. },
  4221. "dist": {
  4222. "type": "zip",
  4223. "url": "https://api.github.com/repos/web-push-libs/web-push-php/zipball/9c9623bf2f455015cb03f21f175cd42345e039a0",
  4224. "reference": "9c9623bf2f455015cb03f21f175cd42345e039a0",
  4225. "shasum": ""
  4226. },
  4227. "require": {
  4228. "ext-curl": "*",
  4229. "ext-json": "*",
  4230. "ext-mbstring": "*",
  4231. "ext-openssl": "*",
  4232. "guzzlehttp/guzzle": "^7.4.5",
  4233. "php": ">=8.1",
  4234. "spomky-labs/base64url": "^2.0.4",
  4235. "web-token/jwt-library": "^3.3.0|^4.0.0"
  4236. },
  4237. "require-dev": {
  4238. "friendsofphp/php-cs-fixer": "^v3.68.3",
  4239. "phpstan/phpstan": "^1.10.57",
  4240. "phpunit/phpunit": "^10.5.9"
  4241. },
  4242. "suggest": {
  4243. "ext-bcmath": "Optional for performance.",
  4244. "ext-gmp": "Optional for performance."
  4245. },
  4246. "type": "library",
  4247. "autoload": {
  4248. "psr-4": {
  4249. "Minishlink\\WebPush\\": "src"
  4250. }
  4251. },
  4252. "notification-url": "https://packagist.org/downloads/",
  4253. "license": [
  4254. "MIT"
  4255. ],
  4256. "authors": [
  4257. {
  4258. "name": "Louis Lagrange",
  4259. "email": "lagrange.louis@gmail.com",
  4260. "homepage": "https://github.com/Minishlink"
  4261. }
  4262. ],
  4263. "description": "Web Push library for PHP",
  4264. "homepage": "https://github.com/web-push-libs/web-push-php",
  4265. "keywords": [
  4266. "Push API",
  4267. "WebPush",
  4268. "notifications",
  4269. "push",
  4270. "web"
  4271. ],
  4272. "support": {
  4273. "issues": "https://github.com/web-push-libs/web-push-php/issues",
  4274. "source": "https://github.com/web-push-libs/web-push-php/tree/v9.0.2"
  4275. },
  4276. "time": "2025-01-29T17:44:07+00:00"
  4277. },
  4278. {
  4279. "name": "mobiledetect/mobiledetectlib",
  4280. "version": "2.8.45",
  4281. "source": {
  4282. "type": "git",
  4283. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  4284. "reference": "96aaebcf4f50d3d2692ab81d2c5132e425bca266"
  4285. },
  4286. "dist": {
  4287. "type": "zip",
  4288. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/96aaebcf4f50d3d2692ab81d2c5132e425bca266",
  4289. "reference": "96aaebcf4f50d3d2692ab81d2c5132e425bca266",
  4290. "shasum": ""
  4291. },
  4292. "require": {
  4293. "php": ">=5.0.0"
  4294. },
  4295. "require-dev": {
  4296. "phpunit/phpunit": "~4.8.36"
  4297. },
  4298. "type": "library",
  4299. "autoload": {
  4300. "psr-0": {
  4301. "Detection": "namespaced/"
  4302. },
  4303. "classmap": [
  4304. "Mobile_Detect.php"
  4305. ]
  4306. },
  4307. "notification-url": "https://packagist.org/downloads/",
  4308. "license": [
  4309. "MIT"
  4310. ],
  4311. "authors": [
  4312. {
  4313. "name": "Serban Ghita",
  4314. "email": "serbanghita@gmail.com",
  4315. "homepage": "http://mobiledetect.net",
  4316. "role": "Developer"
  4317. }
  4318. ],
  4319. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  4320. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  4321. "keywords": [
  4322. "detect mobile devices",
  4323. "mobile",
  4324. "mobile detect",
  4325. "mobile detector",
  4326. "php mobile detect"
  4327. ],
  4328. "support": {
  4329. "issues": "https://github.com/serbanghita/Mobile-Detect/issues",
  4330. "source": "https://github.com/serbanghita/Mobile-Detect/tree/2.8.45"
  4331. },
  4332. "funding": [
  4333. {
  4334. "url": "https://github.com/serbanghita",
  4335. "type": "github"
  4336. }
  4337. ],
  4338. "time": "2023-11-07T21:57:25+00:00"
  4339. },
  4340. {
  4341. "name": "monolog/monolog",
  4342. "version": "3.8.1",
  4343. "source": {
  4344. "type": "git",
  4345. "url": "https://github.com/Seldaek/monolog.git",
  4346. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4"
  4347. },
  4348. "dist": {
  4349. "type": "zip",
  4350. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4351. "reference": "aef6ee73a77a66e404dd6540934a9ef1b3c855b4",
  4352. "shasum": ""
  4353. },
  4354. "require": {
  4355. "php": ">=8.1",
  4356. "psr/log": "^2.0 || ^3.0"
  4357. },
  4358. "provide": {
  4359. "psr/log-implementation": "3.0.0"
  4360. },
  4361. "require-dev": {
  4362. "aws/aws-sdk-php": "^3.0",
  4363. "doctrine/couchdb": "~1.0@dev",
  4364. "elasticsearch/elasticsearch": "^7 || ^8",
  4365. "ext-json": "*",
  4366. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  4367. "guzzlehttp/guzzle": "^7.4.5",
  4368. "guzzlehttp/psr7": "^2.2",
  4369. "mongodb/mongodb": "^1.8",
  4370. "php-amqplib/php-amqplib": "~2.4 || ^3",
  4371. "php-console/php-console": "^3.1.8",
  4372. "phpstan/phpstan": "^2",
  4373. "phpstan/phpstan-deprecation-rules": "^2",
  4374. "phpstan/phpstan-strict-rules": "^2",
  4375. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  4376. "predis/predis": "^1.1 || ^2",
  4377. "rollbar/rollbar": "^4.0",
  4378. "ruflin/elastica": "^7 || ^8",
  4379. "symfony/mailer": "^5.4 || ^6",
  4380. "symfony/mime": "^5.4 || ^6"
  4381. },
  4382. "suggest": {
  4383. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  4384. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  4385. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  4386. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  4387. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  4388. "ext-mbstring": "Allow to work properly with unicode symbols",
  4389. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  4390. "ext-openssl": "Required to send log messages using SSL",
  4391. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  4392. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  4393. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  4394. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  4395. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  4396. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  4397. },
  4398. "type": "library",
  4399. "extra": {
  4400. "branch-alias": {
  4401. "dev-main": "3.x-dev"
  4402. }
  4403. },
  4404. "autoload": {
  4405. "psr-4": {
  4406. "Monolog\\": "src/Monolog"
  4407. }
  4408. },
  4409. "notification-url": "https://packagist.org/downloads/",
  4410. "license": [
  4411. "MIT"
  4412. ],
  4413. "authors": [
  4414. {
  4415. "name": "Jordi Boggiano",
  4416. "email": "j.boggiano@seld.be",
  4417. "homepage": "https://seld.be"
  4418. }
  4419. ],
  4420. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  4421. "homepage": "https://github.com/Seldaek/monolog",
  4422. "keywords": [
  4423. "log",
  4424. "logging",
  4425. "psr-3"
  4426. ],
  4427. "support": {
  4428. "issues": "https://github.com/Seldaek/monolog/issues",
  4429. "source": "https://github.com/Seldaek/monolog/tree/3.8.1"
  4430. },
  4431. "funding": [
  4432. {
  4433. "url": "https://github.com/Seldaek",
  4434. "type": "github"
  4435. },
  4436. {
  4437. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  4438. "type": "tidelift"
  4439. }
  4440. ],
  4441. "time": "2024-12-05T17:15:07+00:00"
  4442. },
  4443. {
  4444. "name": "mtdowling/jmespath.php",
  4445. "version": "2.8.0",
  4446. "source": {
  4447. "type": "git",
  4448. "url": "https://github.com/jmespath/jmespath.php.git",
  4449. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  4450. },
  4451. "dist": {
  4452. "type": "zip",
  4453. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4454. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  4455. "shasum": ""
  4456. },
  4457. "require": {
  4458. "php": "^7.2.5 || ^8.0",
  4459. "symfony/polyfill-mbstring": "^1.17"
  4460. },
  4461. "require-dev": {
  4462. "composer/xdebug-handler": "^3.0.3",
  4463. "phpunit/phpunit": "^8.5.33"
  4464. },
  4465. "bin": [
  4466. "bin/jp.php"
  4467. ],
  4468. "type": "library",
  4469. "extra": {
  4470. "branch-alias": {
  4471. "dev-master": "2.8-dev"
  4472. }
  4473. },
  4474. "autoload": {
  4475. "files": [
  4476. "src/JmesPath.php"
  4477. ],
  4478. "psr-4": {
  4479. "JmesPath\\": "src/"
  4480. }
  4481. },
  4482. "notification-url": "https://packagist.org/downloads/",
  4483. "license": [
  4484. "MIT"
  4485. ],
  4486. "authors": [
  4487. {
  4488. "name": "Graham Campbell",
  4489. "email": "hello@gjcampbell.co.uk",
  4490. "homepage": "https://github.com/GrahamCampbell"
  4491. },
  4492. {
  4493. "name": "Michael Dowling",
  4494. "email": "mtdowling@gmail.com",
  4495. "homepage": "https://github.com/mtdowling"
  4496. }
  4497. ],
  4498. "description": "Declaratively specify how to extract elements from a JSON document",
  4499. "keywords": [
  4500. "json",
  4501. "jsonpath"
  4502. ],
  4503. "support": {
  4504. "issues": "https://github.com/jmespath/jmespath.php/issues",
  4505. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  4506. },
  4507. "time": "2024-09-04T18:46:31+00:00"
  4508. },
  4509. {
  4510. "name": "nesbot/carbon",
  4511. "version": "3.8.6",
  4512. "source": {
  4513. "type": "git",
  4514. "url": "https://github.com/CarbonPHP/carbon.git",
  4515. "reference": "ff2f20cf83bd4d503720632ce8a426dc747bf7fd"
  4516. },
  4517. "dist": {
  4518. "type": "zip",
  4519. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/ff2f20cf83bd4d503720632ce8a426dc747bf7fd",
  4520. "reference": "ff2f20cf83bd4d503720632ce8a426dc747bf7fd",
  4521. "shasum": ""
  4522. },
  4523. "require": {
  4524. "carbonphp/carbon-doctrine-types": "<100.0",
  4525. "ext-json": "*",
  4526. "php": "^8.1",
  4527. "psr/clock": "^1.0",
  4528. "symfony/clock": "^6.3 || ^7.0",
  4529. "symfony/polyfill-mbstring": "^1.0",
  4530. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  4531. },
  4532. "provide": {
  4533. "psr/clock-implementation": "1.0"
  4534. },
  4535. "require-dev": {
  4536. "doctrine/dbal": "^3.6.3 || ^4.0",
  4537. "doctrine/orm": "^2.15.2 || ^3.0",
  4538. "friendsofphp/php-cs-fixer": "^3.57.2",
  4539. "kylekatarnls/multi-tester": "^2.5.3",
  4540. "ondrejmirtes/better-reflection": "^6.25.0.4",
  4541. "phpmd/phpmd": "^2.15.0",
  4542. "phpstan/extension-installer": "^1.3.1",
  4543. "phpstan/phpstan": "^1.11.2",
  4544. "phpunit/phpunit": "^10.5.20",
  4545. "squizlabs/php_codesniffer": "^3.9.0"
  4546. },
  4547. "bin": [
  4548. "bin/carbon"
  4549. ],
  4550. "type": "library",
  4551. "extra": {
  4552. "laravel": {
  4553. "providers": [
  4554. "Carbon\\Laravel\\ServiceProvider"
  4555. ]
  4556. },
  4557. "phpstan": {
  4558. "includes": [
  4559. "extension.neon"
  4560. ]
  4561. },
  4562. "branch-alias": {
  4563. "dev-2.x": "2.x-dev",
  4564. "dev-master": "3.x-dev"
  4565. }
  4566. },
  4567. "autoload": {
  4568. "psr-4": {
  4569. "Carbon\\": "src/Carbon/"
  4570. }
  4571. },
  4572. "notification-url": "https://packagist.org/downloads/",
  4573. "license": [
  4574. "MIT"
  4575. ],
  4576. "authors": [
  4577. {
  4578. "name": "Brian Nesbitt",
  4579. "email": "brian@nesbot.com",
  4580. "homepage": "https://markido.com"
  4581. },
  4582. {
  4583. "name": "kylekatarnls",
  4584. "homepage": "https://github.com/kylekatarnls"
  4585. }
  4586. ],
  4587. "description": "An API extension for DateTime that supports 281 different languages.",
  4588. "homepage": "https://carbon.nesbot.com",
  4589. "keywords": [
  4590. "date",
  4591. "datetime",
  4592. "time"
  4593. ],
  4594. "support": {
  4595. "docs": "https://carbon.nesbot.com/docs",
  4596. "issues": "https://github.com/CarbonPHP/carbon/issues",
  4597. "source": "https://github.com/CarbonPHP/carbon"
  4598. },
  4599. "funding": [
  4600. {
  4601. "url": "https://github.com/sponsors/kylekatarnls",
  4602. "type": "github"
  4603. },
  4604. {
  4605. "url": "https://opencollective.com/Carbon#sponsor",
  4606. "type": "opencollective"
  4607. },
  4608. {
  4609. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  4610. "type": "tidelift"
  4611. }
  4612. ],
  4613. "time": "2025-02-20T17:33:38+00:00"
  4614. },
  4615. {
  4616. "name": "nette/schema",
  4617. "version": "v1.3.2",
  4618. "source": {
  4619. "type": "git",
  4620. "url": "https://github.com/nette/schema.git",
  4621. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  4622. },
  4623. "dist": {
  4624. "type": "zip",
  4625. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  4626. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  4627. "shasum": ""
  4628. },
  4629. "require": {
  4630. "nette/utils": "^4.0",
  4631. "php": "8.1 - 8.4"
  4632. },
  4633. "require-dev": {
  4634. "nette/tester": "^2.5.2",
  4635. "phpstan/phpstan-nette": "^1.0",
  4636. "tracy/tracy": "^2.8"
  4637. },
  4638. "type": "library",
  4639. "extra": {
  4640. "branch-alias": {
  4641. "dev-master": "1.3-dev"
  4642. }
  4643. },
  4644. "autoload": {
  4645. "classmap": [
  4646. "src/"
  4647. ]
  4648. },
  4649. "notification-url": "https://packagist.org/downloads/",
  4650. "license": [
  4651. "BSD-3-Clause",
  4652. "GPL-2.0-only",
  4653. "GPL-3.0-only"
  4654. ],
  4655. "authors": [
  4656. {
  4657. "name": "David Grudl",
  4658. "homepage": "https://davidgrudl.com"
  4659. },
  4660. {
  4661. "name": "Nette Community",
  4662. "homepage": "https://nette.org/contributors"
  4663. }
  4664. ],
  4665. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  4666. "homepage": "https://nette.org",
  4667. "keywords": [
  4668. "config",
  4669. "nette"
  4670. ],
  4671. "support": {
  4672. "issues": "https://github.com/nette/schema/issues",
  4673. "source": "https://github.com/nette/schema/tree/v1.3.2"
  4674. },
  4675. "time": "2024-10-06T23:10:23+00:00"
  4676. },
  4677. {
  4678. "name": "nette/utils",
  4679. "version": "v4.0.5",
  4680. "source": {
  4681. "type": "git",
  4682. "url": "https://github.com/nette/utils.git",
  4683. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96"
  4684. },
  4685. "dist": {
  4686. "type": "zip",
  4687. "url": "https://api.github.com/repos/nette/utils/zipball/736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4688. "reference": "736c567e257dbe0fcf6ce81b4d6dbe05c6899f96",
  4689. "shasum": ""
  4690. },
  4691. "require": {
  4692. "php": "8.0 - 8.4"
  4693. },
  4694. "conflict": {
  4695. "nette/finder": "<3",
  4696. "nette/schema": "<1.2.2"
  4697. },
  4698. "require-dev": {
  4699. "jetbrains/phpstorm-attributes": "dev-master",
  4700. "nette/tester": "^2.5",
  4701. "phpstan/phpstan": "^1.0",
  4702. "tracy/tracy": "^2.9"
  4703. },
  4704. "suggest": {
  4705. "ext-gd": "to use Image",
  4706. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  4707. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  4708. "ext-json": "to use Nette\\Utils\\Json",
  4709. "ext-mbstring": "to use Strings::lower() etc...",
  4710. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  4711. },
  4712. "type": "library",
  4713. "extra": {
  4714. "branch-alias": {
  4715. "dev-master": "4.0-dev"
  4716. }
  4717. },
  4718. "autoload": {
  4719. "classmap": [
  4720. "src/"
  4721. ]
  4722. },
  4723. "notification-url": "https://packagist.org/downloads/",
  4724. "license": [
  4725. "BSD-3-Clause",
  4726. "GPL-2.0-only",
  4727. "GPL-3.0-only"
  4728. ],
  4729. "authors": [
  4730. {
  4731. "name": "David Grudl",
  4732. "homepage": "https://davidgrudl.com"
  4733. },
  4734. {
  4735. "name": "Nette Community",
  4736. "homepage": "https://nette.org/contributors"
  4737. }
  4738. ],
  4739. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  4740. "homepage": "https://nette.org",
  4741. "keywords": [
  4742. "array",
  4743. "core",
  4744. "datetime",
  4745. "images",
  4746. "json",
  4747. "nette",
  4748. "paginator",
  4749. "password",
  4750. "slugify",
  4751. "string",
  4752. "unicode",
  4753. "utf-8",
  4754. "utility",
  4755. "validation"
  4756. ],
  4757. "support": {
  4758. "issues": "https://github.com/nette/utils/issues",
  4759. "source": "https://github.com/nette/utils/tree/v4.0.5"
  4760. },
  4761. "time": "2024-08-07T15:39:19+00:00"
  4762. },
  4763. {
  4764. "name": "nikic/php-parser",
  4765. "version": "v5.4.0",
  4766. "source": {
  4767. "type": "git",
  4768. "url": "https://github.com/nikic/PHP-Parser.git",
  4769. "reference": "447a020a1f875a434d62f2a401f53b82a396e494"
  4770. },
  4771. "dist": {
  4772. "type": "zip",
  4773. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494",
  4774. "reference": "447a020a1f875a434d62f2a401f53b82a396e494",
  4775. "shasum": ""
  4776. },
  4777. "require": {
  4778. "ext-ctype": "*",
  4779. "ext-json": "*",
  4780. "ext-tokenizer": "*",
  4781. "php": ">=7.4"
  4782. },
  4783. "require-dev": {
  4784. "ircmaxell/php-yacc": "^0.0.7",
  4785. "phpunit/phpunit": "^9.0"
  4786. },
  4787. "bin": [
  4788. "bin/php-parse"
  4789. ],
  4790. "type": "library",
  4791. "extra": {
  4792. "branch-alias": {
  4793. "dev-master": "5.0-dev"
  4794. }
  4795. },
  4796. "autoload": {
  4797. "psr-4": {
  4798. "PhpParser\\": "lib/PhpParser"
  4799. }
  4800. },
  4801. "notification-url": "https://packagist.org/downloads/",
  4802. "license": [
  4803. "BSD-3-Clause"
  4804. ],
  4805. "authors": [
  4806. {
  4807. "name": "Nikita Popov"
  4808. }
  4809. ],
  4810. "description": "A PHP parser written in PHP",
  4811. "keywords": [
  4812. "parser",
  4813. "php"
  4814. ],
  4815. "support": {
  4816. "issues": "https://github.com/nikic/PHP-Parser/issues",
  4817. "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0"
  4818. },
  4819. "time": "2024-12-30T11:07:19+00:00"
  4820. },
  4821. {
  4822. "name": "nunomaduro/termwind",
  4823. "version": "v2.3.0",
  4824. "source": {
  4825. "type": "git",
  4826. "url": "https://github.com/nunomaduro/termwind.git",
  4827. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda"
  4828. },
  4829. "dist": {
  4830. "type": "zip",
  4831. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  4832. "reference": "52915afe6a1044e8b9cee1bcff836fb63acf9cda",
  4833. "shasum": ""
  4834. },
  4835. "require": {
  4836. "ext-mbstring": "*",
  4837. "php": "^8.2",
  4838. "symfony/console": "^7.1.8"
  4839. },
  4840. "require-dev": {
  4841. "illuminate/console": "^11.33.2",
  4842. "laravel/pint": "^1.18.2",
  4843. "mockery/mockery": "^1.6.12",
  4844. "pestphp/pest": "^2.36.0",
  4845. "phpstan/phpstan": "^1.12.11",
  4846. "phpstan/phpstan-strict-rules": "^1.6.1",
  4847. "symfony/var-dumper": "^7.1.8",
  4848. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  4849. },
  4850. "type": "library",
  4851. "extra": {
  4852. "laravel": {
  4853. "providers": [
  4854. "Termwind\\Laravel\\TermwindServiceProvider"
  4855. ]
  4856. },
  4857. "branch-alias": {
  4858. "dev-2.x": "2.x-dev"
  4859. }
  4860. },
  4861. "autoload": {
  4862. "files": [
  4863. "src/Functions.php"
  4864. ],
  4865. "psr-4": {
  4866. "Termwind\\": "src/"
  4867. }
  4868. },
  4869. "notification-url": "https://packagist.org/downloads/",
  4870. "license": [
  4871. "MIT"
  4872. ],
  4873. "authors": [
  4874. {
  4875. "name": "Nuno Maduro",
  4876. "email": "enunomaduro@gmail.com"
  4877. }
  4878. ],
  4879. "description": "Its like Tailwind CSS, but for the console.",
  4880. "keywords": [
  4881. "cli",
  4882. "console",
  4883. "css",
  4884. "package",
  4885. "php",
  4886. "style"
  4887. ],
  4888. "support": {
  4889. "issues": "https://github.com/nunomaduro/termwind/issues",
  4890. "source": "https://github.com/nunomaduro/termwind/tree/v2.3.0"
  4891. },
  4892. "funding": [
  4893. {
  4894. "url": "https://www.paypal.com/paypalme/enunomaduro",
  4895. "type": "custom"
  4896. },
  4897. {
  4898. "url": "https://github.com/nunomaduro",
  4899. "type": "github"
  4900. },
  4901. {
  4902. "url": "https://github.com/xiCO2k",
  4903. "type": "github"
  4904. }
  4905. ],
  4906. "time": "2024-11-21T10:39:51+00:00"
  4907. },
  4908. {
  4909. "name": "nyholm/psr7",
  4910. "version": "1.8.2",
  4911. "source": {
  4912. "type": "git",
  4913. "url": "https://github.com/Nyholm/psr7.git",
  4914. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3"
  4915. },
  4916. "dist": {
  4917. "type": "zip",
  4918. "url": "https://api.github.com/repos/Nyholm/psr7/zipball/a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  4919. "reference": "a71f2b11690f4b24d099d6b16690a90ae14fc6f3",
  4920. "shasum": ""
  4921. },
  4922. "require": {
  4923. "php": ">=7.2",
  4924. "psr/http-factory": "^1.0",
  4925. "psr/http-message": "^1.1 || ^2.0"
  4926. },
  4927. "provide": {
  4928. "php-http/message-factory-implementation": "1.0",
  4929. "psr/http-factory-implementation": "1.0",
  4930. "psr/http-message-implementation": "1.0"
  4931. },
  4932. "require-dev": {
  4933. "http-interop/http-factory-tests": "^0.9",
  4934. "php-http/message-factory": "^1.0",
  4935. "php-http/psr7-integration-tests": "^1.0",
  4936. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.4",
  4937. "symfony/error-handler": "^4.4"
  4938. },
  4939. "type": "library",
  4940. "extra": {
  4941. "branch-alias": {
  4942. "dev-master": "1.8-dev"
  4943. }
  4944. },
  4945. "autoload": {
  4946. "psr-4": {
  4947. "Nyholm\\Psr7\\": "src/"
  4948. }
  4949. },
  4950. "notification-url": "https://packagist.org/downloads/",
  4951. "license": [
  4952. "MIT"
  4953. ],
  4954. "authors": [
  4955. {
  4956. "name": "Tobias Nyholm",
  4957. "email": "tobias.nyholm@gmail.com"
  4958. },
  4959. {
  4960. "name": "Martijn van der Ven",
  4961. "email": "martijn@vanderven.se"
  4962. }
  4963. ],
  4964. "description": "A fast PHP7 implementation of PSR-7",
  4965. "homepage": "https://tnyholm.se",
  4966. "keywords": [
  4967. "psr-17",
  4968. "psr-7"
  4969. ],
  4970. "support": {
  4971. "issues": "https://github.com/Nyholm/psr7/issues",
  4972. "source": "https://github.com/Nyholm/psr7/tree/1.8.2"
  4973. },
  4974. "funding": [
  4975. {
  4976. "url": "https://github.com/Zegnat",
  4977. "type": "github"
  4978. },
  4979. {
  4980. "url": "https://github.com/nyholm",
  4981. "type": "github"
  4982. }
  4983. ],
  4984. "time": "2024-09-09T07:06:30+00:00"
  4985. },
  4986. {
  4987. "name": "paragonie/constant_time_encoding",
  4988. "version": "v3.0.0",
  4989. "source": {
  4990. "type": "git",
  4991. "url": "https://github.com/paragonie/constant_time_encoding.git",
  4992. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  4993. },
  4994. "dist": {
  4995. "type": "zip",
  4996. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  4997. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  4998. "shasum": ""
  4999. },
  5000. "require": {
  5001. "php": "^8"
  5002. },
  5003. "require-dev": {
  5004. "phpunit/phpunit": "^9",
  5005. "vimeo/psalm": "^4|^5"
  5006. },
  5007. "type": "library",
  5008. "autoload": {
  5009. "psr-4": {
  5010. "ParagonIE\\ConstantTime\\": "src/"
  5011. }
  5012. },
  5013. "notification-url": "https://packagist.org/downloads/",
  5014. "license": [
  5015. "MIT"
  5016. ],
  5017. "authors": [
  5018. {
  5019. "name": "Paragon Initiative Enterprises",
  5020. "email": "security@paragonie.com",
  5021. "homepage": "https://paragonie.com",
  5022. "role": "Maintainer"
  5023. },
  5024. {
  5025. "name": "Steve 'Sc00bz' Thomas",
  5026. "email": "steve@tobtu.com",
  5027. "homepage": "https://www.tobtu.com",
  5028. "role": "Original Developer"
  5029. }
  5030. ],
  5031. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  5032. "keywords": [
  5033. "base16",
  5034. "base32",
  5035. "base32_decode",
  5036. "base32_encode",
  5037. "base64",
  5038. "base64_decode",
  5039. "base64_encode",
  5040. "bin2hex",
  5041. "encoding",
  5042. "hex",
  5043. "hex2bin",
  5044. "rfc4648"
  5045. ],
  5046. "support": {
  5047. "email": "info@paragonie.com",
  5048. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  5049. "source": "https://github.com/paragonie/constant_time_encoding"
  5050. },
  5051. "time": "2024-05-08T12:36:18+00:00"
  5052. },
  5053. {
  5054. "name": "paragonie/random_compat",
  5055. "version": "v9.99.100",
  5056. "source": {
  5057. "type": "git",
  5058. "url": "https://github.com/paragonie/random_compat.git",
  5059. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  5060. },
  5061. "dist": {
  5062. "type": "zip",
  5063. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5064. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  5065. "shasum": ""
  5066. },
  5067. "require": {
  5068. "php": ">= 7"
  5069. },
  5070. "require-dev": {
  5071. "phpunit/phpunit": "4.*|5.*",
  5072. "vimeo/psalm": "^1"
  5073. },
  5074. "suggest": {
  5075. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  5076. },
  5077. "type": "library",
  5078. "notification-url": "https://packagist.org/downloads/",
  5079. "license": [
  5080. "MIT"
  5081. ],
  5082. "authors": [
  5083. {
  5084. "name": "Paragon Initiative Enterprises",
  5085. "email": "security@paragonie.com",
  5086. "homepage": "https://paragonie.com"
  5087. }
  5088. ],
  5089. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  5090. "keywords": [
  5091. "csprng",
  5092. "polyfill",
  5093. "pseudorandom",
  5094. "random"
  5095. ],
  5096. "support": {
  5097. "email": "info@paragonie.com",
  5098. "issues": "https://github.com/paragonie/random_compat/issues",
  5099. "source": "https://github.com/paragonie/random_compat"
  5100. },
  5101. "time": "2020-10-15T08:29:30+00:00"
  5102. },
  5103. {
  5104. "name": "paragonie/sodium_compat",
  5105. "version": "v2.1.0",
  5106. "source": {
  5107. "type": "git",
  5108. "url": "https://github.com/paragonie/sodium_compat.git",
  5109. "reference": "a673d5f310477027cead2e2f2b6db5d8368157cb"
  5110. },
  5111. "dist": {
  5112. "type": "zip",
  5113. "url": "https://api.github.com/repos/paragonie/sodium_compat/zipball/a673d5f310477027cead2e2f2b6db5d8368157cb",
  5114. "reference": "a673d5f310477027cead2e2f2b6db5d8368157cb",
  5115. "shasum": ""
  5116. },
  5117. "require": {
  5118. "php": "^8.1",
  5119. "php-64bit": "*"
  5120. },
  5121. "require-dev": {
  5122. "phpunit/phpunit": "^7|^8|^9",
  5123. "vimeo/psalm": "^4|^5"
  5124. },
  5125. "suggest": {
  5126. "ext-sodium": "Better performance, password hashing (Argon2i), secure memory management (memzero), and better security."
  5127. },
  5128. "type": "library",
  5129. "extra": {
  5130. "branch-alias": {
  5131. "dev-master": "2.0.x-dev"
  5132. }
  5133. },
  5134. "autoload": {
  5135. "files": [
  5136. "autoload.php"
  5137. ]
  5138. },
  5139. "notification-url": "https://packagist.org/downloads/",
  5140. "license": [
  5141. "ISC"
  5142. ],
  5143. "authors": [
  5144. {
  5145. "name": "Paragon Initiative Enterprises",
  5146. "email": "security@paragonie.com"
  5147. },
  5148. {
  5149. "name": "Frank Denis",
  5150. "email": "jedisct1@pureftpd.org"
  5151. }
  5152. ],
  5153. "description": "Pure PHP implementation of libsodium; uses the PHP extension if it exists",
  5154. "keywords": [
  5155. "Authentication",
  5156. "BLAKE2b",
  5157. "ChaCha20",
  5158. "ChaCha20-Poly1305",
  5159. "Chapoly",
  5160. "Curve25519",
  5161. "Ed25519",
  5162. "EdDSA",
  5163. "Edwards-curve Digital Signature Algorithm",
  5164. "Elliptic Curve Diffie-Hellman",
  5165. "Poly1305",
  5166. "Pure-PHP cryptography",
  5167. "RFC 7748",
  5168. "RFC 8032",
  5169. "Salpoly",
  5170. "Salsa20",
  5171. "X25519",
  5172. "XChaCha20-Poly1305",
  5173. "XSalsa20-Poly1305",
  5174. "Xchacha20",
  5175. "Xsalsa20",
  5176. "aead",
  5177. "cryptography",
  5178. "ecdh",
  5179. "elliptic curve",
  5180. "elliptic curve cryptography",
  5181. "encryption",
  5182. "libsodium",
  5183. "php",
  5184. "public-key cryptography",
  5185. "secret-key cryptography",
  5186. "side-channel resistant"
  5187. ],
  5188. "support": {
  5189. "issues": "https://github.com/paragonie/sodium_compat/issues",
  5190. "source": "https://github.com/paragonie/sodium_compat/tree/v2.1.0"
  5191. },
  5192. "time": "2024-09-04T12:51:01+00:00"
  5193. },
  5194. {
  5195. "name": "pbmedia/laravel-ffmpeg",
  5196. "version": "8.7.0",
  5197. "source": {
  5198. "type": "git",
  5199. "url": "https://github.com/protonemedia/laravel-ffmpeg.git",
  5200. "reference": "01249a226bce0172a7e87a43fc5448b975a56282"
  5201. },
  5202. "dist": {
  5203. "type": "zip",
  5204. "url": "https://api.github.com/repos/protonemedia/laravel-ffmpeg/zipball/01249a226bce0172a7e87a43fc5448b975a56282",
  5205. "reference": "01249a226bce0172a7e87a43fc5448b975a56282",
  5206. "shasum": ""
  5207. },
  5208. "require": {
  5209. "illuminate/contracts": "^10.0|^11.0|^12.0",
  5210. "php": "^8.1|^8.2|^8.3|^8.4",
  5211. "php-ffmpeg/php-ffmpeg": "^1.2",
  5212. "ramsey/collection": "^2.0"
  5213. },
  5214. "require-dev": {
  5215. "league/flysystem-memory": "^3.10",
  5216. "mockery/mockery": "^1.4.4",
  5217. "nesbot/carbon": "^2.66|^3.0",
  5218. "orchestra/testbench": "^8.0|^9.0|^10.0",
  5219. "phpunit/phpunit": "^10.4|^11.5.3",
  5220. "spatie/image": "^2.2|^3.3",
  5221. "spatie/phpunit-snapshot-assertions": "^5.0"
  5222. },
  5223. "type": "library",
  5224. "extra": {
  5225. "laravel": {
  5226. "aliases": {
  5227. "FFMpeg": "ProtoneMedia\\LaravelFFMpeg\\Support\\FFMpeg"
  5228. },
  5229. "providers": [
  5230. "ProtoneMedia\\LaravelFFMpeg\\Support\\ServiceProvider"
  5231. ]
  5232. }
  5233. },
  5234. "autoload": {
  5235. "psr-4": {
  5236. "ProtoneMedia\\LaravelFFMpeg\\": "src"
  5237. }
  5238. },
  5239. "notification-url": "https://packagist.org/downloads/",
  5240. "license": [
  5241. "MIT"
  5242. ],
  5243. "authors": [
  5244. {
  5245. "name": "Pascal Baljet",
  5246. "email": "pascal@protone.media",
  5247. "homepage": "https://protone.media",
  5248. "role": "Developer"
  5249. }
  5250. ],
  5251. "description": "FFMpeg for Laravel",
  5252. "homepage": "https://github.com/protonemedia/laravel-ffmpeg",
  5253. "keywords": [
  5254. "ffmpeg",
  5255. "laravel",
  5256. "laravel-ffmpeg",
  5257. "protone media",
  5258. "protonemedia"
  5259. ],
  5260. "support": {
  5261. "issues": "https://github.com/protonemedia/laravel-ffmpeg/issues",
  5262. "source": "https://github.com/protonemedia/laravel-ffmpeg/tree/8.7.0"
  5263. },
  5264. "funding": [
  5265. {
  5266. "url": "https://github.com/pascalbaljet",
  5267. "type": "github"
  5268. }
  5269. ],
  5270. "time": "2025-02-16T22:06:08+00:00"
  5271. },
  5272. {
  5273. "name": "php-ffmpeg/php-ffmpeg",
  5274. "version": "v1.3.1",
  5275. "source": {
  5276. "type": "git",
  5277. "url": "https://github.com/PHP-FFMpeg/PHP-FFMpeg.git",
  5278. "reference": "0fbbc4c6a6336155679adc800616001ae3328c7a"
  5279. },
  5280. "dist": {
  5281. "type": "zip",
  5282. "url": "https://api.github.com/repos/PHP-FFMpeg/PHP-FFMpeg/zipball/0fbbc4c6a6336155679adc800616001ae3328c7a",
  5283. "reference": "0fbbc4c6a6336155679adc800616001ae3328c7a",
  5284. "shasum": ""
  5285. },
  5286. "require": {
  5287. "evenement/evenement": "^3.0",
  5288. "php": "^8.0 || ^8.1 || ^8.2 || ^8.3 || ^8.4",
  5289. "psr/log": "^1.0 || ^2.0 || ^3.0",
  5290. "spatie/temporary-directory": "^2.0",
  5291. "symfony/cache": "^5.4 || ^6.0 || ^7.0",
  5292. "symfony/process": "^5.4 || ^6.0 || ^7.0"
  5293. },
  5294. "require-dev": {
  5295. "mockery/mockery": "^1.5",
  5296. "phpunit/phpunit": "^9.5.10 || ^10.0"
  5297. },
  5298. "suggest": {
  5299. "php-ffmpeg/extras": "A compilation of common audio & video drivers for PHP-FFMpeg"
  5300. },
  5301. "type": "library",
  5302. "autoload": {
  5303. "psr-4": {
  5304. "FFMpeg\\": "src/FFMpeg",
  5305. "Alchemy\\BinaryDriver\\": "src/Alchemy/BinaryDriver"
  5306. }
  5307. },
  5308. "notification-url": "https://packagist.org/downloads/",
  5309. "license": [
  5310. "MIT"
  5311. ],
  5312. "authors": [
  5313. {
  5314. "name": "Romain Neutron",
  5315. "email": "imprec@gmail.com",
  5316. "homepage": "http://www.lickmychip.com/"
  5317. },
  5318. {
  5319. "name": "Phraseanet Team",
  5320. "email": "info@alchemy.fr",
  5321. "homepage": "http://www.phraseanet.com/"
  5322. },
  5323. {
  5324. "name": "Patrik Karisch",
  5325. "email": "patrik@karisch.guru",
  5326. "homepage": "http://www.karisch.guru"
  5327. },
  5328. {
  5329. "name": "Romain Biard",
  5330. "email": "romain.biard@gmail.com",
  5331. "homepage": "https://www.strime.io/"
  5332. },
  5333. {
  5334. "name": "Jens Hausdorf",
  5335. "email": "hello@jens-hausdorf.de",
  5336. "homepage": "https://jens-hausdorf.de"
  5337. },
  5338. {
  5339. "name": "Pascal Baljet",
  5340. "email": "pascal@protone.media",
  5341. "homepage": "https://protone.media"
  5342. }
  5343. ],
  5344. "description": "FFMpeg PHP, an Object Oriented library to communicate with AVconv / ffmpeg",
  5345. "keywords": [
  5346. "audio",
  5347. "audio processing",
  5348. "avconv",
  5349. "avprobe",
  5350. "ffmpeg",
  5351. "ffprobe",
  5352. "video",
  5353. "video processing"
  5354. ],
  5355. "support": {
  5356. "issues": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/issues",
  5357. "source": "https://github.com/PHP-FFMpeg/PHP-FFMpeg/tree/v1.3.1"
  5358. },
  5359. "time": "2025-01-10T20:23:57+00:00"
  5360. },
  5361. {
  5362. "name": "phpoption/phpoption",
  5363. "version": "1.9.3",
  5364. "source": {
  5365. "type": "git",
  5366. "url": "https://github.com/schmittjoh/php-option.git",
  5367. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  5368. },
  5369. "dist": {
  5370. "type": "zip",
  5371. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5372. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  5373. "shasum": ""
  5374. },
  5375. "require": {
  5376. "php": "^7.2.5 || ^8.0"
  5377. },
  5378. "require-dev": {
  5379. "bamarni/composer-bin-plugin": "^1.8.2",
  5380. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  5381. },
  5382. "type": "library",
  5383. "extra": {
  5384. "bamarni-bin": {
  5385. "bin-links": true,
  5386. "forward-command": false
  5387. },
  5388. "branch-alias": {
  5389. "dev-master": "1.9-dev"
  5390. }
  5391. },
  5392. "autoload": {
  5393. "psr-4": {
  5394. "PhpOption\\": "src/PhpOption/"
  5395. }
  5396. },
  5397. "notification-url": "https://packagist.org/downloads/",
  5398. "license": [
  5399. "Apache-2.0"
  5400. ],
  5401. "authors": [
  5402. {
  5403. "name": "Johannes M. Schmitt",
  5404. "email": "schmittjoh@gmail.com",
  5405. "homepage": "https://github.com/schmittjoh"
  5406. },
  5407. {
  5408. "name": "Graham Campbell",
  5409. "email": "hello@gjcampbell.co.uk",
  5410. "homepage": "https://github.com/GrahamCampbell"
  5411. }
  5412. ],
  5413. "description": "Option Type for PHP",
  5414. "keywords": [
  5415. "language",
  5416. "option",
  5417. "php",
  5418. "type"
  5419. ],
  5420. "support": {
  5421. "issues": "https://github.com/schmittjoh/php-option/issues",
  5422. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  5423. },
  5424. "funding": [
  5425. {
  5426. "url": "https://github.com/GrahamCampbell",
  5427. "type": "github"
  5428. },
  5429. {
  5430. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  5431. "type": "tidelift"
  5432. }
  5433. ],
  5434. "time": "2024-07-20T21:41:07+00:00"
  5435. },
  5436. {
  5437. "name": "phpseclib/phpseclib",
  5438. "version": "2.0.48",
  5439. "source": {
  5440. "type": "git",
  5441. "url": "https://github.com/phpseclib/phpseclib.git",
  5442. "reference": "eaa7be704b8b93a6913b69eb7f645a59d7731b61"
  5443. },
  5444. "dist": {
  5445. "type": "zip",
  5446. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/eaa7be704b8b93a6913b69eb7f645a59d7731b61",
  5447. "reference": "eaa7be704b8b93a6913b69eb7f645a59d7731b61",
  5448. "shasum": ""
  5449. },
  5450. "require": {
  5451. "php": ">=5.3.3"
  5452. },
  5453. "require-dev": {
  5454. "phing/phing": "~2.7",
  5455. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  5456. "squizlabs/php_codesniffer": "~2.0"
  5457. },
  5458. "suggest": {
  5459. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  5460. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  5461. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  5462. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
  5463. "ext-xml": "Install the XML extension to load XML formatted public keys."
  5464. },
  5465. "type": "library",
  5466. "autoload": {
  5467. "files": [
  5468. "phpseclib/bootstrap.php"
  5469. ],
  5470. "psr-4": {
  5471. "phpseclib\\": "phpseclib/"
  5472. }
  5473. },
  5474. "notification-url": "https://packagist.org/downloads/",
  5475. "license": [
  5476. "MIT"
  5477. ],
  5478. "authors": [
  5479. {
  5480. "name": "Jim Wigginton",
  5481. "email": "terrafrost@php.net",
  5482. "role": "Lead Developer"
  5483. },
  5484. {
  5485. "name": "Patrick Monnerat",
  5486. "email": "pm@datasphere.ch",
  5487. "role": "Developer"
  5488. },
  5489. {
  5490. "name": "Andreas Fischer",
  5491. "email": "bantu@phpbb.com",
  5492. "role": "Developer"
  5493. },
  5494. {
  5495. "name": "Hans-Jürgen Petrich",
  5496. "email": "petrich@tronic-media.com",
  5497. "role": "Developer"
  5498. },
  5499. {
  5500. "name": "Graham Campbell",
  5501. "email": "graham@alt-three.com",
  5502. "role": "Developer"
  5503. }
  5504. ],
  5505. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  5506. "homepage": "http://phpseclib.sourceforge.net",
  5507. "keywords": [
  5508. "BigInteger",
  5509. "aes",
  5510. "asn.1",
  5511. "asn1",
  5512. "blowfish",
  5513. "crypto",
  5514. "cryptography",
  5515. "encryption",
  5516. "rsa",
  5517. "security",
  5518. "sftp",
  5519. "signature",
  5520. "signing",
  5521. "ssh",
  5522. "twofish",
  5523. "x.509",
  5524. "x509"
  5525. ],
  5526. "support": {
  5527. "issues": "https://github.com/phpseclib/phpseclib/issues",
  5528. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.48"
  5529. },
  5530. "funding": [
  5531. {
  5532. "url": "https://github.com/terrafrost",
  5533. "type": "github"
  5534. },
  5535. {
  5536. "url": "https://www.patreon.com/phpseclib",
  5537. "type": "patreon"
  5538. },
  5539. {
  5540. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  5541. "type": "tidelift"
  5542. }
  5543. ],
  5544. "time": "2024-12-14T21:03:54+00:00"
  5545. },
  5546. {
  5547. "name": "pixelfed/fractal",
  5548. "version": "0.18.0",
  5549. "source": {
  5550. "type": "git",
  5551. "url": "https://github.com/pixelfed/fractal.git",
  5552. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782"
  5553. },
  5554. "dist": {
  5555. "type": "zip",
  5556. "url": "https://api.github.com/repos/pixelfed/fractal/zipball/faff10c9f3e3300b1571ef41926f933a9cce4782",
  5557. "reference": "faff10c9f3e3300b1571ef41926f933a9cce4782",
  5558. "shasum": ""
  5559. },
  5560. "require": {
  5561. "php": ">=5.4"
  5562. },
  5563. "require-dev": {
  5564. "doctrine/orm": "^2.5",
  5565. "illuminate/contracts": "~5.0",
  5566. "mockery/mockery": "~0.9",
  5567. "pagerfanta/pagerfanta": "~1.0.0",
  5568. "phpunit/phpunit": "^4.8.35",
  5569. "squizlabs/php_codesniffer": "~1.5",
  5570. "zendframework/zend-paginator": "~2.3"
  5571. },
  5572. "suggest": {
  5573. "illuminate/pagination": "The Illuminate Pagination component.",
  5574. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  5575. "zendframework/zend-paginator": "Zend Framework Paginator"
  5576. },
  5577. "type": "library",
  5578. "extra": {
  5579. "branch-alias": {
  5580. "dev-master": "0.13-dev"
  5581. }
  5582. },
  5583. "autoload": {
  5584. "psr-4": {
  5585. "League\\Fractal\\": "src"
  5586. }
  5587. },
  5588. "notification-url": "https://packagist.org/downloads/",
  5589. "license": [
  5590. "MIT"
  5591. ],
  5592. "authors": [
  5593. {
  5594. "name": "Phil Sturgeon",
  5595. "email": "me@philsturgeon.uk",
  5596. "homepage": "http://philsturgeon.uk/",
  5597. "role": "Developer"
  5598. }
  5599. ],
  5600. "description": "Handle the output of complex data structures ready for API output.",
  5601. "homepage": "http://fractal.thephpleague.com/",
  5602. "keywords": [
  5603. "api",
  5604. "json",
  5605. "league",
  5606. "rest"
  5607. ],
  5608. "support": {
  5609. "source": "https://github.com/pixelfed/fractal/tree/0.18.0"
  5610. },
  5611. "time": "2018-07-01T02:30:24+00:00"
  5612. },
  5613. {
  5614. "name": "pixelfed/laravel-snowflake",
  5615. "version": "v2.0.0",
  5616. "source": {
  5617. "type": "git",
  5618. "url": "https://github.com/pixelfed/laravel-snowflake.git",
  5619. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d"
  5620. },
  5621. "dist": {
  5622. "type": "zip",
  5623. "url": "https://api.github.com/repos/pixelfed/laravel-snowflake/zipball/69255870dcbf949feac889dfc09180a6fef77f6d",
  5624. "reference": "69255870dcbf949feac889dfc09180a6fef77f6d",
  5625. "shasum": ""
  5626. },
  5627. "require": {
  5628. "php": ">=7.0.0"
  5629. },
  5630. "require-dev": {
  5631. "orchestra/testbench": "~3.0",
  5632. "phpunit/phpunit": "~6.0"
  5633. },
  5634. "type": "library",
  5635. "extra": {
  5636. "laravel": {
  5637. "providers": [
  5638. "Pixelfed\\Snowflake\\SnowflakeServiceProvider"
  5639. ]
  5640. }
  5641. },
  5642. "autoload": {
  5643. "psr-4": {
  5644. "Pixelfed\\Snowflake\\": "src/"
  5645. }
  5646. },
  5647. "notification-url": "https://packagist.org/downloads/",
  5648. "license": [
  5649. "MIT"
  5650. ],
  5651. "authors": [
  5652. {
  5653. "name": "Koki Asai",
  5654. "email": "koki@asai.email"
  5655. },
  5656. {
  5657. "name": "Daniel Supernault",
  5658. "email": "hello@pixelfed.org"
  5659. }
  5660. ],
  5661. "description": "Snowflake for Laravel.",
  5662. "homepage": "https://github.com/pixelfed/laravel-snowflake",
  5663. "keywords": [
  5664. "laravel",
  5665. "snowflake"
  5666. ],
  5667. "support": {
  5668. "source": "https://github.com/pixelfed/laravel-snowflake/tree/v2.0.0"
  5669. },
  5670. "time": "2019-03-12T05:13:49+00:00"
  5671. },
  5672. {
  5673. "name": "pragmarx/google2fa",
  5674. "version": "v8.0.3",
  5675. "source": {
  5676. "type": "git",
  5677. "url": "https://github.com/antonioribeiro/google2fa.git",
  5678. "reference": "6f8d87ebd5afbf7790bde1ffc7579c7c705e0fad"
  5679. },
  5680. "dist": {
  5681. "type": "zip",
  5682. "url": "https://api.github.com/repos/antonioribeiro/google2fa/zipball/6f8d87ebd5afbf7790bde1ffc7579c7c705e0fad",
  5683. "reference": "6f8d87ebd5afbf7790bde1ffc7579c7c705e0fad",
  5684. "shasum": ""
  5685. },
  5686. "require": {
  5687. "paragonie/constant_time_encoding": "^1.0|^2.0|^3.0",
  5688. "php": "^7.1|^8.0"
  5689. },
  5690. "require-dev": {
  5691. "phpstan/phpstan": "^1.9",
  5692. "phpunit/phpunit": "^7.5.15|^8.5|^9.0"
  5693. },
  5694. "type": "library",
  5695. "autoload": {
  5696. "psr-4": {
  5697. "PragmaRX\\Google2FA\\": "src/"
  5698. }
  5699. },
  5700. "notification-url": "https://packagist.org/downloads/",
  5701. "license": [
  5702. "MIT"
  5703. ],
  5704. "authors": [
  5705. {
  5706. "name": "Antonio Carlos Ribeiro",
  5707. "email": "acr@antoniocarlosribeiro.com",
  5708. "role": "Creator & Designer"
  5709. }
  5710. ],
  5711. "description": "A One Time Password Authentication package, compatible with Google Authenticator.",
  5712. "keywords": [
  5713. "2fa",
  5714. "Authentication",
  5715. "Two Factor Authentication",
  5716. "google2fa"
  5717. ],
  5718. "support": {
  5719. "issues": "https://github.com/antonioribeiro/google2fa/issues",
  5720. "source": "https://github.com/antonioribeiro/google2fa/tree/v8.0.3"
  5721. },
  5722. "time": "2024-09-05T11:56:40+00:00"
  5723. },
  5724. {
  5725. "name": "predis/predis",
  5726. "version": "v2.3.0",
  5727. "source": {
  5728. "type": "git",
  5729. "url": "https://github.com/predis/predis.git",
  5730. "reference": "bac46bfdb78cd6e9c7926c697012aae740cb9ec9"
  5731. },
  5732. "dist": {
  5733. "type": "zip",
  5734. "url": "https://api.github.com/repos/predis/predis/zipball/bac46bfdb78cd6e9c7926c697012aae740cb9ec9",
  5735. "reference": "bac46bfdb78cd6e9c7926c697012aae740cb9ec9",
  5736. "shasum": ""
  5737. },
  5738. "require": {
  5739. "php": "^7.2 || ^8.0"
  5740. },
  5741. "require-dev": {
  5742. "friendsofphp/php-cs-fixer": "^3.3",
  5743. "phpstan/phpstan": "^1.9",
  5744. "phpunit/phpunit": "^8.0 || ^9.4"
  5745. },
  5746. "suggest": {
  5747. "ext-relay": "Faster connection with in-memory caching (>=0.6.2)"
  5748. },
  5749. "type": "library",
  5750. "autoload": {
  5751. "psr-4": {
  5752. "Predis\\": "src/"
  5753. }
  5754. },
  5755. "notification-url": "https://packagist.org/downloads/",
  5756. "license": [
  5757. "MIT"
  5758. ],
  5759. "authors": [
  5760. {
  5761. "name": "Till Krüss",
  5762. "homepage": "https://till.im",
  5763. "role": "Maintainer"
  5764. }
  5765. ],
  5766. "description": "A flexible and feature-complete Redis client for PHP.",
  5767. "homepage": "http://github.com/predis/predis",
  5768. "keywords": [
  5769. "nosql",
  5770. "predis",
  5771. "redis"
  5772. ],
  5773. "support": {
  5774. "issues": "https://github.com/predis/predis/issues",
  5775. "source": "https://github.com/predis/predis/tree/v2.3.0"
  5776. },
  5777. "funding": [
  5778. {
  5779. "url": "https://github.com/sponsors/tillkruss",
  5780. "type": "github"
  5781. }
  5782. ],
  5783. "time": "2024-11-21T20:00:02+00:00"
  5784. },
  5785. {
  5786. "name": "psr/cache",
  5787. "version": "3.0.0",
  5788. "source": {
  5789. "type": "git",
  5790. "url": "https://github.com/php-fig/cache.git",
  5791. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  5792. },
  5793. "dist": {
  5794. "type": "zip",
  5795. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5796. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  5797. "shasum": ""
  5798. },
  5799. "require": {
  5800. "php": ">=8.0.0"
  5801. },
  5802. "type": "library",
  5803. "extra": {
  5804. "branch-alias": {
  5805. "dev-master": "1.0.x-dev"
  5806. }
  5807. },
  5808. "autoload": {
  5809. "psr-4": {
  5810. "Psr\\Cache\\": "src/"
  5811. }
  5812. },
  5813. "notification-url": "https://packagist.org/downloads/",
  5814. "license": [
  5815. "MIT"
  5816. ],
  5817. "authors": [
  5818. {
  5819. "name": "PHP-FIG",
  5820. "homepage": "https://www.php-fig.org/"
  5821. }
  5822. ],
  5823. "description": "Common interface for caching libraries",
  5824. "keywords": [
  5825. "cache",
  5826. "psr",
  5827. "psr-6"
  5828. ],
  5829. "support": {
  5830. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  5831. },
  5832. "time": "2021-02-03T23:26:27+00:00"
  5833. },
  5834. {
  5835. "name": "psr/clock",
  5836. "version": "1.0.0",
  5837. "source": {
  5838. "type": "git",
  5839. "url": "https://github.com/php-fig/clock.git",
  5840. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  5841. },
  5842. "dist": {
  5843. "type": "zip",
  5844. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5845. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  5846. "shasum": ""
  5847. },
  5848. "require": {
  5849. "php": "^7.0 || ^8.0"
  5850. },
  5851. "type": "library",
  5852. "autoload": {
  5853. "psr-4": {
  5854. "Psr\\Clock\\": "src/"
  5855. }
  5856. },
  5857. "notification-url": "https://packagist.org/downloads/",
  5858. "license": [
  5859. "MIT"
  5860. ],
  5861. "authors": [
  5862. {
  5863. "name": "PHP-FIG",
  5864. "homepage": "https://www.php-fig.org/"
  5865. }
  5866. ],
  5867. "description": "Common interface for reading the clock.",
  5868. "homepage": "https://github.com/php-fig/clock",
  5869. "keywords": [
  5870. "clock",
  5871. "now",
  5872. "psr",
  5873. "psr-20",
  5874. "time"
  5875. ],
  5876. "support": {
  5877. "issues": "https://github.com/php-fig/clock/issues",
  5878. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  5879. },
  5880. "time": "2022-11-25T14:36:26+00:00"
  5881. },
  5882. {
  5883. "name": "psr/container",
  5884. "version": "2.0.2",
  5885. "source": {
  5886. "type": "git",
  5887. "url": "https://github.com/php-fig/container.git",
  5888. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5889. },
  5890. "dist": {
  5891. "type": "zip",
  5892. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5893. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5894. "shasum": ""
  5895. },
  5896. "require": {
  5897. "php": ">=7.4.0"
  5898. },
  5899. "type": "library",
  5900. "extra": {
  5901. "branch-alias": {
  5902. "dev-master": "2.0.x-dev"
  5903. }
  5904. },
  5905. "autoload": {
  5906. "psr-4": {
  5907. "Psr\\Container\\": "src/"
  5908. }
  5909. },
  5910. "notification-url": "https://packagist.org/downloads/",
  5911. "license": [
  5912. "MIT"
  5913. ],
  5914. "authors": [
  5915. {
  5916. "name": "PHP-FIG",
  5917. "homepage": "https://www.php-fig.org/"
  5918. }
  5919. ],
  5920. "description": "Common Container Interface (PHP FIG PSR-11)",
  5921. "homepage": "https://github.com/php-fig/container",
  5922. "keywords": [
  5923. "PSR-11",
  5924. "container",
  5925. "container-interface",
  5926. "container-interop",
  5927. "psr"
  5928. ],
  5929. "support": {
  5930. "issues": "https://github.com/php-fig/container/issues",
  5931. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5932. },
  5933. "time": "2021-11-05T16:47:00+00:00"
  5934. },
  5935. {
  5936. "name": "psr/event-dispatcher",
  5937. "version": "1.0.0",
  5938. "source": {
  5939. "type": "git",
  5940. "url": "https://github.com/php-fig/event-dispatcher.git",
  5941. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5942. },
  5943. "dist": {
  5944. "type": "zip",
  5945. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5946. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5947. "shasum": ""
  5948. },
  5949. "require": {
  5950. "php": ">=7.2.0"
  5951. },
  5952. "type": "library",
  5953. "extra": {
  5954. "branch-alias": {
  5955. "dev-master": "1.0.x-dev"
  5956. }
  5957. },
  5958. "autoload": {
  5959. "psr-4": {
  5960. "Psr\\EventDispatcher\\": "src/"
  5961. }
  5962. },
  5963. "notification-url": "https://packagist.org/downloads/",
  5964. "license": [
  5965. "MIT"
  5966. ],
  5967. "authors": [
  5968. {
  5969. "name": "PHP-FIG",
  5970. "homepage": "http://www.php-fig.org/"
  5971. }
  5972. ],
  5973. "description": "Standard interfaces for event handling.",
  5974. "keywords": [
  5975. "events",
  5976. "psr",
  5977. "psr-14"
  5978. ],
  5979. "support": {
  5980. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5981. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5982. },
  5983. "time": "2019-01-08T18:20:26+00:00"
  5984. },
  5985. {
  5986. "name": "psr/http-client",
  5987. "version": "1.0.3",
  5988. "source": {
  5989. "type": "git",
  5990. "url": "https://github.com/php-fig/http-client.git",
  5991. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  5992. },
  5993. "dist": {
  5994. "type": "zip",
  5995. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5996. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  5997. "shasum": ""
  5998. },
  5999. "require": {
  6000. "php": "^7.0 || ^8.0",
  6001. "psr/http-message": "^1.0 || ^2.0"
  6002. },
  6003. "type": "library",
  6004. "extra": {
  6005. "branch-alias": {
  6006. "dev-master": "1.0.x-dev"
  6007. }
  6008. },
  6009. "autoload": {
  6010. "psr-4": {
  6011. "Psr\\Http\\Client\\": "src/"
  6012. }
  6013. },
  6014. "notification-url": "https://packagist.org/downloads/",
  6015. "license": [
  6016. "MIT"
  6017. ],
  6018. "authors": [
  6019. {
  6020. "name": "PHP-FIG",
  6021. "homepage": "https://www.php-fig.org/"
  6022. }
  6023. ],
  6024. "description": "Common interface for HTTP clients",
  6025. "homepage": "https://github.com/php-fig/http-client",
  6026. "keywords": [
  6027. "http",
  6028. "http-client",
  6029. "psr",
  6030. "psr-18"
  6031. ],
  6032. "support": {
  6033. "source": "https://github.com/php-fig/http-client"
  6034. },
  6035. "time": "2023-09-23T14:17:50+00:00"
  6036. },
  6037. {
  6038. "name": "psr/http-factory",
  6039. "version": "1.1.0",
  6040. "source": {
  6041. "type": "git",
  6042. "url": "https://github.com/php-fig/http-factory.git",
  6043. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  6044. },
  6045. "dist": {
  6046. "type": "zip",
  6047. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6048. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  6049. "shasum": ""
  6050. },
  6051. "require": {
  6052. "php": ">=7.1",
  6053. "psr/http-message": "^1.0 || ^2.0"
  6054. },
  6055. "type": "library",
  6056. "extra": {
  6057. "branch-alias": {
  6058. "dev-master": "1.0.x-dev"
  6059. }
  6060. },
  6061. "autoload": {
  6062. "psr-4": {
  6063. "Psr\\Http\\Message\\": "src/"
  6064. }
  6065. },
  6066. "notification-url": "https://packagist.org/downloads/",
  6067. "license": [
  6068. "MIT"
  6069. ],
  6070. "authors": [
  6071. {
  6072. "name": "PHP-FIG",
  6073. "homepage": "https://www.php-fig.org/"
  6074. }
  6075. ],
  6076. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  6077. "keywords": [
  6078. "factory",
  6079. "http",
  6080. "message",
  6081. "psr",
  6082. "psr-17",
  6083. "psr-7",
  6084. "request",
  6085. "response"
  6086. ],
  6087. "support": {
  6088. "source": "https://github.com/php-fig/http-factory"
  6089. },
  6090. "time": "2024-04-15T12:06:14+00:00"
  6091. },
  6092. {
  6093. "name": "psr/http-message",
  6094. "version": "2.0",
  6095. "source": {
  6096. "type": "git",
  6097. "url": "https://github.com/php-fig/http-message.git",
  6098. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  6099. },
  6100. "dist": {
  6101. "type": "zip",
  6102. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6103. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  6104. "shasum": ""
  6105. },
  6106. "require": {
  6107. "php": "^7.2 || ^8.0"
  6108. },
  6109. "type": "library",
  6110. "extra": {
  6111. "branch-alias": {
  6112. "dev-master": "2.0.x-dev"
  6113. }
  6114. },
  6115. "autoload": {
  6116. "psr-4": {
  6117. "Psr\\Http\\Message\\": "src/"
  6118. }
  6119. },
  6120. "notification-url": "https://packagist.org/downloads/",
  6121. "license": [
  6122. "MIT"
  6123. ],
  6124. "authors": [
  6125. {
  6126. "name": "PHP-FIG",
  6127. "homepage": "https://www.php-fig.org/"
  6128. }
  6129. ],
  6130. "description": "Common interface for HTTP messages",
  6131. "homepage": "https://github.com/php-fig/http-message",
  6132. "keywords": [
  6133. "http",
  6134. "http-message",
  6135. "psr",
  6136. "psr-7",
  6137. "request",
  6138. "response"
  6139. ],
  6140. "support": {
  6141. "source": "https://github.com/php-fig/http-message/tree/2.0"
  6142. },
  6143. "time": "2023-04-04T09:54:51+00:00"
  6144. },
  6145. {
  6146. "name": "psr/log",
  6147. "version": "3.0.2",
  6148. "source": {
  6149. "type": "git",
  6150. "url": "https://github.com/php-fig/log.git",
  6151. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  6152. },
  6153. "dist": {
  6154. "type": "zip",
  6155. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6156. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  6157. "shasum": ""
  6158. },
  6159. "require": {
  6160. "php": ">=8.0.0"
  6161. },
  6162. "type": "library",
  6163. "extra": {
  6164. "branch-alias": {
  6165. "dev-master": "3.x-dev"
  6166. }
  6167. },
  6168. "autoload": {
  6169. "psr-4": {
  6170. "Psr\\Log\\": "src"
  6171. }
  6172. },
  6173. "notification-url": "https://packagist.org/downloads/",
  6174. "license": [
  6175. "MIT"
  6176. ],
  6177. "authors": [
  6178. {
  6179. "name": "PHP-FIG",
  6180. "homepage": "https://www.php-fig.org/"
  6181. }
  6182. ],
  6183. "description": "Common interface for logging libraries",
  6184. "homepage": "https://github.com/php-fig/log",
  6185. "keywords": [
  6186. "log",
  6187. "psr",
  6188. "psr-3"
  6189. ],
  6190. "support": {
  6191. "source": "https://github.com/php-fig/log/tree/3.0.2"
  6192. },
  6193. "time": "2024-09-11T13:17:53+00:00"
  6194. },
  6195. {
  6196. "name": "psr/simple-cache",
  6197. "version": "3.0.0",
  6198. "source": {
  6199. "type": "git",
  6200. "url": "https://github.com/php-fig/simple-cache.git",
  6201. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  6202. },
  6203. "dist": {
  6204. "type": "zip",
  6205. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6206. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  6207. "shasum": ""
  6208. },
  6209. "require": {
  6210. "php": ">=8.0.0"
  6211. },
  6212. "type": "library",
  6213. "extra": {
  6214. "branch-alias": {
  6215. "dev-master": "3.0.x-dev"
  6216. }
  6217. },
  6218. "autoload": {
  6219. "psr-4": {
  6220. "Psr\\SimpleCache\\": "src/"
  6221. }
  6222. },
  6223. "notification-url": "https://packagist.org/downloads/",
  6224. "license": [
  6225. "MIT"
  6226. ],
  6227. "authors": [
  6228. {
  6229. "name": "PHP-FIG",
  6230. "homepage": "https://www.php-fig.org/"
  6231. }
  6232. ],
  6233. "description": "Common interfaces for simple caching",
  6234. "keywords": [
  6235. "cache",
  6236. "caching",
  6237. "psr",
  6238. "psr-16",
  6239. "simple-cache"
  6240. ],
  6241. "support": {
  6242. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  6243. },
  6244. "time": "2021-10-29T13:26:27+00:00"
  6245. },
  6246. {
  6247. "name": "psy/psysh",
  6248. "version": "v0.12.7",
  6249. "source": {
  6250. "type": "git",
  6251. "url": "https://github.com/bobthecow/psysh.git",
  6252. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c"
  6253. },
  6254. "dist": {
  6255. "type": "zip",
  6256. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  6257. "reference": "d73fa3c74918ef4522bb8a3bf9cab39161c4b57c",
  6258. "shasum": ""
  6259. },
  6260. "require": {
  6261. "ext-json": "*",
  6262. "ext-tokenizer": "*",
  6263. "nikic/php-parser": "^5.0 || ^4.0",
  6264. "php": "^8.0 || ^7.4",
  6265. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  6266. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  6267. },
  6268. "conflict": {
  6269. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  6270. },
  6271. "require-dev": {
  6272. "bamarni/composer-bin-plugin": "^1.2"
  6273. },
  6274. "suggest": {
  6275. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  6276. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  6277. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  6278. },
  6279. "bin": [
  6280. "bin/psysh"
  6281. ],
  6282. "type": "library",
  6283. "extra": {
  6284. "bamarni-bin": {
  6285. "bin-links": false,
  6286. "forward-command": false
  6287. },
  6288. "branch-alias": {
  6289. "dev-main": "0.12.x-dev"
  6290. }
  6291. },
  6292. "autoload": {
  6293. "files": [
  6294. "src/functions.php"
  6295. ],
  6296. "psr-4": {
  6297. "Psy\\": "src/"
  6298. }
  6299. },
  6300. "notification-url": "https://packagist.org/downloads/",
  6301. "license": [
  6302. "MIT"
  6303. ],
  6304. "authors": [
  6305. {
  6306. "name": "Justin Hileman",
  6307. "email": "justin@justinhileman.info",
  6308. "homepage": "http://justinhileman.com"
  6309. }
  6310. ],
  6311. "description": "An interactive shell for modern PHP.",
  6312. "homepage": "http://psysh.org",
  6313. "keywords": [
  6314. "REPL",
  6315. "console",
  6316. "interactive",
  6317. "shell"
  6318. ],
  6319. "support": {
  6320. "issues": "https://github.com/bobthecow/psysh/issues",
  6321. "source": "https://github.com/bobthecow/psysh/tree/v0.12.7"
  6322. },
  6323. "time": "2024-12-10T01:58:33+00:00"
  6324. },
  6325. {
  6326. "name": "pusher/pusher-php-server",
  6327. "version": "7.2.7",
  6328. "source": {
  6329. "type": "git",
  6330. "url": "https://github.com/pusher/pusher-http-php.git",
  6331. "reference": "148b0b5100d000ed57195acdf548a2b1b38ee3f7"
  6332. },
  6333. "dist": {
  6334. "type": "zip",
  6335. "url": "https://api.github.com/repos/pusher/pusher-http-php/zipball/148b0b5100d000ed57195acdf548a2b1b38ee3f7",
  6336. "reference": "148b0b5100d000ed57195acdf548a2b1b38ee3f7",
  6337. "shasum": ""
  6338. },
  6339. "require": {
  6340. "ext-curl": "*",
  6341. "ext-json": "*",
  6342. "guzzlehttp/guzzle": "^7.2",
  6343. "paragonie/sodium_compat": "^1.6|^2.0",
  6344. "php": "^7.3|^8.0",
  6345. "psr/log": "^1.0|^2.0|^3.0"
  6346. },
  6347. "require-dev": {
  6348. "overtrue/phplint": "^2.3",
  6349. "phpunit/phpunit": "^9.3"
  6350. },
  6351. "type": "library",
  6352. "extra": {
  6353. "branch-alias": {
  6354. "dev-master": "5.0-dev"
  6355. }
  6356. },
  6357. "autoload": {
  6358. "psr-4": {
  6359. "Pusher\\": "src/"
  6360. }
  6361. },
  6362. "notification-url": "https://packagist.org/downloads/",
  6363. "license": [
  6364. "MIT"
  6365. ],
  6366. "description": "Library for interacting with the Pusher REST API",
  6367. "keywords": [
  6368. "events",
  6369. "messaging",
  6370. "php-pusher-server",
  6371. "publish",
  6372. "push",
  6373. "pusher",
  6374. "real time",
  6375. "real-time",
  6376. "realtime",
  6377. "rest",
  6378. "trigger"
  6379. ],
  6380. "support": {
  6381. "issues": "https://github.com/pusher/pusher-http-php/issues",
  6382. "source": "https://github.com/pusher/pusher-http-php/tree/7.2.7"
  6383. },
  6384. "time": "2025-01-06T10:56:20+00:00"
  6385. },
  6386. {
  6387. "name": "ralouphie/getallheaders",
  6388. "version": "3.0.3",
  6389. "source": {
  6390. "type": "git",
  6391. "url": "https://github.com/ralouphie/getallheaders.git",
  6392. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  6393. },
  6394. "dist": {
  6395. "type": "zip",
  6396. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  6397. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  6398. "shasum": ""
  6399. },
  6400. "require": {
  6401. "php": ">=5.6"
  6402. },
  6403. "require-dev": {
  6404. "php-coveralls/php-coveralls": "^2.1",
  6405. "phpunit/phpunit": "^5 || ^6.5"
  6406. },
  6407. "type": "library",
  6408. "autoload": {
  6409. "files": [
  6410. "src/getallheaders.php"
  6411. ]
  6412. },
  6413. "notification-url": "https://packagist.org/downloads/",
  6414. "license": [
  6415. "MIT"
  6416. ],
  6417. "authors": [
  6418. {
  6419. "name": "Ralph Khattar",
  6420. "email": "ralph.khattar@gmail.com"
  6421. }
  6422. ],
  6423. "description": "A polyfill for getallheaders.",
  6424. "support": {
  6425. "issues": "https://github.com/ralouphie/getallheaders/issues",
  6426. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  6427. },
  6428. "time": "2019-03-08T08:55:37+00:00"
  6429. },
  6430. {
  6431. "name": "ramsey/collection",
  6432. "version": "2.1.0",
  6433. "source": {
  6434. "type": "git",
  6435. "url": "https://github.com/ramsey/collection.git",
  6436. "reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109"
  6437. },
  6438. "dist": {
  6439. "type": "zip",
  6440. "url": "https://api.github.com/repos/ramsey/collection/zipball/3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109",
  6441. "reference": "3c5990b8a5e0b79cd1cf11c2dc1229e58e93f109",
  6442. "shasum": ""
  6443. },
  6444. "require": {
  6445. "php": "^8.1"
  6446. },
  6447. "require-dev": {
  6448. "captainhook/plugin-composer": "^5.3",
  6449. "ergebnis/composer-normalize": "^2.45",
  6450. "fakerphp/faker": "^1.24",
  6451. "hamcrest/hamcrest-php": "^2.0",
  6452. "jangregor/phpstan-prophecy": "^2.1",
  6453. "mockery/mockery": "^1.6",
  6454. "php-parallel-lint/php-console-highlighter": "^1.0",
  6455. "php-parallel-lint/php-parallel-lint": "^1.4",
  6456. "phpspec/prophecy-phpunit": "^2.3",
  6457. "phpstan/extension-installer": "^1.4",
  6458. "phpstan/phpstan": "^2.1",
  6459. "phpstan/phpstan-mockery": "^2.0",
  6460. "phpstan/phpstan-phpunit": "^2.0",
  6461. "phpunit/phpunit": "^10.5",
  6462. "ramsey/coding-standard": "^2.3",
  6463. "ramsey/conventional-commits": "^1.6",
  6464. "roave/security-advisories": "dev-latest"
  6465. },
  6466. "type": "library",
  6467. "extra": {
  6468. "captainhook": {
  6469. "force-install": true
  6470. },
  6471. "ramsey/conventional-commits": {
  6472. "configFile": "conventional-commits.json"
  6473. }
  6474. },
  6475. "autoload": {
  6476. "psr-4": {
  6477. "Ramsey\\Collection\\": "src/"
  6478. }
  6479. },
  6480. "notification-url": "https://packagist.org/downloads/",
  6481. "license": [
  6482. "MIT"
  6483. ],
  6484. "authors": [
  6485. {
  6486. "name": "Ben Ramsey",
  6487. "email": "ben@benramsey.com",
  6488. "homepage": "https://benramsey.com"
  6489. }
  6490. ],
  6491. "description": "A PHP library for representing and manipulating collections.",
  6492. "keywords": [
  6493. "array",
  6494. "collection",
  6495. "hash",
  6496. "map",
  6497. "queue",
  6498. "set"
  6499. ],
  6500. "support": {
  6501. "issues": "https://github.com/ramsey/collection/issues",
  6502. "source": "https://github.com/ramsey/collection/tree/2.1.0"
  6503. },
  6504. "time": "2025-03-02T04:48:29+00:00"
  6505. },
  6506. {
  6507. "name": "ramsey/uuid",
  6508. "version": "4.7.6",
  6509. "source": {
  6510. "type": "git",
  6511. "url": "https://github.com/ramsey/uuid.git",
  6512. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  6513. },
  6514. "dist": {
  6515. "type": "zip",
  6516. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  6517. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  6518. "shasum": ""
  6519. },
  6520. "require": {
  6521. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  6522. "ext-json": "*",
  6523. "php": "^8.0",
  6524. "ramsey/collection": "^1.2 || ^2.0"
  6525. },
  6526. "replace": {
  6527. "rhumsaa/uuid": "self.version"
  6528. },
  6529. "require-dev": {
  6530. "captainhook/captainhook": "^5.10",
  6531. "captainhook/plugin-composer": "^5.3",
  6532. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  6533. "doctrine/annotations": "^1.8",
  6534. "ergebnis/composer-normalize": "^2.15",
  6535. "mockery/mockery": "^1.3",
  6536. "paragonie/random-lib": "^2",
  6537. "php-mock/php-mock": "^2.2",
  6538. "php-mock/php-mock-mockery": "^1.3",
  6539. "php-parallel-lint/php-parallel-lint": "^1.1",
  6540. "phpbench/phpbench": "^1.0",
  6541. "phpstan/extension-installer": "^1.1",
  6542. "phpstan/phpstan": "^1.8",
  6543. "phpstan/phpstan-mockery": "^1.1",
  6544. "phpstan/phpstan-phpunit": "^1.1",
  6545. "phpunit/phpunit": "^8.5 || ^9",
  6546. "ramsey/composer-repl": "^1.4",
  6547. "slevomat/coding-standard": "^8.4",
  6548. "squizlabs/php_codesniffer": "^3.5",
  6549. "vimeo/psalm": "^4.9"
  6550. },
  6551. "suggest": {
  6552. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  6553. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  6554. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  6555. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  6556. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  6557. },
  6558. "type": "library",
  6559. "extra": {
  6560. "captainhook": {
  6561. "force-install": true
  6562. }
  6563. },
  6564. "autoload": {
  6565. "files": [
  6566. "src/functions.php"
  6567. ],
  6568. "psr-4": {
  6569. "Ramsey\\Uuid\\": "src/"
  6570. }
  6571. },
  6572. "notification-url": "https://packagist.org/downloads/",
  6573. "license": [
  6574. "MIT"
  6575. ],
  6576. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  6577. "keywords": [
  6578. "guid",
  6579. "identifier",
  6580. "uuid"
  6581. ],
  6582. "support": {
  6583. "issues": "https://github.com/ramsey/uuid/issues",
  6584. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  6585. },
  6586. "funding": [
  6587. {
  6588. "url": "https://github.com/ramsey",
  6589. "type": "github"
  6590. },
  6591. {
  6592. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  6593. "type": "tidelift"
  6594. }
  6595. ],
  6596. "time": "2024-04-27T21:32:50+00:00"
  6597. },
  6598. {
  6599. "name": "resend/resend-php",
  6600. "version": "v0.13.0",
  6601. "source": {
  6602. "type": "git",
  6603. "url": "https://github.com/resend/resend-php.git",
  6604. "reference": "c74926e34472fe3e3e21f150f3e3ce56fcbf8298"
  6605. },
  6606. "dist": {
  6607. "type": "zip",
  6608. "url": "https://api.github.com/repos/resend/resend-php/zipball/c74926e34472fe3e3e21f150f3e3ce56fcbf8298",
  6609. "reference": "c74926e34472fe3e3e21f150f3e3ce56fcbf8298",
  6610. "shasum": ""
  6611. },
  6612. "require": {
  6613. "guzzlehttp/guzzle": "^7.5",
  6614. "php": "^8.1.0"
  6615. },
  6616. "require-dev": {
  6617. "friendsofphp/php-cs-fixer": "^3.13",
  6618. "mockery/mockery": "^1.6",
  6619. "pestphp/pest": "^2.0"
  6620. },
  6621. "type": "library",
  6622. "autoload": {
  6623. "files": [
  6624. "src/Resend.php"
  6625. ],
  6626. "psr-4": {
  6627. "Resend\\": "src/"
  6628. }
  6629. },
  6630. "notification-url": "https://packagist.org/downloads/",
  6631. "license": [
  6632. "MIT"
  6633. ],
  6634. "authors": [
  6635. {
  6636. "name": "Resend and contributors",
  6637. "homepage": "https://github.com/resend/resend-php/contributors"
  6638. }
  6639. ],
  6640. "description": "Resend PHP library.",
  6641. "homepage": "https://resend.com/",
  6642. "keywords": [
  6643. "api",
  6644. "client",
  6645. "php",
  6646. "resend",
  6647. "sdk"
  6648. ],
  6649. "support": {
  6650. "issues": "https://github.com/resend/resend-php/issues",
  6651. "source": "https://github.com/resend/resend-php/tree/v0.13.0"
  6652. },
  6653. "time": "2024-08-15T03:27:29+00:00"
  6654. },
  6655. {
  6656. "name": "spatie/db-dumper",
  6657. "version": "3.8.0",
  6658. "source": {
  6659. "type": "git",
  6660. "url": "https://github.com/spatie/db-dumper.git",
  6661. "reference": "91e1fd4dc000aefc9753cda2da37069fc996baee"
  6662. },
  6663. "dist": {
  6664. "type": "zip",
  6665. "url": "https://api.github.com/repos/spatie/db-dumper/zipball/91e1fd4dc000aefc9753cda2da37069fc996baee",
  6666. "reference": "91e1fd4dc000aefc9753cda2da37069fc996baee",
  6667. "shasum": ""
  6668. },
  6669. "require": {
  6670. "php": "^8.0",
  6671. "symfony/process": "^5.0|^6.0|^7.0"
  6672. },
  6673. "require-dev": {
  6674. "pestphp/pest": "^1.22"
  6675. },
  6676. "type": "library",
  6677. "autoload": {
  6678. "psr-4": {
  6679. "Spatie\\DbDumper\\": "src"
  6680. }
  6681. },
  6682. "notification-url": "https://packagist.org/downloads/",
  6683. "license": [
  6684. "MIT"
  6685. ],
  6686. "authors": [
  6687. {
  6688. "name": "Freek Van der Herten",
  6689. "email": "freek@spatie.be",
  6690. "homepage": "https://spatie.be",
  6691. "role": "Developer"
  6692. }
  6693. ],
  6694. "description": "Dump databases",
  6695. "homepage": "https://github.com/spatie/db-dumper",
  6696. "keywords": [
  6697. "database",
  6698. "db-dumper",
  6699. "dump",
  6700. "mysqldump",
  6701. "spatie"
  6702. ],
  6703. "support": {
  6704. "source": "https://github.com/spatie/db-dumper/tree/3.8.0"
  6705. },
  6706. "funding": [
  6707. {
  6708. "url": "https://spatie.be/open-source/support-us",
  6709. "type": "custom"
  6710. },
  6711. {
  6712. "url": "https://github.com/spatie",
  6713. "type": "github"
  6714. }
  6715. ],
  6716. "time": "2025-02-14T15:04:22+00:00"
  6717. },
  6718. {
  6719. "name": "spatie/image-optimizer",
  6720. "version": "1.8.0",
  6721. "source": {
  6722. "type": "git",
  6723. "url": "https://github.com/spatie/image-optimizer.git",
  6724. "reference": "4fd22035e81d98fffced65a8c20d9ec4daa9671c"
  6725. },
  6726. "dist": {
  6727. "type": "zip",
  6728. "url": "https://api.github.com/repos/spatie/image-optimizer/zipball/4fd22035e81d98fffced65a8c20d9ec4daa9671c",
  6729. "reference": "4fd22035e81d98fffced65a8c20d9ec4daa9671c",
  6730. "shasum": ""
  6731. },
  6732. "require": {
  6733. "ext-fileinfo": "*",
  6734. "php": "^7.3|^8.0",
  6735. "psr/log": "^1.0 | ^2.0 | ^3.0",
  6736. "symfony/process": "^4.2|^5.0|^6.0|^7.0"
  6737. },
  6738. "require-dev": {
  6739. "pestphp/pest": "^1.21",
  6740. "phpunit/phpunit": "^8.5.21|^9.4.4",
  6741. "symfony/var-dumper": "^4.2|^5.0|^6.0|^7.0"
  6742. },
  6743. "type": "library",
  6744. "autoload": {
  6745. "psr-4": {
  6746. "Spatie\\ImageOptimizer\\": "src"
  6747. }
  6748. },
  6749. "notification-url": "https://packagist.org/downloads/",
  6750. "license": [
  6751. "MIT"
  6752. ],
  6753. "authors": [
  6754. {
  6755. "name": "Freek Van der Herten",
  6756. "email": "freek@spatie.be",
  6757. "homepage": "https://spatie.be",
  6758. "role": "Developer"
  6759. }
  6760. ],
  6761. "description": "Easily optimize images using PHP",
  6762. "homepage": "https://github.com/spatie/image-optimizer",
  6763. "keywords": [
  6764. "image-optimizer",
  6765. "spatie"
  6766. ],
  6767. "support": {
  6768. "issues": "https://github.com/spatie/image-optimizer/issues",
  6769. "source": "https://github.com/spatie/image-optimizer/tree/1.8.0"
  6770. },
  6771. "time": "2024-11-04T08:24:54+00:00"
  6772. },
  6773. {
  6774. "name": "spatie/laravel-backup",
  6775. "version": "9.2.9",
  6776. "source": {
  6777. "type": "git",
  6778. "url": "https://github.com/spatie/laravel-backup.git",
  6779. "reference": "997c781a38bc701ab7623954b2e0438680caa0bf"
  6780. },
  6781. "dist": {
  6782. "type": "zip",
  6783. "url": "https://api.github.com/repos/spatie/laravel-backup/zipball/997c781a38bc701ab7623954b2e0438680caa0bf",
  6784. "reference": "997c781a38bc701ab7623954b2e0438680caa0bf",
  6785. "shasum": ""
  6786. },
  6787. "require": {
  6788. "ext-zip": "^1.14.0",
  6789. "illuminate/console": "^10.10.0|^11.0|^12.0",
  6790. "illuminate/contracts": "^10.10.0|^11.0|^12.0",
  6791. "illuminate/events": "^10.10.0|^11.0|^12.0",
  6792. "illuminate/filesystem": "^10.10.0|^11.0|^12.0",
  6793. "illuminate/notifications": "^10.10.0|^11.0|^12.0",
  6794. "illuminate/support": "^10.10.0|^11.0|^12.0",
  6795. "league/flysystem": "^3.0",
  6796. "php": "^8.2",
  6797. "spatie/db-dumper": "^3.7",
  6798. "spatie/laravel-package-tools": "^1.6.2",
  6799. "spatie/laravel-signal-aware-command": "^1.2|^2.0",
  6800. "spatie/temporary-directory": "^2.0",
  6801. "symfony/console": "^6.0|^7.0",
  6802. "symfony/finder": "^6.0|^7.0"
  6803. },
  6804. "require-dev": {
  6805. "composer-runtime-api": "^2.0",
  6806. "ext-pcntl": "*",
  6807. "larastan/larastan": "^2.7.0|^3.0",
  6808. "laravel/slack-notification-channel": "^2.5|^3.0",
  6809. "league/flysystem-aws-s3-v3": "^2.0|^3.0",
  6810. "mockery/mockery": "^1.4",
  6811. "orchestra/testbench": "^8.0|^9.0|^10.0",
  6812. "pestphp/pest": "^1.20|^2.0|^3.0",
  6813. "phpstan/extension-installer": "^1.1",
  6814. "phpstan/phpstan-deprecation-rules": "^1.0",
  6815. "phpstan/phpstan-phpunit": "^1.1",
  6816. "rector/rector": "^1.1"
  6817. },
  6818. "suggest": {
  6819. "laravel/slack-notification-channel": "Required for sending notifications via Slack"
  6820. },
  6821. "type": "library",
  6822. "extra": {
  6823. "laravel": {
  6824. "providers": [
  6825. "Spatie\\Backup\\BackupServiceProvider"
  6826. ]
  6827. }
  6828. },
  6829. "autoload": {
  6830. "files": [
  6831. "src/Helpers/functions.php"
  6832. ],
  6833. "psr-4": {
  6834. "Spatie\\Backup\\": "src"
  6835. }
  6836. },
  6837. "notification-url": "https://packagist.org/downloads/",
  6838. "license": [
  6839. "MIT"
  6840. ],
  6841. "authors": [
  6842. {
  6843. "name": "Freek Van der Herten",
  6844. "email": "freek@spatie.be",
  6845. "homepage": "https://spatie.be",
  6846. "role": "Developer"
  6847. }
  6848. ],
  6849. "description": "A Laravel package to backup your application",
  6850. "homepage": "https://github.com/spatie/laravel-backup",
  6851. "keywords": [
  6852. "backup",
  6853. "database",
  6854. "laravel-backup",
  6855. "spatie"
  6856. ],
  6857. "support": {
  6858. "issues": "https://github.com/spatie/laravel-backup/issues",
  6859. "source": "https://github.com/spatie/laravel-backup/tree/9.2.9"
  6860. },
  6861. "funding": [
  6862. {
  6863. "url": "https://github.com/sponsors/spatie",
  6864. "type": "github"
  6865. },
  6866. {
  6867. "url": "https://spatie.be/open-source/support-us",
  6868. "type": "other"
  6869. }
  6870. ],
  6871. "time": "2025-03-03T12:10:03+00:00"
  6872. },
  6873. {
  6874. "name": "spatie/laravel-image-optimizer",
  6875. "version": "1.8.2",
  6876. "source": {
  6877. "type": "git",
  6878. "url": "https://github.com/spatie/laravel-image-optimizer.git",
  6879. "reference": "6681a48097009bba1800f0215190816df22fe116"
  6880. },
  6881. "dist": {
  6882. "type": "zip",
  6883. "url": "https://api.github.com/repos/spatie/laravel-image-optimizer/zipball/6681a48097009bba1800f0215190816df22fe116",
  6884. "reference": "6681a48097009bba1800f0215190816df22fe116",
  6885. "shasum": ""
  6886. },
  6887. "require": {
  6888. "laravel/framework": "^8.0|^9.0|^10.0|^11.0|^12.0",
  6889. "php": "^8.0",
  6890. "spatie/image-optimizer": "^1.2.0"
  6891. },
  6892. "require-dev": {
  6893. "orchestra/testbench": "^6.23|^7.0|^8.0|^9.0|^10.0",
  6894. "phpunit/phpunit": "^9.4|^10.5|^11.5.3"
  6895. },
  6896. "type": "library",
  6897. "extra": {
  6898. "laravel": {
  6899. "aliases": {
  6900. "ImageOptimizer": "Spatie\\LaravelImageOptimizer\\Facades\\ImageOptimizer"
  6901. },
  6902. "providers": [
  6903. "Spatie\\LaravelImageOptimizer\\ImageOptimizerServiceProvider"
  6904. ]
  6905. }
  6906. },
  6907. "autoload": {
  6908. "psr-4": {
  6909. "Spatie\\LaravelImageOptimizer\\": "src"
  6910. }
  6911. },
  6912. "notification-url": "https://packagist.org/downloads/",
  6913. "license": [
  6914. "MIT"
  6915. ],
  6916. "authors": [
  6917. {
  6918. "name": "Freek Van der Herten",
  6919. "email": "freek@spatie.be",
  6920. "homepage": "https://spatie.be",
  6921. "role": "Developer"
  6922. }
  6923. ],
  6924. "description": "Optimize images in your Laravel app",
  6925. "homepage": "https://github.com/spatie/laravel-image-optimizer",
  6926. "keywords": [
  6927. "laravel-image-optimizer",
  6928. "spatie"
  6929. ],
  6930. "support": {
  6931. "source": "https://github.com/spatie/laravel-image-optimizer/tree/1.8.2"
  6932. },
  6933. "funding": [
  6934. {
  6935. "url": "https://spatie.be/open-source/support-us",
  6936. "type": "custom"
  6937. }
  6938. ],
  6939. "time": "2025-02-21T14:01:59+00:00"
  6940. },
  6941. {
  6942. "name": "spatie/laravel-package-tools",
  6943. "version": "1.19.0",
  6944. "source": {
  6945. "type": "git",
  6946. "url": "https://github.com/spatie/laravel-package-tools.git",
  6947. "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa"
  6948. },
  6949. "dist": {
  6950. "type": "zip",
  6951. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa",
  6952. "reference": "1c9c30ac6a6576b8d15c6c37b6cf23d748df2faa",
  6953. "shasum": ""
  6954. },
  6955. "require": {
  6956. "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
  6957. "php": "^8.0"
  6958. },
  6959. "require-dev": {
  6960. "mockery/mockery": "^1.5",
  6961. "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
  6962. "pestphp/pest": "^1.23|^2.1|^3.1",
  6963. "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
  6964. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  6965. },
  6966. "type": "library",
  6967. "autoload": {
  6968. "psr-4": {
  6969. "Spatie\\LaravelPackageTools\\": "src"
  6970. }
  6971. },
  6972. "notification-url": "https://packagist.org/downloads/",
  6973. "license": [
  6974. "MIT"
  6975. ],
  6976. "authors": [
  6977. {
  6978. "name": "Freek Van der Herten",
  6979. "email": "freek@spatie.be",
  6980. "role": "Developer"
  6981. }
  6982. ],
  6983. "description": "Tools for creating Laravel packages",
  6984. "homepage": "https://github.com/spatie/laravel-package-tools",
  6985. "keywords": [
  6986. "laravel-package-tools",
  6987. "spatie"
  6988. ],
  6989. "support": {
  6990. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  6991. "source": "https://github.com/spatie/laravel-package-tools/tree/1.19.0"
  6992. },
  6993. "funding": [
  6994. {
  6995. "url": "https://github.com/spatie",
  6996. "type": "github"
  6997. }
  6998. ],
  6999. "time": "2025-02-06T14:58:20+00:00"
  7000. },
  7001. {
  7002. "name": "spatie/laravel-signal-aware-command",
  7003. "version": "2.1.0",
  7004. "source": {
  7005. "type": "git",
  7006. "url": "https://github.com/spatie/laravel-signal-aware-command.git",
  7007. "reference": "8e8a226ed7fb45302294878ef339e75ffa9a878d"
  7008. },
  7009. "dist": {
  7010. "type": "zip",
  7011. "url": "https://api.github.com/repos/spatie/laravel-signal-aware-command/zipball/8e8a226ed7fb45302294878ef339e75ffa9a878d",
  7012. "reference": "8e8a226ed7fb45302294878ef339e75ffa9a878d",
  7013. "shasum": ""
  7014. },
  7015. "require": {
  7016. "illuminate/contracts": "^11.0|^12.0",
  7017. "php": "^8.2",
  7018. "spatie/laravel-package-tools": "^1.4.3",
  7019. "symfony/console": "^7.0"
  7020. },
  7021. "require-dev": {
  7022. "brianium/paratest": "^6.2|^7.0",
  7023. "ext-pcntl": "*",
  7024. "nunomaduro/collision": "^5.3|^6.0|^7.0|^8.0",
  7025. "orchestra/testbench": "^9.0|^10.0",
  7026. "pestphp/pest-plugin-laravel": "^1.3|^2.0|^3.0",
  7027. "phpunit/phpunit": "^9.5|^10|^11",
  7028. "spatie/laravel-ray": "^1.17"
  7029. },
  7030. "type": "library",
  7031. "extra": {
  7032. "laravel": {
  7033. "aliases": {
  7034. "Signal": "Spatie\\SignalAwareCommand\\Facades\\Signal"
  7035. },
  7036. "providers": [
  7037. "Spatie\\SignalAwareCommand\\SignalAwareCommandServiceProvider"
  7038. ]
  7039. }
  7040. },
  7041. "autoload": {
  7042. "psr-4": {
  7043. "Spatie\\SignalAwareCommand\\": "src"
  7044. }
  7045. },
  7046. "notification-url": "https://packagist.org/downloads/",
  7047. "license": [
  7048. "MIT"
  7049. ],
  7050. "authors": [
  7051. {
  7052. "name": "Freek Van der Herten",
  7053. "email": "freek@spatie.be",
  7054. "role": "Developer"
  7055. }
  7056. ],
  7057. "description": "Handle signals in artisan commands",
  7058. "homepage": "https://github.com/spatie/laravel-signal-aware-command",
  7059. "keywords": [
  7060. "laravel",
  7061. "laravel-signal-aware-command",
  7062. "spatie"
  7063. ],
  7064. "support": {
  7065. "issues": "https://github.com/spatie/laravel-signal-aware-command/issues",
  7066. "source": "https://github.com/spatie/laravel-signal-aware-command/tree/2.1.0"
  7067. },
  7068. "funding": [
  7069. {
  7070. "url": "https://github.com/spatie",
  7071. "type": "github"
  7072. }
  7073. ],
  7074. "time": "2025-02-14T09:55:51+00:00"
  7075. },
  7076. {
  7077. "name": "spatie/temporary-directory",
  7078. "version": "2.3.0",
  7079. "source": {
  7080. "type": "git",
  7081. "url": "https://github.com/spatie/temporary-directory.git",
  7082. "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b"
  7083. },
  7084. "dist": {
  7085. "type": "zip",
  7086. "url": "https://api.github.com/repos/spatie/temporary-directory/zipball/580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
  7087. "reference": "580eddfe9a0a41a902cac6eeb8f066b42e65a32b",
  7088. "shasum": ""
  7089. },
  7090. "require": {
  7091. "php": "^8.0"
  7092. },
  7093. "require-dev": {
  7094. "phpunit/phpunit": "^9.5"
  7095. },
  7096. "type": "library",
  7097. "autoload": {
  7098. "psr-4": {
  7099. "Spatie\\TemporaryDirectory\\": "src"
  7100. }
  7101. },
  7102. "notification-url": "https://packagist.org/downloads/",
  7103. "license": [
  7104. "MIT"
  7105. ],
  7106. "authors": [
  7107. {
  7108. "name": "Alex Vanderbist",
  7109. "email": "alex@spatie.be",
  7110. "homepage": "https://spatie.be",
  7111. "role": "Developer"
  7112. }
  7113. ],
  7114. "description": "Easily create, use and destroy temporary directories",
  7115. "homepage": "https://github.com/spatie/temporary-directory",
  7116. "keywords": [
  7117. "php",
  7118. "spatie",
  7119. "temporary-directory"
  7120. ],
  7121. "support": {
  7122. "issues": "https://github.com/spatie/temporary-directory/issues",
  7123. "source": "https://github.com/spatie/temporary-directory/tree/2.3.0"
  7124. },
  7125. "funding": [
  7126. {
  7127. "url": "https://spatie.be/open-source/support-us",
  7128. "type": "custom"
  7129. },
  7130. {
  7131. "url": "https://github.com/spatie",
  7132. "type": "github"
  7133. }
  7134. ],
  7135. "time": "2025-01-13T13:04:43+00:00"
  7136. },
  7137. {
  7138. "name": "spomky-labs/base64url",
  7139. "version": "v2.0.4",
  7140. "source": {
  7141. "type": "git",
  7142. "url": "https://github.com/Spomky-Labs/base64url.git",
  7143. "reference": "7752ce931ec285da4ed1f4c5aa27e45e097be61d"
  7144. },
  7145. "dist": {
  7146. "type": "zip",
  7147. "url": "https://api.github.com/repos/Spomky-Labs/base64url/zipball/7752ce931ec285da4ed1f4c5aa27e45e097be61d",
  7148. "reference": "7752ce931ec285da4ed1f4c5aa27e45e097be61d",
  7149. "shasum": ""
  7150. },
  7151. "require": {
  7152. "php": ">=7.1"
  7153. },
  7154. "require-dev": {
  7155. "phpstan/extension-installer": "^1.0",
  7156. "phpstan/phpstan": "^0.11|^0.12",
  7157. "phpstan/phpstan-beberlei-assert": "^0.11|^0.12",
  7158. "phpstan/phpstan-deprecation-rules": "^0.11|^0.12",
  7159. "phpstan/phpstan-phpunit": "^0.11|^0.12",
  7160. "phpstan/phpstan-strict-rules": "^0.11|^0.12"
  7161. },
  7162. "type": "library",
  7163. "autoload": {
  7164. "psr-4": {
  7165. "Base64Url\\": "src/"
  7166. }
  7167. },
  7168. "notification-url": "https://packagist.org/downloads/",
  7169. "license": [
  7170. "MIT"
  7171. ],
  7172. "authors": [
  7173. {
  7174. "name": "Florent Morselli",
  7175. "homepage": "https://github.com/Spomky-Labs/base64url/contributors"
  7176. }
  7177. ],
  7178. "description": "Base 64 URL Safe Encoding/Decoding PHP Library",
  7179. "homepage": "https://github.com/Spomky-Labs/base64url",
  7180. "keywords": [
  7181. "base64",
  7182. "rfc4648",
  7183. "safe",
  7184. "url"
  7185. ],
  7186. "support": {
  7187. "issues": "https://github.com/Spomky-Labs/base64url/issues",
  7188. "source": "https://github.com/Spomky-Labs/base64url/tree/v2.0.4"
  7189. },
  7190. "funding": [
  7191. {
  7192. "url": "https://github.com/Spomky",
  7193. "type": "github"
  7194. },
  7195. {
  7196. "url": "https://www.patreon.com/FlorentMorselli",
  7197. "type": "patreon"
  7198. }
  7199. ],
  7200. "time": "2020-11-03T09:10:25+00:00"
  7201. },
  7202. {
  7203. "name": "spomky-labs/pki-framework",
  7204. "version": "1.2.2",
  7205. "source": {
  7206. "type": "git",
  7207. "url": "https://github.com/Spomky-Labs/pki-framework.git",
  7208. "reference": "5ac374c3e295c8b917208ff41b4d30f76668478c"
  7209. },
  7210. "dist": {
  7211. "type": "zip",
  7212. "url": "https://api.github.com/repos/Spomky-Labs/pki-framework/zipball/5ac374c3e295c8b917208ff41b4d30f76668478c",
  7213. "reference": "5ac374c3e295c8b917208ff41b4d30f76668478c",
  7214. "shasum": ""
  7215. },
  7216. "require": {
  7217. "brick/math": "^0.10|^0.11|^0.12",
  7218. "ext-mbstring": "*",
  7219. "php": ">=8.1"
  7220. },
  7221. "require-dev": {
  7222. "ekino/phpstan-banned-code": "^1.0|^2.0|^3.0",
  7223. "ext-gmp": "*",
  7224. "ext-openssl": "*",
  7225. "infection/infection": "^0.28|^0.29",
  7226. "php-parallel-lint/php-parallel-lint": "^1.3",
  7227. "phpstan/extension-installer": "^1.3|^2.0",
  7228. "phpstan/phpstan": "^1.8|^2.0",
  7229. "phpstan/phpstan-deprecation-rules": "^1.0|^2.0",
  7230. "phpstan/phpstan-phpunit": "^1.1|^2.0",
  7231. "phpstan/phpstan-strict-rules": "^1.3|^2.0",
  7232. "phpunit/phpunit": "^10.1|^11.0",
  7233. "rector/rector": "^1.0|^2.0",
  7234. "roave/security-advisories": "dev-latest",
  7235. "symfony/string": "^6.4|^7.0",
  7236. "symfony/var-dumper": "^6.4|^7.0",
  7237. "symplify/easy-coding-standard": "^12.0"
  7238. },
  7239. "suggest": {
  7240. "ext-bcmath": "For better performance (or GMP)",
  7241. "ext-gmp": "For better performance (or BCMath)",
  7242. "ext-openssl": "For OpenSSL based cyphering"
  7243. },
  7244. "type": "library",
  7245. "autoload": {
  7246. "psr-4": {
  7247. "SpomkyLabs\\Pki\\": "src/"
  7248. }
  7249. },
  7250. "notification-url": "https://packagist.org/downloads/",
  7251. "license": [
  7252. "MIT"
  7253. ],
  7254. "authors": [
  7255. {
  7256. "name": "Joni Eskelinen",
  7257. "email": "jonieske@gmail.com",
  7258. "role": "Original developer"
  7259. },
  7260. {
  7261. "name": "Florent Morselli",
  7262. "email": "florent.morselli@spomky-labs.com",
  7263. "role": "Spomky-Labs PKI Framework developer"
  7264. }
  7265. ],
  7266. "description": "A PHP framework for managing Public Key Infrastructures. It comprises X.509 public key certificates, attribute certificates, certification requests and certification path validation.",
  7267. "homepage": "https://github.com/spomky-labs/pki-framework",
  7268. "keywords": [
  7269. "DER",
  7270. "Private Key",
  7271. "ac",
  7272. "algorithm identifier",
  7273. "asn.1",
  7274. "asn1",
  7275. "attribute certificate",
  7276. "certificate",
  7277. "certification request",
  7278. "cryptography",
  7279. "csr",
  7280. "decrypt",
  7281. "ec",
  7282. "encrypt",
  7283. "pem",
  7284. "pkcs",
  7285. "public key",
  7286. "rsa",
  7287. "sign",
  7288. "signature",
  7289. "verify",
  7290. "x.509",
  7291. "x.690",
  7292. "x509",
  7293. "x690"
  7294. ],
  7295. "support": {
  7296. "issues": "https://github.com/Spomky-Labs/pki-framework/issues",
  7297. "source": "https://github.com/Spomky-Labs/pki-framework/tree/1.2.2"
  7298. },
  7299. "funding": [
  7300. {
  7301. "url": "https://github.com/Spomky",
  7302. "type": "github"
  7303. },
  7304. {
  7305. "url": "https://www.patreon.com/FlorentMorselli",
  7306. "type": "patreon"
  7307. }
  7308. ],
  7309. "time": "2025-01-03T09:35:48+00:00"
  7310. },
  7311. {
  7312. "name": "stevebauman/purify",
  7313. "version": "v6.3.0",
  7314. "source": {
  7315. "type": "git",
  7316. "url": "https://github.com/stevebauman/purify.git",
  7317. "reference": "2e5e6e1bfe072189b6056c6ad4a8c68ba57f3ba1"
  7318. },
  7319. "dist": {
  7320. "type": "zip",
  7321. "url": "https://api.github.com/repos/stevebauman/purify/zipball/2e5e6e1bfe072189b6056c6ad4a8c68ba57f3ba1",
  7322. "reference": "2e5e6e1bfe072189b6056c6ad4a8c68ba57f3ba1",
  7323. "shasum": ""
  7324. },
  7325. "require": {
  7326. "ezyang/htmlpurifier": "^4.17",
  7327. "illuminate/contracts": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7328. "illuminate/support": "^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  7329. "php": ">=7.4"
  7330. },
  7331. "require-dev": {
  7332. "orchestra/testbench": "^5.0|^6.0|^7.0|^8.0|^9.0|^10.0",
  7333. "phpunit/phpunit": "^8.0|^9.0|^10.0|^11.5.3"
  7334. },
  7335. "type": "library",
  7336. "extra": {
  7337. "laravel": {
  7338. "aliases": {
  7339. "Purify": "Stevebauman\\Purify\\Facades\\Purify"
  7340. },
  7341. "providers": [
  7342. "Stevebauman\\Purify\\PurifyServiceProvider"
  7343. ]
  7344. }
  7345. },
  7346. "autoload": {
  7347. "psr-4": {
  7348. "Stevebauman\\Purify\\": "src/"
  7349. }
  7350. },
  7351. "notification-url": "https://packagist.org/downloads/",
  7352. "license": [
  7353. "MIT"
  7354. ],
  7355. "authors": [
  7356. {
  7357. "name": "Steve Bauman",
  7358. "email": "steven_bauman@outlook.com"
  7359. }
  7360. ],
  7361. "description": "An HTML Purifier / Sanitizer for Laravel",
  7362. "keywords": [
  7363. "Purifier",
  7364. "clean",
  7365. "cleaner",
  7366. "html",
  7367. "laravel",
  7368. "purification",
  7369. "purify"
  7370. ],
  7371. "support": {
  7372. "issues": "https://github.com/stevebauman/purify/issues",
  7373. "source": "https://github.com/stevebauman/purify/tree/v6.3.0"
  7374. },
  7375. "time": "2025-02-18T23:08:15+00:00"
  7376. },
  7377. {
  7378. "name": "symfony/cache",
  7379. "version": "v7.2.4",
  7380. "source": {
  7381. "type": "git",
  7382. "url": "https://github.com/symfony/cache.git",
  7383. "reference": "d33cd9e14326e14a4145c21e600602eaf17cc9e7"
  7384. },
  7385. "dist": {
  7386. "type": "zip",
  7387. "url": "https://api.github.com/repos/symfony/cache/zipball/d33cd9e14326e14a4145c21e600602eaf17cc9e7",
  7388. "reference": "d33cd9e14326e14a4145c21e600602eaf17cc9e7",
  7389. "shasum": ""
  7390. },
  7391. "require": {
  7392. "php": ">=8.2",
  7393. "psr/cache": "^2.0|^3.0",
  7394. "psr/log": "^1.1|^2|^3",
  7395. "symfony/cache-contracts": "^2.5|^3",
  7396. "symfony/deprecation-contracts": "^2.5|^3.0",
  7397. "symfony/service-contracts": "^2.5|^3",
  7398. "symfony/var-exporter": "^6.4|^7.0"
  7399. },
  7400. "conflict": {
  7401. "doctrine/dbal": "<3.6",
  7402. "symfony/dependency-injection": "<6.4",
  7403. "symfony/http-kernel": "<6.4",
  7404. "symfony/var-dumper": "<6.4"
  7405. },
  7406. "provide": {
  7407. "psr/cache-implementation": "2.0|3.0",
  7408. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  7409. "symfony/cache-implementation": "1.1|2.0|3.0"
  7410. },
  7411. "require-dev": {
  7412. "cache/integration-tests": "dev-master",
  7413. "doctrine/dbal": "^3.6|^4",
  7414. "predis/predis": "^1.1|^2.0",
  7415. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7416. "symfony/clock": "^6.4|^7.0",
  7417. "symfony/config": "^6.4|^7.0",
  7418. "symfony/dependency-injection": "^6.4|^7.0",
  7419. "symfony/filesystem": "^6.4|^7.0",
  7420. "symfony/http-kernel": "^6.4|^7.0",
  7421. "symfony/messenger": "^6.4|^7.0",
  7422. "symfony/var-dumper": "^6.4|^7.0"
  7423. },
  7424. "type": "library",
  7425. "autoload": {
  7426. "psr-4": {
  7427. "Symfony\\Component\\Cache\\": ""
  7428. },
  7429. "classmap": [
  7430. "Traits/ValueWrapper.php"
  7431. ],
  7432. "exclude-from-classmap": [
  7433. "/Tests/"
  7434. ]
  7435. },
  7436. "notification-url": "https://packagist.org/downloads/",
  7437. "license": [
  7438. "MIT"
  7439. ],
  7440. "authors": [
  7441. {
  7442. "name": "Nicolas Grekas",
  7443. "email": "p@tchwork.com"
  7444. },
  7445. {
  7446. "name": "Symfony Community",
  7447. "homepage": "https://symfony.com/contributors"
  7448. }
  7449. ],
  7450. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  7451. "homepage": "https://symfony.com",
  7452. "keywords": [
  7453. "caching",
  7454. "psr6"
  7455. ],
  7456. "support": {
  7457. "source": "https://github.com/symfony/cache/tree/v7.2.4"
  7458. },
  7459. "funding": [
  7460. {
  7461. "url": "https://symfony.com/sponsor",
  7462. "type": "custom"
  7463. },
  7464. {
  7465. "url": "https://github.com/fabpot",
  7466. "type": "github"
  7467. },
  7468. {
  7469. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7470. "type": "tidelift"
  7471. }
  7472. ],
  7473. "time": "2025-02-26T09:57:54+00:00"
  7474. },
  7475. {
  7476. "name": "symfony/cache-contracts",
  7477. "version": "v3.5.1",
  7478. "source": {
  7479. "type": "git",
  7480. "url": "https://github.com/symfony/cache-contracts.git",
  7481. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b"
  7482. },
  7483. "dist": {
  7484. "type": "zip",
  7485. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  7486. "reference": "15a4f8e5cd3bce9aeafc882b1acab39ec8de2c1b",
  7487. "shasum": ""
  7488. },
  7489. "require": {
  7490. "php": ">=8.1",
  7491. "psr/cache": "^3.0"
  7492. },
  7493. "type": "library",
  7494. "extra": {
  7495. "thanks": {
  7496. "url": "https://github.com/symfony/contracts",
  7497. "name": "symfony/contracts"
  7498. },
  7499. "branch-alias": {
  7500. "dev-main": "3.5-dev"
  7501. }
  7502. },
  7503. "autoload": {
  7504. "psr-4": {
  7505. "Symfony\\Contracts\\Cache\\": ""
  7506. }
  7507. },
  7508. "notification-url": "https://packagist.org/downloads/",
  7509. "license": [
  7510. "MIT"
  7511. ],
  7512. "authors": [
  7513. {
  7514. "name": "Nicolas Grekas",
  7515. "email": "p@tchwork.com"
  7516. },
  7517. {
  7518. "name": "Symfony Community",
  7519. "homepage": "https://symfony.com/contributors"
  7520. }
  7521. ],
  7522. "description": "Generic abstractions related to caching",
  7523. "homepage": "https://symfony.com",
  7524. "keywords": [
  7525. "abstractions",
  7526. "contracts",
  7527. "decoupling",
  7528. "interfaces",
  7529. "interoperability",
  7530. "standards"
  7531. ],
  7532. "support": {
  7533. "source": "https://github.com/symfony/cache-contracts/tree/v3.5.1"
  7534. },
  7535. "funding": [
  7536. {
  7537. "url": "https://symfony.com/sponsor",
  7538. "type": "custom"
  7539. },
  7540. {
  7541. "url": "https://github.com/fabpot",
  7542. "type": "github"
  7543. },
  7544. {
  7545. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7546. "type": "tidelift"
  7547. }
  7548. ],
  7549. "time": "2024-09-25T14:20:29+00:00"
  7550. },
  7551. {
  7552. "name": "symfony/clock",
  7553. "version": "v7.2.0",
  7554. "source": {
  7555. "type": "git",
  7556. "url": "https://github.com/symfony/clock.git",
  7557. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24"
  7558. },
  7559. "dist": {
  7560. "type": "zip",
  7561. "url": "https://api.github.com/repos/symfony/clock/zipball/b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  7562. "reference": "b81435fbd6648ea425d1ee96a2d8e68f4ceacd24",
  7563. "shasum": ""
  7564. },
  7565. "require": {
  7566. "php": ">=8.2",
  7567. "psr/clock": "^1.0",
  7568. "symfony/polyfill-php83": "^1.28"
  7569. },
  7570. "provide": {
  7571. "psr/clock-implementation": "1.0"
  7572. },
  7573. "type": "library",
  7574. "autoload": {
  7575. "files": [
  7576. "Resources/now.php"
  7577. ],
  7578. "psr-4": {
  7579. "Symfony\\Component\\Clock\\": ""
  7580. },
  7581. "exclude-from-classmap": [
  7582. "/Tests/"
  7583. ]
  7584. },
  7585. "notification-url": "https://packagist.org/downloads/",
  7586. "license": [
  7587. "MIT"
  7588. ],
  7589. "authors": [
  7590. {
  7591. "name": "Nicolas Grekas",
  7592. "email": "p@tchwork.com"
  7593. },
  7594. {
  7595. "name": "Symfony Community",
  7596. "homepage": "https://symfony.com/contributors"
  7597. }
  7598. ],
  7599. "description": "Decouples applications from the system clock",
  7600. "homepage": "https://symfony.com",
  7601. "keywords": [
  7602. "clock",
  7603. "psr20",
  7604. "time"
  7605. ],
  7606. "support": {
  7607. "source": "https://github.com/symfony/clock/tree/v7.2.0"
  7608. },
  7609. "funding": [
  7610. {
  7611. "url": "https://symfony.com/sponsor",
  7612. "type": "custom"
  7613. },
  7614. {
  7615. "url": "https://github.com/fabpot",
  7616. "type": "github"
  7617. },
  7618. {
  7619. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7620. "type": "tidelift"
  7621. }
  7622. ],
  7623. "time": "2024-09-25T14:21:43+00:00"
  7624. },
  7625. {
  7626. "name": "symfony/console",
  7627. "version": "v7.2.1",
  7628. "source": {
  7629. "type": "git",
  7630. "url": "https://github.com/symfony/console.git",
  7631. "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3"
  7632. },
  7633. "dist": {
  7634. "type": "zip",
  7635. "url": "https://api.github.com/repos/symfony/console/zipball/fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
  7636. "reference": "fefcc18c0f5d0efe3ab3152f15857298868dc2c3",
  7637. "shasum": ""
  7638. },
  7639. "require": {
  7640. "php": ">=8.2",
  7641. "symfony/polyfill-mbstring": "~1.0",
  7642. "symfony/service-contracts": "^2.5|^3",
  7643. "symfony/string": "^6.4|^7.0"
  7644. },
  7645. "conflict": {
  7646. "symfony/dependency-injection": "<6.4",
  7647. "symfony/dotenv": "<6.4",
  7648. "symfony/event-dispatcher": "<6.4",
  7649. "symfony/lock": "<6.4",
  7650. "symfony/process": "<6.4"
  7651. },
  7652. "provide": {
  7653. "psr/log-implementation": "1.0|2.0|3.0"
  7654. },
  7655. "require-dev": {
  7656. "psr/log": "^1|^2|^3",
  7657. "symfony/config": "^6.4|^7.0",
  7658. "symfony/dependency-injection": "^6.4|^7.0",
  7659. "symfony/event-dispatcher": "^6.4|^7.0",
  7660. "symfony/http-foundation": "^6.4|^7.0",
  7661. "symfony/http-kernel": "^6.4|^7.0",
  7662. "symfony/lock": "^6.4|^7.0",
  7663. "symfony/messenger": "^6.4|^7.0",
  7664. "symfony/process": "^6.4|^7.0",
  7665. "symfony/stopwatch": "^6.4|^7.0",
  7666. "symfony/var-dumper": "^6.4|^7.0"
  7667. },
  7668. "type": "library",
  7669. "autoload": {
  7670. "psr-4": {
  7671. "Symfony\\Component\\Console\\": ""
  7672. },
  7673. "exclude-from-classmap": [
  7674. "/Tests/"
  7675. ]
  7676. },
  7677. "notification-url": "https://packagist.org/downloads/",
  7678. "license": [
  7679. "MIT"
  7680. ],
  7681. "authors": [
  7682. {
  7683. "name": "Fabien Potencier",
  7684. "email": "fabien@symfony.com"
  7685. },
  7686. {
  7687. "name": "Symfony Community",
  7688. "homepage": "https://symfony.com/contributors"
  7689. }
  7690. ],
  7691. "description": "Eases the creation of beautiful and testable command line interfaces",
  7692. "homepage": "https://symfony.com",
  7693. "keywords": [
  7694. "cli",
  7695. "command-line",
  7696. "console",
  7697. "terminal"
  7698. ],
  7699. "support": {
  7700. "source": "https://github.com/symfony/console/tree/v7.2.1"
  7701. },
  7702. "funding": [
  7703. {
  7704. "url": "https://symfony.com/sponsor",
  7705. "type": "custom"
  7706. },
  7707. {
  7708. "url": "https://github.com/fabpot",
  7709. "type": "github"
  7710. },
  7711. {
  7712. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7713. "type": "tidelift"
  7714. }
  7715. ],
  7716. "time": "2024-12-11T03:49:26+00:00"
  7717. },
  7718. {
  7719. "name": "symfony/css-selector",
  7720. "version": "v7.2.0",
  7721. "source": {
  7722. "type": "git",
  7723. "url": "https://github.com/symfony/css-selector.git",
  7724. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  7725. },
  7726. "dist": {
  7727. "type": "zip",
  7728. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  7729. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  7730. "shasum": ""
  7731. },
  7732. "require": {
  7733. "php": ">=8.2"
  7734. },
  7735. "type": "library",
  7736. "autoload": {
  7737. "psr-4": {
  7738. "Symfony\\Component\\CssSelector\\": ""
  7739. },
  7740. "exclude-from-classmap": [
  7741. "/Tests/"
  7742. ]
  7743. },
  7744. "notification-url": "https://packagist.org/downloads/",
  7745. "license": [
  7746. "MIT"
  7747. ],
  7748. "authors": [
  7749. {
  7750. "name": "Fabien Potencier",
  7751. "email": "fabien@symfony.com"
  7752. },
  7753. {
  7754. "name": "Jean-François Simon",
  7755. "email": "jeanfrancois.simon@sensiolabs.com"
  7756. },
  7757. {
  7758. "name": "Symfony Community",
  7759. "homepage": "https://symfony.com/contributors"
  7760. }
  7761. ],
  7762. "description": "Converts CSS selectors to XPath expressions",
  7763. "homepage": "https://symfony.com",
  7764. "support": {
  7765. "source": "https://github.com/symfony/css-selector/tree/v7.2.0"
  7766. },
  7767. "funding": [
  7768. {
  7769. "url": "https://symfony.com/sponsor",
  7770. "type": "custom"
  7771. },
  7772. {
  7773. "url": "https://github.com/fabpot",
  7774. "type": "github"
  7775. },
  7776. {
  7777. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7778. "type": "tidelift"
  7779. }
  7780. ],
  7781. "time": "2024-09-25T14:21:43+00:00"
  7782. },
  7783. {
  7784. "name": "symfony/deprecation-contracts",
  7785. "version": "v3.5.1",
  7786. "source": {
  7787. "type": "git",
  7788. "url": "https://github.com/symfony/deprecation-contracts.git",
  7789. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  7790. },
  7791. "dist": {
  7792. "type": "zip",
  7793. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7794. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  7795. "shasum": ""
  7796. },
  7797. "require": {
  7798. "php": ">=8.1"
  7799. },
  7800. "type": "library",
  7801. "extra": {
  7802. "thanks": {
  7803. "url": "https://github.com/symfony/contracts",
  7804. "name": "symfony/contracts"
  7805. },
  7806. "branch-alias": {
  7807. "dev-main": "3.5-dev"
  7808. }
  7809. },
  7810. "autoload": {
  7811. "files": [
  7812. "function.php"
  7813. ]
  7814. },
  7815. "notification-url": "https://packagist.org/downloads/",
  7816. "license": [
  7817. "MIT"
  7818. ],
  7819. "authors": [
  7820. {
  7821. "name": "Nicolas Grekas",
  7822. "email": "p@tchwork.com"
  7823. },
  7824. {
  7825. "name": "Symfony Community",
  7826. "homepage": "https://symfony.com/contributors"
  7827. }
  7828. ],
  7829. "description": "A generic function and convention to trigger deprecation notices",
  7830. "homepage": "https://symfony.com",
  7831. "support": {
  7832. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  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-25T14:20:29+00:00"
  7849. },
  7850. {
  7851. "name": "symfony/error-handler",
  7852. "version": "v7.2.4",
  7853. "source": {
  7854. "type": "git",
  7855. "url": "https://github.com/symfony/error-handler.git",
  7856. "reference": "aabf79938aa795350c07ce6464dd1985607d95d5"
  7857. },
  7858. "dist": {
  7859. "type": "zip",
  7860. "url": "https://api.github.com/repos/symfony/error-handler/zipball/aabf79938aa795350c07ce6464dd1985607d95d5",
  7861. "reference": "aabf79938aa795350c07ce6464dd1985607d95d5",
  7862. "shasum": ""
  7863. },
  7864. "require": {
  7865. "php": ">=8.2",
  7866. "psr/log": "^1|^2|^3",
  7867. "symfony/var-dumper": "^6.4|^7.0"
  7868. },
  7869. "conflict": {
  7870. "symfony/deprecation-contracts": "<2.5",
  7871. "symfony/http-kernel": "<6.4"
  7872. },
  7873. "require-dev": {
  7874. "symfony/deprecation-contracts": "^2.5|^3",
  7875. "symfony/http-kernel": "^6.4|^7.0",
  7876. "symfony/serializer": "^6.4|^7.0"
  7877. },
  7878. "bin": [
  7879. "Resources/bin/patch-type-declarations"
  7880. ],
  7881. "type": "library",
  7882. "autoload": {
  7883. "psr-4": {
  7884. "Symfony\\Component\\ErrorHandler\\": ""
  7885. },
  7886. "exclude-from-classmap": [
  7887. "/Tests/"
  7888. ]
  7889. },
  7890. "notification-url": "https://packagist.org/downloads/",
  7891. "license": [
  7892. "MIT"
  7893. ],
  7894. "authors": [
  7895. {
  7896. "name": "Fabien Potencier",
  7897. "email": "fabien@symfony.com"
  7898. },
  7899. {
  7900. "name": "Symfony Community",
  7901. "homepage": "https://symfony.com/contributors"
  7902. }
  7903. ],
  7904. "description": "Provides tools to manage errors and ease debugging PHP code",
  7905. "homepage": "https://symfony.com",
  7906. "support": {
  7907. "source": "https://github.com/symfony/error-handler/tree/v7.2.4"
  7908. },
  7909. "funding": [
  7910. {
  7911. "url": "https://symfony.com/sponsor",
  7912. "type": "custom"
  7913. },
  7914. {
  7915. "url": "https://github.com/fabpot",
  7916. "type": "github"
  7917. },
  7918. {
  7919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7920. "type": "tidelift"
  7921. }
  7922. ],
  7923. "time": "2025-02-02T20:27:07+00:00"
  7924. },
  7925. {
  7926. "name": "symfony/event-dispatcher",
  7927. "version": "v7.2.0",
  7928. "source": {
  7929. "type": "git",
  7930. "url": "https://github.com/symfony/event-dispatcher.git",
  7931. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
  7932. },
  7933. "dist": {
  7934. "type": "zip",
  7935. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
  7936. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
  7937. "shasum": ""
  7938. },
  7939. "require": {
  7940. "php": ">=8.2",
  7941. "symfony/event-dispatcher-contracts": "^2.5|^3"
  7942. },
  7943. "conflict": {
  7944. "symfony/dependency-injection": "<6.4",
  7945. "symfony/service-contracts": "<2.5"
  7946. },
  7947. "provide": {
  7948. "psr/event-dispatcher-implementation": "1.0",
  7949. "symfony/event-dispatcher-implementation": "2.0|3.0"
  7950. },
  7951. "require-dev": {
  7952. "psr/log": "^1|^2|^3",
  7953. "symfony/config": "^6.4|^7.0",
  7954. "symfony/dependency-injection": "^6.4|^7.0",
  7955. "symfony/error-handler": "^6.4|^7.0",
  7956. "symfony/expression-language": "^6.4|^7.0",
  7957. "symfony/http-foundation": "^6.4|^7.0",
  7958. "symfony/service-contracts": "^2.5|^3",
  7959. "symfony/stopwatch": "^6.4|^7.0"
  7960. },
  7961. "type": "library",
  7962. "autoload": {
  7963. "psr-4": {
  7964. "Symfony\\Component\\EventDispatcher\\": ""
  7965. },
  7966. "exclude-from-classmap": [
  7967. "/Tests/"
  7968. ]
  7969. },
  7970. "notification-url": "https://packagist.org/downloads/",
  7971. "license": [
  7972. "MIT"
  7973. ],
  7974. "authors": [
  7975. {
  7976. "name": "Fabien Potencier",
  7977. "email": "fabien@symfony.com"
  7978. },
  7979. {
  7980. "name": "Symfony Community",
  7981. "homepage": "https://symfony.com/contributors"
  7982. }
  7983. ],
  7984. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7985. "homepage": "https://symfony.com",
  7986. "support": {
  7987. "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0"
  7988. },
  7989. "funding": [
  7990. {
  7991. "url": "https://symfony.com/sponsor",
  7992. "type": "custom"
  7993. },
  7994. {
  7995. "url": "https://github.com/fabpot",
  7996. "type": "github"
  7997. },
  7998. {
  7999. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8000. "type": "tidelift"
  8001. }
  8002. ],
  8003. "time": "2024-09-25T14:21:43+00:00"
  8004. },
  8005. {
  8006. "name": "symfony/event-dispatcher-contracts",
  8007. "version": "v3.5.1",
  8008. "source": {
  8009. "type": "git",
  8010. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  8011. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  8012. },
  8013. "dist": {
  8014. "type": "zip",
  8015. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  8016. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  8017. "shasum": ""
  8018. },
  8019. "require": {
  8020. "php": ">=8.1",
  8021. "psr/event-dispatcher": "^1"
  8022. },
  8023. "type": "library",
  8024. "extra": {
  8025. "thanks": {
  8026. "url": "https://github.com/symfony/contracts",
  8027. "name": "symfony/contracts"
  8028. },
  8029. "branch-alias": {
  8030. "dev-main": "3.5-dev"
  8031. }
  8032. },
  8033. "autoload": {
  8034. "psr-4": {
  8035. "Symfony\\Contracts\\EventDispatcher\\": ""
  8036. }
  8037. },
  8038. "notification-url": "https://packagist.org/downloads/",
  8039. "license": [
  8040. "MIT"
  8041. ],
  8042. "authors": [
  8043. {
  8044. "name": "Nicolas Grekas",
  8045. "email": "p@tchwork.com"
  8046. },
  8047. {
  8048. "name": "Symfony Community",
  8049. "homepage": "https://symfony.com/contributors"
  8050. }
  8051. ],
  8052. "description": "Generic abstractions related to dispatching event",
  8053. "homepage": "https://symfony.com",
  8054. "keywords": [
  8055. "abstractions",
  8056. "contracts",
  8057. "decoupling",
  8058. "interfaces",
  8059. "interoperability",
  8060. "standards"
  8061. ],
  8062. "support": {
  8063. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  8064. },
  8065. "funding": [
  8066. {
  8067. "url": "https://symfony.com/sponsor",
  8068. "type": "custom"
  8069. },
  8070. {
  8071. "url": "https://github.com/fabpot",
  8072. "type": "github"
  8073. },
  8074. {
  8075. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8076. "type": "tidelift"
  8077. }
  8078. ],
  8079. "time": "2024-09-25T14:20:29+00:00"
  8080. },
  8081. {
  8082. "name": "symfony/finder",
  8083. "version": "v7.2.2",
  8084. "source": {
  8085. "type": "git",
  8086. "url": "https://github.com/symfony/finder.git",
  8087. "reference": "87a71856f2f56e4100373e92529eed3171695cfb"
  8088. },
  8089. "dist": {
  8090. "type": "zip",
  8091. "url": "https://api.github.com/repos/symfony/finder/zipball/87a71856f2f56e4100373e92529eed3171695cfb",
  8092. "reference": "87a71856f2f56e4100373e92529eed3171695cfb",
  8093. "shasum": ""
  8094. },
  8095. "require": {
  8096. "php": ">=8.2"
  8097. },
  8098. "require-dev": {
  8099. "symfony/filesystem": "^6.4|^7.0"
  8100. },
  8101. "type": "library",
  8102. "autoload": {
  8103. "psr-4": {
  8104. "Symfony\\Component\\Finder\\": ""
  8105. },
  8106. "exclude-from-classmap": [
  8107. "/Tests/"
  8108. ]
  8109. },
  8110. "notification-url": "https://packagist.org/downloads/",
  8111. "license": [
  8112. "MIT"
  8113. ],
  8114. "authors": [
  8115. {
  8116. "name": "Fabien Potencier",
  8117. "email": "fabien@symfony.com"
  8118. },
  8119. {
  8120. "name": "Symfony Community",
  8121. "homepage": "https://symfony.com/contributors"
  8122. }
  8123. ],
  8124. "description": "Finds files and directories via an intuitive fluent interface",
  8125. "homepage": "https://symfony.com",
  8126. "support": {
  8127. "source": "https://github.com/symfony/finder/tree/v7.2.2"
  8128. },
  8129. "funding": [
  8130. {
  8131. "url": "https://symfony.com/sponsor",
  8132. "type": "custom"
  8133. },
  8134. {
  8135. "url": "https://github.com/fabpot",
  8136. "type": "github"
  8137. },
  8138. {
  8139. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8140. "type": "tidelift"
  8141. }
  8142. ],
  8143. "time": "2024-12-30T19:00:17+00:00"
  8144. },
  8145. {
  8146. "name": "symfony/http-client",
  8147. "version": "v6.4.19",
  8148. "source": {
  8149. "type": "git",
  8150. "url": "https://github.com/symfony/http-client.git",
  8151. "reference": "3294a433fc9d12ae58128174896b5b1822c28dad"
  8152. },
  8153. "dist": {
  8154. "type": "zip",
  8155. "url": "https://api.github.com/repos/symfony/http-client/zipball/3294a433fc9d12ae58128174896b5b1822c28dad",
  8156. "reference": "3294a433fc9d12ae58128174896b5b1822c28dad",
  8157. "shasum": ""
  8158. },
  8159. "require": {
  8160. "php": ">=8.1",
  8161. "psr/log": "^1|^2|^3",
  8162. "symfony/deprecation-contracts": "^2.5|^3",
  8163. "symfony/http-client-contracts": "~3.4.4|^3.5.2",
  8164. "symfony/service-contracts": "^2.5|^3"
  8165. },
  8166. "conflict": {
  8167. "php-http/discovery": "<1.15",
  8168. "symfony/http-foundation": "<6.3"
  8169. },
  8170. "provide": {
  8171. "php-http/async-client-implementation": "*",
  8172. "php-http/client-implementation": "*",
  8173. "psr/http-client-implementation": "1.0",
  8174. "symfony/http-client-implementation": "3.0"
  8175. },
  8176. "require-dev": {
  8177. "amphp/amp": "^2.5",
  8178. "amphp/http-client": "^4.2.1",
  8179. "amphp/http-tunnel": "^1.0",
  8180. "amphp/socket": "^1.1",
  8181. "guzzlehttp/promises": "^1.4|^2.0",
  8182. "nyholm/psr7": "^1.0",
  8183. "php-http/httplug": "^1.0|^2.0",
  8184. "psr/http-client": "^1.0",
  8185. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  8186. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  8187. "symfony/messenger": "^5.4|^6.0|^7.0",
  8188. "symfony/process": "^5.4|^6.0|^7.0",
  8189. "symfony/stopwatch": "^5.4|^6.0|^7.0"
  8190. },
  8191. "type": "library",
  8192. "autoload": {
  8193. "psr-4": {
  8194. "Symfony\\Component\\HttpClient\\": ""
  8195. },
  8196. "exclude-from-classmap": [
  8197. "/Tests/"
  8198. ]
  8199. },
  8200. "notification-url": "https://packagist.org/downloads/",
  8201. "license": [
  8202. "MIT"
  8203. ],
  8204. "authors": [
  8205. {
  8206. "name": "Nicolas Grekas",
  8207. "email": "p@tchwork.com"
  8208. },
  8209. {
  8210. "name": "Symfony Community",
  8211. "homepage": "https://symfony.com/contributors"
  8212. }
  8213. ],
  8214. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  8215. "homepage": "https://symfony.com",
  8216. "keywords": [
  8217. "http"
  8218. ],
  8219. "support": {
  8220. "source": "https://github.com/symfony/http-client/tree/v6.4.19"
  8221. },
  8222. "funding": [
  8223. {
  8224. "url": "https://symfony.com/sponsor",
  8225. "type": "custom"
  8226. },
  8227. {
  8228. "url": "https://github.com/fabpot",
  8229. "type": "github"
  8230. },
  8231. {
  8232. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8233. "type": "tidelift"
  8234. }
  8235. ],
  8236. "time": "2025-02-13T09:55:13+00:00"
  8237. },
  8238. {
  8239. "name": "symfony/http-client-contracts",
  8240. "version": "v3.5.2",
  8241. "source": {
  8242. "type": "git",
  8243. "url": "https://github.com/symfony/http-client-contracts.git",
  8244. "reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645"
  8245. },
  8246. "dist": {
  8247. "type": "zip",
  8248. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ee8d807ab20fcb51267fdace50fbe3494c31e645",
  8249. "reference": "ee8d807ab20fcb51267fdace50fbe3494c31e645",
  8250. "shasum": ""
  8251. },
  8252. "require": {
  8253. "php": ">=8.1"
  8254. },
  8255. "type": "library",
  8256. "extra": {
  8257. "thanks": {
  8258. "url": "https://github.com/symfony/contracts",
  8259. "name": "symfony/contracts"
  8260. },
  8261. "branch-alias": {
  8262. "dev-main": "3.5-dev"
  8263. }
  8264. },
  8265. "autoload": {
  8266. "psr-4": {
  8267. "Symfony\\Contracts\\HttpClient\\": ""
  8268. },
  8269. "exclude-from-classmap": [
  8270. "/Test/"
  8271. ]
  8272. },
  8273. "notification-url": "https://packagist.org/downloads/",
  8274. "license": [
  8275. "MIT"
  8276. ],
  8277. "authors": [
  8278. {
  8279. "name": "Nicolas Grekas",
  8280. "email": "p@tchwork.com"
  8281. },
  8282. {
  8283. "name": "Symfony Community",
  8284. "homepage": "https://symfony.com/contributors"
  8285. }
  8286. ],
  8287. "description": "Generic abstractions related to HTTP clients",
  8288. "homepage": "https://symfony.com",
  8289. "keywords": [
  8290. "abstractions",
  8291. "contracts",
  8292. "decoupling",
  8293. "interfaces",
  8294. "interoperability",
  8295. "standards"
  8296. ],
  8297. "support": {
  8298. "source": "https://github.com/symfony/http-client-contracts/tree/v3.5.2"
  8299. },
  8300. "funding": [
  8301. {
  8302. "url": "https://symfony.com/sponsor",
  8303. "type": "custom"
  8304. },
  8305. {
  8306. "url": "https://github.com/fabpot",
  8307. "type": "github"
  8308. },
  8309. {
  8310. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8311. "type": "tidelift"
  8312. }
  8313. ],
  8314. "time": "2024-12-07T08:49:48+00:00"
  8315. },
  8316. {
  8317. "name": "symfony/http-foundation",
  8318. "version": "v7.2.3",
  8319. "source": {
  8320. "type": "git",
  8321. "url": "https://github.com/symfony/http-foundation.git",
  8322. "reference": "ee1b504b8926198be89d05e5b6fc4c3810c090f0"
  8323. },
  8324. "dist": {
  8325. "type": "zip",
  8326. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/ee1b504b8926198be89d05e5b6fc4c3810c090f0",
  8327. "reference": "ee1b504b8926198be89d05e5b6fc4c3810c090f0",
  8328. "shasum": ""
  8329. },
  8330. "require": {
  8331. "php": ">=8.2",
  8332. "symfony/deprecation-contracts": "^2.5|^3.0",
  8333. "symfony/polyfill-mbstring": "~1.1",
  8334. "symfony/polyfill-php83": "^1.27"
  8335. },
  8336. "conflict": {
  8337. "doctrine/dbal": "<3.6",
  8338. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  8339. },
  8340. "require-dev": {
  8341. "doctrine/dbal": "^3.6|^4",
  8342. "predis/predis": "^1.1|^2.0",
  8343. "symfony/cache": "^6.4.12|^7.1.5",
  8344. "symfony/dependency-injection": "^6.4|^7.0",
  8345. "symfony/expression-language": "^6.4|^7.0",
  8346. "symfony/http-kernel": "^6.4|^7.0",
  8347. "symfony/mime": "^6.4|^7.0",
  8348. "symfony/rate-limiter": "^6.4|^7.0"
  8349. },
  8350. "type": "library",
  8351. "autoload": {
  8352. "psr-4": {
  8353. "Symfony\\Component\\HttpFoundation\\": ""
  8354. },
  8355. "exclude-from-classmap": [
  8356. "/Tests/"
  8357. ]
  8358. },
  8359. "notification-url": "https://packagist.org/downloads/",
  8360. "license": [
  8361. "MIT"
  8362. ],
  8363. "authors": [
  8364. {
  8365. "name": "Fabien Potencier",
  8366. "email": "fabien@symfony.com"
  8367. },
  8368. {
  8369. "name": "Symfony Community",
  8370. "homepage": "https://symfony.com/contributors"
  8371. }
  8372. ],
  8373. "description": "Defines an object-oriented layer for the HTTP specification",
  8374. "homepage": "https://symfony.com",
  8375. "support": {
  8376. "source": "https://github.com/symfony/http-foundation/tree/v7.2.3"
  8377. },
  8378. "funding": [
  8379. {
  8380. "url": "https://symfony.com/sponsor",
  8381. "type": "custom"
  8382. },
  8383. {
  8384. "url": "https://github.com/fabpot",
  8385. "type": "github"
  8386. },
  8387. {
  8388. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8389. "type": "tidelift"
  8390. }
  8391. ],
  8392. "time": "2025-01-17T10:56:55+00:00"
  8393. },
  8394. {
  8395. "name": "symfony/http-kernel",
  8396. "version": "v7.2.4",
  8397. "source": {
  8398. "type": "git",
  8399. "url": "https://github.com/symfony/http-kernel.git",
  8400. "reference": "9f1103734c5789798fefb90e91de4586039003ed"
  8401. },
  8402. "dist": {
  8403. "type": "zip",
  8404. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/9f1103734c5789798fefb90e91de4586039003ed",
  8405. "reference": "9f1103734c5789798fefb90e91de4586039003ed",
  8406. "shasum": ""
  8407. },
  8408. "require": {
  8409. "php": ">=8.2",
  8410. "psr/log": "^1|^2|^3",
  8411. "symfony/deprecation-contracts": "^2.5|^3",
  8412. "symfony/error-handler": "^6.4|^7.0",
  8413. "symfony/event-dispatcher": "^6.4|^7.0",
  8414. "symfony/http-foundation": "^6.4|^7.0",
  8415. "symfony/polyfill-ctype": "^1.8"
  8416. },
  8417. "conflict": {
  8418. "symfony/browser-kit": "<6.4",
  8419. "symfony/cache": "<6.4",
  8420. "symfony/config": "<6.4",
  8421. "symfony/console": "<6.4",
  8422. "symfony/dependency-injection": "<6.4",
  8423. "symfony/doctrine-bridge": "<6.4",
  8424. "symfony/form": "<6.4",
  8425. "symfony/http-client": "<6.4",
  8426. "symfony/http-client-contracts": "<2.5",
  8427. "symfony/mailer": "<6.4",
  8428. "symfony/messenger": "<6.4",
  8429. "symfony/translation": "<6.4",
  8430. "symfony/translation-contracts": "<2.5",
  8431. "symfony/twig-bridge": "<6.4",
  8432. "symfony/validator": "<6.4",
  8433. "symfony/var-dumper": "<6.4",
  8434. "twig/twig": "<3.12"
  8435. },
  8436. "provide": {
  8437. "psr/log-implementation": "1.0|2.0|3.0"
  8438. },
  8439. "require-dev": {
  8440. "psr/cache": "^1.0|^2.0|^3.0",
  8441. "symfony/browser-kit": "^6.4|^7.0",
  8442. "symfony/clock": "^6.4|^7.0",
  8443. "symfony/config": "^6.4|^7.0",
  8444. "symfony/console": "^6.4|^7.0",
  8445. "symfony/css-selector": "^6.4|^7.0",
  8446. "symfony/dependency-injection": "^6.4|^7.0",
  8447. "symfony/dom-crawler": "^6.4|^7.0",
  8448. "symfony/expression-language": "^6.4|^7.0",
  8449. "symfony/finder": "^6.4|^7.0",
  8450. "symfony/http-client-contracts": "^2.5|^3",
  8451. "symfony/process": "^6.4|^7.0",
  8452. "symfony/property-access": "^7.1",
  8453. "symfony/routing": "^6.4|^7.0",
  8454. "symfony/serializer": "^7.1",
  8455. "symfony/stopwatch": "^6.4|^7.0",
  8456. "symfony/translation": "^6.4|^7.0",
  8457. "symfony/translation-contracts": "^2.5|^3",
  8458. "symfony/uid": "^6.4|^7.0",
  8459. "symfony/validator": "^6.4|^7.0",
  8460. "symfony/var-dumper": "^6.4|^7.0",
  8461. "symfony/var-exporter": "^6.4|^7.0",
  8462. "twig/twig": "^3.12"
  8463. },
  8464. "type": "library",
  8465. "autoload": {
  8466. "psr-4": {
  8467. "Symfony\\Component\\HttpKernel\\": ""
  8468. },
  8469. "exclude-from-classmap": [
  8470. "/Tests/"
  8471. ]
  8472. },
  8473. "notification-url": "https://packagist.org/downloads/",
  8474. "license": [
  8475. "MIT"
  8476. ],
  8477. "authors": [
  8478. {
  8479. "name": "Fabien Potencier",
  8480. "email": "fabien@symfony.com"
  8481. },
  8482. {
  8483. "name": "Symfony Community",
  8484. "homepage": "https://symfony.com/contributors"
  8485. }
  8486. ],
  8487. "description": "Provides a structured process for converting a Request into a Response",
  8488. "homepage": "https://symfony.com",
  8489. "support": {
  8490. "source": "https://github.com/symfony/http-kernel/tree/v7.2.4"
  8491. },
  8492. "funding": [
  8493. {
  8494. "url": "https://symfony.com/sponsor",
  8495. "type": "custom"
  8496. },
  8497. {
  8498. "url": "https://github.com/fabpot",
  8499. "type": "github"
  8500. },
  8501. {
  8502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8503. "type": "tidelift"
  8504. }
  8505. ],
  8506. "time": "2025-02-26T11:01:22+00:00"
  8507. },
  8508. {
  8509. "name": "symfony/mailer",
  8510. "version": "v7.2.3",
  8511. "source": {
  8512. "type": "git",
  8513. "url": "https://github.com/symfony/mailer.git",
  8514. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3"
  8515. },
  8516. "dist": {
  8517. "type": "zip",
  8518. "url": "https://api.github.com/repos/symfony/mailer/zipball/f3871b182c44997cf039f3b462af4a48fb85f9d3",
  8519. "reference": "f3871b182c44997cf039f3b462af4a48fb85f9d3",
  8520. "shasum": ""
  8521. },
  8522. "require": {
  8523. "egulias/email-validator": "^2.1.10|^3|^4",
  8524. "php": ">=8.2",
  8525. "psr/event-dispatcher": "^1",
  8526. "psr/log": "^1|^2|^3",
  8527. "symfony/event-dispatcher": "^6.4|^7.0",
  8528. "symfony/mime": "^7.2",
  8529. "symfony/service-contracts": "^2.5|^3"
  8530. },
  8531. "conflict": {
  8532. "symfony/http-client-contracts": "<2.5",
  8533. "symfony/http-kernel": "<6.4",
  8534. "symfony/messenger": "<6.4",
  8535. "symfony/mime": "<6.4",
  8536. "symfony/twig-bridge": "<6.4"
  8537. },
  8538. "require-dev": {
  8539. "symfony/console": "^6.4|^7.0",
  8540. "symfony/http-client": "^6.4|^7.0",
  8541. "symfony/messenger": "^6.4|^7.0",
  8542. "symfony/twig-bridge": "^6.4|^7.0"
  8543. },
  8544. "type": "library",
  8545. "autoload": {
  8546. "psr-4": {
  8547. "Symfony\\Component\\Mailer\\": ""
  8548. },
  8549. "exclude-from-classmap": [
  8550. "/Tests/"
  8551. ]
  8552. },
  8553. "notification-url": "https://packagist.org/downloads/",
  8554. "license": [
  8555. "MIT"
  8556. ],
  8557. "authors": [
  8558. {
  8559. "name": "Fabien Potencier",
  8560. "email": "fabien@symfony.com"
  8561. },
  8562. {
  8563. "name": "Symfony Community",
  8564. "homepage": "https://symfony.com/contributors"
  8565. }
  8566. ],
  8567. "description": "Helps sending emails",
  8568. "homepage": "https://symfony.com",
  8569. "support": {
  8570. "source": "https://github.com/symfony/mailer/tree/v7.2.3"
  8571. },
  8572. "funding": [
  8573. {
  8574. "url": "https://symfony.com/sponsor",
  8575. "type": "custom"
  8576. },
  8577. {
  8578. "url": "https://github.com/fabpot",
  8579. "type": "github"
  8580. },
  8581. {
  8582. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8583. "type": "tidelift"
  8584. }
  8585. ],
  8586. "time": "2025-01-27T11:08:17+00:00"
  8587. },
  8588. {
  8589. "name": "symfony/mailgun-mailer",
  8590. "version": "v6.4.13",
  8591. "source": {
  8592. "type": "git",
  8593. "url": "https://github.com/symfony/mailgun-mailer.git",
  8594. "reference": "ad4e79798a5eb80af99004a4871b4fe5effe33a3"
  8595. },
  8596. "dist": {
  8597. "type": "zip",
  8598. "url": "https://api.github.com/repos/symfony/mailgun-mailer/zipball/ad4e79798a5eb80af99004a4871b4fe5effe33a3",
  8599. "reference": "ad4e79798a5eb80af99004a4871b4fe5effe33a3",
  8600. "shasum": ""
  8601. },
  8602. "require": {
  8603. "php": ">=8.1",
  8604. "symfony/mailer": "^5.4.21|^6.2.7|^7.0"
  8605. },
  8606. "conflict": {
  8607. "symfony/http-foundation": "<6.2"
  8608. },
  8609. "require-dev": {
  8610. "symfony/http-client": "^6.3|^7.0",
  8611. "symfony/webhook": "^6.3|^7.0"
  8612. },
  8613. "type": "symfony-mailer-bridge",
  8614. "autoload": {
  8615. "psr-4": {
  8616. "Symfony\\Component\\Mailer\\Bridge\\Mailgun\\": ""
  8617. },
  8618. "exclude-from-classmap": [
  8619. "/Tests/"
  8620. ]
  8621. },
  8622. "notification-url": "https://packagist.org/downloads/",
  8623. "license": [
  8624. "MIT"
  8625. ],
  8626. "authors": [
  8627. {
  8628. "name": "Fabien Potencier",
  8629. "email": "fabien@symfony.com"
  8630. },
  8631. {
  8632. "name": "Symfony Community",
  8633. "homepage": "https://symfony.com/contributors"
  8634. }
  8635. ],
  8636. "description": "Symfony Mailgun Mailer Bridge",
  8637. "homepage": "https://symfony.com",
  8638. "support": {
  8639. "source": "https://github.com/symfony/mailgun-mailer/tree/v6.4.13"
  8640. },
  8641. "funding": [
  8642. {
  8643. "url": "https://symfony.com/sponsor",
  8644. "type": "custom"
  8645. },
  8646. {
  8647. "url": "https://github.com/fabpot",
  8648. "type": "github"
  8649. },
  8650. {
  8651. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8652. "type": "tidelift"
  8653. }
  8654. ],
  8655. "time": "2024-09-25T14:18:03+00:00"
  8656. },
  8657. {
  8658. "name": "symfony/mime",
  8659. "version": "v7.2.4",
  8660. "source": {
  8661. "type": "git",
  8662. "url": "https://github.com/symfony/mime.git",
  8663. "reference": "87ca22046b78c3feaff04b337f33b38510fd686b"
  8664. },
  8665. "dist": {
  8666. "type": "zip",
  8667. "url": "https://api.github.com/repos/symfony/mime/zipball/87ca22046b78c3feaff04b337f33b38510fd686b",
  8668. "reference": "87ca22046b78c3feaff04b337f33b38510fd686b",
  8669. "shasum": ""
  8670. },
  8671. "require": {
  8672. "php": ">=8.2",
  8673. "symfony/polyfill-intl-idn": "^1.10",
  8674. "symfony/polyfill-mbstring": "^1.0"
  8675. },
  8676. "conflict": {
  8677. "egulias/email-validator": "~3.0.0",
  8678. "phpdocumentor/reflection-docblock": "<3.2.2",
  8679. "phpdocumentor/type-resolver": "<1.4.0",
  8680. "symfony/mailer": "<6.4",
  8681. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  8682. },
  8683. "require-dev": {
  8684. "egulias/email-validator": "^2.1.10|^3.1|^4",
  8685. "league/html-to-markdown": "^5.0",
  8686. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  8687. "symfony/dependency-injection": "^6.4|^7.0",
  8688. "symfony/process": "^6.4|^7.0",
  8689. "symfony/property-access": "^6.4|^7.0",
  8690. "symfony/property-info": "^6.4|^7.0",
  8691. "symfony/serializer": "^6.4.3|^7.0.3"
  8692. },
  8693. "type": "library",
  8694. "autoload": {
  8695. "psr-4": {
  8696. "Symfony\\Component\\Mime\\": ""
  8697. },
  8698. "exclude-from-classmap": [
  8699. "/Tests/"
  8700. ]
  8701. },
  8702. "notification-url": "https://packagist.org/downloads/",
  8703. "license": [
  8704. "MIT"
  8705. ],
  8706. "authors": [
  8707. {
  8708. "name": "Fabien Potencier",
  8709. "email": "fabien@symfony.com"
  8710. },
  8711. {
  8712. "name": "Symfony Community",
  8713. "homepage": "https://symfony.com/contributors"
  8714. }
  8715. ],
  8716. "description": "Allows manipulating MIME messages",
  8717. "homepage": "https://symfony.com",
  8718. "keywords": [
  8719. "mime",
  8720. "mime-type"
  8721. ],
  8722. "support": {
  8723. "source": "https://github.com/symfony/mime/tree/v7.2.4"
  8724. },
  8725. "funding": [
  8726. {
  8727. "url": "https://symfony.com/sponsor",
  8728. "type": "custom"
  8729. },
  8730. {
  8731. "url": "https://github.com/fabpot",
  8732. "type": "github"
  8733. },
  8734. {
  8735. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8736. "type": "tidelift"
  8737. }
  8738. ],
  8739. "time": "2025-02-19T08:51:20+00:00"
  8740. },
  8741. {
  8742. "name": "symfony/polyfill-ctype",
  8743. "version": "v1.31.0",
  8744. "source": {
  8745. "type": "git",
  8746. "url": "https://github.com/symfony/polyfill-ctype.git",
  8747. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  8748. },
  8749. "dist": {
  8750. "type": "zip",
  8751. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  8752. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  8753. "shasum": ""
  8754. },
  8755. "require": {
  8756. "php": ">=7.2"
  8757. },
  8758. "provide": {
  8759. "ext-ctype": "*"
  8760. },
  8761. "suggest": {
  8762. "ext-ctype": "For best performance"
  8763. },
  8764. "type": "library",
  8765. "extra": {
  8766. "thanks": {
  8767. "url": "https://github.com/symfony/polyfill",
  8768. "name": "symfony/polyfill"
  8769. }
  8770. },
  8771. "autoload": {
  8772. "files": [
  8773. "bootstrap.php"
  8774. ],
  8775. "psr-4": {
  8776. "Symfony\\Polyfill\\Ctype\\": ""
  8777. }
  8778. },
  8779. "notification-url": "https://packagist.org/downloads/",
  8780. "license": [
  8781. "MIT"
  8782. ],
  8783. "authors": [
  8784. {
  8785. "name": "Gert de Pagter",
  8786. "email": "BackEndTea@gmail.com"
  8787. },
  8788. {
  8789. "name": "Symfony Community",
  8790. "homepage": "https://symfony.com/contributors"
  8791. }
  8792. ],
  8793. "description": "Symfony polyfill for ctype functions",
  8794. "homepage": "https://symfony.com",
  8795. "keywords": [
  8796. "compatibility",
  8797. "ctype",
  8798. "polyfill",
  8799. "portable"
  8800. ],
  8801. "support": {
  8802. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  8803. },
  8804. "funding": [
  8805. {
  8806. "url": "https://symfony.com/sponsor",
  8807. "type": "custom"
  8808. },
  8809. {
  8810. "url": "https://github.com/fabpot",
  8811. "type": "github"
  8812. },
  8813. {
  8814. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8815. "type": "tidelift"
  8816. }
  8817. ],
  8818. "time": "2024-09-09T11:45:10+00:00"
  8819. },
  8820. {
  8821. "name": "symfony/polyfill-intl-grapheme",
  8822. "version": "v1.31.0",
  8823. "source": {
  8824. "type": "git",
  8825. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  8826. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  8827. },
  8828. "dist": {
  8829. "type": "zip",
  8830. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  8831. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  8832. "shasum": ""
  8833. },
  8834. "require": {
  8835. "php": ">=7.2"
  8836. },
  8837. "suggest": {
  8838. "ext-intl": "For best performance"
  8839. },
  8840. "type": "library",
  8841. "extra": {
  8842. "thanks": {
  8843. "url": "https://github.com/symfony/polyfill",
  8844. "name": "symfony/polyfill"
  8845. }
  8846. },
  8847. "autoload": {
  8848. "files": [
  8849. "bootstrap.php"
  8850. ],
  8851. "psr-4": {
  8852. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  8853. }
  8854. },
  8855. "notification-url": "https://packagist.org/downloads/",
  8856. "license": [
  8857. "MIT"
  8858. ],
  8859. "authors": [
  8860. {
  8861. "name": "Nicolas Grekas",
  8862. "email": "p@tchwork.com"
  8863. },
  8864. {
  8865. "name": "Symfony Community",
  8866. "homepage": "https://symfony.com/contributors"
  8867. }
  8868. ],
  8869. "description": "Symfony polyfill for intl's grapheme_* functions",
  8870. "homepage": "https://symfony.com",
  8871. "keywords": [
  8872. "compatibility",
  8873. "grapheme",
  8874. "intl",
  8875. "polyfill",
  8876. "portable",
  8877. "shim"
  8878. ],
  8879. "support": {
  8880. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  8881. },
  8882. "funding": [
  8883. {
  8884. "url": "https://symfony.com/sponsor",
  8885. "type": "custom"
  8886. },
  8887. {
  8888. "url": "https://github.com/fabpot",
  8889. "type": "github"
  8890. },
  8891. {
  8892. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8893. "type": "tidelift"
  8894. }
  8895. ],
  8896. "time": "2024-09-09T11:45:10+00:00"
  8897. },
  8898. {
  8899. "name": "symfony/polyfill-intl-idn",
  8900. "version": "v1.31.0",
  8901. "source": {
  8902. "type": "git",
  8903. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  8904. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  8905. },
  8906. "dist": {
  8907. "type": "zip",
  8908. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  8909. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  8910. "shasum": ""
  8911. },
  8912. "require": {
  8913. "php": ">=7.2",
  8914. "symfony/polyfill-intl-normalizer": "^1.10"
  8915. },
  8916. "suggest": {
  8917. "ext-intl": "For best performance"
  8918. },
  8919. "type": "library",
  8920. "extra": {
  8921. "thanks": {
  8922. "url": "https://github.com/symfony/polyfill",
  8923. "name": "symfony/polyfill"
  8924. }
  8925. },
  8926. "autoload": {
  8927. "files": [
  8928. "bootstrap.php"
  8929. ],
  8930. "psr-4": {
  8931. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  8932. }
  8933. },
  8934. "notification-url": "https://packagist.org/downloads/",
  8935. "license": [
  8936. "MIT"
  8937. ],
  8938. "authors": [
  8939. {
  8940. "name": "Laurent Bassin",
  8941. "email": "laurent@bassin.info"
  8942. },
  8943. {
  8944. "name": "Trevor Rowbotham",
  8945. "email": "trevor.rowbotham@pm.me"
  8946. },
  8947. {
  8948. "name": "Symfony Community",
  8949. "homepage": "https://symfony.com/contributors"
  8950. }
  8951. ],
  8952. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  8953. "homepage": "https://symfony.com",
  8954. "keywords": [
  8955. "compatibility",
  8956. "idn",
  8957. "intl",
  8958. "polyfill",
  8959. "portable",
  8960. "shim"
  8961. ],
  8962. "support": {
  8963. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  8964. },
  8965. "funding": [
  8966. {
  8967. "url": "https://symfony.com/sponsor",
  8968. "type": "custom"
  8969. },
  8970. {
  8971. "url": "https://github.com/fabpot",
  8972. "type": "github"
  8973. },
  8974. {
  8975. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  8976. "type": "tidelift"
  8977. }
  8978. ],
  8979. "time": "2024-09-09T11:45:10+00:00"
  8980. },
  8981. {
  8982. "name": "symfony/polyfill-intl-normalizer",
  8983. "version": "v1.31.0",
  8984. "source": {
  8985. "type": "git",
  8986. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  8987. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  8988. },
  8989. "dist": {
  8990. "type": "zip",
  8991. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  8992. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  8993. "shasum": ""
  8994. },
  8995. "require": {
  8996. "php": ">=7.2"
  8997. },
  8998. "suggest": {
  8999. "ext-intl": "For best performance"
  9000. },
  9001. "type": "library",
  9002. "extra": {
  9003. "thanks": {
  9004. "url": "https://github.com/symfony/polyfill",
  9005. "name": "symfony/polyfill"
  9006. }
  9007. },
  9008. "autoload": {
  9009. "files": [
  9010. "bootstrap.php"
  9011. ],
  9012. "psr-4": {
  9013. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  9014. },
  9015. "classmap": [
  9016. "Resources/stubs"
  9017. ]
  9018. },
  9019. "notification-url": "https://packagist.org/downloads/",
  9020. "license": [
  9021. "MIT"
  9022. ],
  9023. "authors": [
  9024. {
  9025. "name": "Nicolas Grekas",
  9026. "email": "p@tchwork.com"
  9027. },
  9028. {
  9029. "name": "Symfony Community",
  9030. "homepage": "https://symfony.com/contributors"
  9031. }
  9032. ],
  9033. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  9034. "homepage": "https://symfony.com",
  9035. "keywords": [
  9036. "compatibility",
  9037. "intl",
  9038. "normalizer",
  9039. "polyfill",
  9040. "portable",
  9041. "shim"
  9042. ],
  9043. "support": {
  9044. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  9045. },
  9046. "funding": [
  9047. {
  9048. "url": "https://symfony.com/sponsor",
  9049. "type": "custom"
  9050. },
  9051. {
  9052. "url": "https://github.com/fabpot",
  9053. "type": "github"
  9054. },
  9055. {
  9056. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9057. "type": "tidelift"
  9058. }
  9059. ],
  9060. "time": "2024-09-09T11:45:10+00:00"
  9061. },
  9062. {
  9063. "name": "symfony/polyfill-mbstring",
  9064. "version": "v1.31.0",
  9065. "source": {
  9066. "type": "git",
  9067. "url": "https://github.com/symfony/polyfill-mbstring.git",
  9068. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  9069. },
  9070. "dist": {
  9071. "type": "zip",
  9072. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  9073. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  9074. "shasum": ""
  9075. },
  9076. "require": {
  9077. "php": ">=7.2"
  9078. },
  9079. "provide": {
  9080. "ext-mbstring": "*"
  9081. },
  9082. "suggest": {
  9083. "ext-mbstring": "For best performance"
  9084. },
  9085. "type": "library",
  9086. "extra": {
  9087. "thanks": {
  9088. "url": "https://github.com/symfony/polyfill",
  9089. "name": "symfony/polyfill"
  9090. }
  9091. },
  9092. "autoload": {
  9093. "files": [
  9094. "bootstrap.php"
  9095. ],
  9096. "psr-4": {
  9097. "Symfony\\Polyfill\\Mbstring\\": ""
  9098. }
  9099. },
  9100. "notification-url": "https://packagist.org/downloads/",
  9101. "license": [
  9102. "MIT"
  9103. ],
  9104. "authors": [
  9105. {
  9106. "name": "Nicolas Grekas",
  9107. "email": "p@tchwork.com"
  9108. },
  9109. {
  9110. "name": "Symfony Community",
  9111. "homepage": "https://symfony.com/contributors"
  9112. }
  9113. ],
  9114. "description": "Symfony polyfill for the Mbstring extension",
  9115. "homepage": "https://symfony.com",
  9116. "keywords": [
  9117. "compatibility",
  9118. "mbstring",
  9119. "polyfill",
  9120. "portable",
  9121. "shim"
  9122. ],
  9123. "support": {
  9124. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  9125. },
  9126. "funding": [
  9127. {
  9128. "url": "https://symfony.com/sponsor",
  9129. "type": "custom"
  9130. },
  9131. {
  9132. "url": "https://github.com/fabpot",
  9133. "type": "github"
  9134. },
  9135. {
  9136. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9137. "type": "tidelift"
  9138. }
  9139. ],
  9140. "time": "2024-09-09T11:45:10+00:00"
  9141. },
  9142. {
  9143. "name": "symfony/polyfill-php80",
  9144. "version": "v1.31.0",
  9145. "source": {
  9146. "type": "git",
  9147. "url": "https://github.com/symfony/polyfill-php80.git",
  9148. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  9149. },
  9150. "dist": {
  9151. "type": "zip",
  9152. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9153. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  9154. "shasum": ""
  9155. },
  9156. "require": {
  9157. "php": ">=7.2"
  9158. },
  9159. "type": "library",
  9160. "extra": {
  9161. "thanks": {
  9162. "url": "https://github.com/symfony/polyfill",
  9163. "name": "symfony/polyfill"
  9164. }
  9165. },
  9166. "autoload": {
  9167. "files": [
  9168. "bootstrap.php"
  9169. ],
  9170. "psr-4": {
  9171. "Symfony\\Polyfill\\Php80\\": ""
  9172. },
  9173. "classmap": [
  9174. "Resources/stubs"
  9175. ]
  9176. },
  9177. "notification-url": "https://packagist.org/downloads/",
  9178. "license": [
  9179. "MIT"
  9180. ],
  9181. "authors": [
  9182. {
  9183. "name": "Ion Bazan",
  9184. "email": "ion.bazan@gmail.com"
  9185. },
  9186. {
  9187. "name": "Nicolas Grekas",
  9188. "email": "p@tchwork.com"
  9189. },
  9190. {
  9191. "name": "Symfony Community",
  9192. "homepage": "https://symfony.com/contributors"
  9193. }
  9194. ],
  9195. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  9196. "homepage": "https://symfony.com",
  9197. "keywords": [
  9198. "compatibility",
  9199. "polyfill",
  9200. "portable",
  9201. "shim"
  9202. ],
  9203. "support": {
  9204. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  9205. },
  9206. "funding": [
  9207. {
  9208. "url": "https://symfony.com/sponsor",
  9209. "type": "custom"
  9210. },
  9211. {
  9212. "url": "https://github.com/fabpot",
  9213. "type": "github"
  9214. },
  9215. {
  9216. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9217. "type": "tidelift"
  9218. }
  9219. ],
  9220. "time": "2024-09-09T11:45:10+00:00"
  9221. },
  9222. {
  9223. "name": "symfony/polyfill-php83",
  9224. "version": "v1.31.0",
  9225. "source": {
  9226. "type": "git",
  9227. "url": "https://github.com/symfony/polyfill-php83.git",
  9228. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  9229. },
  9230. "dist": {
  9231. "type": "zip",
  9232. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  9233. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  9234. "shasum": ""
  9235. },
  9236. "require": {
  9237. "php": ">=7.2"
  9238. },
  9239. "type": "library",
  9240. "extra": {
  9241. "thanks": {
  9242. "url": "https://github.com/symfony/polyfill",
  9243. "name": "symfony/polyfill"
  9244. }
  9245. },
  9246. "autoload": {
  9247. "files": [
  9248. "bootstrap.php"
  9249. ],
  9250. "psr-4": {
  9251. "Symfony\\Polyfill\\Php83\\": ""
  9252. },
  9253. "classmap": [
  9254. "Resources/stubs"
  9255. ]
  9256. },
  9257. "notification-url": "https://packagist.org/downloads/",
  9258. "license": [
  9259. "MIT"
  9260. ],
  9261. "authors": [
  9262. {
  9263. "name": "Nicolas Grekas",
  9264. "email": "p@tchwork.com"
  9265. },
  9266. {
  9267. "name": "Symfony Community",
  9268. "homepage": "https://symfony.com/contributors"
  9269. }
  9270. ],
  9271. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  9272. "homepage": "https://symfony.com",
  9273. "keywords": [
  9274. "compatibility",
  9275. "polyfill",
  9276. "portable",
  9277. "shim"
  9278. ],
  9279. "support": {
  9280. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  9281. },
  9282. "funding": [
  9283. {
  9284. "url": "https://symfony.com/sponsor",
  9285. "type": "custom"
  9286. },
  9287. {
  9288. "url": "https://github.com/fabpot",
  9289. "type": "github"
  9290. },
  9291. {
  9292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9293. "type": "tidelift"
  9294. }
  9295. ],
  9296. "time": "2024-09-09T11:45:10+00:00"
  9297. },
  9298. {
  9299. "name": "symfony/polyfill-uuid",
  9300. "version": "v1.31.0",
  9301. "source": {
  9302. "type": "git",
  9303. "url": "https://github.com/symfony/polyfill-uuid.git",
  9304. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  9305. },
  9306. "dist": {
  9307. "type": "zip",
  9308. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  9309. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  9310. "shasum": ""
  9311. },
  9312. "require": {
  9313. "php": ">=7.2"
  9314. },
  9315. "provide": {
  9316. "ext-uuid": "*"
  9317. },
  9318. "suggest": {
  9319. "ext-uuid": "For best performance"
  9320. },
  9321. "type": "library",
  9322. "extra": {
  9323. "thanks": {
  9324. "url": "https://github.com/symfony/polyfill",
  9325. "name": "symfony/polyfill"
  9326. }
  9327. },
  9328. "autoload": {
  9329. "files": [
  9330. "bootstrap.php"
  9331. ],
  9332. "psr-4": {
  9333. "Symfony\\Polyfill\\Uuid\\": ""
  9334. }
  9335. },
  9336. "notification-url": "https://packagist.org/downloads/",
  9337. "license": [
  9338. "MIT"
  9339. ],
  9340. "authors": [
  9341. {
  9342. "name": "Grégoire Pineau",
  9343. "email": "lyrixx@lyrixx.info"
  9344. },
  9345. {
  9346. "name": "Symfony Community",
  9347. "homepage": "https://symfony.com/contributors"
  9348. }
  9349. ],
  9350. "description": "Symfony polyfill for uuid functions",
  9351. "homepage": "https://symfony.com",
  9352. "keywords": [
  9353. "compatibility",
  9354. "polyfill",
  9355. "portable",
  9356. "uuid"
  9357. ],
  9358. "support": {
  9359. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  9360. },
  9361. "funding": [
  9362. {
  9363. "url": "https://symfony.com/sponsor",
  9364. "type": "custom"
  9365. },
  9366. {
  9367. "url": "https://github.com/fabpot",
  9368. "type": "github"
  9369. },
  9370. {
  9371. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9372. "type": "tidelift"
  9373. }
  9374. ],
  9375. "time": "2024-09-09T11:45:10+00:00"
  9376. },
  9377. {
  9378. "name": "symfony/process",
  9379. "version": "v7.2.4",
  9380. "source": {
  9381. "type": "git",
  9382. "url": "https://github.com/symfony/process.git",
  9383. "reference": "d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf"
  9384. },
  9385. "dist": {
  9386. "type": "zip",
  9387. "url": "https://api.github.com/repos/symfony/process/zipball/d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf",
  9388. "reference": "d8f411ff3c7ddc4ae9166fb388d1190a2df5b5cf",
  9389. "shasum": ""
  9390. },
  9391. "require": {
  9392. "php": ">=8.2"
  9393. },
  9394. "type": "library",
  9395. "autoload": {
  9396. "psr-4": {
  9397. "Symfony\\Component\\Process\\": ""
  9398. },
  9399. "exclude-from-classmap": [
  9400. "/Tests/"
  9401. ]
  9402. },
  9403. "notification-url": "https://packagist.org/downloads/",
  9404. "license": [
  9405. "MIT"
  9406. ],
  9407. "authors": [
  9408. {
  9409. "name": "Fabien Potencier",
  9410. "email": "fabien@symfony.com"
  9411. },
  9412. {
  9413. "name": "Symfony Community",
  9414. "homepage": "https://symfony.com/contributors"
  9415. }
  9416. ],
  9417. "description": "Executes commands in sub-processes",
  9418. "homepage": "https://symfony.com",
  9419. "support": {
  9420. "source": "https://github.com/symfony/process/tree/v7.2.4"
  9421. },
  9422. "funding": [
  9423. {
  9424. "url": "https://symfony.com/sponsor",
  9425. "type": "custom"
  9426. },
  9427. {
  9428. "url": "https://github.com/fabpot",
  9429. "type": "github"
  9430. },
  9431. {
  9432. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9433. "type": "tidelift"
  9434. }
  9435. ],
  9436. "time": "2025-02-05T08:33:46+00:00"
  9437. },
  9438. {
  9439. "name": "symfony/psr-http-message-bridge",
  9440. "version": "v7.2.0",
  9441. "source": {
  9442. "type": "git",
  9443. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  9444. "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f"
  9445. },
  9446. "dist": {
  9447. "type": "zip",
  9448. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/03f2f72319e7acaf2a9f6fcbe30ef17eec51594f",
  9449. "reference": "03f2f72319e7acaf2a9f6fcbe30ef17eec51594f",
  9450. "shasum": ""
  9451. },
  9452. "require": {
  9453. "php": ">=8.2",
  9454. "psr/http-message": "^1.0|^2.0",
  9455. "symfony/http-foundation": "^6.4|^7.0"
  9456. },
  9457. "conflict": {
  9458. "php-http/discovery": "<1.15",
  9459. "symfony/http-kernel": "<6.4"
  9460. },
  9461. "require-dev": {
  9462. "nyholm/psr7": "^1.1",
  9463. "php-http/discovery": "^1.15",
  9464. "psr/log": "^1.1.4|^2|^3",
  9465. "symfony/browser-kit": "^6.4|^7.0",
  9466. "symfony/config": "^6.4|^7.0",
  9467. "symfony/event-dispatcher": "^6.4|^7.0",
  9468. "symfony/framework-bundle": "^6.4|^7.0",
  9469. "symfony/http-kernel": "^6.4|^7.0"
  9470. },
  9471. "type": "symfony-bridge",
  9472. "autoload": {
  9473. "psr-4": {
  9474. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  9475. },
  9476. "exclude-from-classmap": [
  9477. "/Tests/"
  9478. ]
  9479. },
  9480. "notification-url": "https://packagist.org/downloads/",
  9481. "license": [
  9482. "MIT"
  9483. ],
  9484. "authors": [
  9485. {
  9486. "name": "Fabien Potencier",
  9487. "email": "fabien@symfony.com"
  9488. },
  9489. {
  9490. "name": "Symfony Community",
  9491. "homepage": "https://symfony.com/contributors"
  9492. }
  9493. ],
  9494. "description": "PSR HTTP message bridge",
  9495. "homepage": "https://symfony.com",
  9496. "keywords": [
  9497. "http",
  9498. "http-message",
  9499. "psr-17",
  9500. "psr-7"
  9501. ],
  9502. "support": {
  9503. "source": "https://github.com/symfony/psr-http-message-bridge/tree/v7.2.0"
  9504. },
  9505. "funding": [
  9506. {
  9507. "url": "https://symfony.com/sponsor",
  9508. "type": "custom"
  9509. },
  9510. {
  9511. "url": "https://github.com/fabpot",
  9512. "type": "github"
  9513. },
  9514. {
  9515. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9516. "type": "tidelift"
  9517. }
  9518. ],
  9519. "time": "2024-09-26T08:57:56+00:00"
  9520. },
  9521. {
  9522. "name": "symfony/routing",
  9523. "version": "v7.2.3",
  9524. "source": {
  9525. "type": "git",
  9526. "url": "https://github.com/symfony/routing.git",
  9527. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996"
  9528. },
  9529. "dist": {
  9530. "type": "zip",
  9531. "url": "https://api.github.com/repos/symfony/routing/zipball/ee9a67edc6baa33e5fae662f94f91fd262930996",
  9532. "reference": "ee9a67edc6baa33e5fae662f94f91fd262930996",
  9533. "shasum": ""
  9534. },
  9535. "require": {
  9536. "php": ">=8.2",
  9537. "symfony/deprecation-contracts": "^2.5|^3"
  9538. },
  9539. "conflict": {
  9540. "symfony/config": "<6.4",
  9541. "symfony/dependency-injection": "<6.4",
  9542. "symfony/yaml": "<6.4"
  9543. },
  9544. "require-dev": {
  9545. "psr/log": "^1|^2|^3",
  9546. "symfony/config": "^6.4|^7.0",
  9547. "symfony/dependency-injection": "^6.4|^7.0",
  9548. "symfony/expression-language": "^6.4|^7.0",
  9549. "symfony/http-foundation": "^6.4|^7.0",
  9550. "symfony/yaml": "^6.4|^7.0"
  9551. },
  9552. "type": "library",
  9553. "autoload": {
  9554. "psr-4": {
  9555. "Symfony\\Component\\Routing\\": ""
  9556. },
  9557. "exclude-from-classmap": [
  9558. "/Tests/"
  9559. ]
  9560. },
  9561. "notification-url": "https://packagist.org/downloads/",
  9562. "license": [
  9563. "MIT"
  9564. ],
  9565. "authors": [
  9566. {
  9567. "name": "Fabien Potencier",
  9568. "email": "fabien@symfony.com"
  9569. },
  9570. {
  9571. "name": "Symfony Community",
  9572. "homepage": "https://symfony.com/contributors"
  9573. }
  9574. ],
  9575. "description": "Maps an HTTP request to a set of configuration variables",
  9576. "homepage": "https://symfony.com",
  9577. "keywords": [
  9578. "router",
  9579. "routing",
  9580. "uri",
  9581. "url"
  9582. ],
  9583. "support": {
  9584. "source": "https://github.com/symfony/routing/tree/v7.2.3"
  9585. },
  9586. "funding": [
  9587. {
  9588. "url": "https://symfony.com/sponsor",
  9589. "type": "custom"
  9590. },
  9591. {
  9592. "url": "https://github.com/fabpot",
  9593. "type": "github"
  9594. },
  9595. {
  9596. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9597. "type": "tidelift"
  9598. }
  9599. ],
  9600. "time": "2025-01-17T10:56:55+00:00"
  9601. },
  9602. {
  9603. "name": "symfony/service-contracts",
  9604. "version": "v3.5.1",
  9605. "source": {
  9606. "type": "git",
  9607. "url": "https://github.com/symfony/service-contracts.git",
  9608. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  9609. },
  9610. "dist": {
  9611. "type": "zip",
  9612. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  9613. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  9614. "shasum": ""
  9615. },
  9616. "require": {
  9617. "php": ">=8.1",
  9618. "psr/container": "^1.1|^2.0",
  9619. "symfony/deprecation-contracts": "^2.5|^3"
  9620. },
  9621. "conflict": {
  9622. "ext-psr": "<1.1|>=2"
  9623. },
  9624. "type": "library",
  9625. "extra": {
  9626. "thanks": {
  9627. "url": "https://github.com/symfony/contracts",
  9628. "name": "symfony/contracts"
  9629. },
  9630. "branch-alias": {
  9631. "dev-main": "3.5-dev"
  9632. }
  9633. },
  9634. "autoload": {
  9635. "psr-4": {
  9636. "Symfony\\Contracts\\Service\\": ""
  9637. },
  9638. "exclude-from-classmap": [
  9639. "/Test/"
  9640. ]
  9641. },
  9642. "notification-url": "https://packagist.org/downloads/",
  9643. "license": [
  9644. "MIT"
  9645. ],
  9646. "authors": [
  9647. {
  9648. "name": "Nicolas Grekas",
  9649. "email": "p@tchwork.com"
  9650. },
  9651. {
  9652. "name": "Symfony Community",
  9653. "homepage": "https://symfony.com/contributors"
  9654. }
  9655. ],
  9656. "description": "Generic abstractions related to writing services",
  9657. "homepage": "https://symfony.com",
  9658. "keywords": [
  9659. "abstractions",
  9660. "contracts",
  9661. "decoupling",
  9662. "interfaces",
  9663. "interoperability",
  9664. "standards"
  9665. ],
  9666. "support": {
  9667. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  9668. },
  9669. "funding": [
  9670. {
  9671. "url": "https://symfony.com/sponsor",
  9672. "type": "custom"
  9673. },
  9674. {
  9675. "url": "https://github.com/fabpot",
  9676. "type": "github"
  9677. },
  9678. {
  9679. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9680. "type": "tidelift"
  9681. }
  9682. ],
  9683. "time": "2024-09-25T14:20:29+00:00"
  9684. },
  9685. {
  9686. "name": "symfony/string",
  9687. "version": "v7.2.0",
  9688. "source": {
  9689. "type": "git",
  9690. "url": "https://github.com/symfony/string.git",
  9691. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82"
  9692. },
  9693. "dist": {
  9694. "type": "zip",
  9695. "url": "https://api.github.com/repos/symfony/string/zipball/446e0d146f991dde3e73f45f2c97a9faad773c82",
  9696. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82",
  9697. "shasum": ""
  9698. },
  9699. "require": {
  9700. "php": ">=8.2",
  9701. "symfony/polyfill-ctype": "~1.8",
  9702. "symfony/polyfill-intl-grapheme": "~1.0",
  9703. "symfony/polyfill-intl-normalizer": "~1.0",
  9704. "symfony/polyfill-mbstring": "~1.0"
  9705. },
  9706. "conflict": {
  9707. "symfony/translation-contracts": "<2.5"
  9708. },
  9709. "require-dev": {
  9710. "symfony/emoji": "^7.1",
  9711. "symfony/error-handler": "^6.4|^7.0",
  9712. "symfony/http-client": "^6.4|^7.0",
  9713. "symfony/intl": "^6.4|^7.0",
  9714. "symfony/translation-contracts": "^2.5|^3.0",
  9715. "symfony/var-exporter": "^6.4|^7.0"
  9716. },
  9717. "type": "library",
  9718. "autoload": {
  9719. "files": [
  9720. "Resources/functions.php"
  9721. ],
  9722. "psr-4": {
  9723. "Symfony\\Component\\String\\": ""
  9724. },
  9725. "exclude-from-classmap": [
  9726. "/Tests/"
  9727. ]
  9728. },
  9729. "notification-url": "https://packagist.org/downloads/",
  9730. "license": [
  9731. "MIT"
  9732. ],
  9733. "authors": [
  9734. {
  9735. "name": "Nicolas Grekas",
  9736. "email": "p@tchwork.com"
  9737. },
  9738. {
  9739. "name": "Symfony Community",
  9740. "homepage": "https://symfony.com/contributors"
  9741. }
  9742. ],
  9743. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  9744. "homepage": "https://symfony.com",
  9745. "keywords": [
  9746. "grapheme",
  9747. "i18n",
  9748. "string",
  9749. "unicode",
  9750. "utf-8",
  9751. "utf8"
  9752. ],
  9753. "support": {
  9754. "source": "https://github.com/symfony/string/tree/v7.2.0"
  9755. },
  9756. "funding": [
  9757. {
  9758. "url": "https://symfony.com/sponsor",
  9759. "type": "custom"
  9760. },
  9761. {
  9762. "url": "https://github.com/fabpot",
  9763. "type": "github"
  9764. },
  9765. {
  9766. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9767. "type": "tidelift"
  9768. }
  9769. ],
  9770. "time": "2024-11-13T13:31:26+00:00"
  9771. },
  9772. {
  9773. "name": "symfony/translation",
  9774. "version": "v7.2.4",
  9775. "source": {
  9776. "type": "git",
  9777. "url": "https://github.com/symfony/translation.git",
  9778. "reference": "283856e6981286cc0d800b53bd5703e8e363f05a"
  9779. },
  9780. "dist": {
  9781. "type": "zip",
  9782. "url": "https://api.github.com/repos/symfony/translation/zipball/283856e6981286cc0d800b53bd5703e8e363f05a",
  9783. "reference": "283856e6981286cc0d800b53bd5703e8e363f05a",
  9784. "shasum": ""
  9785. },
  9786. "require": {
  9787. "php": ">=8.2",
  9788. "symfony/deprecation-contracts": "^2.5|^3",
  9789. "symfony/polyfill-mbstring": "~1.0",
  9790. "symfony/translation-contracts": "^2.5|^3.0"
  9791. },
  9792. "conflict": {
  9793. "symfony/config": "<6.4",
  9794. "symfony/console": "<6.4",
  9795. "symfony/dependency-injection": "<6.4",
  9796. "symfony/http-client-contracts": "<2.5",
  9797. "symfony/http-kernel": "<6.4",
  9798. "symfony/service-contracts": "<2.5",
  9799. "symfony/twig-bundle": "<6.4",
  9800. "symfony/yaml": "<6.4"
  9801. },
  9802. "provide": {
  9803. "symfony/translation-implementation": "2.3|3.0"
  9804. },
  9805. "require-dev": {
  9806. "nikic/php-parser": "^4.18|^5.0",
  9807. "psr/log": "^1|^2|^3",
  9808. "symfony/config": "^6.4|^7.0",
  9809. "symfony/console": "^6.4|^7.0",
  9810. "symfony/dependency-injection": "^6.4|^7.0",
  9811. "symfony/finder": "^6.4|^7.0",
  9812. "symfony/http-client-contracts": "^2.5|^3.0",
  9813. "symfony/http-kernel": "^6.4|^7.0",
  9814. "symfony/intl": "^6.4|^7.0",
  9815. "symfony/polyfill-intl-icu": "^1.21",
  9816. "symfony/routing": "^6.4|^7.0",
  9817. "symfony/service-contracts": "^2.5|^3",
  9818. "symfony/yaml": "^6.4|^7.0"
  9819. },
  9820. "type": "library",
  9821. "autoload": {
  9822. "files": [
  9823. "Resources/functions.php"
  9824. ],
  9825. "psr-4": {
  9826. "Symfony\\Component\\Translation\\": ""
  9827. },
  9828. "exclude-from-classmap": [
  9829. "/Tests/"
  9830. ]
  9831. },
  9832. "notification-url": "https://packagist.org/downloads/",
  9833. "license": [
  9834. "MIT"
  9835. ],
  9836. "authors": [
  9837. {
  9838. "name": "Fabien Potencier",
  9839. "email": "fabien@symfony.com"
  9840. },
  9841. {
  9842. "name": "Symfony Community",
  9843. "homepage": "https://symfony.com/contributors"
  9844. }
  9845. ],
  9846. "description": "Provides tools to internationalize your application",
  9847. "homepage": "https://symfony.com",
  9848. "support": {
  9849. "source": "https://github.com/symfony/translation/tree/v7.2.4"
  9850. },
  9851. "funding": [
  9852. {
  9853. "url": "https://symfony.com/sponsor",
  9854. "type": "custom"
  9855. },
  9856. {
  9857. "url": "https://github.com/fabpot",
  9858. "type": "github"
  9859. },
  9860. {
  9861. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9862. "type": "tidelift"
  9863. }
  9864. ],
  9865. "time": "2025-02-13T10:27:23+00:00"
  9866. },
  9867. {
  9868. "name": "symfony/translation-contracts",
  9869. "version": "v3.5.1",
  9870. "source": {
  9871. "type": "git",
  9872. "url": "https://github.com/symfony/translation-contracts.git",
  9873. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  9874. },
  9875. "dist": {
  9876. "type": "zip",
  9877. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  9878. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  9879. "shasum": ""
  9880. },
  9881. "require": {
  9882. "php": ">=8.1"
  9883. },
  9884. "type": "library",
  9885. "extra": {
  9886. "thanks": {
  9887. "url": "https://github.com/symfony/contracts",
  9888. "name": "symfony/contracts"
  9889. },
  9890. "branch-alias": {
  9891. "dev-main": "3.5-dev"
  9892. }
  9893. },
  9894. "autoload": {
  9895. "psr-4": {
  9896. "Symfony\\Contracts\\Translation\\": ""
  9897. },
  9898. "exclude-from-classmap": [
  9899. "/Test/"
  9900. ]
  9901. },
  9902. "notification-url": "https://packagist.org/downloads/",
  9903. "license": [
  9904. "MIT"
  9905. ],
  9906. "authors": [
  9907. {
  9908. "name": "Nicolas Grekas",
  9909. "email": "p@tchwork.com"
  9910. },
  9911. {
  9912. "name": "Symfony Community",
  9913. "homepage": "https://symfony.com/contributors"
  9914. }
  9915. ],
  9916. "description": "Generic abstractions related to translation",
  9917. "homepage": "https://symfony.com",
  9918. "keywords": [
  9919. "abstractions",
  9920. "contracts",
  9921. "decoupling",
  9922. "interfaces",
  9923. "interoperability",
  9924. "standards"
  9925. ],
  9926. "support": {
  9927. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  9928. },
  9929. "funding": [
  9930. {
  9931. "url": "https://symfony.com/sponsor",
  9932. "type": "custom"
  9933. },
  9934. {
  9935. "url": "https://github.com/fabpot",
  9936. "type": "github"
  9937. },
  9938. {
  9939. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9940. "type": "tidelift"
  9941. }
  9942. ],
  9943. "time": "2024-09-25T14:20:29+00:00"
  9944. },
  9945. {
  9946. "name": "symfony/uid",
  9947. "version": "v7.2.0",
  9948. "source": {
  9949. "type": "git",
  9950. "url": "https://github.com/symfony/uid.git",
  9951. "reference": "2d294d0c48df244c71c105a169d0190bfb080426"
  9952. },
  9953. "dist": {
  9954. "type": "zip",
  9955. "url": "https://api.github.com/repos/symfony/uid/zipball/2d294d0c48df244c71c105a169d0190bfb080426",
  9956. "reference": "2d294d0c48df244c71c105a169d0190bfb080426",
  9957. "shasum": ""
  9958. },
  9959. "require": {
  9960. "php": ">=8.2",
  9961. "symfony/polyfill-uuid": "^1.15"
  9962. },
  9963. "require-dev": {
  9964. "symfony/console": "^6.4|^7.0"
  9965. },
  9966. "type": "library",
  9967. "autoload": {
  9968. "psr-4": {
  9969. "Symfony\\Component\\Uid\\": ""
  9970. },
  9971. "exclude-from-classmap": [
  9972. "/Tests/"
  9973. ]
  9974. },
  9975. "notification-url": "https://packagist.org/downloads/",
  9976. "license": [
  9977. "MIT"
  9978. ],
  9979. "authors": [
  9980. {
  9981. "name": "Grégoire Pineau",
  9982. "email": "lyrixx@lyrixx.info"
  9983. },
  9984. {
  9985. "name": "Nicolas Grekas",
  9986. "email": "p@tchwork.com"
  9987. },
  9988. {
  9989. "name": "Symfony Community",
  9990. "homepage": "https://symfony.com/contributors"
  9991. }
  9992. ],
  9993. "description": "Provides an object-oriented API to generate and represent UIDs",
  9994. "homepage": "https://symfony.com",
  9995. "keywords": [
  9996. "UID",
  9997. "ulid",
  9998. "uuid"
  9999. ],
  10000. "support": {
  10001. "source": "https://github.com/symfony/uid/tree/v7.2.0"
  10002. },
  10003. "funding": [
  10004. {
  10005. "url": "https://symfony.com/sponsor",
  10006. "type": "custom"
  10007. },
  10008. {
  10009. "url": "https://github.com/fabpot",
  10010. "type": "github"
  10011. },
  10012. {
  10013. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10014. "type": "tidelift"
  10015. }
  10016. ],
  10017. "time": "2024-09-25T14:21:43+00:00"
  10018. },
  10019. {
  10020. "name": "symfony/var-dumper",
  10021. "version": "v7.2.3",
  10022. "source": {
  10023. "type": "git",
  10024. "url": "https://github.com/symfony/var-dumper.git",
  10025. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a"
  10026. },
  10027. "dist": {
  10028. "type": "zip",
  10029. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/82b478c69745d8878eb60f9a049a4d584996f73a",
  10030. "reference": "82b478c69745d8878eb60f9a049a4d584996f73a",
  10031. "shasum": ""
  10032. },
  10033. "require": {
  10034. "php": ">=8.2",
  10035. "symfony/polyfill-mbstring": "~1.0"
  10036. },
  10037. "conflict": {
  10038. "symfony/console": "<6.4"
  10039. },
  10040. "require-dev": {
  10041. "ext-iconv": "*",
  10042. "symfony/console": "^6.4|^7.0",
  10043. "symfony/http-kernel": "^6.4|^7.0",
  10044. "symfony/process": "^6.4|^7.0",
  10045. "symfony/uid": "^6.4|^7.0",
  10046. "twig/twig": "^3.12"
  10047. },
  10048. "bin": [
  10049. "Resources/bin/var-dump-server"
  10050. ],
  10051. "type": "library",
  10052. "autoload": {
  10053. "files": [
  10054. "Resources/functions/dump.php"
  10055. ],
  10056. "psr-4": {
  10057. "Symfony\\Component\\VarDumper\\": ""
  10058. },
  10059. "exclude-from-classmap": [
  10060. "/Tests/"
  10061. ]
  10062. },
  10063. "notification-url": "https://packagist.org/downloads/",
  10064. "license": [
  10065. "MIT"
  10066. ],
  10067. "authors": [
  10068. {
  10069. "name": "Nicolas Grekas",
  10070. "email": "p@tchwork.com"
  10071. },
  10072. {
  10073. "name": "Symfony Community",
  10074. "homepage": "https://symfony.com/contributors"
  10075. }
  10076. ],
  10077. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  10078. "homepage": "https://symfony.com",
  10079. "keywords": [
  10080. "debug",
  10081. "dump"
  10082. ],
  10083. "support": {
  10084. "source": "https://github.com/symfony/var-dumper/tree/v7.2.3"
  10085. },
  10086. "funding": [
  10087. {
  10088. "url": "https://symfony.com/sponsor",
  10089. "type": "custom"
  10090. },
  10091. {
  10092. "url": "https://github.com/fabpot",
  10093. "type": "github"
  10094. },
  10095. {
  10096. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10097. "type": "tidelift"
  10098. }
  10099. ],
  10100. "time": "2025-01-17T11:39:41+00:00"
  10101. },
  10102. {
  10103. "name": "symfony/var-exporter",
  10104. "version": "v7.2.4",
  10105. "source": {
  10106. "type": "git",
  10107. "url": "https://github.com/symfony/var-exporter.git",
  10108. "reference": "4ede73aa7a73d81506002d2caadbbdad1ef5b69a"
  10109. },
  10110. "dist": {
  10111. "type": "zip",
  10112. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/4ede73aa7a73d81506002d2caadbbdad1ef5b69a",
  10113. "reference": "4ede73aa7a73d81506002d2caadbbdad1ef5b69a",
  10114. "shasum": ""
  10115. },
  10116. "require": {
  10117. "php": ">=8.2"
  10118. },
  10119. "require-dev": {
  10120. "symfony/property-access": "^6.4|^7.0",
  10121. "symfony/serializer": "^6.4|^7.0",
  10122. "symfony/var-dumper": "^6.4|^7.0"
  10123. },
  10124. "type": "library",
  10125. "autoload": {
  10126. "psr-4": {
  10127. "Symfony\\Component\\VarExporter\\": ""
  10128. },
  10129. "exclude-from-classmap": [
  10130. "/Tests/"
  10131. ]
  10132. },
  10133. "notification-url": "https://packagist.org/downloads/",
  10134. "license": [
  10135. "MIT"
  10136. ],
  10137. "authors": [
  10138. {
  10139. "name": "Nicolas Grekas",
  10140. "email": "p@tchwork.com"
  10141. },
  10142. {
  10143. "name": "Symfony Community",
  10144. "homepage": "https://symfony.com/contributors"
  10145. }
  10146. ],
  10147. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  10148. "homepage": "https://symfony.com",
  10149. "keywords": [
  10150. "clone",
  10151. "construct",
  10152. "export",
  10153. "hydrate",
  10154. "instantiate",
  10155. "lazy-loading",
  10156. "proxy",
  10157. "serialize"
  10158. ],
  10159. "support": {
  10160. "source": "https://github.com/symfony/var-exporter/tree/v7.2.4"
  10161. },
  10162. "funding": [
  10163. {
  10164. "url": "https://symfony.com/sponsor",
  10165. "type": "custom"
  10166. },
  10167. {
  10168. "url": "https://github.com/fabpot",
  10169. "type": "github"
  10170. },
  10171. {
  10172. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10173. "type": "tidelift"
  10174. }
  10175. ],
  10176. "time": "2025-02-13T10:27:23+00:00"
  10177. },
  10178. {
  10179. "name": "tijsverkoyen/css-to-inline-styles",
  10180. "version": "v2.3.0",
  10181. "source": {
  10182. "type": "git",
  10183. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  10184. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  10185. },
  10186. "dist": {
  10187. "type": "zip",
  10188. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  10189. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  10190. "shasum": ""
  10191. },
  10192. "require": {
  10193. "ext-dom": "*",
  10194. "ext-libxml": "*",
  10195. "php": "^7.4 || ^8.0",
  10196. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  10197. },
  10198. "require-dev": {
  10199. "phpstan/phpstan": "^2.0",
  10200. "phpstan/phpstan-phpunit": "^2.0",
  10201. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  10202. },
  10203. "type": "library",
  10204. "extra": {
  10205. "branch-alias": {
  10206. "dev-master": "2.x-dev"
  10207. }
  10208. },
  10209. "autoload": {
  10210. "psr-4": {
  10211. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  10212. }
  10213. },
  10214. "notification-url": "https://packagist.org/downloads/",
  10215. "license": [
  10216. "BSD-3-Clause"
  10217. ],
  10218. "authors": [
  10219. {
  10220. "name": "Tijs Verkoyen",
  10221. "email": "css_to_inline_styles@verkoyen.eu",
  10222. "role": "Developer"
  10223. }
  10224. ],
  10225. "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.",
  10226. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  10227. "support": {
  10228. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  10229. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  10230. },
  10231. "time": "2024-12-21T16:25:41+00:00"
  10232. },
  10233. {
  10234. "name": "vlucas/phpdotenv",
  10235. "version": "v5.6.1",
  10236. "source": {
  10237. "type": "git",
  10238. "url": "https://github.com/vlucas/phpdotenv.git",
  10239. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  10240. },
  10241. "dist": {
  10242. "type": "zip",
  10243. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  10244. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  10245. "shasum": ""
  10246. },
  10247. "require": {
  10248. "ext-pcre": "*",
  10249. "graham-campbell/result-type": "^1.1.3",
  10250. "php": "^7.2.5 || ^8.0",
  10251. "phpoption/phpoption": "^1.9.3",
  10252. "symfony/polyfill-ctype": "^1.24",
  10253. "symfony/polyfill-mbstring": "^1.24",
  10254. "symfony/polyfill-php80": "^1.24"
  10255. },
  10256. "require-dev": {
  10257. "bamarni/composer-bin-plugin": "^1.8.2",
  10258. "ext-filter": "*",
  10259. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  10260. },
  10261. "suggest": {
  10262. "ext-filter": "Required to use the boolean validator."
  10263. },
  10264. "type": "library",
  10265. "extra": {
  10266. "bamarni-bin": {
  10267. "bin-links": true,
  10268. "forward-command": false
  10269. },
  10270. "branch-alias": {
  10271. "dev-master": "5.6-dev"
  10272. }
  10273. },
  10274. "autoload": {
  10275. "psr-4": {
  10276. "Dotenv\\": "src/"
  10277. }
  10278. },
  10279. "notification-url": "https://packagist.org/downloads/",
  10280. "license": [
  10281. "BSD-3-Clause"
  10282. ],
  10283. "authors": [
  10284. {
  10285. "name": "Graham Campbell",
  10286. "email": "hello@gjcampbell.co.uk",
  10287. "homepage": "https://github.com/GrahamCampbell"
  10288. },
  10289. {
  10290. "name": "Vance Lucas",
  10291. "email": "vance@vancelucas.com",
  10292. "homepage": "https://github.com/vlucas"
  10293. }
  10294. ],
  10295. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  10296. "keywords": [
  10297. "dotenv",
  10298. "env",
  10299. "environment"
  10300. ],
  10301. "support": {
  10302. "issues": "https://github.com/vlucas/phpdotenv/issues",
  10303. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  10304. },
  10305. "funding": [
  10306. {
  10307. "url": "https://github.com/GrahamCampbell",
  10308. "type": "github"
  10309. },
  10310. {
  10311. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  10312. "type": "tidelift"
  10313. }
  10314. ],
  10315. "time": "2024-07-20T21:52:34+00:00"
  10316. },
  10317. {
  10318. "name": "voku/portable-ascii",
  10319. "version": "2.0.3",
  10320. "source": {
  10321. "type": "git",
  10322. "url": "https://github.com/voku/portable-ascii.git",
  10323. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  10324. },
  10325. "dist": {
  10326. "type": "zip",
  10327. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  10328. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  10329. "shasum": ""
  10330. },
  10331. "require": {
  10332. "php": ">=7.0.0"
  10333. },
  10334. "require-dev": {
  10335. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  10336. },
  10337. "suggest": {
  10338. "ext-intl": "Use Intl for transliterator_transliterate() support"
  10339. },
  10340. "type": "library",
  10341. "autoload": {
  10342. "psr-4": {
  10343. "voku\\": "src/voku/"
  10344. }
  10345. },
  10346. "notification-url": "https://packagist.org/downloads/",
  10347. "license": [
  10348. "MIT"
  10349. ],
  10350. "authors": [
  10351. {
  10352. "name": "Lars Moelleken",
  10353. "homepage": "https://www.moelleken.org/"
  10354. }
  10355. ],
  10356. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  10357. "homepage": "https://github.com/voku/portable-ascii",
  10358. "keywords": [
  10359. "ascii",
  10360. "clean",
  10361. "php"
  10362. ],
  10363. "support": {
  10364. "issues": "https://github.com/voku/portable-ascii/issues",
  10365. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  10366. },
  10367. "funding": [
  10368. {
  10369. "url": "https://www.paypal.me/moelleken",
  10370. "type": "custom"
  10371. },
  10372. {
  10373. "url": "https://github.com/voku",
  10374. "type": "github"
  10375. },
  10376. {
  10377. "url": "https://opencollective.com/portable-ascii",
  10378. "type": "open_collective"
  10379. },
  10380. {
  10381. "url": "https://www.patreon.com/voku",
  10382. "type": "patreon"
  10383. },
  10384. {
  10385. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  10386. "type": "tidelift"
  10387. }
  10388. ],
  10389. "time": "2024-11-21T01:49:47+00:00"
  10390. },
  10391. {
  10392. "name": "web-token/jwt-library",
  10393. "version": "3.4.7",
  10394. "source": {
  10395. "type": "git",
  10396. "url": "https://github.com/web-token/jwt-library.git",
  10397. "reference": "1a25c8ced3e2b3c31d32dcfad215cbd8cb812f28"
  10398. },
  10399. "dist": {
  10400. "type": "zip",
  10401. "url": "https://api.github.com/repos/web-token/jwt-library/zipball/1a25c8ced3e2b3c31d32dcfad215cbd8cb812f28",
  10402. "reference": "1a25c8ced3e2b3c31d32dcfad215cbd8cb812f28",
  10403. "shasum": ""
  10404. },
  10405. "require": {
  10406. "brick/math": "^0.9|^0.10|^0.11|^0.12",
  10407. "ext-json": "*",
  10408. "ext-mbstring": "*",
  10409. "paragonie/constant_time_encoding": "^2.6|^3.0",
  10410. "paragonie/sodium_compat": "^1.20|^2.0",
  10411. "php": ">=8.1",
  10412. "psr/cache": "^3.0",
  10413. "psr/clock": "^1.0",
  10414. "psr/http-client": "^1.0",
  10415. "psr/http-factory": "^1.0",
  10416. "spomky-labs/pki-framework": "^1.2.1",
  10417. "symfony/console": "^5.4|^6.0|^7.0",
  10418. "symfony/http-client": "^5.4|^6.0|^7.0",
  10419. "symfony/polyfill-mbstring": "^1.12"
  10420. },
  10421. "conflict": {
  10422. "spomky-labs/jose": "*"
  10423. },
  10424. "suggest": {
  10425. "ext-bcmath": "GMP or BCMath is highly recommended to improve the library performance",
  10426. "ext-gmp": "GMP or BCMath is highly recommended to improve the library performance",
  10427. "ext-openssl": "For key management (creation, optimization, etc.) and some algorithms (AES, RSA, ECDSA, etc.)",
  10428. "ext-sodium": "Sodium is required for OKP key creation, EdDSA signature algorithm and ECDH-ES key encryption with OKP keys",
  10429. "paragonie/sodium_compat": "Sodium is required for OKP key creation, EdDSA signature algorithm and ECDH-ES key encryption with OKP keys",
  10430. "spomky-labs/aes-key-wrap": "For all Key Wrapping algorithms (A128KW, A192KW, A256KW, A128GCMKW, A192GCMKW, A256GCMKW, PBES2-HS256+A128KW, PBES2-HS384+A192KW, PBES2-HS512+A256KW...)",
  10431. "symfony/http-client": "To enable JKU/X5U support."
  10432. },
  10433. "type": "library",
  10434. "autoload": {
  10435. "psr-4": {
  10436. "Jose\\Component\\": ""
  10437. }
  10438. },
  10439. "notification-url": "https://packagist.org/downloads/",
  10440. "license": [
  10441. "MIT"
  10442. ],
  10443. "authors": [
  10444. {
  10445. "name": "Florent Morselli",
  10446. "homepage": "https://github.com/Spomky"
  10447. },
  10448. {
  10449. "name": "All contributors",
  10450. "homepage": "https://github.com/web-token/jwt-framework/contributors"
  10451. }
  10452. ],
  10453. "description": "JWT library",
  10454. "homepage": "https://github.com/web-token",
  10455. "keywords": [
  10456. "JOSE",
  10457. "JWE",
  10458. "JWK",
  10459. "JWKSet",
  10460. "JWS",
  10461. "Jot",
  10462. "RFC7515",
  10463. "RFC7516",
  10464. "RFC7517",
  10465. "RFC7518",
  10466. "RFC7519",
  10467. "RFC7520",
  10468. "bundle",
  10469. "jwa",
  10470. "jwt",
  10471. "symfony"
  10472. ],
  10473. "support": {
  10474. "issues": "https://github.com/web-token/jwt-library/issues",
  10475. "source": "https://github.com/web-token/jwt-library/tree/3.4.7"
  10476. },
  10477. "funding": [
  10478. {
  10479. "url": "https://github.com/Spomky",
  10480. "type": "github"
  10481. },
  10482. {
  10483. "url": "https://www.patreon.com/FlorentMorselli",
  10484. "type": "patreon"
  10485. }
  10486. ],
  10487. "time": "2024-07-02T16:35:11+00:00"
  10488. },
  10489. {
  10490. "name": "webmozart/assert",
  10491. "version": "1.11.0",
  10492. "source": {
  10493. "type": "git",
  10494. "url": "https://github.com/webmozarts/assert.git",
  10495. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  10496. },
  10497. "dist": {
  10498. "type": "zip",
  10499. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10500. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  10501. "shasum": ""
  10502. },
  10503. "require": {
  10504. "ext-ctype": "*",
  10505. "php": "^7.2 || ^8.0"
  10506. },
  10507. "conflict": {
  10508. "phpstan/phpstan": "<0.12.20",
  10509. "vimeo/psalm": "<4.6.1 || 4.6.2"
  10510. },
  10511. "require-dev": {
  10512. "phpunit/phpunit": "^8.5.13"
  10513. },
  10514. "type": "library",
  10515. "extra": {
  10516. "branch-alias": {
  10517. "dev-master": "1.10-dev"
  10518. }
  10519. },
  10520. "autoload": {
  10521. "psr-4": {
  10522. "Webmozart\\Assert\\": "src/"
  10523. }
  10524. },
  10525. "notification-url": "https://packagist.org/downloads/",
  10526. "license": [
  10527. "MIT"
  10528. ],
  10529. "authors": [
  10530. {
  10531. "name": "Bernhard Schussek",
  10532. "email": "bschussek@gmail.com"
  10533. }
  10534. ],
  10535. "description": "Assertions to validate method input/output with nice error messages.",
  10536. "keywords": [
  10537. "assert",
  10538. "check",
  10539. "validate"
  10540. ],
  10541. "support": {
  10542. "issues": "https://github.com/webmozarts/assert/issues",
  10543. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  10544. },
  10545. "time": "2022-06-03T18:03:27+00:00"
  10546. }
  10547. ],
  10548. "packages-dev": [
  10549. {
  10550. "name": "fakerphp/faker",
  10551. "version": "v1.24.1",
  10552. "source": {
  10553. "type": "git",
  10554. "url": "https://github.com/FakerPHP/Faker.git",
  10555. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  10556. },
  10557. "dist": {
  10558. "type": "zip",
  10559. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  10560. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  10561. "shasum": ""
  10562. },
  10563. "require": {
  10564. "php": "^7.4 || ^8.0",
  10565. "psr/container": "^1.0 || ^2.0",
  10566. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  10567. },
  10568. "conflict": {
  10569. "fzaninotto/faker": "*"
  10570. },
  10571. "require-dev": {
  10572. "bamarni/composer-bin-plugin": "^1.4.1",
  10573. "doctrine/persistence": "^1.3 || ^2.0",
  10574. "ext-intl": "*",
  10575. "phpunit/phpunit": "^9.5.26",
  10576. "symfony/phpunit-bridge": "^5.4.16"
  10577. },
  10578. "suggest": {
  10579. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  10580. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  10581. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  10582. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  10583. "ext-mbstring": "Required for multibyte Unicode string functionality."
  10584. },
  10585. "type": "library",
  10586. "autoload": {
  10587. "psr-4": {
  10588. "Faker\\": "src/Faker/"
  10589. }
  10590. },
  10591. "notification-url": "https://packagist.org/downloads/",
  10592. "license": [
  10593. "MIT"
  10594. ],
  10595. "authors": [
  10596. {
  10597. "name": "François Zaninotto"
  10598. }
  10599. ],
  10600. "description": "Faker is a PHP library that generates fake data for you.",
  10601. "keywords": [
  10602. "data",
  10603. "faker",
  10604. "fixtures"
  10605. ],
  10606. "support": {
  10607. "issues": "https://github.com/FakerPHP/Faker/issues",
  10608. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  10609. },
  10610. "time": "2024-11-21T13:46:39+00:00"
  10611. },
  10612. {
  10613. "name": "filp/whoops",
  10614. "version": "2.17.0",
  10615. "source": {
  10616. "type": "git",
  10617. "url": "https://github.com/filp/whoops.git",
  10618. "reference": "075bc0c26631110584175de6523ab3f1652eb28e"
  10619. },
  10620. "dist": {
  10621. "type": "zip",
  10622. "url": "https://api.github.com/repos/filp/whoops/zipball/075bc0c26631110584175de6523ab3f1652eb28e",
  10623. "reference": "075bc0c26631110584175de6523ab3f1652eb28e",
  10624. "shasum": ""
  10625. },
  10626. "require": {
  10627. "php": "^7.1 || ^8.0",
  10628. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  10629. },
  10630. "require-dev": {
  10631. "mockery/mockery": "^1.0",
  10632. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  10633. "symfony/var-dumper": "^4.0 || ^5.0"
  10634. },
  10635. "suggest": {
  10636. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  10637. "whoops/soap": "Formats errors as SOAP responses"
  10638. },
  10639. "type": "library",
  10640. "extra": {
  10641. "branch-alias": {
  10642. "dev-master": "2.7-dev"
  10643. }
  10644. },
  10645. "autoload": {
  10646. "psr-4": {
  10647. "Whoops\\": "src/Whoops/"
  10648. }
  10649. },
  10650. "notification-url": "https://packagist.org/downloads/",
  10651. "license": [
  10652. "MIT"
  10653. ],
  10654. "authors": [
  10655. {
  10656. "name": "Filipe Dobreira",
  10657. "homepage": "https://github.com/filp",
  10658. "role": "Developer"
  10659. }
  10660. ],
  10661. "description": "php error handling for cool kids",
  10662. "homepage": "https://filp.github.io/whoops/",
  10663. "keywords": [
  10664. "error",
  10665. "exception",
  10666. "handling",
  10667. "library",
  10668. "throwable",
  10669. "whoops"
  10670. ],
  10671. "support": {
  10672. "issues": "https://github.com/filp/whoops/issues",
  10673. "source": "https://github.com/filp/whoops/tree/2.17.0"
  10674. },
  10675. "funding": [
  10676. {
  10677. "url": "https://github.com/denis-sokolov",
  10678. "type": "github"
  10679. }
  10680. ],
  10681. "time": "2025-01-25T12:00:00+00:00"
  10682. },
  10683. {
  10684. "name": "hamcrest/hamcrest-php",
  10685. "version": "v2.0.1",
  10686. "source": {
  10687. "type": "git",
  10688. "url": "https://github.com/hamcrest/hamcrest-php.git",
  10689. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  10690. },
  10691. "dist": {
  10692. "type": "zip",
  10693. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10694. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  10695. "shasum": ""
  10696. },
  10697. "require": {
  10698. "php": "^5.3|^7.0|^8.0"
  10699. },
  10700. "replace": {
  10701. "cordoval/hamcrest-php": "*",
  10702. "davedevelopment/hamcrest-php": "*",
  10703. "kodova/hamcrest-php": "*"
  10704. },
  10705. "require-dev": {
  10706. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  10707. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  10708. },
  10709. "type": "library",
  10710. "extra": {
  10711. "branch-alias": {
  10712. "dev-master": "2.1-dev"
  10713. }
  10714. },
  10715. "autoload": {
  10716. "classmap": [
  10717. "hamcrest"
  10718. ]
  10719. },
  10720. "notification-url": "https://packagist.org/downloads/",
  10721. "license": [
  10722. "BSD-3-Clause"
  10723. ],
  10724. "description": "This is the PHP port of Hamcrest Matchers",
  10725. "keywords": [
  10726. "test"
  10727. ],
  10728. "support": {
  10729. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  10730. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  10731. },
  10732. "time": "2020-07-09T08:09:16+00:00"
  10733. },
  10734. {
  10735. "name": "laravel/pint",
  10736. "version": "v1.21.1",
  10737. "source": {
  10738. "type": "git",
  10739. "url": "https://github.com/laravel/pint.git",
  10740. "reference": "c44bffbb2334e90fba560933c45948fa4a3f3e86"
  10741. },
  10742. "dist": {
  10743. "type": "zip",
  10744. "url": "https://api.github.com/repos/laravel/pint/zipball/c44bffbb2334e90fba560933c45948fa4a3f3e86",
  10745. "reference": "c44bffbb2334e90fba560933c45948fa4a3f3e86",
  10746. "shasum": ""
  10747. },
  10748. "require": {
  10749. "ext-json": "*",
  10750. "ext-mbstring": "*",
  10751. "ext-tokenizer": "*",
  10752. "ext-xml": "*",
  10753. "php": "^8.2.0"
  10754. },
  10755. "require-dev": {
  10756. "friendsofphp/php-cs-fixer": "^3.70.2",
  10757. "illuminate/view": "^11.44.1",
  10758. "larastan/larastan": "^3.1.0",
  10759. "laravel-zero/framework": "^11.36.1",
  10760. "mockery/mockery": "^1.6.12",
  10761. "nunomaduro/termwind": "^2.3",
  10762. "pestphp/pest": "^2.36.0"
  10763. },
  10764. "bin": [
  10765. "builds/pint"
  10766. ],
  10767. "type": "project",
  10768. "autoload": {
  10769. "psr-4": {
  10770. "App\\": "app/",
  10771. "Database\\Seeders\\": "database/seeders/",
  10772. "Database\\Factories\\": "database/factories/"
  10773. }
  10774. },
  10775. "notification-url": "https://packagist.org/downloads/",
  10776. "license": [
  10777. "MIT"
  10778. ],
  10779. "authors": [
  10780. {
  10781. "name": "Nuno Maduro",
  10782. "email": "enunomaduro@gmail.com"
  10783. }
  10784. ],
  10785. "description": "An opinionated code formatter for PHP.",
  10786. "homepage": "https://laravel.com",
  10787. "keywords": [
  10788. "format",
  10789. "formatter",
  10790. "lint",
  10791. "linter",
  10792. "php"
  10793. ],
  10794. "support": {
  10795. "issues": "https://github.com/laravel/pint/issues",
  10796. "source": "https://github.com/laravel/pint"
  10797. },
  10798. "time": "2025-03-11T03:22:21+00:00"
  10799. },
  10800. {
  10801. "name": "laravel/telescope",
  10802. "version": "v5.5.0",
  10803. "source": {
  10804. "type": "git",
  10805. "url": "https://github.com/laravel/telescope.git",
  10806. "reference": "2594b20b946155ba767002d8af971e33e1095637"
  10807. },
  10808. "dist": {
  10809. "type": "zip",
  10810. "url": "https://api.github.com/repos/laravel/telescope/zipball/2594b20b946155ba767002d8af971e33e1095637",
  10811. "reference": "2594b20b946155ba767002d8af971e33e1095637",
  10812. "shasum": ""
  10813. },
  10814. "require": {
  10815. "ext-json": "*",
  10816. "laravel/framework": "^8.37|^9.0|^10.0|^11.0|^12.0",
  10817. "php": "^8.0",
  10818. "symfony/console": "^5.3|^6.0|^7.0",
  10819. "symfony/var-dumper": "^5.0|^6.0|^7.0"
  10820. },
  10821. "require-dev": {
  10822. "ext-gd": "*",
  10823. "guzzlehttp/guzzle": "^6.0|^7.0",
  10824. "laravel/octane": "^1.4|^2.0|dev-develop",
  10825. "orchestra/testbench": "^6.40|^7.37|^8.17|^9.0|^10.0",
  10826. "phpstan/phpstan": "^1.10",
  10827. "phpunit/phpunit": "^9.0|^10.5|^11.5"
  10828. },
  10829. "type": "library",
  10830. "extra": {
  10831. "laravel": {
  10832. "providers": [
  10833. "Laravel\\Telescope\\TelescopeServiceProvider"
  10834. ]
  10835. }
  10836. },
  10837. "autoload": {
  10838. "psr-4": {
  10839. "Laravel\\Telescope\\": "src/",
  10840. "Laravel\\Telescope\\Database\\Factories\\": "database/factories/"
  10841. }
  10842. },
  10843. "notification-url": "https://packagist.org/downloads/",
  10844. "license": [
  10845. "MIT"
  10846. ],
  10847. "authors": [
  10848. {
  10849. "name": "Taylor Otwell",
  10850. "email": "taylor@laravel.com"
  10851. },
  10852. {
  10853. "name": "Mohamed Said",
  10854. "email": "mohamed@laravel.com"
  10855. }
  10856. ],
  10857. "description": "An elegant debug assistant for the Laravel framework.",
  10858. "keywords": [
  10859. "debugging",
  10860. "laravel",
  10861. "monitoring"
  10862. ],
  10863. "support": {
  10864. "issues": "https://github.com/laravel/telescope/issues",
  10865. "source": "https://github.com/laravel/telescope/tree/v5.5.0"
  10866. },
  10867. "time": "2025-02-11T15:01:27+00:00"
  10868. },
  10869. {
  10870. "name": "mockery/mockery",
  10871. "version": "1.6.12",
  10872. "source": {
  10873. "type": "git",
  10874. "url": "https://github.com/mockery/mockery.git",
  10875. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  10876. },
  10877. "dist": {
  10878. "type": "zip",
  10879. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  10880. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  10881. "shasum": ""
  10882. },
  10883. "require": {
  10884. "hamcrest/hamcrest-php": "^2.0.1",
  10885. "lib-pcre": ">=7.0",
  10886. "php": ">=7.3"
  10887. },
  10888. "conflict": {
  10889. "phpunit/phpunit": "<8.0"
  10890. },
  10891. "require-dev": {
  10892. "phpunit/phpunit": "^8.5 || ^9.6.17",
  10893. "symplify/easy-coding-standard": "^12.1.14"
  10894. },
  10895. "type": "library",
  10896. "autoload": {
  10897. "files": [
  10898. "library/helpers.php",
  10899. "library/Mockery.php"
  10900. ],
  10901. "psr-4": {
  10902. "Mockery\\": "library/Mockery"
  10903. }
  10904. },
  10905. "notification-url": "https://packagist.org/downloads/",
  10906. "license": [
  10907. "BSD-3-Clause"
  10908. ],
  10909. "authors": [
  10910. {
  10911. "name": "Pádraic Brady",
  10912. "email": "padraic.brady@gmail.com",
  10913. "homepage": "https://github.com/padraic",
  10914. "role": "Author"
  10915. },
  10916. {
  10917. "name": "Dave Marshall",
  10918. "email": "dave.marshall@atstsolutions.co.uk",
  10919. "homepage": "https://davedevelopment.co.uk",
  10920. "role": "Developer"
  10921. },
  10922. {
  10923. "name": "Nathanael Esayeas",
  10924. "email": "nathanael.esayeas@protonmail.com",
  10925. "homepage": "https://github.com/ghostwriter",
  10926. "role": "Lead Developer"
  10927. }
  10928. ],
  10929. "description": "Mockery is a simple yet flexible PHP mock object framework",
  10930. "homepage": "https://github.com/mockery/mockery",
  10931. "keywords": [
  10932. "BDD",
  10933. "TDD",
  10934. "library",
  10935. "mock",
  10936. "mock objects",
  10937. "mockery",
  10938. "stub",
  10939. "test",
  10940. "test double",
  10941. "testing"
  10942. ],
  10943. "support": {
  10944. "docs": "https://docs.mockery.io/",
  10945. "issues": "https://github.com/mockery/mockery/issues",
  10946. "rss": "https://github.com/mockery/mockery/releases.atom",
  10947. "security": "https://github.com/mockery/mockery/security/advisories",
  10948. "source": "https://github.com/mockery/mockery"
  10949. },
  10950. "time": "2024-05-16T03:13:13+00:00"
  10951. },
  10952. {
  10953. "name": "myclabs/deep-copy",
  10954. "version": "1.13.0",
  10955. "source": {
  10956. "type": "git",
  10957. "url": "https://github.com/myclabs/DeepCopy.git",
  10958. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  10959. },
  10960. "dist": {
  10961. "type": "zip",
  10962. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  10963. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  10964. "shasum": ""
  10965. },
  10966. "require": {
  10967. "php": "^7.1 || ^8.0"
  10968. },
  10969. "conflict": {
  10970. "doctrine/collections": "<1.6.8",
  10971. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  10972. },
  10973. "require-dev": {
  10974. "doctrine/collections": "^1.6.8",
  10975. "doctrine/common": "^2.13.3 || ^3.2.2",
  10976. "phpspec/prophecy": "^1.10",
  10977. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  10978. },
  10979. "type": "library",
  10980. "autoload": {
  10981. "files": [
  10982. "src/DeepCopy/deep_copy.php"
  10983. ],
  10984. "psr-4": {
  10985. "DeepCopy\\": "src/DeepCopy/"
  10986. }
  10987. },
  10988. "notification-url": "https://packagist.org/downloads/",
  10989. "license": [
  10990. "MIT"
  10991. ],
  10992. "description": "Create deep copies (clones) of your objects",
  10993. "keywords": [
  10994. "clone",
  10995. "copy",
  10996. "duplicate",
  10997. "object",
  10998. "object graph"
  10999. ],
  11000. "support": {
  11001. "issues": "https://github.com/myclabs/DeepCopy/issues",
  11002. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  11003. },
  11004. "funding": [
  11005. {
  11006. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  11007. "type": "tidelift"
  11008. }
  11009. ],
  11010. "time": "2025-02-12T12:17:51+00:00"
  11011. },
  11012. {
  11013. "name": "nunomaduro/collision",
  11014. "version": "v8.6.1",
  11015. "source": {
  11016. "type": "git",
  11017. "url": "https://github.com/nunomaduro/collision.git",
  11018. "reference": "86f003c132143d5a2ab214e19933946409e0cae7"
  11019. },
  11020. "dist": {
  11021. "type": "zip",
  11022. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/86f003c132143d5a2ab214e19933946409e0cae7",
  11023. "reference": "86f003c132143d5a2ab214e19933946409e0cae7",
  11024. "shasum": ""
  11025. },
  11026. "require": {
  11027. "filp/whoops": "^2.16.0",
  11028. "nunomaduro/termwind": "^2.3.0",
  11029. "php": "^8.2.0",
  11030. "symfony/console": "^7.2.1"
  11031. },
  11032. "conflict": {
  11033. "laravel/framework": "<11.39.1 || >=13.0.0",
  11034. "phpunit/phpunit": "<11.5.3 || >=12.0.0"
  11035. },
  11036. "require-dev": {
  11037. "larastan/larastan": "^2.9.12",
  11038. "laravel/framework": "^11.39.1",
  11039. "laravel/pint": "^1.20.0",
  11040. "laravel/sail": "^1.40.0",
  11041. "laravel/sanctum": "^4.0.7",
  11042. "laravel/tinker": "^2.10.0",
  11043. "orchestra/testbench-core": "^9.9.2",
  11044. "pestphp/pest": "^3.7.3",
  11045. "sebastian/environment": "^6.1.0 || ^7.2.0"
  11046. },
  11047. "type": "library",
  11048. "extra": {
  11049. "laravel": {
  11050. "providers": [
  11051. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  11052. ]
  11053. },
  11054. "branch-alias": {
  11055. "dev-8.x": "8.x-dev"
  11056. }
  11057. },
  11058. "autoload": {
  11059. "files": [
  11060. "./src/Adapters/Phpunit/Autoload.php"
  11061. ],
  11062. "psr-4": {
  11063. "NunoMaduro\\Collision\\": "src/"
  11064. }
  11065. },
  11066. "notification-url": "https://packagist.org/downloads/",
  11067. "license": [
  11068. "MIT"
  11069. ],
  11070. "authors": [
  11071. {
  11072. "name": "Nuno Maduro",
  11073. "email": "enunomaduro@gmail.com"
  11074. }
  11075. ],
  11076. "description": "Cli error handling for console/command-line PHP applications.",
  11077. "keywords": [
  11078. "artisan",
  11079. "cli",
  11080. "command-line",
  11081. "console",
  11082. "dev",
  11083. "error",
  11084. "handling",
  11085. "laravel",
  11086. "laravel-zero",
  11087. "php",
  11088. "symfony"
  11089. ],
  11090. "support": {
  11091. "issues": "https://github.com/nunomaduro/collision/issues",
  11092. "source": "https://github.com/nunomaduro/collision"
  11093. },
  11094. "funding": [
  11095. {
  11096. "url": "https://www.paypal.com/paypalme/enunomaduro",
  11097. "type": "custom"
  11098. },
  11099. {
  11100. "url": "https://github.com/nunomaduro",
  11101. "type": "github"
  11102. },
  11103. {
  11104. "url": "https://www.patreon.com/nunomaduro",
  11105. "type": "patreon"
  11106. }
  11107. ],
  11108. "time": "2025-01-23T13:41:43+00:00"
  11109. },
  11110. {
  11111. "name": "phar-io/manifest",
  11112. "version": "2.0.4",
  11113. "source": {
  11114. "type": "git",
  11115. "url": "https://github.com/phar-io/manifest.git",
  11116. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  11117. },
  11118. "dist": {
  11119. "type": "zip",
  11120. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  11121. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  11122. "shasum": ""
  11123. },
  11124. "require": {
  11125. "ext-dom": "*",
  11126. "ext-libxml": "*",
  11127. "ext-phar": "*",
  11128. "ext-xmlwriter": "*",
  11129. "phar-io/version": "^3.0.1",
  11130. "php": "^7.2 || ^8.0"
  11131. },
  11132. "type": "library",
  11133. "extra": {
  11134. "branch-alias": {
  11135. "dev-master": "2.0.x-dev"
  11136. }
  11137. },
  11138. "autoload": {
  11139. "classmap": [
  11140. "src/"
  11141. ]
  11142. },
  11143. "notification-url": "https://packagist.org/downloads/",
  11144. "license": [
  11145. "BSD-3-Clause"
  11146. ],
  11147. "authors": [
  11148. {
  11149. "name": "Arne Blankerts",
  11150. "email": "arne@blankerts.de",
  11151. "role": "Developer"
  11152. },
  11153. {
  11154. "name": "Sebastian Heuer",
  11155. "email": "sebastian@phpeople.de",
  11156. "role": "Developer"
  11157. },
  11158. {
  11159. "name": "Sebastian Bergmann",
  11160. "email": "sebastian@phpunit.de",
  11161. "role": "Developer"
  11162. }
  11163. ],
  11164. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  11165. "support": {
  11166. "issues": "https://github.com/phar-io/manifest/issues",
  11167. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  11168. },
  11169. "funding": [
  11170. {
  11171. "url": "https://github.com/theseer",
  11172. "type": "github"
  11173. }
  11174. ],
  11175. "time": "2024-03-03T12:33:53+00:00"
  11176. },
  11177. {
  11178. "name": "phar-io/version",
  11179. "version": "3.2.1",
  11180. "source": {
  11181. "type": "git",
  11182. "url": "https://github.com/phar-io/version.git",
  11183. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  11184. },
  11185. "dist": {
  11186. "type": "zip",
  11187. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11188. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  11189. "shasum": ""
  11190. },
  11191. "require": {
  11192. "php": "^7.2 || ^8.0"
  11193. },
  11194. "type": "library",
  11195. "autoload": {
  11196. "classmap": [
  11197. "src/"
  11198. ]
  11199. },
  11200. "notification-url": "https://packagist.org/downloads/",
  11201. "license": [
  11202. "BSD-3-Clause"
  11203. ],
  11204. "authors": [
  11205. {
  11206. "name": "Arne Blankerts",
  11207. "email": "arne@blankerts.de",
  11208. "role": "Developer"
  11209. },
  11210. {
  11211. "name": "Sebastian Heuer",
  11212. "email": "sebastian@phpeople.de",
  11213. "role": "Developer"
  11214. },
  11215. {
  11216. "name": "Sebastian Bergmann",
  11217. "email": "sebastian@phpunit.de",
  11218. "role": "Developer"
  11219. }
  11220. ],
  11221. "description": "Library for handling version information and constraints",
  11222. "support": {
  11223. "issues": "https://github.com/phar-io/version/issues",
  11224. "source": "https://github.com/phar-io/version/tree/3.2.1"
  11225. },
  11226. "time": "2022-02-21T01:04:05+00:00"
  11227. },
  11228. {
  11229. "name": "phpunit/php-code-coverage",
  11230. "version": "11.0.9",
  11231. "source": {
  11232. "type": "git",
  11233. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  11234. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7"
  11235. },
  11236. "dist": {
  11237. "type": "zip",
  11238. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  11239. "reference": "14d63fbcca18457e49c6f8bebaa91a87e8e188d7",
  11240. "shasum": ""
  11241. },
  11242. "require": {
  11243. "ext-dom": "*",
  11244. "ext-libxml": "*",
  11245. "ext-xmlwriter": "*",
  11246. "nikic/php-parser": "^5.4.0",
  11247. "php": ">=8.2",
  11248. "phpunit/php-file-iterator": "^5.1.0",
  11249. "phpunit/php-text-template": "^4.0.1",
  11250. "sebastian/code-unit-reverse-lookup": "^4.0.1",
  11251. "sebastian/complexity": "^4.0.1",
  11252. "sebastian/environment": "^7.2.0",
  11253. "sebastian/lines-of-code": "^3.0.1",
  11254. "sebastian/version": "^5.0.2",
  11255. "theseer/tokenizer": "^1.2.3"
  11256. },
  11257. "require-dev": {
  11258. "phpunit/phpunit": "^11.5.2"
  11259. },
  11260. "suggest": {
  11261. "ext-pcov": "PHP extension that provides line coverage",
  11262. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  11263. },
  11264. "type": "library",
  11265. "extra": {
  11266. "branch-alias": {
  11267. "dev-main": "11.0.x-dev"
  11268. }
  11269. },
  11270. "autoload": {
  11271. "classmap": [
  11272. "src/"
  11273. ]
  11274. },
  11275. "notification-url": "https://packagist.org/downloads/",
  11276. "license": [
  11277. "BSD-3-Clause"
  11278. ],
  11279. "authors": [
  11280. {
  11281. "name": "Sebastian Bergmann",
  11282. "email": "sebastian@phpunit.de",
  11283. "role": "lead"
  11284. }
  11285. ],
  11286. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  11287. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  11288. "keywords": [
  11289. "coverage",
  11290. "testing",
  11291. "xunit"
  11292. ],
  11293. "support": {
  11294. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  11295. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  11296. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/11.0.9"
  11297. },
  11298. "funding": [
  11299. {
  11300. "url": "https://github.com/sebastianbergmann",
  11301. "type": "github"
  11302. }
  11303. ],
  11304. "time": "2025-02-25T13:26:39+00:00"
  11305. },
  11306. {
  11307. "name": "phpunit/php-file-iterator",
  11308. "version": "5.1.0",
  11309. "source": {
  11310. "type": "git",
  11311. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  11312. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6"
  11313. },
  11314. "dist": {
  11315. "type": "zip",
  11316. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11317. "reference": "118cfaaa8bc5aef3287bf315b6060b1174754af6",
  11318. "shasum": ""
  11319. },
  11320. "require": {
  11321. "php": ">=8.2"
  11322. },
  11323. "require-dev": {
  11324. "phpunit/phpunit": "^11.0"
  11325. },
  11326. "type": "library",
  11327. "extra": {
  11328. "branch-alias": {
  11329. "dev-main": "5.0-dev"
  11330. }
  11331. },
  11332. "autoload": {
  11333. "classmap": [
  11334. "src/"
  11335. ]
  11336. },
  11337. "notification-url": "https://packagist.org/downloads/",
  11338. "license": [
  11339. "BSD-3-Clause"
  11340. ],
  11341. "authors": [
  11342. {
  11343. "name": "Sebastian Bergmann",
  11344. "email": "sebastian@phpunit.de",
  11345. "role": "lead"
  11346. }
  11347. ],
  11348. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  11349. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  11350. "keywords": [
  11351. "filesystem",
  11352. "iterator"
  11353. ],
  11354. "support": {
  11355. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  11356. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  11357. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/5.1.0"
  11358. },
  11359. "funding": [
  11360. {
  11361. "url": "https://github.com/sebastianbergmann",
  11362. "type": "github"
  11363. }
  11364. ],
  11365. "time": "2024-08-27T05:02:59+00:00"
  11366. },
  11367. {
  11368. "name": "phpunit/php-invoker",
  11369. "version": "5.0.1",
  11370. "source": {
  11371. "type": "git",
  11372. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  11373. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2"
  11374. },
  11375. "dist": {
  11376. "type": "zip",
  11377. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11378. "reference": "c1ca3814734c07492b3d4c5f794f4b0995333da2",
  11379. "shasum": ""
  11380. },
  11381. "require": {
  11382. "php": ">=8.2"
  11383. },
  11384. "require-dev": {
  11385. "ext-pcntl": "*",
  11386. "phpunit/phpunit": "^11.0"
  11387. },
  11388. "suggest": {
  11389. "ext-pcntl": "*"
  11390. },
  11391. "type": "library",
  11392. "extra": {
  11393. "branch-alias": {
  11394. "dev-main": "5.0-dev"
  11395. }
  11396. },
  11397. "autoload": {
  11398. "classmap": [
  11399. "src/"
  11400. ]
  11401. },
  11402. "notification-url": "https://packagist.org/downloads/",
  11403. "license": [
  11404. "BSD-3-Clause"
  11405. ],
  11406. "authors": [
  11407. {
  11408. "name": "Sebastian Bergmann",
  11409. "email": "sebastian@phpunit.de",
  11410. "role": "lead"
  11411. }
  11412. ],
  11413. "description": "Invoke callables with a timeout",
  11414. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  11415. "keywords": [
  11416. "process"
  11417. ],
  11418. "support": {
  11419. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  11420. "security": "https://github.com/sebastianbergmann/php-invoker/security/policy",
  11421. "source": "https://github.com/sebastianbergmann/php-invoker/tree/5.0.1"
  11422. },
  11423. "funding": [
  11424. {
  11425. "url": "https://github.com/sebastianbergmann",
  11426. "type": "github"
  11427. }
  11428. ],
  11429. "time": "2024-07-03T05:07:44+00:00"
  11430. },
  11431. {
  11432. "name": "phpunit/php-text-template",
  11433. "version": "4.0.1",
  11434. "source": {
  11435. "type": "git",
  11436. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  11437. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964"
  11438. },
  11439. "dist": {
  11440. "type": "zip",
  11441. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11442. "reference": "3e0404dc6b300e6bf56415467ebcb3fe4f33e964",
  11443. "shasum": ""
  11444. },
  11445. "require": {
  11446. "php": ">=8.2"
  11447. },
  11448. "require-dev": {
  11449. "phpunit/phpunit": "^11.0"
  11450. },
  11451. "type": "library",
  11452. "extra": {
  11453. "branch-alias": {
  11454. "dev-main": "4.0-dev"
  11455. }
  11456. },
  11457. "autoload": {
  11458. "classmap": [
  11459. "src/"
  11460. ]
  11461. },
  11462. "notification-url": "https://packagist.org/downloads/",
  11463. "license": [
  11464. "BSD-3-Clause"
  11465. ],
  11466. "authors": [
  11467. {
  11468. "name": "Sebastian Bergmann",
  11469. "email": "sebastian@phpunit.de",
  11470. "role": "lead"
  11471. }
  11472. ],
  11473. "description": "Simple template engine.",
  11474. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  11475. "keywords": [
  11476. "template"
  11477. ],
  11478. "support": {
  11479. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  11480. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  11481. "source": "https://github.com/sebastianbergmann/php-text-template/tree/4.0.1"
  11482. },
  11483. "funding": [
  11484. {
  11485. "url": "https://github.com/sebastianbergmann",
  11486. "type": "github"
  11487. }
  11488. ],
  11489. "time": "2024-07-03T05:08:43+00:00"
  11490. },
  11491. {
  11492. "name": "phpunit/php-timer",
  11493. "version": "7.0.1",
  11494. "source": {
  11495. "type": "git",
  11496. "url": "https://github.com/sebastianbergmann/php-timer.git",
  11497. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3"
  11498. },
  11499. "dist": {
  11500. "type": "zip",
  11501. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11502. "reference": "3b415def83fbcb41f991d9ebf16ae4ad8b7837b3",
  11503. "shasum": ""
  11504. },
  11505. "require": {
  11506. "php": ">=8.2"
  11507. },
  11508. "require-dev": {
  11509. "phpunit/phpunit": "^11.0"
  11510. },
  11511. "type": "library",
  11512. "extra": {
  11513. "branch-alias": {
  11514. "dev-main": "7.0-dev"
  11515. }
  11516. },
  11517. "autoload": {
  11518. "classmap": [
  11519. "src/"
  11520. ]
  11521. },
  11522. "notification-url": "https://packagist.org/downloads/",
  11523. "license": [
  11524. "BSD-3-Clause"
  11525. ],
  11526. "authors": [
  11527. {
  11528. "name": "Sebastian Bergmann",
  11529. "email": "sebastian@phpunit.de",
  11530. "role": "lead"
  11531. }
  11532. ],
  11533. "description": "Utility class for timing",
  11534. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  11535. "keywords": [
  11536. "timer"
  11537. ],
  11538. "support": {
  11539. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  11540. "security": "https://github.com/sebastianbergmann/php-timer/security/policy",
  11541. "source": "https://github.com/sebastianbergmann/php-timer/tree/7.0.1"
  11542. },
  11543. "funding": [
  11544. {
  11545. "url": "https://github.com/sebastianbergmann",
  11546. "type": "github"
  11547. }
  11548. ],
  11549. "time": "2024-07-03T05:09:35+00:00"
  11550. },
  11551. {
  11552. "name": "phpunit/phpunit",
  11553. "version": "11.5.12",
  11554. "source": {
  11555. "type": "git",
  11556. "url": "https://github.com/sebastianbergmann/phpunit.git",
  11557. "reference": "d42785840519401ed2113292263795eb4c0f95da"
  11558. },
  11559. "dist": {
  11560. "type": "zip",
  11561. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/d42785840519401ed2113292263795eb4c0f95da",
  11562. "reference": "d42785840519401ed2113292263795eb4c0f95da",
  11563. "shasum": ""
  11564. },
  11565. "require": {
  11566. "ext-dom": "*",
  11567. "ext-json": "*",
  11568. "ext-libxml": "*",
  11569. "ext-mbstring": "*",
  11570. "ext-xml": "*",
  11571. "ext-xmlwriter": "*",
  11572. "myclabs/deep-copy": "^1.13.0",
  11573. "phar-io/manifest": "^2.0.4",
  11574. "phar-io/version": "^3.2.1",
  11575. "php": ">=8.2",
  11576. "phpunit/php-code-coverage": "^11.0.9",
  11577. "phpunit/php-file-iterator": "^5.1.0",
  11578. "phpunit/php-invoker": "^5.0.1",
  11579. "phpunit/php-text-template": "^4.0.1",
  11580. "phpunit/php-timer": "^7.0.1",
  11581. "sebastian/cli-parser": "^3.0.2",
  11582. "sebastian/code-unit": "^3.0.2",
  11583. "sebastian/comparator": "^6.3.1",
  11584. "sebastian/diff": "^6.0.2",
  11585. "sebastian/environment": "^7.2.0",
  11586. "sebastian/exporter": "^6.3.0",
  11587. "sebastian/global-state": "^7.0.2",
  11588. "sebastian/object-enumerator": "^6.0.1",
  11589. "sebastian/type": "^5.1.0",
  11590. "sebastian/version": "^5.0.2",
  11591. "staabm/side-effects-detector": "^1.0.5"
  11592. },
  11593. "suggest": {
  11594. "ext-soap": "To be able to generate mocks based on WSDL files"
  11595. },
  11596. "bin": [
  11597. "phpunit"
  11598. ],
  11599. "type": "library",
  11600. "extra": {
  11601. "branch-alias": {
  11602. "dev-main": "11.5-dev"
  11603. }
  11604. },
  11605. "autoload": {
  11606. "files": [
  11607. "src/Framework/Assert/Functions.php"
  11608. ],
  11609. "classmap": [
  11610. "src/"
  11611. ]
  11612. },
  11613. "notification-url": "https://packagist.org/downloads/",
  11614. "license": [
  11615. "BSD-3-Clause"
  11616. ],
  11617. "authors": [
  11618. {
  11619. "name": "Sebastian Bergmann",
  11620. "email": "sebastian@phpunit.de",
  11621. "role": "lead"
  11622. }
  11623. ],
  11624. "description": "The PHP Unit Testing framework.",
  11625. "homepage": "https://phpunit.de/",
  11626. "keywords": [
  11627. "phpunit",
  11628. "testing",
  11629. "xunit"
  11630. ],
  11631. "support": {
  11632. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  11633. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  11634. "source": "https://github.com/sebastianbergmann/phpunit/tree/11.5.12"
  11635. },
  11636. "funding": [
  11637. {
  11638. "url": "https://phpunit.de/sponsors.html",
  11639. "type": "custom"
  11640. },
  11641. {
  11642. "url": "https://github.com/sebastianbergmann",
  11643. "type": "github"
  11644. },
  11645. {
  11646. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  11647. "type": "tidelift"
  11648. }
  11649. ],
  11650. "time": "2025-03-07T07:31:03+00:00"
  11651. },
  11652. {
  11653. "name": "sebastian/cli-parser",
  11654. "version": "3.0.2",
  11655. "source": {
  11656. "type": "git",
  11657. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  11658. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180"
  11659. },
  11660. "dist": {
  11661. "type": "zip",
  11662. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11663. "reference": "15c5dd40dc4f38794d383bb95465193f5e0ae180",
  11664. "shasum": ""
  11665. },
  11666. "require": {
  11667. "php": ">=8.2"
  11668. },
  11669. "require-dev": {
  11670. "phpunit/phpunit": "^11.0"
  11671. },
  11672. "type": "library",
  11673. "extra": {
  11674. "branch-alias": {
  11675. "dev-main": "3.0-dev"
  11676. }
  11677. },
  11678. "autoload": {
  11679. "classmap": [
  11680. "src/"
  11681. ]
  11682. },
  11683. "notification-url": "https://packagist.org/downloads/",
  11684. "license": [
  11685. "BSD-3-Clause"
  11686. ],
  11687. "authors": [
  11688. {
  11689. "name": "Sebastian Bergmann",
  11690. "email": "sebastian@phpunit.de",
  11691. "role": "lead"
  11692. }
  11693. ],
  11694. "description": "Library for parsing CLI options",
  11695. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  11696. "support": {
  11697. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  11698. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  11699. "source": "https://github.com/sebastianbergmann/cli-parser/tree/3.0.2"
  11700. },
  11701. "funding": [
  11702. {
  11703. "url": "https://github.com/sebastianbergmann",
  11704. "type": "github"
  11705. }
  11706. ],
  11707. "time": "2024-07-03T04:41:36+00:00"
  11708. },
  11709. {
  11710. "name": "sebastian/code-unit",
  11711. "version": "3.0.2",
  11712. "source": {
  11713. "type": "git",
  11714. "url": "https://github.com/sebastianbergmann/code-unit.git",
  11715. "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca"
  11716. },
  11717. "dist": {
  11718. "type": "zip",
  11719. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca",
  11720. "reference": "ee88b0cdbe74cf8dd3b54940ff17643c0d6543ca",
  11721. "shasum": ""
  11722. },
  11723. "require": {
  11724. "php": ">=8.2"
  11725. },
  11726. "require-dev": {
  11727. "phpunit/phpunit": "^11.5"
  11728. },
  11729. "type": "library",
  11730. "extra": {
  11731. "branch-alias": {
  11732. "dev-main": "3.0-dev"
  11733. }
  11734. },
  11735. "autoload": {
  11736. "classmap": [
  11737. "src/"
  11738. ]
  11739. },
  11740. "notification-url": "https://packagist.org/downloads/",
  11741. "license": [
  11742. "BSD-3-Clause"
  11743. ],
  11744. "authors": [
  11745. {
  11746. "name": "Sebastian Bergmann",
  11747. "email": "sebastian@phpunit.de",
  11748. "role": "lead"
  11749. }
  11750. ],
  11751. "description": "Collection of value objects that represent the PHP code units",
  11752. "homepage": "https://github.com/sebastianbergmann/code-unit",
  11753. "support": {
  11754. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  11755. "security": "https://github.com/sebastianbergmann/code-unit/security/policy",
  11756. "source": "https://github.com/sebastianbergmann/code-unit/tree/3.0.2"
  11757. },
  11758. "funding": [
  11759. {
  11760. "url": "https://github.com/sebastianbergmann",
  11761. "type": "github"
  11762. }
  11763. ],
  11764. "time": "2024-12-12T09:59:06+00:00"
  11765. },
  11766. {
  11767. "name": "sebastian/code-unit-reverse-lookup",
  11768. "version": "4.0.1",
  11769. "source": {
  11770. "type": "git",
  11771. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  11772. "reference": "183a9b2632194febd219bb9246eee421dad8d45e"
  11773. },
  11774. "dist": {
  11775. "type": "zip",
  11776. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/183a9b2632194febd219bb9246eee421dad8d45e",
  11777. "reference": "183a9b2632194febd219bb9246eee421dad8d45e",
  11778. "shasum": ""
  11779. },
  11780. "require": {
  11781. "php": ">=8.2"
  11782. },
  11783. "require-dev": {
  11784. "phpunit/phpunit": "^11.0"
  11785. },
  11786. "type": "library",
  11787. "extra": {
  11788. "branch-alias": {
  11789. "dev-main": "4.0-dev"
  11790. }
  11791. },
  11792. "autoload": {
  11793. "classmap": [
  11794. "src/"
  11795. ]
  11796. },
  11797. "notification-url": "https://packagist.org/downloads/",
  11798. "license": [
  11799. "BSD-3-Clause"
  11800. ],
  11801. "authors": [
  11802. {
  11803. "name": "Sebastian Bergmann",
  11804. "email": "sebastian@phpunit.de"
  11805. }
  11806. ],
  11807. "description": "Looks up which function or method a line of code belongs to",
  11808. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  11809. "support": {
  11810. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  11811. "security": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/security/policy",
  11812. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/4.0.1"
  11813. },
  11814. "funding": [
  11815. {
  11816. "url": "https://github.com/sebastianbergmann",
  11817. "type": "github"
  11818. }
  11819. ],
  11820. "time": "2024-07-03T04:45:54+00:00"
  11821. },
  11822. {
  11823. "name": "sebastian/comparator",
  11824. "version": "6.3.1",
  11825. "source": {
  11826. "type": "git",
  11827. "url": "https://github.com/sebastianbergmann/comparator.git",
  11828. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959"
  11829. },
  11830. "dist": {
  11831. "type": "zip",
  11832. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  11833. "reference": "24b8fbc2c8e201bb1308e7b05148d6ab393b6959",
  11834. "shasum": ""
  11835. },
  11836. "require": {
  11837. "ext-dom": "*",
  11838. "ext-mbstring": "*",
  11839. "php": ">=8.2",
  11840. "sebastian/diff": "^6.0",
  11841. "sebastian/exporter": "^6.0"
  11842. },
  11843. "require-dev": {
  11844. "phpunit/phpunit": "^11.4"
  11845. },
  11846. "suggest": {
  11847. "ext-bcmath": "For comparing BcMath\\Number objects"
  11848. },
  11849. "type": "library",
  11850. "extra": {
  11851. "branch-alias": {
  11852. "dev-main": "6.3-dev"
  11853. }
  11854. },
  11855. "autoload": {
  11856. "classmap": [
  11857. "src/"
  11858. ]
  11859. },
  11860. "notification-url": "https://packagist.org/downloads/",
  11861. "license": [
  11862. "BSD-3-Clause"
  11863. ],
  11864. "authors": [
  11865. {
  11866. "name": "Sebastian Bergmann",
  11867. "email": "sebastian@phpunit.de"
  11868. },
  11869. {
  11870. "name": "Jeff Welch",
  11871. "email": "whatthejeff@gmail.com"
  11872. },
  11873. {
  11874. "name": "Volker Dusch",
  11875. "email": "github@wallbash.com"
  11876. },
  11877. {
  11878. "name": "Bernhard Schussek",
  11879. "email": "bschussek@2bepublished.at"
  11880. }
  11881. ],
  11882. "description": "Provides the functionality to compare PHP values for equality",
  11883. "homepage": "https://github.com/sebastianbergmann/comparator",
  11884. "keywords": [
  11885. "comparator",
  11886. "compare",
  11887. "equality"
  11888. ],
  11889. "support": {
  11890. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  11891. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  11892. "source": "https://github.com/sebastianbergmann/comparator/tree/6.3.1"
  11893. },
  11894. "funding": [
  11895. {
  11896. "url": "https://github.com/sebastianbergmann",
  11897. "type": "github"
  11898. }
  11899. ],
  11900. "time": "2025-03-07T06:57:01+00:00"
  11901. },
  11902. {
  11903. "name": "sebastian/complexity",
  11904. "version": "4.0.1",
  11905. "source": {
  11906. "type": "git",
  11907. "url": "https://github.com/sebastianbergmann/complexity.git",
  11908. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0"
  11909. },
  11910. "dist": {
  11911. "type": "zip",
  11912. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/ee41d384ab1906c68852636b6de493846e13e5a0",
  11913. "reference": "ee41d384ab1906c68852636b6de493846e13e5a0",
  11914. "shasum": ""
  11915. },
  11916. "require": {
  11917. "nikic/php-parser": "^5.0",
  11918. "php": ">=8.2"
  11919. },
  11920. "require-dev": {
  11921. "phpunit/phpunit": "^11.0"
  11922. },
  11923. "type": "library",
  11924. "extra": {
  11925. "branch-alias": {
  11926. "dev-main": "4.0-dev"
  11927. }
  11928. },
  11929. "autoload": {
  11930. "classmap": [
  11931. "src/"
  11932. ]
  11933. },
  11934. "notification-url": "https://packagist.org/downloads/",
  11935. "license": [
  11936. "BSD-3-Clause"
  11937. ],
  11938. "authors": [
  11939. {
  11940. "name": "Sebastian Bergmann",
  11941. "email": "sebastian@phpunit.de",
  11942. "role": "lead"
  11943. }
  11944. ],
  11945. "description": "Library for calculating the complexity of PHP code units",
  11946. "homepage": "https://github.com/sebastianbergmann/complexity",
  11947. "support": {
  11948. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  11949. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  11950. "source": "https://github.com/sebastianbergmann/complexity/tree/4.0.1"
  11951. },
  11952. "funding": [
  11953. {
  11954. "url": "https://github.com/sebastianbergmann",
  11955. "type": "github"
  11956. }
  11957. ],
  11958. "time": "2024-07-03T04:49:50+00:00"
  11959. },
  11960. {
  11961. "name": "sebastian/diff",
  11962. "version": "6.0.2",
  11963. "source": {
  11964. "type": "git",
  11965. "url": "https://github.com/sebastianbergmann/diff.git",
  11966. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544"
  11967. },
  11968. "dist": {
  11969. "type": "zip",
  11970. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/b4ccd857127db5d41a5b676f24b51371d76d8544",
  11971. "reference": "b4ccd857127db5d41a5b676f24b51371d76d8544",
  11972. "shasum": ""
  11973. },
  11974. "require": {
  11975. "php": ">=8.2"
  11976. },
  11977. "require-dev": {
  11978. "phpunit/phpunit": "^11.0",
  11979. "symfony/process": "^4.2 || ^5"
  11980. },
  11981. "type": "library",
  11982. "extra": {
  11983. "branch-alias": {
  11984. "dev-main": "6.0-dev"
  11985. }
  11986. },
  11987. "autoload": {
  11988. "classmap": [
  11989. "src/"
  11990. ]
  11991. },
  11992. "notification-url": "https://packagist.org/downloads/",
  11993. "license": [
  11994. "BSD-3-Clause"
  11995. ],
  11996. "authors": [
  11997. {
  11998. "name": "Sebastian Bergmann",
  11999. "email": "sebastian@phpunit.de"
  12000. },
  12001. {
  12002. "name": "Kore Nordmann",
  12003. "email": "mail@kore-nordmann.de"
  12004. }
  12005. ],
  12006. "description": "Diff implementation",
  12007. "homepage": "https://github.com/sebastianbergmann/diff",
  12008. "keywords": [
  12009. "diff",
  12010. "udiff",
  12011. "unidiff",
  12012. "unified diff"
  12013. ],
  12014. "support": {
  12015. "issues": "https://github.com/sebastianbergmann/diff/issues",
  12016. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  12017. "source": "https://github.com/sebastianbergmann/diff/tree/6.0.2"
  12018. },
  12019. "funding": [
  12020. {
  12021. "url": "https://github.com/sebastianbergmann",
  12022. "type": "github"
  12023. }
  12024. ],
  12025. "time": "2024-07-03T04:53:05+00:00"
  12026. },
  12027. {
  12028. "name": "sebastian/environment",
  12029. "version": "7.2.0",
  12030. "source": {
  12031. "type": "git",
  12032. "url": "https://github.com/sebastianbergmann/environment.git",
  12033. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5"
  12034. },
  12035. "dist": {
  12036. "type": "zip",
  12037. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  12038. "reference": "855f3ae0ab316bbafe1ba4e16e9f3c078d24a0c5",
  12039. "shasum": ""
  12040. },
  12041. "require": {
  12042. "php": ">=8.2"
  12043. },
  12044. "require-dev": {
  12045. "phpunit/phpunit": "^11.0"
  12046. },
  12047. "suggest": {
  12048. "ext-posix": "*"
  12049. },
  12050. "type": "library",
  12051. "extra": {
  12052. "branch-alias": {
  12053. "dev-main": "7.2-dev"
  12054. }
  12055. },
  12056. "autoload": {
  12057. "classmap": [
  12058. "src/"
  12059. ]
  12060. },
  12061. "notification-url": "https://packagist.org/downloads/",
  12062. "license": [
  12063. "BSD-3-Clause"
  12064. ],
  12065. "authors": [
  12066. {
  12067. "name": "Sebastian Bergmann",
  12068. "email": "sebastian@phpunit.de"
  12069. }
  12070. ],
  12071. "description": "Provides functionality to handle HHVM/PHP environments",
  12072. "homepage": "https://github.com/sebastianbergmann/environment",
  12073. "keywords": [
  12074. "Xdebug",
  12075. "environment",
  12076. "hhvm"
  12077. ],
  12078. "support": {
  12079. "issues": "https://github.com/sebastianbergmann/environment/issues",
  12080. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  12081. "source": "https://github.com/sebastianbergmann/environment/tree/7.2.0"
  12082. },
  12083. "funding": [
  12084. {
  12085. "url": "https://github.com/sebastianbergmann",
  12086. "type": "github"
  12087. }
  12088. ],
  12089. "time": "2024-07-03T04:54:44+00:00"
  12090. },
  12091. {
  12092. "name": "sebastian/exporter",
  12093. "version": "6.3.0",
  12094. "source": {
  12095. "type": "git",
  12096. "url": "https://github.com/sebastianbergmann/exporter.git",
  12097. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3"
  12098. },
  12099. "dist": {
  12100. "type": "zip",
  12101. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/3473f61172093b2da7de1fb5782e1f24cc036dc3",
  12102. "reference": "3473f61172093b2da7de1fb5782e1f24cc036dc3",
  12103. "shasum": ""
  12104. },
  12105. "require": {
  12106. "ext-mbstring": "*",
  12107. "php": ">=8.2",
  12108. "sebastian/recursion-context": "^6.0"
  12109. },
  12110. "require-dev": {
  12111. "phpunit/phpunit": "^11.3"
  12112. },
  12113. "type": "library",
  12114. "extra": {
  12115. "branch-alias": {
  12116. "dev-main": "6.1-dev"
  12117. }
  12118. },
  12119. "autoload": {
  12120. "classmap": [
  12121. "src/"
  12122. ]
  12123. },
  12124. "notification-url": "https://packagist.org/downloads/",
  12125. "license": [
  12126. "BSD-3-Clause"
  12127. ],
  12128. "authors": [
  12129. {
  12130. "name": "Sebastian Bergmann",
  12131. "email": "sebastian@phpunit.de"
  12132. },
  12133. {
  12134. "name": "Jeff Welch",
  12135. "email": "whatthejeff@gmail.com"
  12136. },
  12137. {
  12138. "name": "Volker Dusch",
  12139. "email": "github@wallbash.com"
  12140. },
  12141. {
  12142. "name": "Adam Harvey",
  12143. "email": "aharvey@php.net"
  12144. },
  12145. {
  12146. "name": "Bernhard Schussek",
  12147. "email": "bschussek@gmail.com"
  12148. }
  12149. ],
  12150. "description": "Provides the functionality to export PHP variables for visualization",
  12151. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  12152. "keywords": [
  12153. "export",
  12154. "exporter"
  12155. ],
  12156. "support": {
  12157. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  12158. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  12159. "source": "https://github.com/sebastianbergmann/exporter/tree/6.3.0"
  12160. },
  12161. "funding": [
  12162. {
  12163. "url": "https://github.com/sebastianbergmann",
  12164. "type": "github"
  12165. }
  12166. ],
  12167. "time": "2024-12-05T09:17:50+00:00"
  12168. },
  12169. {
  12170. "name": "sebastian/global-state",
  12171. "version": "7.0.2",
  12172. "source": {
  12173. "type": "git",
  12174. "url": "https://github.com/sebastianbergmann/global-state.git",
  12175. "reference": "3be331570a721f9a4b5917f4209773de17f747d7"
  12176. },
  12177. "dist": {
  12178. "type": "zip",
  12179. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/3be331570a721f9a4b5917f4209773de17f747d7",
  12180. "reference": "3be331570a721f9a4b5917f4209773de17f747d7",
  12181. "shasum": ""
  12182. },
  12183. "require": {
  12184. "php": ">=8.2",
  12185. "sebastian/object-reflector": "^4.0",
  12186. "sebastian/recursion-context": "^6.0"
  12187. },
  12188. "require-dev": {
  12189. "ext-dom": "*",
  12190. "phpunit/phpunit": "^11.0"
  12191. },
  12192. "type": "library",
  12193. "extra": {
  12194. "branch-alias": {
  12195. "dev-main": "7.0-dev"
  12196. }
  12197. },
  12198. "autoload": {
  12199. "classmap": [
  12200. "src/"
  12201. ]
  12202. },
  12203. "notification-url": "https://packagist.org/downloads/",
  12204. "license": [
  12205. "BSD-3-Clause"
  12206. ],
  12207. "authors": [
  12208. {
  12209. "name": "Sebastian Bergmann",
  12210. "email": "sebastian@phpunit.de"
  12211. }
  12212. ],
  12213. "description": "Snapshotting of global state",
  12214. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  12215. "keywords": [
  12216. "global state"
  12217. ],
  12218. "support": {
  12219. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  12220. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  12221. "source": "https://github.com/sebastianbergmann/global-state/tree/7.0.2"
  12222. },
  12223. "funding": [
  12224. {
  12225. "url": "https://github.com/sebastianbergmann",
  12226. "type": "github"
  12227. }
  12228. ],
  12229. "time": "2024-07-03T04:57:36+00:00"
  12230. },
  12231. {
  12232. "name": "sebastian/lines-of-code",
  12233. "version": "3.0.1",
  12234. "source": {
  12235. "type": "git",
  12236. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  12237. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a"
  12238. },
  12239. "dist": {
  12240. "type": "zip",
  12241. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12242. "reference": "d36ad0d782e5756913e42ad87cb2890f4ffe467a",
  12243. "shasum": ""
  12244. },
  12245. "require": {
  12246. "nikic/php-parser": "^5.0",
  12247. "php": ">=8.2"
  12248. },
  12249. "require-dev": {
  12250. "phpunit/phpunit": "^11.0"
  12251. },
  12252. "type": "library",
  12253. "extra": {
  12254. "branch-alias": {
  12255. "dev-main": "3.0-dev"
  12256. }
  12257. },
  12258. "autoload": {
  12259. "classmap": [
  12260. "src/"
  12261. ]
  12262. },
  12263. "notification-url": "https://packagist.org/downloads/",
  12264. "license": [
  12265. "BSD-3-Clause"
  12266. ],
  12267. "authors": [
  12268. {
  12269. "name": "Sebastian Bergmann",
  12270. "email": "sebastian@phpunit.de",
  12271. "role": "lead"
  12272. }
  12273. ],
  12274. "description": "Library for counting the lines of code in PHP source code",
  12275. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  12276. "support": {
  12277. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  12278. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  12279. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/3.0.1"
  12280. },
  12281. "funding": [
  12282. {
  12283. "url": "https://github.com/sebastianbergmann",
  12284. "type": "github"
  12285. }
  12286. ],
  12287. "time": "2024-07-03T04:58:38+00:00"
  12288. },
  12289. {
  12290. "name": "sebastian/object-enumerator",
  12291. "version": "6.0.1",
  12292. "source": {
  12293. "type": "git",
  12294. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  12295. "reference": "f5b498e631a74204185071eb41f33f38d64608aa"
  12296. },
  12297. "dist": {
  12298. "type": "zip",
  12299. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/f5b498e631a74204185071eb41f33f38d64608aa",
  12300. "reference": "f5b498e631a74204185071eb41f33f38d64608aa",
  12301. "shasum": ""
  12302. },
  12303. "require": {
  12304. "php": ">=8.2",
  12305. "sebastian/object-reflector": "^4.0",
  12306. "sebastian/recursion-context": "^6.0"
  12307. },
  12308. "require-dev": {
  12309. "phpunit/phpunit": "^11.0"
  12310. },
  12311. "type": "library",
  12312. "extra": {
  12313. "branch-alias": {
  12314. "dev-main": "6.0-dev"
  12315. }
  12316. },
  12317. "autoload": {
  12318. "classmap": [
  12319. "src/"
  12320. ]
  12321. },
  12322. "notification-url": "https://packagist.org/downloads/",
  12323. "license": [
  12324. "BSD-3-Clause"
  12325. ],
  12326. "authors": [
  12327. {
  12328. "name": "Sebastian Bergmann",
  12329. "email": "sebastian@phpunit.de"
  12330. }
  12331. ],
  12332. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  12333. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  12334. "support": {
  12335. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  12336. "security": "https://github.com/sebastianbergmann/object-enumerator/security/policy",
  12337. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/6.0.1"
  12338. },
  12339. "funding": [
  12340. {
  12341. "url": "https://github.com/sebastianbergmann",
  12342. "type": "github"
  12343. }
  12344. ],
  12345. "time": "2024-07-03T05:00:13+00:00"
  12346. },
  12347. {
  12348. "name": "sebastian/object-reflector",
  12349. "version": "4.0.1",
  12350. "source": {
  12351. "type": "git",
  12352. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  12353. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9"
  12354. },
  12355. "dist": {
  12356. "type": "zip",
  12357. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12358. "reference": "6e1a43b411b2ad34146dee7524cb13a068bb35f9",
  12359. "shasum": ""
  12360. },
  12361. "require": {
  12362. "php": ">=8.2"
  12363. },
  12364. "require-dev": {
  12365. "phpunit/phpunit": "^11.0"
  12366. },
  12367. "type": "library",
  12368. "extra": {
  12369. "branch-alias": {
  12370. "dev-main": "4.0-dev"
  12371. }
  12372. },
  12373. "autoload": {
  12374. "classmap": [
  12375. "src/"
  12376. ]
  12377. },
  12378. "notification-url": "https://packagist.org/downloads/",
  12379. "license": [
  12380. "BSD-3-Clause"
  12381. ],
  12382. "authors": [
  12383. {
  12384. "name": "Sebastian Bergmann",
  12385. "email": "sebastian@phpunit.de"
  12386. }
  12387. ],
  12388. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  12389. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  12390. "support": {
  12391. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  12392. "security": "https://github.com/sebastianbergmann/object-reflector/security/policy",
  12393. "source": "https://github.com/sebastianbergmann/object-reflector/tree/4.0.1"
  12394. },
  12395. "funding": [
  12396. {
  12397. "url": "https://github.com/sebastianbergmann",
  12398. "type": "github"
  12399. }
  12400. ],
  12401. "time": "2024-07-03T05:01:32+00:00"
  12402. },
  12403. {
  12404. "name": "sebastian/recursion-context",
  12405. "version": "6.0.2",
  12406. "source": {
  12407. "type": "git",
  12408. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  12409. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16"
  12410. },
  12411. "dist": {
  12412. "type": "zip",
  12413. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/694d156164372abbd149a4b85ccda2e4670c0e16",
  12414. "reference": "694d156164372abbd149a4b85ccda2e4670c0e16",
  12415. "shasum": ""
  12416. },
  12417. "require": {
  12418. "php": ">=8.2"
  12419. },
  12420. "require-dev": {
  12421. "phpunit/phpunit": "^11.0"
  12422. },
  12423. "type": "library",
  12424. "extra": {
  12425. "branch-alias": {
  12426. "dev-main": "6.0-dev"
  12427. }
  12428. },
  12429. "autoload": {
  12430. "classmap": [
  12431. "src/"
  12432. ]
  12433. },
  12434. "notification-url": "https://packagist.org/downloads/",
  12435. "license": [
  12436. "BSD-3-Clause"
  12437. ],
  12438. "authors": [
  12439. {
  12440. "name": "Sebastian Bergmann",
  12441. "email": "sebastian@phpunit.de"
  12442. },
  12443. {
  12444. "name": "Jeff Welch",
  12445. "email": "whatthejeff@gmail.com"
  12446. },
  12447. {
  12448. "name": "Adam Harvey",
  12449. "email": "aharvey@php.net"
  12450. }
  12451. ],
  12452. "description": "Provides functionality to recursively process PHP variables",
  12453. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  12454. "support": {
  12455. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  12456. "security": "https://github.com/sebastianbergmann/recursion-context/security/policy",
  12457. "source": "https://github.com/sebastianbergmann/recursion-context/tree/6.0.2"
  12458. },
  12459. "funding": [
  12460. {
  12461. "url": "https://github.com/sebastianbergmann",
  12462. "type": "github"
  12463. }
  12464. ],
  12465. "time": "2024-07-03T05:10:34+00:00"
  12466. },
  12467. {
  12468. "name": "sebastian/type",
  12469. "version": "5.1.0",
  12470. "source": {
  12471. "type": "git",
  12472. "url": "https://github.com/sebastianbergmann/type.git",
  12473. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac"
  12474. },
  12475. "dist": {
  12476. "type": "zip",
  12477. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12478. "reference": "461b9c5da241511a2a0e8f240814fb23ce5c0aac",
  12479. "shasum": ""
  12480. },
  12481. "require": {
  12482. "php": ">=8.2"
  12483. },
  12484. "require-dev": {
  12485. "phpunit/phpunit": "^11.3"
  12486. },
  12487. "type": "library",
  12488. "extra": {
  12489. "branch-alias": {
  12490. "dev-main": "5.1-dev"
  12491. }
  12492. },
  12493. "autoload": {
  12494. "classmap": [
  12495. "src/"
  12496. ]
  12497. },
  12498. "notification-url": "https://packagist.org/downloads/",
  12499. "license": [
  12500. "BSD-3-Clause"
  12501. ],
  12502. "authors": [
  12503. {
  12504. "name": "Sebastian Bergmann",
  12505. "email": "sebastian@phpunit.de",
  12506. "role": "lead"
  12507. }
  12508. ],
  12509. "description": "Collection of value objects that represent the types of the PHP type system",
  12510. "homepage": "https://github.com/sebastianbergmann/type",
  12511. "support": {
  12512. "issues": "https://github.com/sebastianbergmann/type/issues",
  12513. "security": "https://github.com/sebastianbergmann/type/security/policy",
  12514. "source": "https://github.com/sebastianbergmann/type/tree/5.1.0"
  12515. },
  12516. "funding": [
  12517. {
  12518. "url": "https://github.com/sebastianbergmann",
  12519. "type": "github"
  12520. }
  12521. ],
  12522. "time": "2024-09-17T13:12:04+00:00"
  12523. },
  12524. {
  12525. "name": "sebastian/version",
  12526. "version": "5.0.2",
  12527. "source": {
  12528. "type": "git",
  12529. "url": "https://github.com/sebastianbergmann/version.git",
  12530. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874"
  12531. },
  12532. "dist": {
  12533. "type": "zip",
  12534. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12535. "reference": "c687e3387b99f5b03b6caa64c74b63e2936ff874",
  12536. "shasum": ""
  12537. },
  12538. "require": {
  12539. "php": ">=8.2"
  12540. },
  12541. "type": "library",
  12542. "extra": {
  12543. "branch-alias": {
  12544. "dev-main": "5.0-dev"
  12545. }
  12546. },
  12547. "autoload": {
  12548. "classmap": [
  12549. "src/"
  12550. ]
  12551. },
  12552. "notification-url": "https://packagist.org/downloads/",
  12553. "license": [
  12554. "BSD-3-Clause"
  12555. ],
  12556. "authors": [
  12557. {
  12558. "name": "Sebastian Bergmann",
  12559. "email": "sebastian@phpunit.de",
  12560. "role": "lead"
  12561. }
  12562. ],
  12563. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  12564. "homepage": "https://github.com/sebastianbergmann/version",
  12565. "support": {
  12566. "issues": "https://github.com/sebastianbergmann/version/issues",
  12567. "security": "https://github.com/sebastianbergmann/version/security/policy",
  12568. "source": "https://github.com/sebastianbergmann/version/tree/5.0.2"
  12569. },
  12570. "funding": [
  12571. {
  12572. "url": "https://github.com/sebastianbergmann",
  12573. "type": "github"
  12574. }
  12575. ],
  12576. "time": "2024-10-09T05:16:32+00:00"
  12577. },
  12578. {
  12579. "name": "staabm/side-effects-detector",
  12580. "version": "1.0.5",
  12581. "source": {
  12582. "type": "git",
  12583. "url": "https://github.com/staabm/side-effects-detector.git",
  12584. "reference": "d8334211a140ce329c13726d4a715adbddd0a163"
  12585. },
  12586. "dist": {
  12587. "type": "zip",
  12588. "url": "https://api.github.com/repos/staabm/side-effects-detector/zipball/d8334211a140ce329c13726d4a715adbddd0a163",
  12589. "reference": "d8334211a140ce329c13726d4a715adbddd0a163",
  12590. "shasum": ""
  12591. },
  12592. "require": {
  12593. "ext-tokenizer": "*",
  12594. "php": "^7.4 || ^8.0"
  12595. },
  12596. "require-dev": {
  12597. "phpstan/extension-installer": "^1.4.3",
  12598. "phpstan/phpstan": "^1.12.6",
  12599. "phpunit/phpunit": "^9.6.21",
  12600. "symfony/var-dumper": "^5.4.43",
  12601. "tomasvotruba/type-coverage": "1.0.0",
  12602. "tomasvotruba/unused-public": "1.0.0"
  12603. },
  12604. "type": "library",
  12605. "autoload": {
  12606. "classmap": [
  12607. "lib/"
  12608. ]
  12609. },
  12610. "notification-url": "https://packagist.org/downloads/",
  12611. "license": [
  12612. "MIT"
  12613. ],
  12614. "description": "A static analysis tool to detect side effects in PHP code",
  12615. "keywords": [
  12616. "static analysis"
  12617. ],
  12618. "support": {
  12619. "issues": "https://github.com/staabm/side-effects-detector/issues",
  12620. "source": "https://github.com/staabm/side-effects-detector/tree/1.0.5"
  12621. },
  12622. "funding": [
  12623. {
  12624. "url": "https://github.com/staabm",
  12625. "type": "github"
  12626. }
  12627. ],
  12628. "time": "2024-10-20T05:08:20+00:00"
  12629. },
  12630. {
  12631. "name": "theseer/tokenizer",
  12632. "version": "1.2.3",
  12633. "source": {
  12634. "type": "git",
  12635. "url": "https://github.com/theseer/tokenizer.git",
  12636. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  12637. },
  12638. "dist": {
  12639. "type": "zip",
  12640. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12641. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  12642. "shasum": ""
  12643. },
  12644. "require": {
  12645. "ext-dom": "*",
  12646. "ext-tokenizer": "*",
  12647. "ext-xmlwriter": "*",
  12648. "php": "^7.2 || ^8.0"
  12649. },
  12650. "type": "library",
  12651. "autoload": {
  12652. "classmap": [
  12653. "src/"
  12654. ]
  12655. },
  12656. "notification-url": "https://packagist.org/downloads/",
  12657. "license": [
  12658. "BSD-3-Clause"
  12659. ],
  12660. "authors": [
  12661. {
  12662. "name": "Arne Blankerts",
  12663. "email": "arne@blankerts.de",
  12664. "role": "Developer"
  12665. }
  12666. ],
  12667. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  12668. "support": {
  12669. "issues": "https://github.com/theseer/tokenizer/issues",
  12670. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  12671. },
  12672. "funding": [
  12673. {
  12674. "url": "https://github.com/theseer",
  12675. "type": "github"
  12676. }
  12677. ],
  12678. "time": "2024-03-03T12:36:25+00:00"
  12679. }
  12680. ],
  12681. "aliases": [],
  12682. "minimum-stability": "stable",
  12683. "stability-flags": {},
  12684. "prefer-stable": true,
  12685. "prefer-lowest": false,
  12686. "platform": {
  12687. "php": "^8.2|^8.3|^8.4",
  12688. "ext-bcmath": "*",
  12689. "ext-ctype": "*",
  12690. "ext-curl": "*",
  12691. "ext-intl": "*",
  12692. "ext-json": "*",
  12693. "ext-mbstring": "*",
  12694. "ext-openssl": "*"
  12695. },
  12696. "platform-dev": {},
  12697. "plugin-api-version": "2.6.0"
  12698. }