composer.lock 344 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574
  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": "38176458f8f276956777a1fd1af07c22",
  8. "packages": [
  9. {
  10. "name": "abraham/twitteroauth",
  11. "version": "7.0.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/abraham/twitteroauth.git",
  15. "reference": "a8622680f954d0c4f54fd80bedebe00c756ed7aa"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/abraham/twitteroauth/zipball/a8622680f954d0c4f54fd80bedebe00c756ed7aa",
  20. "reference": "a8622680f954d0c4f54fd80bedebe00c756ed7aa",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "composer/ca-bundle": "^1.2",
  25. "ext-curl": "*",
  26. "php": "8.*"
  27. },
  28. "require-dev": {
  29. "php-vcr/php-vcr": "^1",
  30. "php-vcr/phpunit-testlistener-vcr": "dev-php8",
  31. "phpmd/phpmd": "^2",
  32. "phpunit/phpunit": "^9",
  33. "rector/rector": "^0.15.7",
  34. "squizlabs/php_codesniffer": "^3"
  35. },
  36. "type": "library",
  37. "autoload": {
  38. "psr-4": {
  39. "Abraham\\TwitterOAuth\\": "src"
  40. }
  41. },
  42. "notification-url": "https://packagist.org/downloads/",
  43. "license": [
  44. "MIT"
  45. ],
  46. "authors": [
  47. {
  48. "name": "Abraham Williams",
  49. "email": "abraham@abrah.am",
  50. "homepage": "https://abrah.am",
  51. "role": "Developer"
  52. }
  53. ],
  54. "description": "The most popular PHP library for use with the Twitter OAuth REST API.",
  55. "homepage": "https://twitteroauth.com",
  56. "keywords": [
  57. "Twitter API",
  58. "Twitter oAuth",
  59. "api",
  60. "oauth",
  61. "rest",
  62. "social",
  63. "twitter"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/abraham/twitteroauth/issues",
  67. "source": "https://github.com/abraham/twitteroauth"
  68. },
  69. "time": "2024-02-11T18:58:08+00:00"
  70. },
  71. {
  72. "name": "aliyuncs/oss-sdk-php",
  73. "version": "v2.7.2",
  74. "source": {
  75. "type": "git",
  76. "url": "https://github.com/aliyun/aliyun-oss-php-sdk.git",
  77. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5"
  78. },
  79. "dist": {
  80. "type": "zip",
  81. "url": "https://api.github.com/repos/aliyun/aliyun-oss-php-sdk/zipball/483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  82. "reference": "483dd0b8bff5d47f0e4ffc99f6077a295c5ccbb5",
  83. "shasum": ""
  84. },
  85. "require": {
  86. "php": ">=5.3"
  87. },
  88. "require-dev": {
  89. "php-coveralls/php-coveralls": "*",
  90. "phpunit/phpunit": "*"
  91. },
  92. "type": "library",
  93. "autoload": {
  94. "psr-4": {
  95. "OSS\\": "src/OSS"
  96. }
  97. },
  98. "notification-url": "https://packagist.org/downloads/",
  99. "license": [
  100. "MIT"
  101. ],
  102. "authors": [
  103. {
  104. "name": "Aliyuncs",
  105. "homepage": "http://www.aliyun.com"
  106. }
  107. ],
  108. "description": "Aliyun OSS SDK for PHP",
  109. "homepage": "http://www.aliyun.com/product/oss/",
  110. "support": {
  111. "issues": "https://github.com/aliyun/aliyun-oss-php-sdk/issues",
  112. "source": "https://github.com/aliyun/aliyun-oss-php-sdk/tree/v2.7.2"
  113. },
  114. "time": "2024-10-28T10:41:12+00:00"
  115. },
  116. {
  117. "name": "alphasnow/aliyun-oss-flysystem",
  118. "version": "3.4.1",
  119. "source": {
  120. "type": "git",
  121. "url": "https://github.com/alphasnow/aliyun-oss-flysystem.git",
  122. "reference": "e5b3cb546c88f6dff5aad293cda460d3a1efca96"
  123. },
  124. "dist": {
  125. "type": "zip",
  126. "url": "https://api.github.com/repos/alphasnow/aliyun-oss-flysystem/zipball/e5b3cb546c88f6dff5aad293cda460d3a1efca96",
  127. "reference": "e5b3cb546c88f6dff5aad293cda460d3a1efca96",
  128. "shasum": ""
  129. },
  130. "require": {
  131. "aliyuncs/oss-sdk-php": "^2.7",
  132. "league/flysystem": "^3.0"
  133. },
  134. "require-dev": {
  135. "friendsofphp/php-cs-fixer": "^3.6",
  136. "mockery/mockery": "^1.5",
  137. "php-coveralls/php-coveralls": "*",
  138. "phpstan/phpstan": "^1.4",
  139. "phpunit/phpunit": "^9.5",
  140. "vlucas/phpdotenv": "^5.4"
  141. },
  142. "type": "library",
  143. "autoload": {
  144. "psr-4": {
  145. "AlphaSnow\\Flysystem\\Aliyun\\": "src/"
  146. }
  147. },
  148. "notification-url": "https://packagist.org/downloads/",
  149. "license": [
  150. "MIT"
  151. ],
  152. "authors": [
  153. {
  154. "name": "Alpha Snow",
  155. "email": "wind91@foxmail.com"
  156. }
  157. ],
  158. "description": "Flysystem adapter for the Aliyun storage",
  159. "homepage": "https://alphasnow.github.io/aliyun-oss-flysystem/",
  160. "keywords": [
  161. "adapter",
  162. "aliyun",
  163. "filesystem",
  164. "oss"
  165. ],
  166. "support": {
  167. "issues": "https://github.com/alphasnow/aliyun-oss-flysystem/issues",
  168. "source": "https://github.com/alphasnow/aliyun-oss-flysystem/tree/3.4.1"
  169. },
  170. "time": "2024-05-08T06:14:16+00:00"
  171. },
  172. {
  173. "name": "alphasnow/aliyun-oss-laravel",
  174. "version": "4.9.0",
  175. "source": {
  176. "type": "git",
  177. "url": "https://github.com/alphasnow/aliyun-oss-laravel.git",
  178. "reference": "b2ad6aca5dbf51d10625c3e2f63dd2bc5d0adfdf"
  179. },
  180. "dist": {
  181. "type": "zip",
  182. "url": "https://api.github.com/repos/alphasnow/aliyun-oss-laravel/zipball/b2ad6aca5dbf51d10625c3e2f63dd2bc5d0adfdf",
  183. "reference": "b2ad6aca5dbf51d10625c3e2f63dd2bc5d0adfdf",
  184. "shasum": ""
  185. },
  186. "require": {
  187. "alphasnow/aliyun-oss-flysystem": "^3.4",
  188. "php": "^8.0.2"
  189. },
  190. "require-dev": {
  191. "friendsofphp/php-cs-fixer": "^3.12",
  192. "mockery/mockery": "^1.5",
  193. "orchestra/testbench": "^7.13",
  194. "php-coveralls/php-coveralls": "*",
  195. "phpstan/phpstan": "^1.9",
  196. "phpunit/phpunit": "^9.5"
  197. },
  198. "type": "library",
  199. "extra": {
  200. "laravel": {
  201. "providers": [
  202. "AlphaSnow\\LaravelFilesystem\\Aliyun\\AliyunServiceProvider"
  203. ]
  204. }
  205. },
  206. "autoload": {
  207. "psr-4": {
  208. "AlphaSnow\\LaravelFilesystem\\Aliyun\\": "src/"
  209. }
  210. },
  211. "notification-url": "https://packagist.org/downloads/",
  212. "license": [
  213. "MIT"
  214. ],
  215. "authors": [
  216. {
  217. "name": "alphasnow",
  218. "email": "wind91@foxmail.com"
  219. }
  220. ],
  221. "description": "alibaba cloud object storage service for laravel",
  222. "homepage": "https://alphasnow.github.io/aliyun-oss-laravel/",
  223. "keywords": [
  224. "aliyun",
  225. "filesystems",
  226. "laravel",
  227. "oss",
  228. "storage"
  229. ],
  230. "support": {
  231. "issues": "https://github.com/alphasnow/aliyun-oss-laravel/issues",
  232. "source": "https://github.com/alphasnow/aliyun-oss-laravel/tree/4.9.0"
  233. },
  234. "time": "2024-06-14T01:45:45+00:00"
  235. },
  236. {
  237. "name": "box/spout",
  238. "version": "v3.3.0",
  239. "source": {
  240. "type": "git",
  241. "url": "https://github.com/box/spout.git",
  242. "reference": "9bdb027d312b732515b884a341c0ad70372c6295"
  243. },
  244. "dist": {
  245. "type": "zip",
  246. "url": "https://api.github.com/repos/box/spout/zipball/9bdb027d312b732515b884a341c0ad70372c6295",
  247. "reference": "9bdb027d312b732515b884a341c0ad70372c6295",
  248. "shasum": ""
  249. },
  250. "require": {
  251. "ext-dom": "*",
  252. "ext-xmlreader": "*",
  253. "ext-zip": "*",
  254. "php": ">=7.2.0"
  255. },
  256. "require-dev": {
  257. "friendsofphp/php-cs-fixer": "^2",
  258. "phpunit/phpunit": "^8"
  259. },
  260. "suggest": {
  261. "ext-iconv": "To handle non UTF-8 CSV files (if \"php-intl\" is not already installed or is too limited)",
  262. "ext-intl": "To handle non UTF-8 CSV files (if \"iconv\" is not already installed)"
  263. },
  264. "type": "library",
  265. "extra": {
  266. "branch-alias": {
  267. "dev-master": "3.1.x-dev"
  268. }
  269. },
  270. "autoload": {
  271. "psr-4": {
  272. "Box\\Spout\\": "src/Spout"
  273. }
  274. },
  275. "notification-url": "https://packagist.org/downloads/",
  276. "license": [
  277. "Apache-2.0"
  278. ],
  279. "authors": [
  280. {
  281. "name": "Adrien Loison",
  282. "email": "adrien@box.com"
  283. }
  284. ],
  285. "description": "PHP Library to read and write spreadsheet files (CSV, XLSX and ODS), in a fast and scalable way",
  286. "homepage": "https://www.github.com/box/spout",
  287. "keywords": [
  288. "OOXML",
  289. "csv",
  290. "excel",
  291. "memory",
  292. "odf",
  293. "ods",
  294. "office",
  295. "open",
  296. "php",
  297. "read",
  298. "scale",
  299. "spreadsheet",
  300. "stream",
  301. "write",
  302. "xlsx"
  303. ],
  304. "support": {
  305. "issues": "https://github.com/box/spout/issues",
  306. "source": "https://github.com/box/spout/tree/v3.3.0"
  307. },
  308. "abandoned": true,
  309. "time": "2021-05-14T21:18:09+00:00"
  310. },
  311. {
  312. "name": "brick/math",
  313. "version": "0.11.0",
  314. "source": {
  315. "type": "git",
  316. "url": "https://github.com/brick/math.git",
  317. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  318. },
  319. "dist": {
  320. "type": "zip",
  321. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  322. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  323. "shasum": ""
  324. },
  325. "require": {
  326. "php": "^8.0"
  327. },
  328. "require-dev": {
  329. "php-coveralls/php-coveralls": "^2.2",
  330. "phpunit/phpunit": "^9.0",
  331. "vimeo/psalm": "5.0.0"
  332. },
  333. "type": "library",
  334. "autoload": {
  335. "psr-4": {
  336. "Brick\\Math\\": "src/"
  337. }
  338. },
  339. "notification-url": "https://packagist.org/downloads/",
  340. "license": [
  341. "MIT"
  342. ],
  343. "description": "Arbitrary-precision arithmetic library",
  344. "keywords": [
  345. "Arbitrary-precision",
  346. "BigInteger",
  347. "BigRational",
  348. "arithmetic",
  349. "bigdecimal",
  350. "bignum",
  351. "brick",
  352. "math"
  353. ],
  354. "support": {
  355. "issues": "https://github.com/brick/math/issues",
  356. "source": "https://github.com/brick/math/tree/0.11.0"
  357. },
  358. "funding": [
  359. {
  360. "url": "https://github.com/BenMorel",
  361. "type": "github"
  362. }
  363. ],
  364. "time": "2023-01-15T23:15:59+00:00"
  365. },
  366. {
  367. "name": "carbonphp/carbon-doctrine-types",
  368. "version": "3.2.0",
  369. "source": {
  370. "type": "git",
  371. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  372. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  373. },
  374. "dist": {
  375. "type": "zip",
  376. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  377. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  378. "shasum": ""
  379. },
  380. "require": {
  381. "php": "^8.1"
  382. },
  383. "conflict": {
  384. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  385. },
  386. "require-dev": {
  387. "doctrine/dbal": "^4.0.0",
  388. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  389. "phpunit/phpunit": "^10.3"
  390. },
  391. "type": "library",
  392. "autoload": {
  393. "psr-4": {
  394. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  395. }
  396. },
  397. "notification-url": "https://packagist.org/downloads/",
  398. "license": [
  399. "MIT"
  400. ],
  401. "authors": [
  402. {
  403. "name": "KyleKatarn",
  404. "email": "kylekatarnls@gmail.com"
  405. }
  406. ],
  407. "description": "Types to use Carbon in Doctrine",
  408. "keywords": [
  409. "carbon",
  410. "date",
  411. "datetime",
  412. "doctrine",
  413. "time"
  414. ],
  415. "support": {
  416. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  417. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  418. },
  419. "funding": [
  420. {
  421. "url": "https://github.com/kylekatarnls",
  422. "type": "github"
  423. },
  424. {
  425. "url": "https://opencollective.com/Carbon",
  426. "type": "open_collective"
  427. },
  428. {
  429. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  430. "type": "tidelift"
  431. }
  432. ],
  433. "time": "2024-02-09T16:56:22+00:00"
  434. },
  435. {
  436. "name": "composer/ca-bundle",
  437. "version": "1.5.6",
  438. "source": {
  439. "type": "git",
  440. "url": "https://github.com/composer/ca-bundle.git",
  441. "reference": "f65c239c970e7f072f067ab78646e9f0b2935175"
  442. },
  443. "dist": {
  444. "type": "zip",
  445. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/f65c239c970e7f072f067ab78646e9f0b2935175",
  446. "reference": "f65c239c970e7f072f067ab78646e9f0b2935175",
  447. "shasum": ""
  448. },
  449. "require": {
  450. "ext-openssl": "*",
  451. "ext-pcre": "*",
  452. "php": "^7.2 || ^8.0"
  453. },
  454. "require-dev": {
  455. "phpstan/phpstan": "^1.10",
  456. "phpunit/phpunit": "^8 || ^9",
  457. "psr/log": "^1.0 || ^2.0 || ^3.0",
  458. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  459. },
  460. "type": "library",
  461. "extra": {
  462. "branch-alias": {
  463. "dev-main": "1.x-dev"
  464. }
  465. },
  466. "autoload": {
  467. "psr-4": {
  468. "Composer\\CaBundle\\": "src"
  469. }
  470. },
  471. "notification-url": "https://packagist.org/downloads/",
  472. "license": [
  473. "MIT"
  474. ],
  475. "authors": [
  476. {
  477. "name": "Jordi Boggiano",
  478. "email": "j.boggiano@seld.be",
  479. "homepage": "http://seld.be"
  480. }
  481. ],
  482. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  483. "keywords": [
  484. "cabundle",
  485. "cacert",
  486. "certificate",
  487. "ssl",
  488. "tls"
  489. ],
  490. "support": {
  491. "irc": "irc://irc.freenode.org/composer",
  492. "issues": "https://github.com/composer/ca-bundle/issues",
  493. "source": "https://github.com/composer/ca-bundle/tree/1.5.6"
  494. },
  495. "funding": [
  496. {
  497. "url": "https://packagist.com",
  498. "type": "custom"
  499. },
  500. {
  501. "url": "https://github.com/composer",
  502. "type": "github"
  503. },
  504. {
  505. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  506. "type": "tidelift"
  507. }
  508. ],
  509. "time": "2025-03-06T14:30:56+00:00"
  510. },
  511. {
  512. "name": "dcat-plus/laravel-admin",
  513. "version": "1.3.7",
  514. "source": {
  515. "type": "git",
  516. "url": "https://github.com/ycookies/dcat-plus-admin.git",
  517. "reference": "60d971f2ff90e35edd92d839cc3f6a31114559c1"
  518. },
  519. "dist": {
  520. "type": "zip",
  521. "url": "https://api.github.com/repos/ycookies/dcat-plus-admin/zipball/60d971f2ff90e35edd92d839cc3f6a31114559c1",
  522. "reference": "60d971f2ff90e35edd92d839cc3f6a31114559c1",
  523. "shasum": ""
  524. },
  525. "require": {
  526. "dcat/easy-excel": "*",
  527. "doctrine/dbal": "^2.6|^3.0|^4.0",
  528. "laravel/framework": "~8.0|~9.0|~10.0|~11.0|~12.0",
  529. "php": ">=7.4.0",
  530. "spatie/eloquent-sortable": "3.*|4.*"
  531. },
  532. "require-dev": {
  533. "fakerphp/faker": "^1.23",
  534. "laravel/dusk": "~5.9|~6|~7.0|~8.0",
  535. "mockery/mockery": "^1.6",
  536. "phpstan/phpstan": "^0.12.0|~1.0",
  537. "phpunit/phpunit": "^7.5|~9|~10|~11"
  538. },
  539. "type": "library",
  540. "extra": {
  541. "laravel": {
  542. "providers": [
  543. "Dcat\\Admin\\AdminServiceProvider"
  544. ]
  545. }
  546. },
  547. "autoload": {
  548. "files": [
  549. "src/Support/helpers.php"
  550. ],
  551. "psr-4": {
  552. "Dcat\\Admin\\": "src/"
  553. }
  554. },
  555. "notification-url": "https://packagist.org/downloads/",
  556. "license": [
  557. "MIT"
  558. ],
  559. "authors": [
  560. {
  561. "name": "jikeadmin.saishiyun.net",
  562. "email": "3664839@qq.com"
  563. }
  564. ],
  565. "description": "dcat-plus admin",
  566. "homepage": "https://github.com/ycookies/dcat-plus-admin",
  567. "keywords": [
  568. "admin",
  569. "dcat",
  570. "form",
  571. "grid",
  572. "laravel",
  573. "laravel saas admin",
  574. "saas"
  575. ],
  576. "support": {
  577. "source": "https://github.com/ycookies/dcat-plus-admin/tree/1.3.7"
  578. },
  579. "time": "2025-04-15T14:53:28+00:00"
  580. },
  581. {
  582. "name": "dcat/easy-excel",
  583. "version": "1.1.0",
  584. "source": {
  585. "type": "git",
  586. "url": "https://github.com/jqhph/easy-excel.git",
  587. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0"
  588. },
  589. "dist": {
  590. "type": "zip",
  591. "url": "https://api.github.com/repos/jqhph/easy-excel/zipball/20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  592. "reference": "20ee838b07f1f5d9c075b84e6f4807cbb21c44b0",
  593. "shasum": ""
  594. },
  595. "require": {
  596. "box/spout": "~3",
  597. "league/flysystem": "~1|~2|~3",
  598. "php": ">=7.1.0"
  599. },
  600. "require-dev": {
  601. "friendsofphp/php-cs-fixer": "^2",
  602. "phpunit/phpunit": "~7|~8.0"
  603. },
  604. "type": "library",
  605. "autoload": {
  606. "psr-4": {
  607. "Dcat\\EasyExcel\\": "src/"
  608. }
  609. },
  610. "notification-url": "https://packagist.org/downloads/",
  611. "license": [
  612. "MIT"
  613. ],
  614. "authors": [
  615. {
  616. "name": "jqh",
  617. "email": "841324345@qq.com"
  618. }
  619. ],
  620. "description": "使用简单实用的语义化接口快速读写Excel文件",
  621. "homepage": "https://github.com/jqhph/easy-excel",
  622. "keywords": [
  623. "box spout",
  624. "csv",
  625. "easy excel",
  626. "excel",
  627. "ods",
  628. "office",
  629. "read",
  630. "spreadsheet",
  631. "stream",
  632. "xlsx"
  633. ],
  634. "support": {
  635. "issues": "https://github.com/jqhph/easy-excel/issues",
  636. "source": "https://github.com/jqhph/easy-excel/tree/1.1.0"
  637. },
  638. "time": "2022-03-03T03:04:13+00:00"
  639. },
  640. {
  641. "name": "dflydev/dot-access-data",
  642. "version": "v3.0.3",
  643. "source": {
  644. "type": "git",
  645. "url": "https://github.com/dflydev/dflydev-dot-access-data.git",
  646. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f"
  647. },
  648. "dist": {
  649. "type": "zip",
  650. "url": "https://api.github.com/repos/dflydev/dflydev-dot-access-data/zipball/a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  651. "reference": "a23a2bf4f31d3518f3ecb38660c95715dfead60f",
  652. "shasum": ""
  653. },
  654. "require": {
  655. "php": "^7.1 || ^8.0"
  656. },
  657. "require-dev": {
  658. "phpstan/phpstan": "^0.12.42",
  659. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.3",
  660. "scrutinizer/ocular": "1.6.0",
  661. "squizlabs/php_codesniffer": "^3.5",
  662. "vimeo/psalm": "^4.0.0"
  663. },
  664. "type": "library",
  665. "extra": {
  666. "branch-alias": {
  667. "dev-main": "3.x-dev"
  668. }
  669. },
  670. "autoload": {
  671. "psr-4": {
  672. "Dflydev\\DotAccessData\\": "src/"
  673. }
  674. },
  675. "notification-url": "https://packagist.org/downloads/",
  676. "license": [
  677. "MIT"
  678. ],
  679. "authors": [
  680. {
  681. "name": "Dragonfly Development Inc.",
  682. "email": "info@dflydev.com",
  683. "homepage": "http://dflydev.com"
  684. },
  685. {
  686. "name": "Beau Simensen",
  687. "email": "beau@dflydev.com",
  688. "homepage": "http://beausimensen.com"
  689. },
  690. {
  691. "name": "Carlos Frutos",
  692. "email": "carlos@kiwing.it",
  693. "homepage": "https://github.com/cfrutos"
  694. },
  695. {
  696. "name": "Colin O'Dell",
  697. "email": "colinodell@gmail.com",
  698. "homepage": "https://www.colinodell.com"
  699. }
  700. ],
  701. "description": "Given a deep data structure, access data by dot notation.",
  702. "homepage": "https://github.com/dflydev/dflydev-dot-access-data",
  703. "keywords": [
  704. "access",
  705. "data",
  706. "dot",
  707. "notation"
  708. ],
  709. "support": {
  710. "issues": "https://github.com/dflydev/dflydev-dot-access-data/issues",
  711. "source": "https://github.com/dflydev/dflydev-dot-access-data/tree/v3.0.3"
  712. },
  713. "time": "2024-07-08T12:26:09+00:00"
  714. },
  715. {
  716. "name": "doctrine/dbal",
  717. "version": "4.2.3",
  718. "source": {
  719. "type": "git",
  720. "url": "https://github.com/doctrine/dbal.git",
  721. "reference": "33d2d7fe1269b2301640c44cf2896ea607b30e3e"
  722. },
  723. "dist": {
  724. "type": "zip",
  725. "url": "https://api.github.com/repos/doctrine/dbal/zipball/33d2d7fe1269b2301640c44cf2896ea607b30e3e",
  726. "reference": "33d2d7fe1269b2301640c44cf2896ea607b30e3e",
  727. "shasum": ""
  728. },
  729. "require": {
  730. "doctrine/deprecations": "^0.5.3|^1",
  731. "php": "^8.1",
  732. "psr/cache": "^1|^2|^3",
  733. "psr/log": "^1|^2|^3"
  734. },
  735. "require-dev": {
  736. "doctrine/coding-standard": "12.0.0",
  737. "fig/log-test": "^1",
  738. "jetbrains/phpstorm-stubs": "2023.2",
  739. "phpstan/phpstan": "2.1.1",
  740. "phpstan/phpstan-phpunit": "2.0.3",
  741. "phpstan/phpstan-strict-rules": "^2",
  742. "phpunit/phpunit": "10.5.39",
  743. "slevomat/coding-standard": "8.13.1",
  744. "squizlabs/php_codesniffer": "3.10.2",
  745. "symfony/cache": "^6.3.8|^7.0",
  746. "symfony/console": "^5.4|^6.3|^7.0"
  747. },
  748. "suggest": {
  749. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  750. },
  751. "type": "library",
  752. "autoload": {
  753. "psr-4": {
  754. "Doctrine\\DBAL\\": "src"
  755. }
  756. },
  757. "notification-url": "https://packagist.org/downloads/",
  758. "license": [
  759. "MIT"
  760. ],
  761. "authors": [
  762. {
  763. "name": "Guilherme Blanco",
  764. "email": "guilhermeblanco@gmail.com"
  765. },
  766. {
  767. "name": "Roman Borschel",
  768. "email": "roman@code-factory.org"
  769. },
  770. {
  771. "name": "Benjamin Eberlei",
  772. "email": "kontakt@beberlei.de"
  773. },
  774. {
  775. "name": "Jonathan Wage",
  776. "email": "jonwage@gmail.com"
  777. }
  778. ],
  779. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  780. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  781. "keywords": [
  782. "abstraction",
  783. "database",
  784. "db2",
  785. "dbal",
  786. "mariadb",
  787. "mssql",
  788. "mysql",
  789. "oci8",
  790. "oracle",
  791. "pdo",
  792. "pgsql",
  793. "postgresql",
  794. "queryobject",
  795. "sasql",
  796. "sql",
  797. "sqlite",
  798. "sqlserver",
  799. "sqlsrv"
  800. ],
  801. "support": {
  802. "issues": "https://github.com/doctrine/dbal/issues",
  803. "source": "https://github.com/doctrine/dbal/tree/4.2.3"
  804. },
  805. "funding": [
  806. {
  807. "url": "https://www.doctrine-project.org/sponsorship.html",
  808. "type": "custom"
  809. },
  810. {
  811. "url": "https://www.patreon.com/phpdoctrine",
  812. "type": "patreon"
  813. },
  814. {
  815. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Fdbal",
  816. "type": "tidelift"
  817. }
  818. ],
  819. "time": "2025-03-07T18:29:05+00:00"
  820. },
  821. {
  822. "name": "doctrine/deprecations",
  823. "version": "1.1.5",
  824. "source": {
  825. "type": "git",
  826. "url": "https://github.com/doctrine/deprecations.git",
  827. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38"
  828. },
  829. "dist": {
  830. "type": "zip",
  831. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  832. "reference": "459c2f5dd3d6a4633d3b5f46ee2b1c40f57d3f38",
  833. "shasum": ""
  834. },
  835. "require": {
  836. "php": "^7.1 || ^8.0"
  837. },
  838. "conflict": {
  839. "phpunit/phpunit": "<=7.5 || >=13"
  840. },
  841. "require-dev": {
  842. "doctrine/coding-standard": "^9 || ^12 || ^13",
  843. "phpstan/phpstan": "1.4.10 || 2.1.11",
  844. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  845. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12",
  846. "psr/log": "^1 || ^2 || ^3"
  847. },
  848. "suggest": {
  849. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  850. },
  851. "type": "library",
  852. "autoload": {
  853. "psr-4": {
  854. "Doctrine\\Deprecations\\": "src"
  855. }
  856. },
  857. "notification-url": "https://packagist.org/downloads/",
  858. "license": [
  859. "MIT"
  860. ],
  861. "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.",
  862. "homepage": "https://www.doctrine-project.org/",
  863. "support": {
  864. "issues": "https://github.com/doctrine/deprecations/issues",
  865. "source": "https://github.com/doctrine/deprecations/tree/1.1.5"
  866. },
  867. "time": "2025-04-07T20:06:18+00:00"
  868. },
  869. {
  870. "name": "doctrine/inflector",
  871. "version": "2.0.10",
  872. "source": {
  873. "type": "git",
  874. "url": "https://github.com/doctrine/inflector.git",
  875. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  876. },
  877. "dist": {
  878. "type": "zip",
  879. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  880. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  881. "shasum": ""
  882. },
  883. "require": {
  884. "php": "^7.2 || ^8.0"
  885. },
  886. "require-dev": {
  887. "doctrine/coding-standard": "^11.0",
  888. "phpstan/phpstan": "^1.8",
  889. "phpstan/phpstan-phpunit": "^1.1",
  890. "phpstan/phpstan-strict-rules": "^1.3",
  891. "phpunit/phpunit": "^8.5 || ^9.5",
  892. "vimeo/psalm": "^4.25 || ^5.4"
  893. },
  894. "type": "library",
  895. "autoload": {
  896. "psr-4": {
  897. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  898. }
  899. },
  900. "notification-url": "https://packagist.org/downloads/",
  901. "license": [
  902. "MIT"
  903. ],
  904. "authors": [
  905. {
  906. "name": "Guilherme Blanco",
  907. "email": "guilhermeblanco@gmail.com"
  908. },
  909. {
  910. "name": "Roman Borschel",
  911. "email": "roman@code-factory.org"
  912. },
  913. {
  914. "name": "Benjamin Eberlei",
  915. "email": "kontakt@beberlei.de"
  916. },
  917. {
  918. "name": "Jonathan Wage",
  919. "email": "jonwage@gmail.com"
  920. },
  921. {
  922. "name": "Johannes Schmitt",
  923. "email": "schmittjoh@gmail.com"
  924. }
  925. ],
  926. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  927. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  928. "keywords": [
  929. "inflection",
  930. "inflector",
  931. "lowercase",
  932. "manipulation",
  933. "php",
  934. "plural",
  935. "singular",
  936. "strings",
  937. "uppercase",
  938. "words"
  939. ],
  940. "support": {
  941. "issues": "https://github.com/doctrine/inflector/issues",
  942. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  943. },
  944. "funding": [
  945. {
  946. "url": "https://www.doctrine-project.org/sponsorship.html",
  947. "type": "custom"
  948. },
  949. {
  950. "url": "https://www.patreon.com/phpdoctrine",
  951. "type": "patreon"
  952. },
  953. {
  954. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  955. "type": "tidelift"
  956. }
  957. ],
  958. "time": "2024-02-18T20:23:39+00:00"
  959. },
  960. {
  961. "name": "doctrine/lexer",
  962. "version": "3.0.1",
  963. "source": {
  964. "type": "git",
  965. "url": "https://github.com/doctrine/lexer.git",
  966. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd"
  967. },
  968. "dist": {
  969. "type": "zip",
  970. "url": "https://api.github.com/repos/doctrine/lexer/zipball/31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  971. "reference": "31ad66abc0fc9e1a1f2d9bc6a42668d2fbbcd6dd",
  972. "shasum": ""
  973. },
  974. "require": {
  975. "php": "^8.1"
  976. },
  977. "require-dev": {
  978. "doctrine/coding-standard": "^12",
  979. "phpstan/phpstan": "^1.10",
  980. "phpunit/phpunit": "^10.5",
  981. "psalm/plugin-phpunit": "^0.18.3",
  982. "vimeo/psalm": "^5.21"
  983. },
  984. "type": "library",
  985. "autoload": {
  986. "psr-4": {
  987. "Doctrine\\Common\\Lexer\\": "src"
  988. }
  989. },
  990. "notification-url": "https://packagist.org/downloads/",
  991. "license": [
  992. "MIT"
  993. ],
  994. "authors": [
  995. {
  996. "name": "Guilherme Blanco",
  997. "email": "guilhermeblanco@gmail.com"
  998. },
  999. {
  1000. "name": "Roman Borschel",
  1001. "email": "roman@code-factory.org"
  1002. },
  1003. {
  1004. "name": "Johannes Schmitt",
  1005. "email": "schmittjoh@gmail.com"
  1006. }
  1007. ],
  1008. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1009. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1010. "keywords": [
  1011. "annotations",
  1012. "docblock",
  1013. "lexer",
  1014. "parser",
  1015. "php"
  1016. ],
  1017. "support": {
  1018. "issues": "https://github.com/doctrine/lexer/issues",
  1019. "source": "https://github.com/doctrine/lexer/tree/3.0.1"
  1020. },
  1021. "funding": [
  1022. {
  1023. "url": "https://www.doctrine-project.org/sponsorship.html",
  1024. "type": "custom"
  1025. },
  1026. {
  1027. "url": "https://www.patreon.com/phpdoctrine",
  1028. "type": "patreon"
  1029. },
  1030. {
  1031. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  1032. "type": "tidelift"
  1033. }
  1034. ],
  1035. "time": "2024-02-05T11:56:58+00:00"
  1036. },
  1037. {
  1038. "name": "dragonmantank/cron-expression",
  1039. "version": "v3.4.0",
  1040. "source": {
  1041. "type": "git",
  1042. "url": "https://github.com/dragonmantank/cron-expression.git",
  1043. "reference": "8c784d071debd117328803d86b2097615b457500"
  1044. },
  1045. "dist": {
  1046. "type": "zip",
  1047. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/8c784d071debd117328803d86b2097615b457500",
  1048. "reference": "8c784d071debd117328803d86b2097615b457500",
  1049. "shasum": ""
  1050. },
  1051. "require": {
  1052. "php": "^7.2|^8.0",
  1053. "webmozart/assert": "^1.0"
  1054. },
  1055. "replace": {
  1056. "mtdowling/cron-expression": "^1.0"
  1057. },
  1058. "require-dev": {
  1059. "phpstan/extension-installer": "^1.0",
  1060. "phpstan/phpstan": "^1.0",
  1061. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  1062. },
  1063. "type": "library",
  1064. "extra": {
  1065. "branch-alias": {
  1066. "dev-master": "3.x-dev"
  1067. }
  1068. },
  1069. "autoload": {
  1070. "psr-4": {
  1071. "Cron\\": "src/Cron/"
  1072. }
  1073. },
  1074. "notification-url": "https://packagist.org/downloads/",
  1075. "license": [
  1076. "MIT"
  1077. ],
  1078. "authors": [
  1079. {
  1080. "name": "Chris Tankersley",
  1081. "email": "chris@ctankersley.com",
  1082. "homepage": "https://github.com/dragonmantank"
  1083. }
  1084. ],
  1085. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1086. "keywords": [
  1087. "cron",
  1088. "schedule"
  1089. ],
  1090. "support": {
  1091. "issues": "https://github.com/dragonmantank/cron-expression/issues",
  1092. "source": "https://github.com/dragonmantank/cron-expression/tree/v3.4.0"
  1093. },
  1094. "funding": [
  1095. {
  1096. "url": "https://github.com/dragonmantank",
  1097. "type": "github"
  1098. }
  1099. ],
  1100. "time": "2024-10-09T13:47:03+00:00"
  1101. },
  1102. {
  1103. "name": "egulias/email-validator",
  1104. "version": "4.0.4",
  1105. "source": {
  1106. "type": "git",
  1107. "url": "https://github.com/egulias/EmailValidator.git",
  1108. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa"
  1109. },
  1110. "dist": {
  1111. "type": "zip",
  1112. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1113. "reference": "d42c8731f0624ad6bdc8d3e5e9a4524f68801cfa",
  1114. "shasum": ""
  1115. },
  1116. "require": {
  1117. "doctrine/lexer": "^2.0 || ^3.0",
  1118. "php": ">=8.1",
  1119. "symfony/polyfill-intl-idn": "^1.26"
  1120. },
  1121. "require-dev": {
  1122. "phpunit/phpunit": "^10.2",
  1123. "vimeo/psalm": "^5.12"
  1124. },
  1125. "suggest": {
  1126. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1127. },
  1128. "type": "library",
  1129. "extra": {
  1130. "branch-alias": {
  1131. "dev-master": "4.0.x-dev"
  1132. }
  1133. },
  1134. "autoload": {
  1135. "psr-4": {
  1136. "Egulias\\EmailValidator\\": "src"
  1137. }
  1138. },
  1139. "notification-url": "https://packagist.org/downloads/",
  1140. "license": [
  1141. "MIT"
  1142. ],
  1143. "authors": [
  1144. {
  1145. "name": "Eduardo Gulias Davis"
  1146. }
  1147. ],
  1148. "description": "A library for validating emails against several RFCs",
  1149. "homepage": "https://github.com/egulias/EmailValidator",
  1150. "keywords": [
  1151. "email",
  1152. "emailvalidation",
  1153. "emailvalidator",
  1154. "validation",
  1155. "validator"
  1156. ],
  1157. "support": {
  1158. "issues": "https://github.com/egulias/EmailValidator/issues",
  1159. "source": "https://github.com/egulias/EmailValidator/tree/4.0.4"
  1160. },
  1161. "funding": [
  1162. {
  1163. "url": "https://github.com/egulias",
  1164. "type": "github"
  1165. }
  1166. ],
  1167. "time": "2025-03-06T22:45:56+00:00"
  1168. },
  1169. {
  1170. "name": "fguillot/json-rpc",
  1171. "version": "v1.3.1",
  1172. "source": {
  1173. "type": "git",
  1174. "url": "https://github.com/matasarei/json-rpc.git",
  1175. "reference": "c251e12f6560b40f23b9e141bd287412c554c57a"
  1176. },
  1177. "dist": {
  1178. "type": "zip",
  1179. "url": "https://api.github.com/repos/matasarei/json-rpc/zipball/c251e12f6560b40f23b9e141bd287412c554c57a",
  1180. "reference": "c251e12f6560b40f23b9e141bd287412c554c57a",
  1181. "shasum": ""
  1182. },
  1183. "require": {
  1184. "ext-json": "*",
  1185. "php": ">=7.4"
  1186. },
  1187. "require-dev": {
  1188. "phpunit/phpunit": "^9.6",
  1189. "squizlabs/php_codesniffer": "^3.9"
  1190. },
  1191. "type": "library",
  1192. "autoload": {
  1193. "psr-0": {
  1194. "JsonRPC": "src/"
  1195. }
  1196. },
  1197. "notification-url": "https://packagist.org/downloads/",
  1198. "license": [
  1199. "MIT"
  1200. ],
  1201. "authors": [
  1202. {
  1203. "name": "Frédéric Guillot"
  1204. }
  1205. ],
  1206. "description": "Simple JSON-RPC client/server library that just works",
  1207. "homepage": "https://github.com/matasarei/json-rpc",
  1208. "support": {
  1209. "issues": "https://github.com/matasarei/json-rpc/issues",
  1210. "source": "https://github.com/matasarei/json-rpc/tree/v1.3.1"
  1211. },
  1212. "time": "2024-11-30T10:30:04+00:00"
  1213. },
  1214. {
  1215. "name": "firebase/php-jwt",
  1216. "version": "v6.11.1",
  1217. "source": {
  1218. "type": "git",
  1219. "url": "https://github.com/firebase/php-jwt.git",
  1220. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66"
  1221. },
  1222. "dist": {
  1223. "type": "zip",
  1224. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  1225. "reference": "d1e91ecf8c598d073d0995afa8cd5c75c6e19e66",
  1226. "shasum": ""
  1227. },
  1228. "require": {
  1229. "php": "^8.0"
  1230. },
  1231. "require-dev": {
  1232. "guzzlehttp/guzzle": "^7.4",
  1233. "phpspec/prophecy-phpunit": "^2.0",
  1234. "phpunit/phpunit": "^9.5",
  1235. "psr/cache": "^2.0||^3.0",
  1236. "psr/http-client": "^1.0",
  1237. "psr/http-factory": "^1.0"
  1238. },
  1239. "suggest": {
  1240. "ext-sodium": "Support EdDSA (Ed25519) signatures",
  1241. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  1242. },
  1243. "type": "library",
  1244. "autoload": {
  1245. "psr-4": {
  1246. "Firebase\\JWT\\": "src"
  1247. }
  1248. },
  1249. "notification-url": "https://packagist.org/downloads/",
  1250. "license": [
  1251. "BSD-3-Clause"
  1252. ],
  1253. "authors": [
  1254. {
  1255. "name": "Neuman Vong",
  1256. "email": "neuman+pear@twilio.com",
  1257. "role": "Developer"
  1258. },
  1259. {
  1260. "name": "Anant Narayanan",
  1261. "email": "anant@php.net",
  1262. "role": "Developer"
  1263. }
  1264. ],
  1265. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  1266. "homepage": "https://github.com/firebase/php-jwt",
  1267. "keywords": [
  1268. "jwt",
  1269. "php"
  1270. ],
  1271. "support": {
  1272. "issues": "https://github.com/firebase/php-jwt/issues",
  1273. "source": "https://github.com/firebase/php-jwt/tree/v6.11.1"
  1274. },
  1275. "time": "2025-04-09T20:32:01+00:00"
  1276. },
  1277. {
  1278. "name": "fruitcake/php-cors",
  1279. "version": "v1.3.0",
  1280. "source": {
  1281. "type": "git",
  1282. "url": "https://github.com/fruitcake/php-cors.git",
  1283. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b"
  1284. },
  1285. "dist": {
  1286. "type": "zip",
  1287. "url": "https://api.github.com/repos/fruitcake/php-cors/zipball/3d158f36e7875e2f040f37bc0573956240a5a38b",
  1288. "reference": "3d158f36e7875e2f040f37bc0573956240a5a38b",
  1289. "shasum": ""
  1290. },
  1291. "require": {
  1292. "php": "^7.4|^8.0",
  1293. "symfony/http-foundation": "^4.4|^5.4|^6|^7"
  1294. },
  1295. "require-dev": {
  1296. "phpstan/phpstan": "^1.4",
  1297. "phpunit/phpunit": "^9",
  1298. "squizlabs/php_codesniffer": "^3.5"
  1299. },
  1300. "type": "library",
  1301. "extra": {
  1302. "branch-alias": {
  1303. "dev-master": "1.2-dev"
  1304. }
  1305. },
  1306. "autoload": {
  1307. "psr-4": {
  1308. "Fruitcake\\Cors\\": "src/"
  1309. }
  1310. },
  1311. "notification-url": "https://packagist.org/downloads/",
  1312. "license": [
  1313. "MIT"
  1314. ],
  1315. "authors": [
  1316. {
  1317. "name": "Fruitcake",
  1318. "homepage": "https://fruitcake.nl"
  1319. },
  1320. {
  1321. "name": "Barryvdh",
  1322. "email": "barryvdh@gmail.com"
  1323. }
  1324. ],
  1325. "description": "Cross-origin resource sharing library for the Symfony HttpFoundation",
  1326. "homepage": "https://github.com/fruitcake/php-cors",
  1327. "keywords": [
  1328. "cors",
  1329. "laravel",
  1330. "symfony"
  1331. ],
  1332. "support": {
  1333. "issues": "https://github.com/fruitcake/php-cors/issues",
  1334. "source": "https://github.com/fruitcake/php-cors/tree/v1.3.0"
  1335. },
  1336. "funding": [
  1337. {
  1338. "url": "https://fruitcake.nl",
  1339. "type": "custom"
  1340. },
  1341. {
  1342. "url": "https://github.com/barryvdh",
  1343. "type": "github"
  1344. }
  1345. ],
  1346. "time": "2023-10-12T05:21:21+00:00"
  1347. },
  1348. {
  1349. "name": "google/apiclient",
  1350. "version": "v2.18.3",
  1351. "source": {
  1352. "type": "git",
  1353. "url": "https://github.com/googleapis/google-api-php-client.git",
  1354. "reference": "4eee42d201eff054428a4836ec132944d271f051"
  1355. },
  1356. "dist": {
  1357. "type": "zip",
  1358. "url": "https://api.github.com/repos/googleapis/google-api-php-client/zipball/4eee42d201eff054428a4836ec132944d271f051",
  1359. "reference": "4eee42d201eff054428a4836ec132944d271f051",
  1360. "shasum": ""
  1361. },
  1362. "require": {
  1363. "firebase/php-jwt": "^6.0",
  1364. "google/apiclient-services": "~0.350",
  1365. "google/auth": "^1.37",
  1366. "guzzlehttp/guzzle": "^7.4.5",
  1367. "guzzlehttp/psr7": "^2.6",
  1368. "monolog/monolog": "^2.9||^3.0",
  1369. "php": "^8.0",
  1370. "phpseclib/phpseclib": "^3.0.36"
  1371. },
  1372. "require-dev": {
  1373. "cache/filesystem-adapter": "^1.1",
  1374. "composer/composer": "^1.10.23",
  1375. "phpcompatibility/php-compatibility": "^9.2",
  1376. "phpspec/prophecy-phpunit": "^2.1",
  1377. "phpunit/phpunit": "^9.6",
  1378. "squizlabs/php_codesniffer": "^3.8",
  1379. "symfony/css-selector": "~2.1",
  1380. "symfony/dom-crawler": "~2.1"
  1381. },
  1382. "suggest": {
  1383. "cache/filesystem-adapter": "For caching certs and tokens (using Google\\Client::setCache)"
  1384. },
  1385. "type": "library",
  1386. "extra": {
  1387. "branch-alias": {
  1388. "dev-main": "2.x-dev"
  1389. }
  1390. },
  1391. "autoload": {
  1392. "files": [
  1393. "src/aliases.php"
  1394. ],
  1395. "psr-4": {
  1396. "Google\\": "src/"
  1397. },
  1398. "classmap": [
  1399. "src/aliases.php"
  1400. ]
  1401. },
  1402. "notification-url": "https://packagist.org/downloads/",
  1403. "license": [
  1404. "Apache-2.0"
  1405. ],
  1406. "description": "Client library for Google APIs",
  1407. "homepage": "http://developers.google.com/api-client-library/php",
  1408. "keywords": [
  1409. "google"
  1410. ],
  1411. "support": {
  1412. "issues": "https://github.com/googleapis/google-api-php-client/issues",
  1413. "source": "https://github.com/googleapis/google-api-php-client/tree/v2.18.3"
  1414. },
  1415. "time": "2025-04-08T21:59:36+00:00"
  1416. },
  1417. {
  1418. "name": "google/apiclient-services",
  1419. "version": "v0.396.0",
  1420. "source": {
  1421. "type": "git",
  1422. "url": "https://github.com/googleapis/google-api-php-client-services.git",
  1423. "reference": "ceb2e432e4326c6775d24f62d554395a1a9ad3dd"
  1424. },
  1425. "dist": {
  1426. "type": "zip",
  1427. "url": "https://api.github.com/repos/googleapis/google-api-php-client-services/zipball/ceb2e432e4326c6775d24f62d554395a1a9ad3dd",
  1428. "reference": "ceb2e432e4326c6775d24f62d554395a1a9ad3dd",
  1429. "shasum": ""
  1430. },
  1431. "require": {
  1432. "php": "^8.0"
  1433. },
  1434. "require-dev": {
  1435. "phpunit/phpunit": "^9.6"
  1436. },
  1437. "type": "library",
  1438. "autoload": {
  1439. "files": [
  1440. "autoload.php"
  1441. ],
  1442. "psr-4": {
  1443. "Google\\Service\\": "src"
  1444. }
  1445. },
  1446. "notification-url": "https://packagist.org/downloads/",
  1447. "license": [
  1448. "Apache-2.0"
  1449. ],
  1450. "description": "Client library for Google APIs",
  1451. "homepage": "http://developers.google.com/api-client-library/php",
  1452. "keywords": [
  1453. "google"
  1454. ],
  1455. "support": {
  1456. "issues": "https://github.com/googleapis/google-api-php-client-services/issues",
  1457. "source": "https://github.com/googleapis/google-api-php-client-services/tree/v0.396.0"
  1458. },
  1459. "time": "2025-02-24T01:10:27+00:00"
  1460. },
  1461. {
  1462. "name": "google/auth",
  1463. "version": "v1.47.0",
  1464. "source": {
  1465. "type": "git",
  1466. "url": "https://github.com/googleapis/google-auth-library-php.git",
  1467. "reference": "d6389aae7c009daceaa8da9b7942d8df6969f6d9"
  1468. },
  1469. "dist": {
  1470. "type": "zip",
  1471. "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/d6389aae7c009daceaa8da9b7942d8df6969f6d9",
  1472. "reference": "d6389aae7c009daceaa8da9b7942d8df6969f6d9",
  1473. "shasum": ""
  1474. },
  1475. "require": {
  1476. "firebase/php-jwt": "^6.0",
  1477. "guzzlehttp/guzzle": "^7.4.5",
  1478. "guzzlehttp/psr7": "^2.4.5",
  1479. "php": "^8.0",
  1480. "psr/cache": "^2.0||^3.0",
  1481. "psr/http-message": "^1.1||^2.0",
  1482. "psr/log": "^3.0"
  1483. },
  1484. "require-dev": {
  1485. "guzzlehttp/promises": "^2.0",
  1486. "kelvinmo/simplejwt": "0.7.1",
  1487. "phpseclib/phpseclib": "^3.0.35",
  1488. "phpspec/prophecy-phpunit": "^2.1",
  1489. "phpunit/phpunit": "^9.6",
  1490. "sebastian/comparator": ">=1.2.3",
  1491. "squizlabs/php_codesniffer": "^3.5",
  1492. "symfony/process": "^6.0||^7.0",
  1493. "webmozart/assert": "^1.11"
  1494. },
  1495. "suggest": {
  1496. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  1497. },
  1498. "type": "library",
  1499. "autoload": {
  1500. "psr-4": {
  1501. "Google\\Auth\\": "src"
  1502. }
  1503. },
  1504. "notification-url": "https://packagist.org/downloads/",
  1505. "license": [
  1506. "Apache-2.0"
  1507. ],
  1508. "description": "Google Auth Library for PHP",
  1509. "homepage": "https://github.com/google/google-auth-library-php",
  1510. "keywords": [
  1511. "Authentication",
  1512. "google",
  1513. "oauth2"
  1514. ],
  1515. "support": {
  1516. "docs": "https://cloud.google.com/php/docs/reference/auth/latest",
  1517. "issues": "https://github.com/googleapis/google-auth-library-php/issues",
  1518. "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.47.0"
  1519. },
  1520. "time": "2025-04-15T21:47:20+00:00"
  1521. },
  1522. {
  1523. "name": "graham-campbell/result-type",
  1524. "version": "v1.1.3",
  1525. "source": {
  1526. "type": "git",
  1527. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  1528. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945"
  1529. },
  1530. "dist": {
  1531. "type": "zip",
  1532. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/3ba905c11371512af9d9bdd27d99b782216b6945",
  1533. "reference": "3ba905c11371512af9d9bdd27d99b782216b6945",
  1534. "shasum": ""
  1535. },
  1536. "require": {
  1537. "php": "^7.2.5 || ^8.0",
  1538. "phpoption/phpoption": "^1.9.3"
  1539. },
  1540. "require-dev": {
  1541. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  1542. },
  1543. "type": "library",
  1544. "autoload": {
  1545. "psr-4": {
  1546. "GrahamCampbell\\ResultType\\": "src/"
  1547. }
  1548. },
  1549. "notification-url": "https://packagist.org/downloads/",
  1550. "license": [
  1551. "MIT"
  1552. ],
  1553. "authors": [
  1554. {
  1555. "name": "Graham Campbell",
  1556. "email": "hello@gjcampbell.co.uk",
  1557. "homepage": "https://github.com/GrahamCampbell"
  1558. }
  1559. ],
  1560. "description": "An Implementation Of The Result Type",
  1561. "keywords": [
  1562. "Graham Campbell",
  1563. "GrahamCampbell",
  1564. "Result Type",
  1565. "Result-Type",
  1566. "result"
  1567. ],
  1568. "support": {
  1569. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  1570. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.3"
  1571. },
  1572. "funding": [
  1573. {
  1574. "url": "https://github.com/GrahamCampbell",
  1575. "type": "github"
  1576. },
  1577. {
  1578. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  1579. "type": "tidelift"
  1580. }
  1581. ],
  1582. "time": "2024-07-20T21:45:45+00:00"
  1583. },
  1584. {
  1585. "name": "guzzlehttp/guzzle",
  1586. "version": "7.9.3",
  1587. "source": {
  1588. "type": "git",
  1589. "url": "https://github.com/guzzle/guzzle.git",
  1590. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77"
  1591. },
  1592. "dist": {
  1593. "type": "zip",
  1594. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  1595. "reference": "7b2f29fe81dc4da0ca0ea7d42107a0845946ea77",
  1596. "shasum": ""
  1597. },
  1598. "require": {
  1599. "ext-json": "*",
  1600. "guzzlehttp/promises": "^1.5.3 || ^2.0.3",
  1601. "guzzlehttp/psr7": "^2.7.0",
  1602. "php": "^7.2.5 || ^8.0",
  1603. "psr/http-client": "^1.0",
  1604. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1605. },
  1606. "provide": {
  1607. "psr/http-client-implementation": "1.0"
  1608. },
  1609. "require-dev": {
  1610. "bamarni/composer-bin-plugin": "^1.8.2",
  1611. "ext-curl": "*",
  1612. "guzzle/client-integration-tests": "3.0.2",
  1613. "php-http/message-factory": "^1.1",
  1614. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1615. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1616. },
  1617. "suggest": {
  1618. "ext-curl": "Required for CURL handler support",
  1619. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1620. "psr/log": "Required for using the Log middleware"
  1621. },
  1622. "type": "library",
  1623. "extra": {
  1624. "bamarni-bin": {
  1625. "bin-links": true,
  1626. "forward-command": false
  1627. }
  1628. },
  1629. "autoload": {
  1630. "files": [
  1631. "src/functions_include.php"
  1632. ],
  1633. "psr-4": {
  1634. "GuzzleHttp\\": "src/"
  1635. }
  1636. },
  1637. "notification-url": "https://packagist.org/downloads/",
  1638. "license": [
  1639. "MIT"
  1640. ],
  1641. "authors": [
  1642. {
  1643. "name": "Graham Campbell",
  1644. "email": "hello@gjcampbell.co.uk",
  1645. "homepage": "https://github.com/GrahamCampbell"
  1646. },
  1647. {
  1648. "name": "Michael Dowling",
  1649. "email": "mtdowling@gmail.com",
  1650. "homepage": "https://github.com/mtdowling"
  1651. },
  1652. {
  1653. "name": "Jeremy Lindblom",
  1654. "email": "jeremeamia@gmail.com",
  1655. "homepage": "https://github.com/jeremeamia"
  1656. },
  1657. {
  1658. "name": "George Mponos",
  1659. "email": "gmponos@gmail.com",
  1660. "homepage": "https://github.com/gmponos"
  1661. },
  1662. {
  1663. "name": "Tobias Nyholm",
  1664. "email": "tobias.nyholm@gmail.com",
  1665. "homepage": "https://github.com/Nyholm"
  1666. },
  1667. {
  1668. "name": "Márk Sági-Kazár",
  1669. "email": "mark.sagikazar@gmail.com",
  1670. "homepage": "https://github.com/sagikazarmark"
  1671. },
  1672. {
  1673. "name": "Tobias Schultze",
  1674. "email": "webmaster@tubo-world.de",
  1675. "homepage": "https://github.com/Tobion"
  1676. }
  1677. ],
  1678. "description": "Guzzle is a PHP HTTP client library",
  1679. "keywords": [
  1680. "client",
  1681. "curl",
  1682. "framework",
  1683. "http",
  1684. "http client",
  1685. "psr-18",
  1686. "psr-7",
  1687. "rest",
  1688. "web service"
  1689. ],
  1690. "support": {
  1691. "issues": "https://github.com/guzzle/guzzle/issues",
  1692. "source": "https://github.com/guzzle/guzzle/tree/7.9.3"
  1693. },
  1694. "funding": [
  1695. {
  1696. "url": "https://github.com/GrahamCampbell",
  1697. "type": "github"
  1698. },
  1699. {
  1700. "url": "https://github.com/Nyholm",
  1701. "type": "github"
  1702. },
  1703. {
  1704. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1705. "type": "tidelift"
  1706. }
  1707. ],
  1708. "time": "2025-03-27T13:37:11+00:00"
  1709. },
  1710. {
  1711. "name": "guzzlehttp/promises",
  1712. "version": "2.2.0",
  1713. "source": {
  1714. "type": "git",
  1715. "url": "https://github.com/guzzle/promises.git",
  1716. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c"
  1717. },
  1718. "dist": {
  1719. "type": "zip",
  1720. "url": "https://api.github.com/repos/guzzle/promises/zipball/7c69f28996b0a6920945dd20b3857e499d9ca96c",
  1721. "reference": "7c69f28996b0a6920945dd20b3857e499d9ca96c",
  1722. "shasum": ""
  1723. },
  1724. "require": {
  1725. "php": "^7.2.5 || ^8.0"
  1726. },
  1727. "require-dev": {
  1728. "bamarni/composer-bin-plugin": "^1.8.2",
  1729. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1730. },
  1731. "type": "library",
  1732. "extra": {
  1733. "bamarni-bin": {
  1734. "bin-links": true,
  1735. "forward-command": false
  1736. }
  1737. },
  1738. "autoload": {
  1739. "psr-4": {
  1740. "GuzzleHttp\\Promise\\": "src/"
  1741. }
  1742. },
  1743. "notification-url": "https://packagist.org/downloads/",
  1744. "license": [
  1745. "MIT"
  1746. ],
  1747. "authors": [
  1748. {
  1749. "name": "Graham Campbell",
  1750. "email": "hello@gjcampbell.co.uk",
  1751. "homepage": "https://github.com/GrahamCampbell"
  1752. },
  1753. {
  1754. "name": "Michael Dowling",
  1755. "email": "mtdowling@gmail.com",
  1756. "homepage": "https://github.com/mtdowling"
  1757. },
  1758. {
  1759. "name": "Tobias Nyholm",
  1760. "email": "tobias.nyholm@gmail.com",
  1761. "homepage": "https://github.com/Nyholm"
  1762. },
  1763. {
  1764. "name": "Tobias Schultze",
  1765. "email": "webmaster@tubo-world.de",
  1766. "homepage": "https://github.com/Tobion"
  1767. }
  1768. ],
  1769. "description": "Guzzle promises library",
  1770. "keywords": [
  1771. "promise"
  1772. ],
  1773. "support": {
  1774. "issues": "https://github.com/guzzle/promises/issues",
  1775. "source": "https://github.com/guzzle/promises/tree/2.2.0"
  1776. },
  1777. "funding": [
  1778. {
  1779. "url": "https://github.com/GrahamCampbell",
  1780. "type": "github"
  1781. },
  1782. {
  1783. "url": "https://github.com/Nyholm",
  1784. "type": "github"
  1785. },
  1786. {
  1787. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1788. "type": "tidelift"
  1789. }
  1790. ],
  1791. "time": "2025-03-27T13:27:01+00:00"
  1792. },
  1793. {
  1794. "name": "guzzlehttp/psr7",
  1795. "version": "2.7.1",
  1796. "source": {
  1797. "type": "git",
  1798. "url": "https://github.com/guzzle/psr7.git",
  1799. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16"
  1800. },
  1801. "dist": {
  1802. "type": "zip",
  1803. "url": "https://api.github.com/repos/guzzle/psr7/zipball/c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  1804. "reference": "c2270caaabe631b3b44c85f99e5a04bbb8060d16",
  1805. "shasum": ""
  1806. },
  1807. "require": {
  1808. "php": "^7.2.5 || ^8.0",
  1809. "psr/http-factory": "^1.0",
  1810. "psr/http-message": "^1.1 || ^2.0",
  1811. "ralouphie/getallheaders": "^3.0"
  1812. },
  1813. "provide": {
  1814. "psr/http-factory-implementation": "1.0",
  1815. "psr/http-message-implementation": "1.0"
  1816. },
  1817. "require-dev": {
  1818. "bamarni/composer-bin-plugin": "^1.8.2",
  1819. "http-interop/http-factory-tests": "0.9.0",
  1820. "phpunit/phpunit": "^8.5.39 || ^9.6.20"
  1821. },
  1822. "suggest": {
  1823. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1824. },
  1825. "type": "library",
  1826. "extra": {
  1827. "bamarni-bin": {
  1828. "bin-links": true,
  1829. "forward-command": false
  1830. }
  1831. },
  1832. "autoload": {
  1833. "psr-4": {
  1834. "GuzzleHttp\\Psr7\\": "src/"
  1835. }
  1836. },
  1837. "notification-url": "https://packagist.org/downloads/",
  1838. "license": [
  1839. "MIT"
  1840. ],
  1841. "authors": [
  1842. {
  1843. "name": "Graham Campbell",
  1844. "email": "hello@gjcampbell.co.uk",
  1845. "homepage": "https://github.com/GrahamCampbell"
  1846. },
  1847. {
  1848. "name": "Michael Dowling",
  1849. "email": "mtdowling@gmail.com",
  1850. "homepage": "https://github.com/mtdowling"
  1851. },
  1852. {
  1853. "name": "George Mponos",
  1854. "email": "gmponos@gmail.com",
  1855. "homepage": "https://github.com/gmponos"
  1856. },
  1857. {
  1858. "name": "Tobias Nyholm",
  1859. "email": "tobias.nyholm@gmail.com",
  1860. "homepage": "https://github.com/Nyholm"
  1861. },
  1862. {
  1863. "name": "Márk Sági-Kazár",
  1864. "email": "mark.sagikazar@gmail.com",
  1865. "homepage": "https://github.com/sagikazarmark"
  1866. },
  1867. {
  1868. "name": "Tobias Schultze",
  1869. "email": "webmaster@tubo-world.de",
  1870. "homepage": "https://github.com/Tobion"
  1871. },
  1872. {
  1873. "name": "Márk Sági-Kazár",
  1874. "email": "mark.sagikazar@gmail.com",
  1875. "homepage": "https://sagikazarmark.hu"
  1876. }
  1877. ],
  1878. "description": "PSR-7 message implementation that also provides common utility methods",
  1879. "keywords": [
  1880. "http",
  1881. "message",
  1882. "psr-7",
  1883. "request",
  1884. "response",
  1885. "stream",
  1886. "uri",
  1887. "url"
  1888. ],
  1889. "support": {
  1890. "issues": "https://github.com/guzzle/psr7/issues",
  1891. "source": "https://github.com/guzzle/psr7/tree/2.7.1"
  1892. },
  1893. "funding": [
  1894. {
  1895. "url": "https://github.com/GrahamCampbell",
  1896. "type": "github"
  1897. },
  1898. {
  1899. "url": "https://github.com/Nyholm",
  1900. "type": "github"
  1901. },
  1902. {
  1903. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1904. "type": "tidelift"
  1905. }
  1906. ],
  1907. "time": "2025-03-27T12:30:47+00:00"
  1908. },
  1909. {
  1910. "name": "guzzlehttp/uri-template",
  1911. "version": "v1.0.4",
  1912. "source": {
  1913. "type": "git",
  1914. "url": "https://github.com/guzzle/uri-template.git",
  1915. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2"
  1916. },
  1917. "dist": {
  1918. "type": "zip",
  1919. "url": "https://api.github.com/repos/guzzle/uri-template/zipball/30e286560c137526eccd4ce21b2de477ab0676d2",
  1920. "reference": "30e286560c137526eccd4ce21b2de477ab0676d2",
  1921. "shasum": ""
  1922. },
  1923. "require": {
  1924. "php": "^7.2.5 || ^8.0",
  1925. "symfony/polyfill-php80": "^1.24"
  1926. },
  1927. "require-dev": {
  1928. "bamarni/composer-bin-plugin": "^1.8.2",
  1929. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1930. "uri-template/tests": "1.0.0"
  1931. },
  1932. "type": "library",
  1933. "extra": {
  1934. "bamarni-bin": {
  1935. "bin-links": true,
  1936. "forward-command": false
  1937. }
  1938. },
  1939. "autoload": {
  1940. "psr-4": {
  1941. "GuzzleHttp\\UriTemplate\\": "src"
  1942. }
  1943. },
  1944. "notification-url": "https://packagist.org/downloads/",
  1945. "license": [
  1946. "MIT"
  1947. ],
  1948. "authors": [
  1949. {
  1950. "name": "Graham Campbell",
  1951. "email": "hello@gjcampbell.co.uk",
  1952. "homepage": "https://github.com/GrahamCampbell"
  1953. },
  1954. {
  1955. "name": "Michael Dowling",
  1956. "email": "mtdowling@gmail.com",
  1957. "homepage": "https://github.com/mtdowling"
  1958. },
  1959. {
  1960. "name": "George Mponos",
  1961. "email": "gmponos@gmail.com",
  1962. "homepage": "https://github.com/gmponos"
  1963. },
  1964. {
  1965. "name": "Tobias Nyholm",
  1966. "email": "tobias.nyholm@gmail.com",
  1967. "homepage": "https://github.com/Nyholm"
  1968. }
  1969. ],
  1970. "description": "A polyfill class for uri_template of PHP",
  1971. "keywords": [
  1972. "guzzlehttp",
  1973. "uri-template"
  1974. ],
  1975. "support": {
  1976. "issues": "https://github.com/guzzle/uri-template/issues",
  1977. "source": "https://github.com/guzzle/uri-template/tree/v1.0.4"
  1978. },
  1979. "funding": [
  1980. {
  1981. "url": "https://github.com/GrahamCampbell",
  1982. "type": "github"
  1983. },
  1984. {
  1985. "url": "https://github.com/Nyholm",
  1986. "type": "github"
  1987. },
  1988. {
  1989. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/uri-template",
  1990. "type": "tidelift"
  1991. }
  1992. ],
  1993. "time": "2025-02-03T10:55:03+00:00"
  1994. },
  1995. {
  1996. "name": "laravel/framework",
  1997. "version": "v9.52.20",
  1998. "source": {
  1999. "type": "git",
  2000. "url": "https://github.com/laravel/framework.git",
  2001. "reference": "2bb6835af73fcf0d1d0bfb84af71cef236cb8609"
  2002. },
  2003. "dist": {
  2004. "type": "zip",
  2005. "url": "https://api.github.com/repos/laravel/framework/zipball/2bb6835af73fcf0d1d0bfb84af71cef236cb8609",
  2006. "reference": "2bb6835af73fcf0d1d0bfb84af71cef236cb8609",
  2007. "shasum": ""
  2008. },
  2009. "require": {
  2010. "brick/math": "^0.9.3|^0.10.2|^0.11",
  2011. "doctrine/inflector": "^2.0.5",
  2012. "dragonmantank/cron-expression": "^3.3.2",
  2013. "egulias/email-validator": "^3.2.1|^4.0",
  2014. "ext-ctype": "*",
  2015. "ext-filter": "*",
  2016. "ext-hash": "*",
  2017. "ext-mbstring": "*",
  2018. "ext-openssl": "*",
  2019. "ext-session": "*",
  2020. "ext-tokenizer": "*",
  2021. "fruitcake/php-cors": "^1.2",
  2022. "guzzlehttp/uri-template": "^1.0",
  2023. "laravel/serializable-closure": "^1.2.2",
  2024. "league/commonmark": "^2.2.1",
  2025. "league/flysystem": "^3.8.0",
  2026. "monolog/monolog": "^2.0",
  2027. "nesbot/carbon": "^2.62.1",
  2028. "nunomaduro/termwind": "^1.13",
  2029. "php": "^8.0.2",
  2030. "psr/container": "^1.1.1|^2.0.1",
  2031. "psr/log": "^1.0|^2.0|^3.0",
  2032. "psr/simple-cache": "^1.0|^2.0|^3.0",
  2033. "ramsey/uuid": "^4.7",
  2034. "symfony/console": "^6.0.9",
  2035. "symfony/error-handler": "^6.0",
  2036. "symfony/finder": "^6.0",
  2037. "symfony/http-foundation": "^6.0",
  2038. "symfony/http-kernel": "^6.0",
  2039. "symfony/mailer": "^6.0",
  2040. "symfony/mime": "^6.0",
  2041. "symfony/process": "^6.0",
  2042. "symfony/routing": "^6.0",
  2043. "symfony/uid": "^6.0",
  2044. "symfony/var-dumper": "^6.0",
  2045. "tijsverkoyen/css-to-inline-styles": "^2.2.5",
  2046. "vlucas/phpdotenv": "^5.4.1",
  2047. "voku/portable-ascii": "^2.0"
  2048. },
  2049. "conflict": {
  2050. "tightenco/collect": "<5.5.33"
  2051. },
  2052. "provide": {
  2053. "psr/container-implementation": "1.1|2.0",
  2054. "psr/simple-cache-implementation": "1.0|2.0|3.0"
  2055. },
  2056. "replace": {
  2057. "illuminate/auth": "self.version",
  2058. "illuminate/broadcasting": "self.version",
  2059. "illuminate/bus": "self.version",
  2060. "illuminate/cache": "self.version",
  2061. "illuminate/collections": "self.version",
  2062. "illuminate/conditionable": "self.version",
  2063. "illuminate/config": "self.version",
  2064. "illuminate/console": "self.version",
  2065. "illuminate/container": "self.version",
  2066. "illuminate/contracts": "self.version",
  2067. "illuminate/cookie": "self.version",
  2068. "illuminate/database": "self.version",
  2069. "illuminate/encryption": "self.version",
  2070. "illuminate/events": "self.version",
  2071. "illuminate/filesystem": "self.version",
  2072. "illuminate/hashing": "self.version",
  2073. "illuminate/http": "self.version",
  2074. "illuminate/log": "self.version",
  2075. "illuminate/macroable": "self.version",
  2076. "illuminate/mail": "self.version",
  2077. "illuminate/notifications": "self.version",
  2078. "illuminate/pagination": "self.version",
  2079. "illuminate/pipeline": "self.version",
  2080. "illuminate/queue": "self.version",
  2081. "illuminate/redis": "self.version",
  2082. "illuminate/routing": "self.version",
  2083. "illuminate/session": "self.version",
  2084. "illuminate/support": "self.version",
  2085. "illuminate/testing": "self.version",
  2086. "illuminate/translation": "self.version",
  2087. "illuminate/validation": "self.version",
  2088. "illuminate/view": "self.version"
  2089. },
  2090. "require-dev": {
  2091. "ably/ably-php": "^1.0",
  2092. "aws/aws-sdk-php": "^3.235.5",
  2093. "doctrine/dbal": "^2.13.3|^3.1.4",
  2094. "ext-gmp": "*",
  2095. "fakerphp/faker": "^1.21",
  2096. "guzzlehttp/guzzle": "^7.5",
  2097. "league/flysystem-aws-s3-v3": "^3.0",
  2098. "league/flysystem-ftp": "^3.0",
  2099. "league/flysystem-path-prefixing": "^3.3",
  2100. "league/flysystem-read-only": "^3.3",
  2101. "league/flysystem-sftp-v3": "^3.0",
  2102. "mockery/mockery": "^1.5.1",
  2103. "orchestra/testbench-core": "^7.24",
  2104. "pda/pheanstalk": "^4.0",
  2105. "phpstan/phpdoc-parser": "^1.15",
  2106. "phpstan/phpstan": "^1.4.7",
  2107. "phpunit/phpunit": "^9.5.8",
  2108. "predis/predis": "^1.1.9|^2.0.2",
  2109. "symfony/cache": "^6.0",
  2110. "symfony/http-client": "^6.0"
  2111. },
  2112. "suggest": {
  2113. "ably/ably-php": "Required to use the Ably broadcast driver (^1.0).",
  2114. "aws/aws-sdk-php": "Required to use the SQS queue driver, DynamoDb failed job storage, and SES mail driver (^3.235.5).",
  2115. "brianium/paratest": "Required to run tests in parallel (^6.0).",
  2116. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.13.3|^3.1.4).",
  2117. "ext-apcu": "Required to use the APC cache driver.",
  2118. "ext-fileinfo": "Required to use the Filesystem class.",
  2119. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2120. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image().",
  2121. "ext-memcached": "Required to use the memcache cache driver.",
  2122. "ext-pcntl": "Required to use all features of the queue worker and console signal trapping.",
  2123. "ext-pdo": "Required to use all database features.",
  2124. "ext-posix": "Required to use all features of the queue worker.",
  2125. "ext-redis": "Required to use the Redis cache and queue drivers (^4.0|^5.0).",
  2126. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2127. "filp/whoops": "Required for friendly error pages in development (^2.14.3).",
  2128. "guzzlehttp/guzzle": "Required to use the HTTP Client and the ping methods on schedules (^7.5).",
  2129. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  2130. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^3.0).",
  2131. "league/flysystem-ftp": "Required to use the Flysystem FTP driver (^3.0).",
  2132. "league/flysystem-path-prefixing": "Required to use the scoped driver (^3.3).",
  2133. "league/flysystem-read-only": "Required to use read-only disks (^3.3)",
  2134. "league/flysystem-sftp-v3": "Required to use the Flysystem SFTP driver (^3.0).",
  2135. "mockery/mockery": "Required to use mocking (^1.5.1).",
  2136. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2137. "pda/pheanstalk": "Required to use the beanstalk queue driver (^4.0).",
  2138. "phpunit/phpunit": "Required to use assertions and run tests (^9.5.8).",
  2139. "predis/predis": "Required to use the predis connector (^1.1.9|^2.0.2).",
  2140. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0).",
  2141. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^6.0|^7.0).",
  2142. "symfony/cache": "Required to PSR-6 cache bridge (^6.0).",
  2143. "symfony/filesystem": "Required to enable support for relative symbolic links (^6.0).",
  2144. "symfony/http-client": "Required to enable support for the Symfony API mail transports (^6.0).",
  2145. "symfony/mailgun-mailer": "Required to enable support for the Mailgun mail transport (^6.0).",
  2146. "symfony/postmark-mailer": "Required to enable support for the Postmark mail transport (^6.0).",
  2147. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^2.0)."
  2148. },
  2149. "type": "library",
  2150. "extra": {
  2151. "branch-alias": {
  2152. "dev-master": "9.x-dev"
  2153. }
  2154. },
  2155. "autoload": {
  2156. "files": [
  2157. "src/Illuminate/Collections/helpers.php",
  2158. "src/Illuminate/Events/functions.php",
  2159. "src/Illuminate/Foundation/helpers.php",
  2160. "src/Illuminate/Support/helpers.php"
  2161. ],
  2162. "psr-4": {
  2163. "Illuminate\\": "src/Illuminate/",
  2164. "Illuminate\\Support\\": [
  2165. "src/Illuminate/Macroable/",
  2166. "src/Illuminate/Collections/",
  2167. "src/Illuminate/Conditionable/"
  2168. ]
  2169. }
  2170. },
  2171. "notification-url": "https://packagist.org/downloads/",
  2172. "license": [
  2173. "MIT"
  2174. ],
  2175. "authors": [
  2176. {
  2177. "name": "Taylor Otwell",
  2178. "email": "taylor@laravel.com"
  2179. }
  2180. ],
  2181. "description": "The Laravel Framework.",
  2182. "homepage": "https://laravel.com",
  2183. "keywords": [
  2184. "framework",
  2185. "laravel"
  2186. ],
  2187. "support": {
  2188. "issues": "https://github.com/laravel/framework/issues",
  2189. "source": "https://github.com/laravel/framework"
  2190. },
  2191. "time": "2025-01-31T10:09:38+00:00"
  2192. },
  2193. {
  2194. "name": "laravel/sanctum",
  2195. "version": "v3.3.3",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/laravel/sanctum.git",
  2199. "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/laravel/sanctum/zipball/8c104366459739f3ada0e994bcd3e6fd681ce3d5",
  2204. "reference": "8c104366459739f3ada0e994bcd3e6fd681ce3d5",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "ext-json": "*",
  2209. "illuminate/console": "^9.21|^10.0",
  2210. "illuminate/contracts": "^9.21|^10.0",
  2211. "illuminate/database": "^9.21|^10.0",
  2212. "illuminate/support": "^9.21|^10.0",
  2213. "php": "^8.0.2"
  2214. },
  2215. "require-dev": {
  2216. "mockery/mockery": "^1.0",
  2217. "orchestra/testbench": "^7.28.2|^8.8.3",
  2218. "phpstan/phpstan": "^1.10",
  2219. "phpunit/phpunit": "^9.6"
  2220. },
  2221. "type": "library",
  2222. "extra": {
  2223. "laravel": {
  2224. "providers": [
  2225. "Laravel\\Sanctum\\SanctumServiceProvider"
  2226. ]
  2227. },
  2228. "branch-alias": {
  2229. "dev-master": "3.x-dev"
  2230. }
  2231. },
  2232. "autoload": {
  2233. "psr-4": {
  2234. "Laravel\\Sanctum\\": "src/"
  2235. }
  2236. },
  2237. "notification-url": "https://packagist.org/downloads/",
  2238. "license": [
  2239. "MIT"
  2240. ],
  2241. "authors": [
  2242. {
  2243. "name": "Taylor Otwell",
  2244. "email": "taylor@laravel.com"
  2245. }
  2246. ],
  2247. "description": "Laravel Sanctum provides a featherweight authentication system for SPAs and simple APIs.",
  2248. "keywords": [
  2249. "auth",
  2250. "laravel",
  2251. "sanctum"
  2252. ],
  2253. "support": {
  2254. "issues": "https://github.com/laravel/sanctum/issues",
  2255. "source": "https://github.com/laravel/sanctum"
  2256. },
  2257. "time": "2023-12-19T18:44:48+00:00"
  2258. },
  2259. {
  2260. "name": "laravel/serializable-closure",
  2261. "version": "v1.3.7",
  2262. "source": {
  2263. "type": "git",
  2264. "url": "https://github.com/laravel/serializable-closure.git",
  2265. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d"
  2266. },
  2267. "dist": {
  2268. "type": "zip",
  2269. "url": "https://api.github.com/repos/laravel/serializable-closure/zipball/4f48ade902b94323ca3be7646db16209ec76be3d",
  2270. "reference": "4f48ade902b94323ca3be7646db16209ec76be3d",
  2271. "shasum": ""
  2272. },
  2273. "require": {
  2274. "php": "^7.3|^8.0"
  2275. },
  2276. "require-dev": {
  2277. "illuminate/support": "^8.0|^9.0|^10.0|^11.0",
  2278. "nesbot/carbon": "^2.61|^3.0",
  2279. "pestphp/pest": "^1.21.3",
  2280. "phpstan/phpstan": "^1.8.2",
  2281. "symfony/var-dumper": "^5.4.11|^6.2.0|^7.0.0"
  2282. },
  2283. "type": "library",
  2284. "extra": {
  2285. "branch-alias": {
  2286. "dev-master": "1.x-dev"
  2287. }
  2288. },
  2289. "autoload": {
  2290. "psr-4": {
  2291. "Laravel\\SerializableClosure\\": "src/"
  2292. }
  2293. },
  2294. "notification-url": "https://packagist.org/downloads/",
  2295. "license": [
  2296. "MIT"
  2297. ],
  2298. "authors": [
  2299. {
  2300. "name": "Taylor Otwell",
  2301. "email": "taylor@laravel.com"
  2302. },
  2303. {
  2304. "name": "Nuno Maduro",
  2305. "email": "nuno@laravel.com"
  2306. }
  2307. ],
  2308. "description": "Laravel Serializable Closure provides an easy and secure way to serialize closures in PHP.",
  2309. "keywords": [
  2310. "closure",
  2311. "laravel",
  2312. "serializable"
  2313. ],
  2314. "support": {
  2315. "issues": "https://github.com/laravel/serializable-closure/issues",
  2316. "source": "https://github.com/laravel/serializable-closure"
  2317. },
  2318. "time": "2024-11-14T18:34:49+00:00"
  2319. },
  2320. {
  2321. "name": "laravel/tinker",
  2322. "version": "v2.10.1",
  2323. "source": {
  2324. "type": "git",
  2325. "url": "https://github.com/laravel/tinker.git",
  2326. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3"
  2327. },
  2328. "dist": {
  2329. "type": "zip",
  2330. "url": "https://api.github.com/repos/laravel/tinker/zipball/22177cc71807d38f2810c6204d8f7183d88a57d3",
  2331. "reference": "22177cc71807d38f2810c6204d8f7183d88a57d3",
  2332. "shasum": ""
  2333. },
  2334. "require": {
  2335. "illuminate/console": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2336. "illuminate/contracts": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2337. "illuminate/support": "^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0",
  2338. "php": "^7.2.5|^8.0",
  2339. "psy/psysh": "^0.11.1|^0.12.0",
  2340. "symfony/var-dumper": "^4.3.4|^5.0|^6.0|^7.0"
  2341. },
  2342. "require-dev": {
  2343. "mockery/mockery": "~1.3.3|^1.4.2",
  2344. "phpstan/phpstan": "^1.10",
  2345. "phpunit/phpunit": "^8.5.8|^9.3.3|^10.0"
  2346. },
  2347. "suggest": {
  2348. "illuminate/database": "The Illuminate Database package (^6.0|^7.0|^8.0|^9.0|^10.0|^11.0|^12.0)."
  2349. },
  2350. "type": "library",
  2351. "extra": {
  2352. "laravel": {
  2353. "providers": [
  2354. "Laravel\\Tinker\\TinkerServiceProvider"
  2355. ]
  2356. }
  2357. },
  2358. "autoload": {
  2359. "psr-4": {
  2360. "Laravel\\Tinker\\": "src/"
  2361. }
  2362. },
  2363. "notification-url": "https://packagist.org/downloads/",
  2364. "license": [
  2365. "MIT"
  2366. ],
  2367. "authors": [
  2368. {
  2369. "name": "Taylor Otwell",
  2370. "email": "taylor@laravel.com"
  2371. }
  2372. ],
  2373. "description": "Powerful REPL for the Laravel framework.",
  2374. "keywords": [
  2375. "REPL",
  2376. "Tinker",
  2377. "laravel",
  2378. "psysh"
  2379. ],
  2380. "support": {
  2381. "issues": "https://github.com/laravel/tinker/issues",
  2382. "source": "https://github.com/laravel/tinker/tree/v2.10.1"
  2383. },
  2384. "time": "2025-01-27T14:24:01+00:00"
  2385. },
  2386. {
  2387. "name": "league/commonmark",
  2388. "version": "2.6.2",
  2389. "source": {
  2390. "type": "git",
  2391. "url": "https://github.com/thephpleague/commonmark.git",
  2392. "reference": "06c3b0bf2540338094575612f4a1778d0d2d5e94"
  2393. },
  2394. "dist": {
  2395. "type": "zip",
  2396. "url": "https://api.github.com/repos/thephpleague/commonmark/zipball/06c3b0bf2540338094575612f4a1778d0d2d5e94",
  2397. "reference": "06c3b0bf2540338094575612f4a1778d0d2d5e94",
  2398. "shasum": ""
  2399. },
  2400. "require": {
  2401. "ext-mbstring": "*",
  2402. "league/config": "^1.1.1",
  2403. "php": "^7.4 || ^8.0",
  2404. "psr/event-dispatcher": "^1.0",
  2405. "symfony/deprecation-contracts": "^2.1 || ^3.0",
  2406. "symfony/polyfill-php80": "^1.16"
  2407. },
  2408. "require-dev": {
  2409. "cebe/markdown": "^1.0",
  2410. "commonmark/cmark": "0.31.1",
  2411. "commonmark/commonmark.js": "0.31.1",
  2412. "composer/package-versions-deprecated": "^1.8",
  2413. "embed/embed": "^4.4",
  2414. "erusev/parsedown": "^1.0",
  2415. "ext-json": "*",
  2416. "github/gfm": "0.29.0",
  2417. "michelf/php-markdown": "^1.4 || ^2.0",
  2418. "nyholm/psr7": "^1.5",
  2419. "phpstan/phpstan": "^1.8.2",
  2420. "phpunit/phpunit": "^9.5.21 || ^10.5.9 || ^11.0.0",
  2421. "scrutinizer/ocular": "^1.8.1",
  2422. "symfony/finder": "^5.3 | ^6.0 | ^7.0",
  2423. "symfony/process": "^5.4 | ^6.0 | ^7.0",
  2424. "symfony/yaml": "^2.3 | ^3.0 | ^4.0 | ^5.0 | ^6.0 | ^7.0",
  2425. "unleashedtech/php-coding-standard": "^3.1.1",
  2426. "vimeo/psalm": "^4.24.0 || ^5.0.0"
  2427. },
  2428. "suggest": {
  2429. "symfony/yaml": "v2.3+ required if using the Front Matter extension"
  2430. },
  2431. "type": "library",
  2432. "extra": {
  2433. "branch-alias": {
  2434. "dev-main": "2.7-dev"
  2435. }
  2436. },
  2437. "autoload": {
  2438. "psr-4": {
  2439. "League\\CommonMark\\": "src"
  2440. }
  2441. },
  2442. "notification-url": "https://packagist.org/downloads/",
  2443. "license": [
  2444. "BSD-3-Clause"
  2445. ],
  2446. "authors": [
  2447. {
  2448. "name": "Colin O'Dell",
  2449. "email": "colinodell@gmail.com",
  2450. "homepage": "https://www.colinodell.com",
  2451. "role": "Lead Developer"
  2452. }
  2453. ],
  2454. "description": "Highly-extensible PHP Markdown parser which fully supports the CommonMark spec and GitHub-Flavored Markdown (GFM)",
  2455. "homepage": "https://commonmark.thephpleague.com",
  2456. "keywords": [
  2457. "commonmark",
  2458. "flavored",
  2459. "gfm",
  2460. "github",
  2461. "github-flavored",
  2462. "markdown",
  2463. "md",
  2464. "parser"
  2465. ],
  2466. "support": {
  2467. "docs": "https://commonmark.thephpleague.com/",
  2468. "forum": "https://github.com/thephpleague/commonmark/discussions",
  2469. "issues": "https://github.com/thephpleague/commonmark/issues",
  2470. "rss": "https://github.com/thephpleague/commonmark/releases.atom",
  2471. "source": "https://github.com/thephpleague/commonmark"
  2472. },
  2473. "funding": [
  2474. {
  2475. "url": "https://www.colinodell.com/sponsor",
  2476. "type": "custom"
  2477. },
  2478. {
  2479. "url": "https://www.paypal.me/colinpodell/10.00",
  2480. "type": "custom"
  2481. },
  2482. {
  2483. "url": "https://github.com/colinodell",
  2484. "type": "github"
  2485. },
  2486. {
  2487. "url": "https://tidelift.com/funding/github/packagist/league/commonmark",
  2488. "type": "tidelift"
  2489. }
  2490. ],
  2491. "time": "2025-04-18T21:09:27+00:00"
  2492. },
  2493. {
  2494. "name": "league/config",
  2495. "version": "v1.2.0",
  2496. "source": {
  2497. "type": "git",
  2498. "url": "https://github.com/thephpleague/config.git",
  2499. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3"
  2500. },
  2501. "dist": {
  2502. "type": "zip",
  2503. "url": "https://api.github.com/repos/thephpleague/config/zipball/754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2504. "reference": "754b3604fb2984c71f4af4a9cbe7b57f346ec1f3",
  2505. "shasum": ""
  2506. },
  2507. "require": {
  2508. "dflydev/dot-access-data": "^3.0.1",
  2509. "nette/schema": "^1.2",
  2510. "php": "^7.4 || ^8.0"
  2511. },
  2512. "require-dev": {
  2513. "phpstan/phpstan": "^1.8.2",
  2514. "phpunit/phpunit": "^9.5.5",
  2515. "scrutinizer/ocular": "^1.8.1",
  2516. "unleashedtech/php-coding-standard": "^3.1",
  2517. "vimeo/psalm": "^4.7.3"
  2518. },
  2519. "type": "library",
  2520. "extra": {
  2521. "branch-alias": {
  2522. "dev-main": "1.2-dev"
  2523. }
  2524. },
  2525. "autoload": {
  2526. "psr-4": {
  2527. "League\\Config\\": "src"
  2528. }
  2529. },
  2530. "notification-url": "https://packagist.org/downloads/",
  2531. "license": [
  2532. "BSD-3-Clause"
  2533. ],
  2534. "authors": [
  2535. {
  2536. "name": "Colin O'Dell",
  2537. "email": "colinodell@gmail.com",
  2538. "homepage": "https://www.colinodell.com",
  2539. "role": "Lead Developer"
  2540. }
  2541. ],
  2542. "description": "Define configuration arrays with strict schemas and access values with dot notation",
  2543. "homepage": "https://config.thephpleague.com",
  2544. "keywords": [
  2545. "array",
  2546. "config",
  2547. "configuration",
  2548. "dot",
  2549. "dot-access",
  2550. "nested",
  2551. "schema"
  2552. ],
  2553. "support": {
  2554. "docs": "https://config.thephpleague.com/",
  2555. "issues": "https://github.com/thephpleague/config/issues",
  2556. "rss": "https://github.com/thephpleague/config/releases.atom",
  2557. "source": "https://github.com/thephpleague/config"
  2558. },
  2559. "funding": [
  2560. {
  2561. "url": "https://www.colinodell.com/sponsor",
  2562. "type": "custom"
  2563. },
  2564. {
  2565. "url": "https://www.paypal.me/colinpodell/10.00",
  2566. "type": "custom"
  2567. },
  2568. {
  2569. "url": "https://github.com/colinodell",
  2570. "type": "github"
  2571. }
  2572. ],
  2573. "time": "2022-12-11T20:36:23+00:00"
  2574. },
  2575. {
  2576. "name": "league/flysystem",
  2577. "version": "3.29.1",
  2578. "source": {
  2579. "type": "git",
  2580. "url": "https://github.com/thephpleague/flysystem.git",
  2581. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319"
  2582. },
  2583. "dist": {
  2584. "type": "zip",
  2585. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2586. "reference": "edc1bb7c86fab0776c3287dbd19b5fa278347319",
  2587. "shasum": ""
  2588. },
  2589. "require": {
  2590. "league/flysystem-local": "^3.0.0",
  2591. "league/mime-type-detection": "^1.0.0",
  2592. "php": "^8.0.2"
  2593. },
  2594. "conflict": {
  2595. "async-aws/core": "<1.19.0",
  2596. "async-aws/s3": "<1.14.0",
  2597. "aws/aws-sdk-php": "3.209.31 || 3.210.0",
  2598. "guzzlehttp/guzzle": "<7.0",
  2599. "guzzlehttp/ringphp": "<1.1.1",
  2600. "phpseclib/phpseclib": "3.0.15",
  2601. "symfony/http-client": "<5.2"
  2602. },
  2603. "require-dev": {
  2604. "async-aws/s3": "^1.5 || ^2.0",
  2605. "async-aws/simple-s3": "^1.1 || ^2.0",
  2606. "aws/aws-sdk-php": "^3.295.10",
  2607. "composer/semver": "^3.0",
  2608. "ext-fileinfo": "*",
  2609. "ext-ftp": "*",
  2610. "ext-mongodb": "^1.3",
  2611. "ext-zip": "*",
  2612. "friendsofphp/php-cs-fixer": "^3.5",
  2613. "google/cloud-storage": "^1.23",
  2614. "guzzlehttp/psr7": "^2.6",
  2615. "microsoft/azure-storage-blob": "^1.1",
  2616. "mongodb/mongodb": "^1.2",
  2617. "phpseclib/phpseclib": "^3.0.36",
  2618. "phpstan/phpstan": "^1.10",
  2619. "phpunit/phpunit": "^9.5.11|^10.0",
  2620. "sabre/dav": "^4.6.0"
  2621. },
  2622. "type": "library",
  2623. "autoload": {
  2624. "psr-4": {
  2625. "League\\Flysystem\\": "src"
  2626. }
  2627. },
  2628. "notification-url": "https://packagist.org/downloads/",
  2629. "license": [
  2630. "MIT"
  2631. ],
  2632. "authors": [
  2633. {
  2634. "name": "Frank de Jonge",
  2635. "email": "info@frankdejonge.nl"
  2636. }
  2637. ],
  2638. "description": "File storage abstraction for PHP",
  2639. "keywords": [
  2640. "WebDAV",
  2641. "aws",
  2642. "cloud",
  2643. "file",
  2644. "files",
  2645. "filesystem",
  2646. "filesystems",
  2647. "ftp",
  2648. "s3",
  2649. "sftp",
  2650. "storage"
  2651. ],
  2652. "support": {
  2653. "issues": "https://github.com/thephpleague/flysystem/issues",
  2654. "source": "https://github.com/thephpleague/flysystem/tree/3.29.1"
  2655. },
  2656. "time": "2024-10-08T08:58:34+00:00"
  2657. },
  2658. {
  2659. "name": "league/flysystem-local",
  2660. "version": "3.29.0",
  2661. "source": {
  2662. "type": "git",
  2663. "url": "https://github.com/thephpleague/flysystem-local.git",
  2664. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27"
  2665. },
  2666. "dist": {
  2667. "type": "zip",
  2668. "url": "https://api.github.com/repos/thephpleague/flysystem-local/zipball/e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2669. "reference": "e0e8d52ce4b2ed154148453d321e97c8e931bd27",
  2670. "shasum": ""
  2671. },
  2672. "require": {
  2673. "ext-fileinfo": "*",
  2674. "league/flysystem": "^3.0.0",
  2675. "league/mime-type-detection": "^1.0.0",
  2676. "php": "^8.0.2"
  2677. },
  2678. "type": "library",
  2679. "autoload": {
  2680. "psr-4": {
  2681. "League\\Flysystem\\Local\\": ""
  2682. }
  2683. },
  2684. "notification-url": "https://packagist.org/downloads/",
  2685. "license": [
  2686. "MIT"
  2687. ],
  2688. "authors": [
  2689. {
  2690. "name": "Frank de Jonge",
  2691. "email": "info@frankdejonge.nl"
  2692. }
  2693. ],
  2694. "description": "Local filesystem adapter for Flysystem.",
  2695. "keywords": [
  2696. "Flysystem",
  2697. "file",
  2698. "files",
  2699. "filesystem",
  2700. "local"
  2701. ],
  2702. "support": {
  2703. "source": "https://github.com/thephpleague/flysystem-local/tree/3.29.0"
  2704. },
  2705. "time": "2024-08-09T21:24:39+00:00"
  2706. },
  2707. {
  2708. "name": "league/mime-type-detection",
  2709. "version": "1.16.0",
  2710. "source": {
  2711. "type": "git",
  2712. "url": "https://github.com/thephpleague/mime-type-detection.git",
  2713. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9"
  2714. },
  2715. "dist": {
  2716. "type": "zip",
  2717. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/2d6702ff215bf922936ccc1ad31007edc76451b9",
  2718. "reference": "2d6702ff215bf922936ccc1ad31007edc76451b9",
  2719. "shasum": ""
  2720. },
  2721. "require": {
  2722. "ext-fileinfo": "*",
  2723. "php": "^7.4 || ^8.0"
  2724. },
  2725. "require-dev": {
  2726. "friendsofphp/php-cs-fixer": "^3.2",
  2727. "phpstan/phpstan": "^0.12.68",
  2728. "phpunit/phpunit": "^8.5.8 || ^9.3 || ^10.0"
  2729. },
  2730. "type": "library",
  2731. "autoload": {
  2732. "psr-4": {
  2733. "League\\MimeTypeDetection\\": "src"
  2734. }
  2735. },
  2736. "notification-url": "https://packagist.org/downloads/",
  2737. "license": [
  2738. "MIT"
  2739. ],
  2740. "authors": [
  2741. {
  2742. "name": "Frank de Jonge",
  2743. "email": "info@frankdejonge.nl"
  2744. }
  2745. ],
  2746. "description": "Mime-type detection for Flysystem",
  2747. "support": {
  2748. "issues": "https://github.com/thephpleague/mime-type-detection/issues",
  2749. "source": "https://github.com/thephpleague/mime-type-detection/tree/1.16.0"
  2750. },
  2751. "funding": [
  2752. {
  2753. "url": "https://github.com/frankdejonge",
  2754. "type": "github"
  2755. },
  2756. {
  2757. "url": "https://tidelift.com/funding/github/packagist/league/flysystem",
  2758. "type": "tidelift"
  2759. }
  2760. ],
  2761. "time": "2024-09-21T08:32:55+00:00"
  2762. },
  2763. {
  2764. "name": "masterminds/html5",
  2765. "version": "2.9.0",
  2766. "source": {
  2767. "type": "git",
  2768. "url": "https://github.com/Masterminds/html5-php.git",
  2769. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6"
  2770. },
  2771. "dist": {
  2772. "type": "zip",
  2773. "url": "https://api.github.com/repos/Masterminds/html5-php/zipball/f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  2774. "reference": "f5ac2c0b0a2eefca70b2ce32a5809992227e75a6",
  2775. "shasum": ""
  2776. },
  2777. "require": {
  2778. "ext-dom": "*",
  2779. "php": ">=5.3.0"
  2780. },
  2781. "require-dev": {
  2782. "phpunit/phpunit": "^4.8.35 || ^5.7.21 || ^6 || ^7 || ^8 || ^9"
  2783. },
  2784. "type": "library",
  2785. "extra": {
  2786. "branch-alias": {
  2787. "dev-master": "2.7-dev"
  2788. }
  2789. },
  2790. "autoload": {
  2791. "psr-4": {
  2792. "Masterminds\\": "src"
  2793. }
  2794. },
  2795. "notification-url": "https://packagist.org/downloads/",
  2796. "license": [
  2797. "MIT"
  2798. ],
  2799. "authors": [
  2800. {
  2801. "name": "Matt Butcher",
  2802. "email": "technosophos@gmail.com"
  2803. },
  2804. {
  2805. "name": "Matt Farina",
  2806. "email": "matt@mattfarina.com"
  2807. },
  2808. {
  2809. "name": "Asmir Mustafic",
  2810. "email": "goetas@gmail.com"
  2811. }
  2812. ],
  2813. "description": "An HTML5 parser and serializer.",
  2814. "homepage": "http://masterminds.github.io/html5-php",
  2815. "keywords": [
  2816. "HTML5",
  2817. "dom",
  2818. "html",
  2819. "parser",
  2820. "querypath",
  2821. "serializer",
  2822. "xml"
  2823. ],
  2824. "support": {
  2825. "issues": "https://github.com/Masterminds/html5-php/issues",
  2826. "source": "https://github.com/Masterminds/html5-php/tree/2.9.0"
  2827. },
  2828. "time": "2024-03-31T07:05:07+00:00"
  2829. },
  2830. {
  2831. "name": "monolog/monolog",
  2832. "version": "2.10.0",
  2833. "source": {
  2834. "type": "git",
  2835. "url": "https://github.com/Seldaek/monolog.git",
  2836. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7"
  2837. },
  2838. "dist": {
  2839. "type": "zip",
  2840. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/5cf826f2991858b54d5c3809bee745560a1042a7",
  2841. "reference": "5cf826f2991858b54d5c3809bee745560a1042a7",
  2842. "shasum": ""
  2843. },
  2844. "require": {
  2845. "php": ">=7.2",
  2846. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2847. },
  2848. "provide": {
  2849. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2850. },
  2851. "require-dev": {
  2852. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2853. "doctrine/couchdb": "~1.0@dev",
  2854. "elasticsearch/elasticsearch": "^7 || ^8",
  2855. "ext-json": "*",
  2856. "graylog2/gelf-php": "^1.4.2 || ^2@dev",
  2857. "guzzlehttp/guzzle": "^7.4",
  2858. "guzzlehttp/psr7": "^2.2",
  2859. "mongodb/mongodb": "^1.8",
  2860. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2861. "phpspec/prophecy": "^1.15",
  2862. "phpstan/phpstan": "^1.10",
  2863. "phpunit/phpunit": "^8.5.38 || ^9.6.19",
  2864. "predis/predis": "^1.1 || ^2.0",
  2865. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2866. "ruflin/elastica": "^7",
  2867. "swiftmailer/swiftmailer": "^5.3|^6.0",
  2868. "symfony/mailer": "^5.4 || ^6",
  2869. "symfony/mime": "^5.4 || ^6"
  2870. },
  2871. "suggest": {
  2872. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2873. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2874. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2875. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2876. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2877. "ext-mbstring": "Allow to work properly with unicode symbols",
  2878. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2879. "ext-openssl": "Required to send log messages using SSL",
  2880. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2881. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2882. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2883. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2884. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2885. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2886. },
  2887. "type": "library",
  2888. "extra": {
  2889. "branch-alias": {
  2890. "dev-main": "2.x-dev"
  2891. }
  2892. },
  2893. "autoload": {
  2894. "psr-4": {
  2895. "Monolog\\": "src/Monolog"
  2896. }
  2897. },
  2898. "notification-url": "https://packagist.org/downloads/",
  2899. "license": [
  2900. "MIT"
  2901. ],
  2902. "authors": [
  2903. {
  2904. "name": "Jordi Boggiano",
  2905. "email": "j.boggiano@seld.be",
  2906. "homepage": "https://seld.be"
  2907. }
  2908. ],
  2909. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2910. "homepage": "https://github.com/Seldaek/monolog",
  2911. "keywords": [
  2912. "log",
  2913. "logging",
  2914. "psr-3"
  2915. ],
  2916. "support": {
  2917. "issues": "https://github.com/Seldaek/monolog/issues",
  2918. "source": "https://github.com/Seldaek/monolog/tree/2.10.0"
  2919. },
  2920. "funding": [
  2921. {
  2922. "url": "https://github.com/Seldaek",
  2923. "type": "github"
  2924. },
  2925. {
  2926. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2927. "type": "tidelift"
  2928. }
  2929. ],
  2930. "time": "2024-11-12T12:43:37+00:00"
  2931. },
  2932. {
  2933. "name": "nesbot/carbon",
  2934. "version": "2.73.0",
  2935. "source": {
  2936. "type": "git",
  2937. "url": "https://github.com/CarbonPHP/carbon.git",
  2938. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075"
  2939. },
  2940. "dist": {
  2941. "type": "zip",
  2942. "url": "https://api.github.com/repos/CarbonPHP/carbon/zipball/9228ce90e1035ff2f0db84b40ec2e023ed802075",
  2943. "reference": "9228ce90e1035ff2f0db84b40ec2e023ed802075",
  2944. "shasum": ""
  2945. },
  2946. "require": {
  2947. "carbonphp/carbon-doctrine-types": "*",
  2948. "ext-json": "*",
  2949. "php": "^7.1.8 || ^8.0",
  2950. "psr/clock": "^1.0",
  2951. "symfony/polyfill-mbstring": "^1.0",
  2952. "symfony/polyfill-php80": "^1.16",
  2953. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2954. },
  2955. "provide": {
  2956. "psr/clock-implementation": "1.0"
  2957. },
  2958. "require-dev": {
  2959. "doctrine/dbal": "^2.0 || ^3.1.4 || ^4.0",
  2960. "doctrine/orm": "^2.7 || ^3.0",
  2961. "friendsofphp/php-cs-fixer": "^3.0",
  2962. "kylekatarnls/multi-tester": "^2.0",
  2963. "ondrejmirtes/better-reflection": "<6",
  2964. "phpmd/phpmd": "^2.9",
  2965. "phpstan/extension-installer": "^1.0",
  2966. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2967. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2968. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2969. "squizlabs/php_codesniffer": "^3.4"
  2970. },
  2971. "bin": [
  2972. "bin/carbon"
  2973. ],
  2974. "type": "library",
  2975. "extra": {
  2976. "laravel": {
  2977. "providers": [
  2978. "Carbon\\Laravel\\ServiceProvider"
  2979. ]
  2980. },
  2981. "phpstan": {
  2982. "includes": [
  2983. "extension.neon"
  2984. ]
  2985. },
  2986. "branch-alias": {
  2987. "dev-2.x": "2.x-dev",
  2988. "dev-master": "3.x-dev"
  2989. }
  2990. },
  2991. "autoload": {
  2992. "psr-4": {
  2993. "Carbon\\": "src/Carbon/"
  2994. }
  2995. },
  2996. "notification-url": "https://packagist.org/downloads/",
  2997. "license": [
  2998. "MIT"
  2999. ],
  3000. "authors": [
  3001. {
  3002. "name": "Brian Nesbitt",
  3003. "email": "brian@nesbot.com",
  3004. "homepage": "https://markido.com"
  3005. },
  3006. {
  3007. "name": "kylekatarnls",
  3008. "homepage": "https://github.com/kylekatarnls"
  3009. }
  3010. ],
  3011. "description": "An API extension for DateTime that supports 281 different languages.",
  3012. "homepage": "https://carbon.nesbot.com",
  3013. "keywords": [
  3014. "date",
  3015. "datetime",
  3016. "time"
  3017. ],
  3018. "support": {
  3019. "docs": "https://carbon.nesbot.com/docs",
  3020. "issues": "https://github.com/briannesbitt/Carbon/issues",
  3021. "source": "https://github.com/briannesbitt/Carbon"
  3022. },
  3023. "funding": [
  3024. {
  3025. "url": "https://github.com/sponsors/kylekatarnls",
  3026. "type": "github"
  3027. },
  3028. {
  3029. "url": "https://opencollective.com/Carbon#sponsor",
  3030. "type": "opencollective"
  3031. },
  3032. {
  3033. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3034. "type": "tidelift"
  3035. }
  3036. ],
  3037. "time": "2025-01-08T20:10:23+00:00"
  3038. },
  3039. {
  3040. "name": "nette/schema",
  3041. "version": "v1.3.2",
  3042. "source": {
  3043. "type": "git",
  3044. "url": "https://github.com/nette/schema.git",
  3045. "reference": "da801d52f0354f70a638673c4a0f04e16529431d"
  3046. },
  3047. "dist": {
  3048. "type": "zip",
  3049. "url": "https://api.github.com/repos/nette/schema/zipball/da801d52f0354f70a638673c4a0f04e16529431d",
  3050. "reference": "da801d52f0354f70a638673c4a0f04e16529431d",
  3051. "shasum": ""
  3052. },
  3053. "require": {
  3054. "nette/utils": "^4.0",
  3055. "php": "8.1 - 8.4"
  3056. },
  3057. "require-dev": {
  3058. "nette/tester": "^2.5.2",
  3059. "phpstan/phpstan-nette": "^1.0",
  3060. "tracy/tracy": "^2.8"
  3061. },
  3062. "type": "library",
  3063. "extra": {
  3064. "branch-alias": {
  3065. "dev-master": "1.3-dev"
  3066. }
  3067. },
  3068. "autoload": {
  3069. "classmap": [
  3070. "src/"
  3071. ]
  3072. },
  3073. "notification-url": "https://packagist.org/downloads/",
  3074. "license": [
  3075. "BSD-3-Clause",
  3076. "GPL-2.0-only",
  3077. "GPL-3.0-only"
  3078. ],
  3079. "authors": [
  3080. {
  3081. "name": "David Grudl",
  3082. "homepage": "https://davidgrudl.com"
  3083. },
  3084. {
  3085. "name": "Nette Community",
  3086. "homepage": "https://nette.org/contributors"
  3087. }
  3088. ],
  3089. "description": "📐 Nette Schema: validating data structures against a given Schema.",
  3090. "homepage": "https://nette.org",
  3091. "keywords": [
  3092. "config",
  3093. "nette"
  3094. ],
  3095. "support": {
  3096. "issues": "https://github.com/nette/schema/issues",
  3097. "source": "https://github.com/nette/schema/tree/v1.3.2"
  3098. },
  3099. "time": "2024-10-06T23:10:23+00:00"
  3100. },
  3101. {
  3102. "name": "nette/utils",
  3103. "version": "v4.0.6",
  3104. "source": {
  3105. "type": "git",
  3106. "url": "https://github.com/nette/utils.git",
  3107. "reference": "ce708655043c7050eb050df361c5e313cf708309"
  3108. },
  3109. "dist": {
  3110. "type": "zip",
  3111. "url": "https://api.github.com/repos/nette/utils/zipball/ce708655043c7050eb050df361c5e313cf708309",
  3112. "reference": "ce708655043c7050eb050df361c5e313cf708309",
  3113. "shasum": ""
  3114. },
  3115. "require": {
  3116. "php": "8.0 - 8.4"
  3117. },
  3118. "conflict": {
  3119. "nette/finder": "<3",
  3120. "nette/schema": "<1.2.2"
  3121. },
  3122. "require-dev": {
  3123. "jetbrains/phpstorm-attributes": "dev-master",
  3124. "nette/tester": "^2.5",
  3125. "phpstan/phpstan": "^1.0",
  3126. "tracy/tracy": "^2.9"
  3127. },
  3128. "suggest": {
  3129. "ext-gd": "to use Image",
  3130. "ext-iconv": "to use Strings::webalize(), toAscii(), chr() and reverse()",
  3131. "ext-intl": "to use Strings::webalize(), toAscii(), normalize() and compare()",
  3132. "ext-json": "to use Nette\\Utils\\Json",
  3133. "ext-mbstring": "to use Strings::lower() etc...",
  3134. "ext-tokenizer": "to use Nette\\Utils\\Reflection::getUseStatements()"
  3135. },
  3136. "type": "library",
  3137. "extra": {
  3138. "branch-alias": {
  3139. "dev-master": "4.0-dev"
  3140. }
  3141. },
  3142. "autoload": {
  3143. "classmap": [
  3144. "src/"
  3145. ]
  3146. },
  3147. "notification-url": "https://packagist.org/downloads/",
  3148. "license": [
  3149. "BSD-3-Clause",
  3150. "GPL-2.0-only",
  3151. "GPL-3.0-only"
  3152. ],
  3153. "authors": [
  3154. {
  3155. "name": "David Grudl",
  3156. "homepage": "https://davidgrudl.com"
  3157. },
  3158. {
  3159. "name": "Nette Community",
  3160. "homepage": "https://nette.org/contributors"
  3161. }
  3162. ],
  3163. "description": "🛠 Nette Utils: lightweight utilities for string & array manipulation, image handling, safe JSON encoding/decoding, validation, slug or strong password generating etc.",
  3164. "homepage": "https://nette.org",
  3165. "keywords": [
  3166. "array",
  3167. "core",
  3168. "datetime",
  3169. "images",
  3170. "json",
  3171. "nette",
  3172. "paginator",
  3173. "password",
  3174. "slugify",
  3175. "string",
  3176. "unicode",
  3177. "utf-8",
  3178. "utility",
  3179. "validation"
  3180. ],
  3181. "support": {
  3182. "issues": "https://github.com/nette/utils/issues",
  3183. "source": "https://github.com/nette/utils/tree/v4.0.6"
  3184. },
  3185. "time": "2025-03-30T21:06:30+00:00"
  3186. },
  3187. {
  3188. "name": "nikic/php-parser",
  3189. "version": "v5.4.0",
  3190. "source": {
  3191. "type": "git",
  3192. "url": "https://github.com/nikic/PHP-Parser.git",
  3193. "reference": "447a020a1f875a434d62f2a401f53b82a396e494"
  3194. },
  3195. "dist": {
  3196. "type": "zip",
  3197. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/447a020a1f875a434d62f2a401f53b82a396e494",
  3198. "reference": "447a020a1f875a434d62f2a401f53b82a396e494",
  3199. "shasum": ""
  3200. },
  3201. "require": {
  3202. "ext-ctype": "*",
  3203. "ext-json": "*",
  3204. "ext-tokenizer": "*",
  3205. "php": ">=7.4"
  3206. },
  3207. "require-dev": {
  3208. "ircmaxell/php-yacc": "^0.0.7",
  3209. "phpunit/phpunit": "^9.0"
  3210. },
  3211. "bin": [
  3212. "bin/php-parse"
  3213. ],
  3214. "type": "library",
  3215. "extra": {
  3216. "branch-alias": {
  3217. "dev-master": "5.0-dev"
  3218. }
  3219. },
  3220. "autoload": {
  3221. "psr-4": {
  3222. "PhpParser\\": "lib/PhpParser"
  3223. }
  3224. },
  3225. "notification-url": "https://packagist.org/downloads/",
  3226. "license": [
  3227. "BSD-3-Clause"
  3228. ],
  3229. "authors": [
  3230. {
  3231. "name": "Nikita Popov"
  3232. }
  3233. ],
  3234. "description": "A PHP parser written in PHP",
  3235. "keywords": [
  3236. "parser",
  3237. "php"
  3238. ],
  3239. "support": {
  3240. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3241. "source": "https://github.com/nikic/PHP-Parser/tree/v5.4.0"
  3242. },
  3243. "time": "2024-12-30T11:07:19+00:00"
  3244. },
  3245. {
  3246. "name": "nunomaduro/termwind",
  3247. "version": "v1.17.0",
  3248. "source": {
  3249. "type": "git",
  3250. "url": "https://github.com/nunomaduro/termwind.git",
  3251. "reference": "5369ef84d8142c1d87e4ec278711d4ece3cbf301"
  3252. },
  3253. "dist": {
  3254. "type": "zip",
  3255. "url": "https://api.github.com/repos/nunomaduro/termwind/zipball/5369ef84d8142c1d87e4ec278711d4ece3cbf301",
  3256. "reference": "5369ef84d8142c1d87e4ec278711d4ece3cbf301",
  3257. "shasum": ""
  3258. },
  3259. "require": {
  3260. "ext-mbstring": "*",
  3261. "php": "^8.1",
  3262. "symfony/console": "^6.4.15"
  3263. },
  3264. "require-dev": {
  3265. "illuminate/console": "^10.48.24",
  3266. "illuminate/support": "^10.48.24",
  3267. "laravel/pint": "^1.18.2",
  3268. "pestphp/pest": "^2.36.0",
  3269. "pestphp/pest-plugin-mock": "2.0.0",
  3270. "phpstan/phpstan": "^1.12.11",
  3271. "phpstan/phpstan-strict-rules": "^1.6.1",
  3272. "symfony/var-dumper": "^6.4.15",
  3273. "thecodingmachine/phpstan-strict-rules": "^1.0.0"
  3274. },
  3275. "type": "library",
  3276. "extra": {
  3277. "laravel": {
  3278. "providers": [
  3279. "Termwind\\Laravel\\TermwindServiceProvider"
  3280. ]
  3281. }
  3282. },
  3283. "autoload": {
  3284. "files": [
  3285. "src/Functions.php"
  3286. ],
  3287. "psr-4": {
  3288. "Termwind\\": "src/"
  3289. }
  3290. },
  3291. "notification-url": "https://packagist.org/downloads/",
  3292. "license": [
  3293. "MIT"
  3294. ],
  3295. "authors": [
  3296. {
  3297. "name": "Nuno Maduro",
  3298. "email": "enunomaduro@gmail.com"
  3299. }
  3300. ],
  3301. "description": "Its like Tailwind CSS, but for the console.",
  3302. "keywords": [
  3303. "cli",
  3304. "console",
  3305. "css",
  3306. "package",
  3307. "php",
  3308. "style"
  3309. ],
  3310. "support": {
  3311. "issues": "https://github.com/nunomaduro/termwind/issues",
  3312. "source": "https://github.com/nunomaduro/termwind/tree/v1.17.0"
  3313. },
  3314. "funding": [
  3315. {
  3316. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3317. "type": "custom"
  3318. },
  3319. {
  3320. "url": "https://github.com/nunomaduro",
  3321. "type": "github"
  3322. },
  3323. {
  3324. "url": "https://github.com/xiCO2k",
  3325. "type": "github"
  3326. }
  3327. ],
  3328. "time": "2024-11-21T10:36:35+00:00"
  3329. },
  3330. {
  3331. "name": "paragonie/constant_time_encoding",
  3332. "version": "v3.0.0",
  3333. "source": {
  3334. "type": "git",
  3335. "url": "https://github.com/paragonie/constant_time_encoding.git",
  3336. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512"
  3337. },
  3338. "dist": {
  3339. "type": "zip",
  3340. "url": "https://api.github.com/repos/paragonie/constant_time_encoding/zipball/df1e7fde177501eee2037dd159cf04f5f301a512",
  3341. "reference": "df1e7fde177501eee2037dd159cf04f5f301a512",
  3342. "shasum": ""
  3343. },
  3344. "require": {
  3345. "php": "^8"
  3346. },
  3347. "require-dev": {
  3348. "phpunit/phpunit": "^9",
  3349. "vimeo/psalm": "^4|^5"
  3350. },
  3351. "type": "library",
  3352. "autoload": {
  3353. "psr-4": {
  3354. "ParagonIE\\ConstantTime\\": "src/"
  3355. }
  3356. },
  3357. "notification-url": "https://packagist.org/downloads/",
  3358. "license": [
  3359. "MIT"
  3360. ],
  3361. "authors": [
  3362. {
  3363. "name": "Paragon Initiative Enterprises",
  3364. "email": "security@paragonie.com",
  3365. "homepage": "https://paragonie.com",
  3366. "role": "Maintainer"
  3367. },
  3368. {
  3369. "name": "Steve 'Sc00bz' Thomas",
  3370. "email": "steve@tobtu.com",
  3371. "homepage": "https://www.tobtu.com",
  3372. "role": "Original Developer"
  3373. }
  3374. ],
  3375. "description": "Constant-time Implementations of RFC 4648 Encoding (Base-64, Base-32, Base-16)",
  3376. "keywords": [
  3377. "base16",
  3378. "base32",
  3379. "base32_decode",
  3380. "base32_encode",
  3381. "base64",
  3382. "base64_decode",
  3383. "base64_encode",
  3384. "bin2hex",
  3385. "encoding",
  3386. "hex",
  3387. "hex2bin",
  3388. "rfc4648"
  3389. ],
  3390. "support": {
  3391. "email": "info@paragonie.com",
  3392. "issues": "https://github.com/paragonie/constant_time_encoding/issues",
  3393. "source": "https://github.com/paragonie/constant_time_encoding"
  3394. },
  3395. "time": "2024-05-08T12:36:18+00:00"
  3396. },
  3397. {
  3398. "name": "paragonie/random_compat",
  3399. "version": "v9.99.100",
  3400. "source": {
  3401. "type": "git",
  3402. "url": "https://github.com/paragonie/random_compat.git",
  3403. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a"
  3404. },
  3405. "dist": {
  3406. "type": "zip",
  3407. "url": "https://api.github.com/repos/paragonie/random_compat/zipball/996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3408. "reference": "996434e5492cb4c3edcb9168db6fbb1359ef965a",
  3409. "shasum": ""
  3410. },
  3411. "require": {
  3412. "php": ">= 7"
  3413. },
  3414. "require-dev": {
  3415. "phpunit/phpunit": "4.*|5.*",
  3416. "vimeo/psalm": "^1"
  3417. },
  3418. "suggest": {
  3419. "ext-libsodium": "Provides a modern crypto API that can be used to generate random bytes."
  3420. },
  3421. "type": "library",
  3422. "notification-url": "https://packagist.org/downloads/",
  3423. "license": [
  3424. "MIT"
  3425. ],
  3426. "authors": [
  3427. {
  3428. "name": "Paragon Initiative Enterprises",
  3429. "email": "security@paragonie.com",
  3430. "homepage": "https://paragonie.com"
  3431. }
  3432. ],
  3433. "description": "PHP 5.x polyfill for random_bytes() and random_int() from PHP 7",
  3434. "keywords": [
  3435. "csprng",
  3436. "polyfill",
  3437. "pseudorandom",
  3438. "random"
  3439. ],
  3440. "support": {
  3441. "email": "info@paragonie.com",
  3442. "issues": "https://github.com/paragonie/random_compat/issues",
  3443. "source": "https://github.com/paragonie/random_compat"
  3444. },
  3445. "time": "2020-10-15T08:29:30+00:00"
  3446. },
  3447. {
  3448. "name": "phpoption/phpoption",
  3449. "version": "1.9.3",
  3450. "source": {
  3451. "type": "git",
  3452. "url": "https://github.com/schmittjoh/php-option.git",
  3453. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54"
  3454. },
  3455. "dist": {
  3456. "type": "zip",
  3457. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3458. "reference": "e3fac8b24f56113f7cb96af14958c0dd16330f54",
  3459. "shasum": ""
  3460. },
  3461. "require": {
  3462. "php": "^7.2.5 || ^8.0"
  3463. },
  3464. "require-dev": {
  3465. "bamarni/composer-bin-plugin": "^1.8.2",
  3466. "phpunit/phpunit": "^8.5.39 || ^9.6.20 || ^10.5.28"
  3467. },
  3468. "type": "library",
  3469. "extra": {
  3470. "bamarni-bin": {
  3471. "bin-links": true,
  3472. "forward-command": false
  3473. },
  3474. "branch-alias": {
  3475. "dev-master": "1.9-dev"
  3476. }
  3477. },
  3478. "autoload": {
  3479. "psr-4": {
  3480. "PhpOption\\": "src/PhpOption/"
  3481. }
  3482. },
  3483. "notification-url": "https://packagist.org/downloads/",
  3484. "license": [
  3485. "Apache-2.0"
  3486. ],
  3487. "authors": [
  3488. {
  3489. "name": "Johannes M. Schmitt",
  3490. "email": "schmittjoh@gmail.com",
  3491. "homepage": "https://github.com/schmittjoh"
  3492. },
  3493. {
  3494. "name": "Graham Campbell",
  3495. "email": "hello@gjcampbell.co.uk",
  3496. "homepage": "https://github.com/GrahamCampbell"
  3497. }
  3498. ],
  3499. "description": "Option Type for PHP",
  3500. "keywords": [
  3501. "language",
  3502. "option",
  3503. "php",
  3504. "type"
  3505. ],
  3506. "support": {
  3507. "issues": "https://github.com/schmittjoh/php-option/issues",
  3508. "source": "https://github.com/schmittjoh/php-option/tree/1.9.3"
  3509. },
  3510. "funding": [
  3511. {
  3512. "url": "https://github.com/GrahamCampbell",
  3513. "type": "github"
  3514. },
  3515. {
  3516. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3517. "type": "tidelift"
  3518. }
  3519. ],
  3520. "time": "2024-07-20T21:41:07+00:00"
  3521. },
  3522. {
  3523. "name": "phpseclib/phpseclib",
  3524. "version": "3.0.43",
  3525. "source": {
  3526. "type": "git",
  3527. "url": "https://github.com/phpseclib/phpseclib.git",
  3528. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02"
  3529. },
  3530. "dist": {
  3531. "type": "zip",
  3532. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/709ec107af3cb2f385b9617be72af8cf62441d02",
  3533. "reference": "709ec107af3cb2f385b9617be72af8cf62441d02",
  3534. "shasum": ""
  3535. },
  3536. "require": {
  3537. "paragonie/constant_time_encoding": "^1|^2|^3",
  3538. "paragonie/random_compat": "^1.4|^2.0|^9.99.99",
  3539. "php": ">=5.6.1"
  3540. },
  3541. "require-dev": {
  3542. "phpunit/phpunit": "*"
  3543. },
  3544. "suggest": {
  3545. "ext-dom": "Install the DOM extension to load XML formatted public keys.",
  3546. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3547. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3548. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3549. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations."
  3550. },
  3551. "type": "library",
  3552. "autoload": {
  3553. "files": [
  3554. "phpseclib/bootstrap.php"
  3555. ],
  3556. "psr-4": {
  3557. "phpseclib3\\": "phpseclib/"
  3558. }
  3559. },
  3560. "notification-url": "https://packagist.org/downloads/",
  3561. "license": [
  3562. "MIT"
  3563. ],
  3564. "authors": [
  3565. {
  3566. "name": "Jim Wigginton",
  3567. "email": "terrafrost@php.net",
  3568. "role": "Lead Developer"
  3569. },
  3570. {
  3571. "name": "Patrick Monnerat",
  3572. "email": "pm@datasphere.ch",
  3573. "role": "Developer"
  3574. },
  3575. {
  3576. "name": "Andreas Fischer",
  3577. "email": "bantu@phpbb.com",
  3578. "role": "Developer"
  3579. },
  3580. {
  3581. "name": "Hans-Jürgen Petrich",
  3582. "email": "petrich@tronic-media.com",
  3583. "role": "Developer"
  3584. },
  3585. {
  3586. "name": "Graham Campbell",
  3587. "email": "graham@alt-three.com",
  3588. "role": "Developer"
  3589. }
  3590. ],
  3591. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3592. "homepage": "http://phpseclib.sourceforge.net",
  3593. "keywords": [
  3594. "BigInteger",
  3595. "aes",
  3596. "asn.1",
  3597. "asn1",
  3598. "blowfish",
  3599. "crypto",
  3600. "cryptography",
  3601. "encryption",
  3602. "rsa",
  3603. "security",
  3604. "sftp",
  3605. "signature",
  3606. "signing",
  3607. "ssh",
  3608. "twofish",
  3609. "x.509",
  3610. "x509"
  3611. ],
  3612. "support": {
  3613. "issues": "https://github.com/phpseclib/phpseclib/issues",
  3614. "source": "https://github.com/phpseclib/phpseclib/tree/3.0.43"
  3615. },
  3616. "funding": [
  3617. {
  3618. "url": "https://github.com/terrafrost",
  3619. "type": "github"
  3620. },
  3621. {
  3622. "url": "https://www.patreon.com/phpseclib",
  3623. "type": "patreon"
  3624. },
  3625. {
  3626. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  3627. "type": "tidelift"
  3628. }
  3629. ],
  3630. "time": "2024-12-14T21:12:59+00:00"
  3631. },
  3632. {
  3633. "name": "psr/cache",
  3634. "version": "3.0.0",
  3635. "source": {
  3636. "type": "git",
  3637. "url": "https://github.com/php-fig/cache.git",
  3638. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  3639. },
  3640. "dist": {
  3641. "type": "zip",
  3642. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3643. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  3644. "shasum": ""
  3645. },
  3646. "require": {
  3647. "php": ">=8.0.0"
  3648. },
  3649. "type": "library",
  3650. "extra": {
  3651. "branch-alias": {
  3652. "dev-master": "1.0.x-dev"
  3653. }
  3654. },
  3655. "autoload": {
  3656. "psr-4": {
  3657. "Psr\\Cache\\": "src/"
  3658. }
  3659. },
  3660. "notification-url": "https://packagist.org/downloads/",
  3661. "license": [
  3662. "MIT"
  3663. ],
  3664. "authors": [
  3665. {
  3666. "name": "PHP-FIG",
  3667. "homepage": "https://www.php-fig.org/"
  3668. }
  3669. ],
  3670. "description": "Common interface for caching libraries",
  3671. "keywords": [
  3672. "cache",
  3673. "psr",
  3674. "psr-6"
  3675. ],
  3676. "support": {
  3677. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  3678. },
  3679. "time": "2021-02-03T23:26:27+00:00"
  3680. },
  3681. {
  3682. "name": "psr/clock",
  3683. "version": "1.0.0",
  3684. "source": {
  3685. "type": "git",
  3686. "url": "https://github.com/php-fig/clock.git",
  3687. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3688. },
  3689. "dist": {
  3690. "type": "zip",
  3691. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3692. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3693. "shasum": ""
  3694. },
  3695. "require": {
  3696. "php": "^7.0 || ^8.0"
  3697. },
  3698. "type": "library",
  3699. "autoload": {
  3700. "psr-4": {
  3701. "Psr\\Clock\\": "src/"
  3702. }
  3703. },
  3704. "notification-url": "https://packagist.org/downloads/",
  3705. "license": [
  3706. "MIT"
  3707. ],
  3708. "authors": [
  3709. {
  3710. "name": "PHP-FIG",
  3711. "homepage": "https://www.php-fig.org/"
  3712. }
  3713. ],
  3714. "description": "Common interface for reading the clock.",
  3715. "homepage": "https://github.com/php-fig/clock",
  3716. "keywords": [
  3717. "clock",
  3718. "now",
  3719. "psr",
  3720. "psr-20",
  3721. "time"
  3722. ],
  3723. "support": {
  3724. "issues": "https://github.com/php-fig/clock/issues",
  3725. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3726. },
  3727. "time": "2022-11-25T14:36:26+00:00"
  3728. },
  3729. {
  3730. "name": "psr/container",
  3731. "version": "2.0.2",
  3732. "source": {
  3733. "type": "git",
  3734. "url": "https://github.com/php-fig/container.git",
  3735. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3736. },
  3737. "dist": {
  3738. "type": "zip",
  3739. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3740. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3741. "shasum": ""
  3742. },
  3743. "require": {
  3744. "php": ">=7.4.0"
  3745. },
  3746. "type": "library",
  3747. "extra": {
  3748. "branch-alias": {
  3749. "dev-master": "2.0.x-dev"
  3750. }
  3751. },
  3752. "autoload": {
  3753. "psr-4": {
  3754. "Psr\\Container\\": "src/"
  3755. }
  3756. },
  3757. "notification-url": "https://packagist.org/downloads/",
  3758. "license": [
  3759. "MIT"
  3760. ],
  3761. "authors": [
  3762. {
  3763. "name": "PHP-FIG",
  3764. "homepage": "https://www.php-fig.org/"
  3765. }
  3766. ],
  3767. "description": "Common Container Interface (PHP FIG PSR-11)",
  3768. "homepage": "https://github.com/php-fig/container",
  3769. "keywords": [
  3770. "PSR-11",
  3771. "container",
  3772. "container-interface",
  3773. "container-interop",
  3774. "psr"
  3775. ],
  3776. "support": {
  3777. "issues": "https://github.com/php-fig/container/issues",
  3778. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3779. },
  3780. "time": "2021-11-05T16:47:00+00:00"
  3781. },
  3782. {
  3783. "name": "psr/event-dispatcher",
  3784. "version": "1.0.0",
  3785. "source": {
  3786. "type": "git",
  3787. "url": "https://github.com/php-fig/event-dispatcher.git",
  3788. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3789. },
  3790. "dist": {
  3791. "type": "zip",
  3792. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3793. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3794. "shasum": ""
  3795. },
  3796. "require": {
  3797. "php": ">=7.2.0"
  3798. },
  3799. "type": "library",
  3800. "extra": {
  3801. "branch-alias": {
  3802. "dev-master": "1.0.x-dev"
  3803. }
  3804. },
  3805. "autoload": {
  3806. "psr-4": {
  3807. "Psr\\EventDispatcher\\": "src/"
  3808. }
  3809. },
  3810. "notification-url": "https://packagist.org/downloads/",
  3811. "license": [
  3812. "MIT"
  3813. ],
  3814. "authors": [
  3815. {
  3816. "name": "PHP-FIG",
  3817. "homepage": "http://www.php-fig.org/"
  3818. }
  3819. ],
  3820. "description": "Standard interfaces for event handling.",
  3821. "keywords": [
  3822. "events",
  3823. "psr",
  3824. "psr-14"
  3825. ],
  3826. "support": {
  3827. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3828. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3829. },
  3830. "time": "2019-01-08T18:20:26+00:00"
  3831. },
  3832. {
  3833. "name": "psr/http-client",
  3834. "version": "1.0.3",
  3835. "source": {
  3836. "type": "git",
  3837. "url": "https://github.com/php-fig/http-client.git",
  3838. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3839. },
  3840. "dist": {
  3841. "type": "zip",
  3842. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3843. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3844. "shasum": ""
  3845. },
  3846. "require": {
  3847. "php": "^7.0 || ^8.0",
  3848. "psr/http-message": "^1.0 || ^2.0"
  3849. },
  3850. "type": "library",
  3851. "extra": {
  3852. "branch-alias": {
  3853. "dev-master": "1.0.x-dev"
  3854. }
  3855. },
  3856. "autoload": {
  3857. "psr-4": {
  3858. "Psr\\Http\\Client\\": "src/"
  3859. }
  3860. },
  3861. "notification-url": "https://packagist.org/downloads/",
  3862. "license": [
  3863. "MIT"
  3864. ],
  3865. "authors": [
  3866. {
  3867. "name": "PHP-FIG",
  3868. "homepage": "https://www.php-fig.org/"
  3869. }
  3870. ],
  3871. "description": "Common interface for HTTP clients",
  3872. "homepage": "https://github.com/php-fig/http-client",
  3873. "keywords": [
  3874. "http",
  3875. "http-client",
  3876. "psr",
  3877. "psr-18"
  3878. ],
  3879. "support": {
  3880. "source": "https://github.com/php-fig/http-client"
  3881. },
  3882. "time": "2023-09-23T14:17:50+00:00"
  3883. },
  3884. {
  3885. "name": "psr/http-factory",
  3886. "version": "1.1.0",
  3887. "source": {
  3888. "type": "git",
  3889. "url": "https://github.com/php-fig/http-factory.git",
  3890. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  3891. },
  3892. "dist": {
  3893. "type": "zip",
  3894. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3895. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  3896. "shasum": ""
  3897. },
  3898. "require": {
  3899. "php": ">=7.1",
  3900. "psr/http-message": "^1.0 || ^2.0"
  3901. },
  3902. "type": "library",
  3903. "extra": {
  3904. "branch-alias": {
  3905. "dev-master": "1.0.x-dev"
  3906. }
  3907. },
  3908. "autoload": {
  3909. "psr-4": {
  3910. "Psr\\Http\\Message\\": "src/"
  3911. }
  3912. },
  3913. "notification-url": "https://packagist.org/downloads/",
  3914. "license": [
  3915. "MIT"
  3916. ],
  3917. "authors": [
  3918. {
  3919. "name": "PHP-FIG",
  3920. "homepage": "https://www.php-fig.org/"
  3921. }
  3922. ],
  3923. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  3924. "keywords": [
  3925. "factory",
  3926. "http",
  3927. "message",
  3928. "psr",
  3929. "psr-17",
  3930. "psr-7",
  3931. "request",
  3932. "response"
  3933. ],
  3934. "support": {
  3935. "source": "https://github.com/php-fig/http-factory"
  3936. },
  3937. "time": "2024-04-15T12:06:14+00:00"
  3938. },
  3939. {
  3940. "name": "psr/http-message",
  3941. "version": "2.0",
  3942. "source": {
  3943. "type": "git",
  3944. "url": "https://github.com/php-fig/http-message.git",
  3945. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71"
  3946. },
  3947. "dist": {
  3948. "type": "zip",
  3949. "url": "https://api.github.com/repos/php-fig/http-message/zipball/402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3950. "reference": "402d35bcb92c70c026d1a6a9883f06b2ead23d71",
  3951. "shasum": ""
  3952. },
  3953. "require": {
  3954. "php": "^7.2 || ^8.0"
  3955. },
  3956. "type": "library",
  3957. "extra": {
  3958. "branch-alias": {
  3959. "dev-master": "2.0.x-dev"
  3960. }
  3961. },
  3962. "autoload": {
  3963. "psr-4": {
  3964. "Psr\\Http\\Message\\": "src/"
  3965. }
  3966. },
  3967. "notification-url": "https://packagist.org/downloads/",
  3968. "license": [
  3969. "MIT"
  3970. ],
  3971. "authors": [
  3972. {
  3973. "name": "PHP-FIG",
  3974. "homepage": "https://www.php-fig.org/"
  3975. }
  3976. ],
  3977. "description": "Common interface for HTTP messages",
  3978. "homepage": "https://github.com/php-fig/http-message",
  3979. "keywords": [
  3980. "http",
  3981. "http-message",
  3982. "psr",
  3983. "psr-7",
  3984. "request",
  3985. "response"
  3986. ],
  3987. "support": {
  3988. "source": "https://github.com/php-fig/http-message/tree/2.0"
  3989. },
  3990. "time": "2023-04-04T09:54:51+00:00"
  3991. },
  3992. {
  3993. "name": "psr/log",
  3994. "version": "3.0.2",
  3995. "source": {
  3996. "type": "git",
  3997. "url": "https://github.com/php-fig/log.git",
  3998. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  3999. },
  4000. "dist": {
  4001. "type": "zip",
  4002. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4003. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  4004. "shasum": ""
  4005. },
  4006. "require": {
  4007. "php": ">=8.0.0"
  4008. },
  4009. "type": "library",
  4010. "extra": {
  4011. "branch-alias": {
  4012. "dev-master": "3.x-dev"
  4013. }
  4014. },
  4015. "autoload": {
  4016. "psr-4": {
  4017. "Psr\\Log\\": "src"
  4018. }
  4019. },
  4020. "notification-url": "https://packagist.org/downloads/",
  4021. "license": [
  4022. "MIT"
  4023. ],
  4024. "authors": [
  4025. {
  4026. "name": "PHP-FIG",
  4027. "homepage": "https://www.php-fig.org/"
  4028. }
  4029. ],
  4030. "description": "Common interface for logging libraries",
  4031. "homepage": "https://github.com/php-fig/log",
  4032. "keywords": [
  4033. "log",
  4034. "psr",
  4035. "psr-3"
  4036. ],
  4037. "support": {
  4038. "source": "https://github.com/php-fig/log/tree/3.0.2"
  4039. },
  4040. "time": "2024-09-11T13:17:53+00:00"
  4041. },
  4042. {
  4043. "name": "psr/simple-cache",
  4044. "version": "3.0.0",
  4045. "source": {
  4046. "type": "git",
  4047. "url": "https://github.com/php-fig/simple-cache.git",
  4048. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4049. },
  4050. "dist": {
  4051. "type": "zip",
  4052. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4053. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4054. "shasum": ""
  4055. },
  4056. "require": {
  4057. "php": ">=8.0.0"
  4058. },
  4059. "type": "library",
  4060. "extra": {
  4061. "branch-alias": {
  4062. "dev-master": "3.0.x-dev"
  4063. }
  4064. },
  4065. "autoload": {
  4066. "psr-4": {
  4067. "Psr\\SimpleCache\\": "src/"
  4068. }
  4069. },
  4070. "notification-url": "https://packagist.org/downloads/",
  4071. "license": [
  4072. "MIT"
  4073. ],
  4074. "authors": [
  4075. {
  4076. "name": "PHP-FIG",
  4077. "homepage": "https://www.php-fig.org/"
  4078. }
  4079. ],
  4080. "description": "Common interfaces for simple caching",
  4081. "keywords": [
  4082. "cache",
  4083. "caching",
  4084. "psr",
  4085. "psr-16",
  4086. "simple-cache"
  4087. ],
  4088. "support": {
  4089. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4090. },
  4091. "time": "2021-10-29T13:26:27+00:00"
  4092. },
  4093. {
  4094. "name": "psy/psysh",
  4095. "version": "v0.12.8",
  4096. "source": {
  4097. "type": "git",
  4098. "url": "https://github.com/bobthecow/psysh.git",
  4099. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625"
  4100. },
  4101. "dist": {
  4102. "type": "zip",
  4103. "url": "https://api.github.com/repos/bobthecow/psysh/zipball/85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  4104. "reference": "85057ceedee50c49d4f6ecaff73ee96adb3b3625",
  4105. "shasum": ""
  4106. },
  4107. "require": {
  4108. "ext-json": "*",
  4109. "ext-tokenizer": "*",
  4110. "nikic/php-parser": "^5.0 || ^4.0",
  4111. "php": "^8.0 || ^7.4",
  4112. "symfony/console": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4",
  4113. "symfony/var-dumper": "^7.0 || ^6.0 || ^5.0 || ^4.0 || ^3.4"
  4114. },
  4115. "conflict": {
  4116. "symfony/console": "4.4.37 || 5.3.14 || 5.3.15 || 5.4.3 || 5.4.4 || 6.0.3 || 6.0.4"
  4117. },
  4118. "require-dev": {
  4119. "bamarni/composer-bin-plugin": "^1.2"
  4120. },
  4121. "suggest": {
  4122. "ext-pcntl": "Enabling the PCNTL extension makes PsySH a lot happier :)",
  4123. "ext-pdo-sqlite": "The doc command requires SQLite to work.",
  4124. "ext-posix": "If you have PCNTL, you'll want the POSIX extension as well."
  4125. },
  4126. "bin": [
  4127. "bin/psysh"
  4128. ],
  4129. "type": "library",
  4130. "extra": {
  4131. "bamarni-bin": {
  4132. "bin-links": false,
  4133. "forward-command": false
  4134. },
  4135. "branch-alias": {
  4136. "dev-main": "0.12.x-dev"
  4137. }
  4138. },
  4139. "autoload": {
  4140. "files": [
  4141. "src/functions.php"
  4142. ],
  4143. "psr-4": {
  4144. "Psy\\": "src/"
  4145. }
  4146. },
  4147. "notification-url": "https://packagist.org/downloads/",
  4148. "license": [
  4149. "MIT"
  4150. ],
  4151. "authors": [
  4152. {
  4153. "name": "Justin Hileman",
  4154. "email": "justin@justinhileman.info",
  4155. "homepage": "http://justinhileman.com"
  4156. }
  4157. ],
  4158. "description": "An interactive shell for modern PHP.",
  4159. "homepage": "http://psysh.org",
  4160. "keywords": [
  4161. "REPL",
  4162. "console",
  4163. "interactive",
  4164. "shell"
  4165. ],
  4166. "support": {
  4167. "issues": "https://github.com/bobthecow/psysh/issues",
  4168. "source": "https://github.com/bobthecow/psysh/tree/v0.12.8"
  4169. },
  4170. "time": "2025-03-16T03:05:19+00:00"
  4171. },
  4172. {
  4173. "name": "ralouphie/getallheaders",
  4174. "version": "3.0.3",
  4175. "source": {
  4176. "type": "git",
  4177. "url": "https://github.com/ralouphie/getallheaders.git",
  4178. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4179. },
  4180. "dist": {
  4181. "type": "zip",
  4182. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4183. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4184. "shasum": ""
  4185. },
  4186. "require": {
  4187. "php": ">=5.6"
  4188. },
  4189. "require-dev": {
  4190. "php-coveralls/php-coveralls": "^2.1",
  4191. "phpunit/phpunit": "^5 || ^6.5"
  4192. },
  4193. "type": "library",
  4194. "autoload": {
  4195. "files": [
  4196. "src/getallheaders.php"
  4197. ]
  4198. },
  4199. "notification-url": "https://packagist.org/downloads/",
  4200. "license": [
  4201. "MIT"
  4202. ],
  4203. "authors": [
  4204. {
  4205. "name": "Ralph Khattar",
  4206. "email": "ralph.khattar@gmail.com"
  4207. }
  4208. ],
  4209. "description": "A polyfill for getallheaders.",
  4210. "support": {
  4211. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4212. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4213. },
  4214. "time": "2019-03-08T08:55:37+00:00"
  4215. },
  4216. {
  4217. "name": "ramsey/collection",
  4218. "version": "2.1.1",
  4219. "source": {
  4220. "type": "git",
  4221. "url": "https://github.com/ramsey/collection.git",
  4222. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  4223. },
  4224. "dist": {
  4225. "type": "zip",
  4226. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  4227. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  4228. "shasum": ""
  4229. },
  4230. "require": {
  4231. "php": "^8.1"
  4232. },
  4233. "require-dev": {
  4234. "captainhook/plugin-composer": "^5.3",
  4235. "ergebnis/composer-normalize": "^2.45",
  4236. "fakerphp/faker": "^1.24",
  4237. "hamcrest/hamcrest-php": "^2.0",
  4238. "jangregor/phpstan-prophecy": "^2.1",
  4239. "mockery/mockery": "^1.6",
  4240. "php-parallel-lint/php-console-highlighter": "^1.0",
  4241. "php-parallel-lint/php-parallel-lint": "^1.4",
  4242. "phpspec/prophecy-phpunit": "^2.3",
  4243. "phpstan/extension-installer": "^1.4",
  4244. "phpstan/phpstan": "^2.1",
  4245. "phpstan/phpstan-mockery": "^2.0",
  4246. "phpstan/phpstan-phpunit": "^2.0",
  4247. "phpunit/phpunit": "^10.5",
  4248. "ramsey/coding-standard": "^2.3",
  4249. "ramsey/conventional-commits": "^1.6",
  4250. "roave/security-advisories": "dev-latest"
  4251. },
  4252. "type": "library",
  4253. "extra": {
  4254. "captainhook": {
  4255. "force-install": true
  4256. },
  4257. "ramsey/conventional-commits": {
  4258. "configFile": "conventional-commits.json"
  4259. }
  4260. },
  4261. "autoload": {
  4262. "psr-4": {
  4263. "Ramsey\\Collection\\": "src/"
  4264. }
  4265. },
  4266. "notification-url": "https://packagist.org/downloads/",
  4267. "license": [
  4268. "MIT"
  4269. ],
  4270. "authors": [
  4271. {
  4272. "name": "Ben Ramsey",
  4273. "email": "ben@benramsey.com",
  4274. "homepage": "https://benramsey.com"
  4275. }
  4276. ],
  4277. "description": "A PHP library for representing and manipulating collections.",
  4278. "keywords": [
  4279. "array",
  4280. "collection",
  4281. "hash",
  4282. "map",
  4283. "queue",
  4284. "set"
  4285. ],
  4286. "support": {
  4287. "issues": "https://github.com/ramsey/collection/issues",
  4288. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  4289. },
  4290. "time": "2025-03-22T05:38:12+00:00"
  4291. },
  4292. {
  4293. "name": "ramsey/uuid",
  4294. "version": "4.7.6",
  4295. "source": {
  4296. "type": "git",
  4297. "url": "https://github.com/ramsey/uuid.git",
  4298. "reference": "91039bc1faa45ba123c4328958e620d382ec7088"
  4299. },
  4300. "dist": {
  4301. "type": "zip",
  4302. "url": "https://api.github.com/repos/ramsey/uuid/zipball/91039bc1faa45ba123c4328958e620d382ec7088",
  4303. "reference": "91039bc1faa45ba123c4328958e620d382ec7088",
  4304. "shasum": ""
  4305. },
  4306. "require": {
  4307. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11 || ^0.12",
  4308. "ext-json": "*",
  4309. "php": "^8.0",
  4310. "ramsey/collection": "^1.2 || ^2.0"
  4311. },
  4312. "replace": {
  4313. "rhumsaa/uuid": "self.version"
  4314. },
  4315. "require-dev": {
  4316. "captainhook/captainhook": "^5.10",
  4317. "captainhook/plugin-composer": "^5.3",
  4318. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4319. "doctrine/annotations": "^1.8",
  4320. "ergebnis/composer-normalize": "^2.15",
  4321. "mockery/mockery": "^1.3",
  4322. "paragonie/random-lib": "^2",
  4323. "php-mock/php-mock": "^2.2",
  4324. "php-mock/php-mock-mockery": "^1.3",
  4325. "php-parallel-lint/php-parallel-lint": "^1.1",
  4326. "phpbench/phpbench": "^1.0",
  4327. "phpstan/extension-installer": "^1.1",
  4328. "phpstan/phpstan": "^1.8",
  4329. "phpstan/phpstan-mockery": "^1.1",
  4330. "phpstan/phpstan-phpunit": "^1.1",
  4331. "phpunit/phpunit": "^8.5 || ^9",
  4332. "ramsey/composer-repl": "^1.4",
  4333. "slevomat/coding-standard": "^8.4",
  4334. "squizlabs/php_codesniffer": "^3.5",
  4335. "vimeo/psalm": "^4.9"
  4336. },
  4337. "suggest": {
  4338. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4339. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4340. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4341. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4342. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4343. },
  4344. "type": "library",
  4345. "extra": {
  4346. "captainhook": {
  4347. "force-install": true
  4348. }
  4349. },
  4350. "autoload": {
  4351. "files": [
  4352. "src/functions.php"
  4353. ],
  4354. "psr-4": {
  4355. "Ramsey\\Uuid\\": "src/"
  4356. }
  4357. },
  4358. "notification-url": "https://packagist.org/downloads/",
  4359. "license": [
  4360. "MIT"
  4361. ],
  4362. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4363. "keywords": [
  4364. "guid",
  4365. "identifier",
  4366. "uuid"
  4367. ],
  4368. "support": {
  4369. "issues": "https://github.com/ramsey/uuid/issues",
  4370. "source": "https://github.com/ramsey/uuid/tree/4.7.6"
  4371. },
  4372. "funding": [
  4373. {
  4374. "url": "https://github.com/ramsey",
  4375. "type": "github"
  4376. },
  4377. {
  4378. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4379. "type": "tidelift"
  4380. }
  4381. ],
  4382. "time": "2024-04-27T21:32:50+00:00"
  4383. },
  4384. {
  4385. "name": "spatie/eloquent-sortable",
  4386. "version": "4.4.2",
  4387. "source": {
  4388. "type": "git",
  4389. "url": "https://github.com/spatie/eloquent-sortable.git",
  4390. "reference": "69e0e258e19513cf261305dd17717ee731aaede3"
  4391. },
  4392. "dist": {
  4393. "type": "zip",
  4394. "url": "https://api.github.com/repos/spatie/eloquent-sortable/zipball/69e0e258e19513cf261305dd17717ee731aaede3",
  4395. "reference": "69e0e258e19513cf261305dd17717ee731aaede3",
  4396. "shasum": ""
  4397. },
  4398. "require": {
  4399. "illuminate/database": "^9.31|^10.0|^11.0|^12.0",
  4400. "illuminate/support": "^9.31|^10.0|^11.0|^12.0",
  4401. "nesbot/carbon": "^2.63|^3.0",
  4402. "php": "^8.1",
  4403. "spatie/laravel-package-tools": "^1.9"
  4404. },
  4405. "require-dev": {
  4406. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  4407. "phpunit/phpunit": "^9.5|^10.0|^11.5.3"
  4408. },
  4409. "type": "library",
  4410. "extra": {
  4411. "laravel": {
  4412. "providers": [
  4413. "Spatie\\EloquentSortable\\EloquentSortableServiceProvider"
  4414. ]
  4415. }
  4416. },
  4417. "autoload": {
  4418. "psr-4": {
  4419. "Spatie\\EloquentSortable\\": "src/"
  4420. }
  4421. },
  4422. "notification-url": "https://packagist.org/downloads/",
  4423. "license": [
  4424. "MIT"
  4425. ],
  4426. "authors": [
  4427. {
  4428. "name": "Freek Van der Herten",
  4429. "email": "freek@spatie.be"
  4430. }
  4431. ],
  4432. "description": "Sortable behaviour for eloquent models",
  4433. "homepage": "https://github.com/spatie/eloquent-sortable",
  4434. "keywords": [
  4435. "behaviour",
  4436. "eloquent",
  4437. "laravel",
  4438. "model",
  4439. "sort",
  4440. "sortable"
  4441. ],
  4442. "support": {
  4443. "issues": "https://github.com/spatie/eloquent-sortable/issues",
  4444. "source": "https://github.com/spatie/eloquent-sortable/tree/4.4.2"
  4445. },
  4446. "funding": [
  4447. {
  4448. "url": "https://spatie.be/open-source/support-us",
  4449. "type": "custom"
  4450. },
  4451. {
  4452. "url": "https://github.com/spatie",
  4453. "type": "github"
  4454. }
  4455. ],
  4456. "time": "2025-02-19T07:17:00+00:00"
  4457. },
  4458. {
  4459. "name": "spatie/laravel-package-tools",
  4460. "version": "1.92.4",
  4461. "source": {
  4462. "type": "git",
  4463. "url": "https://github.com/spatie/laravel-package-tools.git",
  4464. "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c"
  4465. },
  4466. "dist": {
  4467. "type": "zip",
  4468. "url": "https://api.github.com/repos/spatie/laravel-package-tools/zipball/d20b1969f836d210459b78683d85c9cd5c5f508c",
  4469. "reference": "d20b1969f836d210459b78683d85c9cd5c5f508c",
  4470. "shasum": ""
  4471. },
  4472. "require": {
  4473. "illuminate/contracts": "^9.28|^10.0|^11.0|^12.0",
  4474. "php": "^8.0"
  4475. },
  4476. "require-dev": {
  4477. "mockery/mockery": "^1.5",
  4478. "orchestra/testbench": "^7.7|^8.0|^9.0|^10.0",
  4479. "pestphp/pest": "^1.23|^2.1|^3.1",
  4480. "phpunit/php-code-coverage": "^9.0|^10.0|^11.0",
  4481. "phpunit/phpunit": "^9.5.24|^10.5|^11.5",
  4482. "spatie/pest-plugin-test-time": "^1.1|^2.2"
  4483. },
  4484. "type": "library",
  4485. "autoload": {
  4486. "psr-4": {
  4487. "Spatie\\LaravelPackageTools\\": "src"
  4488. }
  4489. },
  4490. "notification-url": "https://packagist.org/downloads/",
  4491. "license": [
  4492. "MIT"
  4493. ],
  4494. "authors": [
  4495. {
  4496. "name": "Freek Van der Herten",
  4497. "email": "freek@spatie.be",
  4498. "role": "Developer"
  4499. }
  4500. ],
  4501. "description": "Tools for creating Laravel packages",
  4502. "homepage": "https://github.com/spatie/laravel-package-tools",
  4503. "keywords": [
  4504. "laravel-package-tools",
  4505. "spatie"
  4506. ],
  4507. "support": {
  4508. "issues": "https://github.com/spatie/laravel-package-tools/issues",
  4509. "source": "https://github.com/spatie/laravel-package-tools/tree/1.92.4"
  4510. },
  4511. "funding": [
  4512. {
  4513. "url": "https://github.com/spatie",
  4514. "type": "github"
  4515. }
  4516. ],
  4517. "time": "2025-04-11T15:27:14+00:00"
  4518. },
  4519. {
  4520. "name": "symfony/console",
  4521. "version": "v6.4.20",
  4522. "source": {
  4523. "type": "git",
  4524. "url": "https://github.com/symfony/console.git",
  4525. "reference": "2e4af9c952617cc3f9559ff706aee420a8464c36"
  4526. },
  4527. "dist": {
  4528. "type": "zip",
  4529. "url": "https://api.github.com/repos/symfony/console/zipball/2e4af9c952617cc3f9559ff706aee420a8464c36",
  4530. "reference": "2e4af9c952617cc3f9559ff706aee420a8464c36",
  4531. "shasum": ""
  4532. },
  4533. "require": {
  4534. "php": ">=8.1",
  4535. "symfony/deprecation-contracts": "^2.5|^3",
  4536. "symfony/polyfill-mbstring": "~1.0",
  4537. "symfony/service-contracts": "^2.5|^3",
  4538. "symfony/string": "^5.4|^6.0|^7.0"
  4539. },
  4540. "conflict": {
  4541. "symfony/dependency-injection": "<5.4",
  4542. "symfony/dotenv": "<5.4",
  4543. "symfony/event-dispatcher": "<5.4",
  4544. "symfony/lock": "<5.4",
  4545. "symfony/process": "<5.4"
  4546. },
  4547. "provide": {
  4548. "psr/log-implementation": "1.0|2.0|3.0"
  4549. },
  4550. "require-dev": {
  4551. "psr/log": "^1|^2|^3",
  4552. "symfony/config": "^5.4|^6.0|^7.0",
  4553. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  4554. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  4555. "symfony/http-foundation": "^6.4|^7.0",
  4556. "symfony/http-kernel": "^6.4|^7.0",
  4557. "symfony/lock": "^5.4|^6.0|^7.0",
  4558. "symfony/messenger": "^5.4|^6.0|^7.0",
  4559. "symfony/process": "^5.4|^6.0|^7.0",
  4560. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  4561. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  4562. },
  4563. "type": "library",
  4564. "autoload": {
  4565. "psr-4": {
  4566. "Symfony\\Component\\Console\\": ""
  4567. },
  4568. "exclude-from-classmap": [
  4569. "/Tests/"
  4570. ]
  4571. },
  4572. "notification-url": "https://packagist.org/downloads/",
  4573. "license": [
  4574. "MIT"
  4575. ],
  4576. "authors": [
  4577. {
  4578. "name": "Fabien Potencier",
  4579. "email": "fabien@symfony.com"
  4580. },
  4581. {
  4582. "name": "Symfony Community",
  4583. "homepage": "https://symfony.com/contributors"
  4584. }
  4585. ],
  4586. "description": "Eases the creation of beautiful and testable command line interfaces",
  4587. "homepage": "https://symfony.com",
  4588. "keywords": [
  4589. "cli",
  4590. "command-line",
  4591. "console",
  4592. "terminal"
  4593. ],
  4594. "support": {
  4595. "source": "https://github.com/symfony/console/tree/v6.4.20"
  4596. },
  4597. "funding": [
  4598. {
  4599. "url": "https://symfony.com/sponsor",
  4600. "type": "custom"
  4601. },
  4602. {
  4603. "url": "https://github.com/fabpot",
  4604. "type": "github"
  4605. },
  4606. {
  4607. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4608. "type": "tidelift"
  4609. }
  4610. ],
  4611. "time": "2025-03-03T17:16:38+00:00"
  4612. },
  4613. {
  4614. "name": "symfony/css-selector",
  4615. "version": "v7.2.0",
  4616. "source": {
  4617. "type": "git",
  4618. "url": "https://github.com/symfony/css-selector.git",
  4619. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2"
  4620. },
  4621. "dist": {
  4622. "type": "zip",
  4623. "url": "https://api.github.com/repos/symfony/css-selector/zipball/601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  4624. "reference": "601a5ce9aaad7bf10797e3663faefce9e26c24e2",
  4625. "shasum": ""
  4626. },
  4627. "require": {
  4628. "php": ">=8.2"
  4629. },
  4630. "type": "library",
  4631. "autoload": {
  4632. "psr-4": {
  4633. "Symfony\\Component\\CssSelector\\": ""
  4634. },
  4635. "exclude-from-classmap": [
  4636. "/Tests/"
  4637. ]
  4638. },
  4639. "notification-url": "https://packagist.org/downloads/",
  4640. "license": [
  4641. "MIT"
  4642. ],
  4643. "authors": [
  4644. {
  4645. "name": "Fabien Potencier",
  4646. "email": "fabien@symfony.com"
  4647. },
  4648. {
  4649. "name": "Jean-François Simon",
  4650. "email": "jeanfrancois.simon@sensiolabs.com"
  4651. },
  4652. {
  4653. "name": "Symfony Community",
  4654. "homepage": "https://symfony.com/contributors"
  4655. }
  4656. ],
  4657. "description": "Converts CSS selectors to XPath expressions",
  4658. "homepage": "https://symfony.com",
  4659. "support": {
  4660. "source": "https://github.com/symfony/css-selector/tree/v7.2.0"
  4661. },
  4662. "funding": [
  4663. {
  4664. "url": "https://symfony.com/sponsor",
  4665. "type": "custom"
  4666. },
  4667. {
  4668. "url": "https://github.com/fabpot",
  4669. "type": "github"
  4670. },
  4671. {
  4672. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4673. "type": "tidelift"
  4674. }
  4675. ],
  4676. "time": "2024-09-25T14:21:43+00:00"
  4677. },
  4678. {
  4679. "name": "symfony/deprecation-contracts",
  4680. "version": "v3.5.1",
  4681. "source": {
  4682. "type": "git",
  4683. "url": "https://github.com/symfony/deprecation-contracts.git",
  4684. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6"
  4685. },
  4686. "dist": {
  4687. "type": "zip",
  4688. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  4689. "reference": "74c71c939a79f7d5bf3c1ce9f5ea37ba0114c6f6",
  4690. "shasum": ""
  4691. },
  4692. "require": {
  4693. "php": ">=8.1"
  4694. },
  4695. "type": "library",
  4696. "extra": {
  4697. "thanks": {
  4698. "url": "https://github.com/symfony/contracts",
  4699. "name": "symfony/contracts"
  4700. },
  4701. "branch-alias": {
  4702. "dev-main": "3.5-dev"
  4703. }
  4704. },
  4705. "autoload": {
  4706. "files": [
  4707. "function.php"
  4708. ]
  4709. },
  4710. "notification-url": "https://packagist.org/downloads/",
  4711. "license": [
  4712. "MIT"
  4713. ],
  4714. "authors": [
  4715. {
  4716. "name": "Nicolas Grekas",
  4717. "email": "p@tchwork.com"
  4718. },
  4719. {
  4720. "name": "Symfony Community",
  4721. "homepage": "https://symfony.com/contributors"
  4722. }
  4723. ],
  4724. "description": "A generic function and convention to trigger deprecation notices",
  4725. "homepage": "https://symfony.com",
  4726. "support": {
  4727. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.5.1"
  4728. },
  4729. "funding": [
  4730. {
  4731. "url": "https://symfony.com/sponsor",
  4732. "type": "custom"
  4733. },
  4734. {
  4735. "url": "https://github.com/fabpot",
  4736. "type": "github"
  4737. },
  4738. {
  4739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4740. "type": "tidelift"
  4741. }
  4742. ],
  4743. "time": "2024-09-25T14:20:29+00:00"
  4744. },
  4745. {
  4746. "name": "symfony/dom-crawler",
  4747. "version": "v7.2.4",
  4748. "source": {
  4749. "type": "git",
  4750. "url": "https://github.com/symfony/dom-crawler.git",
  4751. "reference": "19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7"
  4752. },
  4753. "dist": {
  4754. "type": "zip",
  4755. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7",
  4756. "reference": "19cc7b08efe9ad1ab1b56e0948e8d02e15ed3ef7",
  4757. "shasum": ""
  4758. },
  4759. "require": {
  4760. "masterminds/html5": "^2.6",
  4761. "php": ">=8.2",
  4762. "symfony/polyfill-ctype": "~1.8",
  4763. "symfony/polyfill-mbstring": "~1.0"
  4764. },
  4765. "require-dev": {
  4766. "symfony/css-selector": "^6.4|^7.0"
  4767. },
  4768. "type": "library",
  4769. "autoload": {
  4770. "psr-4": {
  4771. "Symfony\\Component\\DomCrawler\\": ""
  4772. },
  4773. "exclude-from-classmap": [
  4774. "/Tests/"
  4775. ]
  4776. },
  4777. "notification-url": "https://packagist.org/downloads/",
  4778. "license": [
  4779. "MIT"
  4780. ],
  4781. "authors": [
  4782. {
  4783. "name": "Fabien Potencier",
  4784. "email": "fabien@symfony.com"
  4785. },
  4786. {
  4787. "name": "Symfony Community",
  4788. "homepage": "https://symfony.com/contributors"
  4789. }
  4790. ],
  4791. "description": "Eases DOM navigation for HTML and XML documents",
  4792. "homepage": "https://symfony.com",
  4793. "support": {
  4794. "source": "https://github.com/symfony/dom-crawler/tree/v7.2.4"
  4795. },
  4796. "funding": [
  4797. {
  4798. "url": "https://symfony.com/sponsor",
  4799. "type": "custom"
  4800. },
  4801. {
  4802. "url": "https://github.com/fabpot",
  4803. "type": "github"
  4804. },
  4805. {
  4806. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4807. "type": "tidelift"
  4808. }
  4809. ],
  4810. "time": "2025-02-17T15:53:07+00:00"
  4811. },
  4812. {
  4813. "name": "symfony/error-handler",
  4814. "version": "v6.4.20",
  4815. "source": {
  4816. "type": "git",
  4817. "url": "https://github.com/symfony/error-handler.git",
  4818. "reference": "aa3bcf4f7674719df078e61cc8062e5b7f752031"
  4819. },
  4820. "dist": {
  4821. "type": "zip",
  4822. "url": "https://api.github.com/repos/symfony/error-handler/zipball/aa3bcf4f7674719df078e61cc8062e5b7f752031",
  4823. "reference": "aa3bcf4f7674719df078e61cc8062e5b7f752031",
  4824. "shasum": ""
  4825. },
  4826. "require": {
  4827. "php": ">=8.1",
  4828. "psr/log": "^1|^2|^3",
  4829. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  4830. },
  4831. "conflict": {
  4832. "symfony/deprecation-contracts": "<2.5",
  4833. "symfony/http-kernel": "<6.4"
  4834. },
  4835. "require-dev": {
  4836. "symfony/deprecation-contracts": "^2.5|^3",
  4837. "symfony/http-kernel": "^6.4|^7.0",
  4838. "symfony/serializer": "^5.4|^6.0|^7.0"
  4839. },
  4840. "bin": [
  4841. "Resources/bin/patch-type-declarations"
  4842. ],
  4843. "type": "library",
  4844. "autoload": {
  4845. "psr-4": {
  4846. "Symfony\\Component\\ErrorHandler\\": ""
  4847. },
  4848. "exclude-from-classmap": [
  4849. "/Tests/"
  4850. ]
  4851. },
  4852. "notification-url": "https://packagist.org/downloads/",
  4853. "license": [
  4854. "MIT"
  4855. ],
  4856. "authors": [
  4857. {
  4858. "name": "Fabien Potencier",
  4859. "email": "fabien@symfony.com"
  4860. },
  4861. {
  4862. "name": "Symfony Community",
  4863. "homepage": "https://symfony.com/contributors"
  4864. }
  4865. ],
  4866. "description": "Provides tools to manage errors and ease debugging PHP code",
  4867. "homepage": "https://symfony.com",
  4868. "support": {
  4869. "source": "https://github.com/symfony/error-handler/tree/v6.4.20"
  4870. },
  4871. "funding": [
  4872. {
  4873. "url": "https://symfony.com/sponsor",
  4874. "type": "custom"
  4875. },
  4876. {
  4877. "url": "https://github.com/fabpot",
  4878. "type": "github"
  4879. },
  4880. {
  4881. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4882. "type": "tidelift"
  4883. }
  4884. ],
  4885. "time": "2025-03-01T13:00:38+00:00"
  4886. },
  4887. {
  4888. "name": "symfony/event-dispatcher",
  4889. "version": "v7.2.0",
  4890. "source": {
  4891. "type": "git",
  4892. "url": "https://github.com/symfony/event-dispatcher.git",
  4893. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1"
  4894. },
  4895. "dist": {
  4896. "type": "zip",
  4897. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/910c5db85a5356d0fea57680defec4e99eb9c8c1",
  4898. "reference": "910c5db85a5356d0fea57680defec4e99eb9c8c1",
  4899. "shasum": ""
  4900. },
  4901. "require": {
  4902. "php": ">=8.2",
  4903. "symfony/event-dispatcher-contracts": "^2.5|^3"
  4904. },
  4905. "conflict": {
  4906. "symfony/dependency-injection": "<6.4",
  4907. "symfony/service-contracts": "<2.5"
  4908. },
  4909. "provide": {
  4910. "psr/event-dispatcher-implementation": "1.0",
  4911. "symfony/event-dispatcher-implementation": "2.0|3.0"
  4912. },
  4913. "require-dev": {
  4914. "psr/log": "^1|^2|^3",
  4915. "symfony/config": "^6.4|^7.0",
  4916. "symfony/dependency-injection": "^6.4|^7.0",
  4917. "symfony/error-handler": "^6.4|^7.0",
  4918. "symfony/expression-language": "^6.4|^7.0",
  4919. "symfony/http-foundation": "^6.4|^7.0",
  4920. "symfony/service-contracts": "^2.5|^3",
  4921. "symfony/stopwatch": "^6.4|^7.0"
  4922. },
  4923. "type": "library",
  4924. "autoload": {
  4925. "psr-4": {
  4926. "Symfony\\Component\\EventDispatcher\\": ""
  4927. },
  4928. "exclude-from-classmap": [
  4929. "/Tests/"
  4930. ]
  4931. },
  4932. "notification-url": "https://packagist.org/downloads/",
  4933. "license": [
  4934. "MIT"
  4935. ],
  4936. "authors": [
  4937. {
  4938. "name": "Fabien Potencier",
  4939. "email": "fabien@symfony.com"
  4940. },
  4941. {
  4942. "name": "Symfony Community",
  4943. "homepage": "https://symfony.com/contributors"
  4944. }
  4945. ],
  4946. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  4947. "homepage": "https://symfony.com",
  4948. "support": {
  4949. "source": "https://github.com/symfony/event-dispatcher/tree/v7.2.0"
  4950. },
  4951. "funding": [
  4952. {
  4953. "url": "https://symfony.com/sponsor",
  4954. "type": "custom"
  4955. },
  4956. {
  4957. "url": "https://github.com/fabpot",
  4958. "type": "github"
  4959. },
  4960. {
  4961. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4962. "type": "tidelift"
  4963. }
  4964. ],
  4965. "time": "2024-09-25T14:21:43+00:00"
  4966. },
  4967. {
  4968. "name": "symfony/event-dispatcher-contracts",
  4969. "version": "v3.5.1",
  4970. "source": {
  4971. "type": "git",
  4972. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  4973. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f"
  4974. },
  4975. "dist": {
  4976. "type": "zip",
  4977. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/7642f5e970b672283b7823222ae8ef8bbc160b9f",
  4978. "reference": "7642f5e970b672283b7823222ae8ef8bbc160b9f",
  4979. "shasum": ""
  4980. },
  4981. "require": {
  4982. "php": ">=8.1",
  4983. "psr/event-dispatcher": "^1"
  4984. },
  4985. "type": "library",
  4986. "extra": {
  4987. "thanks": {
  4988. "url": "https://github.com/symfony/contracts",
  4989. "name": "symfony/contracts"
  4990. },
  4991. "branch-alias": {
  4992. "dev-main": "3.5-dev"
  4993. }
  4994. },
  4995. "autoload": {
  4996. "psr-4": {
  4997. "Symfony\\Contracts\\EventDispatcher\\": ""
  4998. }
  4999. },
  5000. "notification-url": "https://packagist.org/downloads/",
  5001. "license": [
  5002. "MIT"
  5003. ],
  5004. "authors": [
  5005. {
  5006. "name": "Nicolas Grekas",
  5007. "email": "p@tchwork.com"
  5008. },
  5009. {
  5010. "name": "Symfony Community",
  5011. "homepage": "https://symfony.com/contributors"
  5012. }
  5013. ],
  5014. "description": "Generic abstractions related to dispatching event",
  5015. "homepage": "https://symfony.com",
  5016. "keywords": [
  5017. "abstractions",
  5018. "contracts",
  5019. "decoupling",
  5020. "interfaces",
  5021. "interoperability",
  5022. "standards"
  5023. ],
  5024. "support": {
  5025. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.5.1"
  5026. },
  5027. "funding": [
  5028. {
  5029. "url": "https://symfony.com/sponsor",
  5030. "type": "custom"
  5031. },
  5032. {
  5033. "url": "https://github.com/fabpot",
  5034. "type": "github"
  5035. },
  5036. {
  5037. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5038. "type": "tidelift"
  5039. }
  5040. ],
  5041. "time": "2024-09-25T14:20:29+00:00"
  5042. },
  5043. {
  5044. "name": "symfony/finder",
  5045. "version": "v6.4.17",
  5046. "source": {
  5047. "type": "git",
  5048. "url": "https://github.com/symfony/finder.git",
  5049. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7"
  5050. },
  5051. "dist": {
  5052. "type": "zip",
  5053. "url": "https://api.github.com/repos/symfony/finder/zipball/1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  5054. "reference": "1d0e8266248c5d9ab6a87e3789e6dc482af3c9c7",
  5055. "shasum": ""
  5056. },
  5057. "require": {
  5058. "php": ">=8.1"
  5059. },
  5060. "require-dev": {
  5061. "symfony/filesystem": "^6.0|^7.0"
  5062. },
  5063. "type": "library",
  5064. "autoload": {
  5065. "psr-4": {
  5066. "Symfony\\Component\\Finder\\": ""
  5067. },
  5068. "exclude-from-classmap": [
  5069. "/Tests/"
  5070. ]
  5071. },
  5072. "notification-url": "https://packagist.org/downloads/",
  5073. "license": [
  5074. "MIT"
  5075. ],
  5076. "authors": [
  5077. {
  5078. "name": "Fabien Potencier",
  5079. "email": "fabien@symfony.com"
  5080. },
  5081. {
  5082. "name": "Symfony Community",
  5083. "homepage": "https://symfony.com/contributors"
  5084. }
  5085. ],
  5086. "description": "Finds files and directories via an intuitive fluent interface",
  5087. "homepage": "https://symfony.com",
  5088. "support": {
  5089. "source": "https://github.com/symfony/finder/tree/v6.4.17"
  5090. },
  5091. "funding": [
  5092. {
  5093. "url": "https://symfony.com/sponsor",
  5094. "type": "custom"
  5095. },
  5096. {
  5097. "url": "https://github.com/fabpot",
  5098. "type": "github"
  5099. },
  5100. {
  5101. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5102. "type": "tidelift"
  5103. }
  5104. ],
  5105. "time": "2024-12-29T13:51:37+00:00"
  5106. },
  5107. {
  5108. "name": "symfony/http-foundation",
  5109. "version": "v6.4.18",
  5110. "source": {
  5111. "type": "git",
  5112. "url": "https://github.com/symfony/http-foundation.git",
  5113. "reference": "d0492d6217e5ab48f51fca76f64cf8e78919d0db"
  5114. },
  5115. "dist": {
  5116. "type": "zip",
  5117. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/d0492d6217e5ab48f51fca76f64cf8e78919d0db",
  5118. "reference": "d0492d6217e5ab48f51fca76f64cf8e78919d0db",
  5119. "shasum": ""
  5120. },
  5121. "require": {
  5122. "php": ">=8.1",
  5123. "symfony/deprecation-contracts": "^2.5|^3",
  5124. "symfony/polyfill-mbstring": "~1.1",
  5125. "symfony/polyfill-php83": "^1.27"
  5126. },
  5127. "conflict": {
  5128. "symfony/cache": "<6.4.12|>=7.0,<7.1.5"
  5129. },
  5130. "require-dev": {
  5131. "doctrine/dbal": "^2.13.1|^3|^4",
  5132. "predis/predis": "^1.1|^2.0",
  5133. "symfony/cache": "^6.4.12|^7.1.5",
  5134. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5135. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5136. "symfony/http-kernel": "^5.4.12|^6.0.12|^6.1.4|^7.0",
  5137. "symfony/mime": "^5.4|^6.0|^7.0",
  5138. "symfony/rate-limiter": "^5.4|^6.0|^7.0"
  5139. },
  5140. "type": "library",
  5141. "autoload": {
  5142. "psr-4": {
  5143. "Symfony\\Component\\HttpFoundation\\": ""
  5144. },
  5145. "exclude-from-classmap": [
  5146. "/Tests/"
  5147. ]
  5148. },
  5149. "notification-url": "https://packagist.org/downloads/",
  5150. "license": [
  5151. "MIT"
  5152. ],
  5153. "authors": [
  5154. {
  5155. "name": "Fabien Potencier",
  5156. "email": "fabien@symfony.com"
  5157. },
  5158. {
  5159. "name": "Symfony Community",
  5160. "homepage": "https://symfony.com/contributors"
  5161. }
  5162. ],
  5163. "description": "Defines an object-oriented layer for the HTTP specification",
  5164. "homepage": "https://symfony.com",
  5165. "support": {
  5166. "source": "https://github.com/symfony/http-foundation/tree/v6.4.18"
  5167. },
  5168. "funding": [
  5169. {
  5170. "url": "https://symfony.com/sponsor",
  5171. "type": "custom"
  5172. },
  5173. {
  5174. "url": "https://github.com/fabpot",
  5175. "type": "github"
  5176. },
  5177. {
  5178. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5179. "type": "tidelift"
  5180. }
  5181. ],
  5182. "time": "2025-01-09T15:48:56+00:00"
  5183. },
  5184. {
  5185. "name": "symfony/http-kernel",
  5186. "version": "v6.4.20",
  5187. "source": {
  5188. "type": "git",
  5189. "url": "https://github.com/symfony/http-kernel.git",
  5190. "reference": "6be6db31bc74693ce5516e1fd5e5ff1171005e37"
  5191. },
  5192. "dist": {
  5193. "type": "zip",
  5194. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/6be6db31bc74693ce5516e1fd5e5ff1171005e37",
  5195. "reference": "6be6db31bc74693ce5516e1fd5e5ff1171005e37",
  5196. "shasum": ""
  5197. },
  5198. "require": {
  5199. "php": ">=8.1",
  5200. "psr/log": "^1|^2|^3",
  5201. "symfony/deprecation-contracts": "^2.5|^3",
  5202. "symfony/error-handler": "^6.4|^7.0",
  5203. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5204. "symfony/http-foundation": "^6.4|^7.0",
  5205. "symfony/polyfill-ctype": "^1.8"
  5206. },
  5207. "conflict": {
  5208. "symfony/browser-kit": "<5.4",
  5209. "symfony/cache": "<5.4",
  5210. "symfony/config": "<6.1",
  5211. "symfony/console": "<5.4",
  5212. "symfony/dependency-injection": "<6.4",
  5213. "symfony/doctrine-bridge": "<5.4",
  5214. "symfony/form": "<5.4",
  5215. "symfony/http-client": "<5.4",
  5216. "symfony/http-client-contracts": "<2.5",
  5217. "symfony/mailer": "<5.4",
  5218. "symfony/messenger": "<5.4",
  5219. "symfony/translation": "<5.4",
  5220. "symfony/translation-contracts": "<2.5",
  5221. "symfony/twig-bridge": "<5.4",
  5222. "symfony/validator": "<6.4",
  5223. "symfony/var-dumper": "<6.3",
  5224. "twig/twig": "<2.13"
  5225. },
  5226. "provide": {
  5227. "psr/log-implementation": "1.0|2.0|3.0"
  5228. },
  5229. "require-dev": {
  5230. "psr/cache": "^1.0|^2.0|^3.0",
  5231. "symfony/browser-kit": "^5.4|^6.0|^7.0",
  5232. "symfony/clock": "^6.2|^7.0",
  5233. "symfony/config": "^6.1|^7.0",
  5234. "symfony/console": "^5.4|^6.0|^7.0",
  5235. "symfony/css-selector": "^5.4|^6.0|^7.0",
  5236. "symfony/dependency-injection": "^6.4|^7.0",
  5237. "symfony/dom-crawler": "^5.4|^6.0|^7.0",
  5238. "symfony/expression-language": "^5.4|^6.0|^7.0",
  5239. "symfony/finder": "^5.4|^6.0|^7.0",
  5240. "symfony/http-client-contracts": "^2.5|^3",
  5241. "symfony/process": "^5.4|^6.0|^7.0",
  5242. "symfony/property-access": "^5.4.5|^6.0.5|^7.0",
  5243. "symfony/routing": "^5.4|^6.0|^7.0",
  5244. "symfony/serializer": "^6.4.4|^7.0.4",
  5245. "symfony/stopwatch": "^5.4|^6.0|^7.0",
  5246. "symfony/translation": "^5.4|^6.0|^7.0",
  5247. "symfony/translation-contracts": "^2.5|^3",
  5248. "symfony/uid": "^5.4|^6.0|^7.0",
  5249. "symfony/validator": "^6.4|^7.0",
  5250. "symfony/var-dumper": "^5.4|^6.4|^7.0",
  5251. "symfony/var-exporter": "^6.2|^7.0",
  5252. "twig/twig": "^2.13|^3.0.4"
  5253. },
  5254. "type": "library",
  5255. "autoload": {
  5256. "psr-4": {
  5257. "Symfony\\Component\\HttpKernel\\": ""
  5258. },
  5259. "exclude-from-classmap": [
  5260. "/Tests/"
  5261. ]
  5262. },
  5263. "notification-url": "https://packagist.org/downloads/",
  5264. "license": [
  5265. "MIT"
  5266. ],
  5267. "authors": [
  5268. {
  5269. "name": "Fabien Potencier",
  5270. "email": "fabien@symfony.com"
  5271. },
  5272. {
  5273. "name": "Symfony Community",
  5274. "homepage": "https://symfony.com/contributors"
  5275. }
  5276. ],
  5277. "description": "Provides a structured process for converting a Request into a Response",
  5278. "homepage": "https://symfony.com",
  5279. "support": {
  5280. "source": "https://github.com/symfony/http-kernel/tree/v6.4.20"
  5281. },
  5282. "funding": [
  5283. {
  5284. "url": "https://symfony.com/sponsor",
  5285. "type": "custom"
  5286. },
  5287. {
  5288. "url": "https://github.com/fabpot",
  5289. "type": "github"
  5290. },
  5291. {
  5292. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5293. "type": "tidelift"
  5294. }
  5295. ],
  5296. "time": "2025-03-28T13:27:10+00:00"
  5297. },
  5298. {
  5299. "name": "symfony/mailer",
  5300. "version": "v6.4.18",
  5301. "source": {
  5302. "type": "git",
  5303. "url": "https://github.com/symfony/mailer.git",
  5304. "reference": "e93a6ae2767d7f7578c2b7961d9d8e27580b2b11"
  5305. },
  5306. "dist": {
  5307. "type": "zip",
  5308. "url": "https://api.github.com/repos/symfony/mailer/zipball/e93a6ae2767d7f7578c2b7961d9d8e27580b2b11",
  5309. "reference": "e93a6ae2767d7f7578c2b7961d9d8e27580b2b11",
  5310. "shasum": ""
  5311. },
  5312. "require": {
  5313. "egulias/email-validator": "^2.1.10|^3|^4",
  5314. "php": ">=8.1",
  5315. "psr/event-dispatcher": "^1",
  5316. "psr/log": "^1|^2|^3",
  5317. "symfony/event-dispatcher": "^5.4|^6.0|^7.0",
  5318. "symfony/mime": "^6.2|^7.0",
  5319. "symfony/service-contracts": "^2.5|^3"
  5320. },
  5321. "conflict": {
  5322. "symfony/http-client-contracts": "<2.5",
  5323. "symfony/http-kernel": "<5.4",
  5324. "symfony/messenger": "<6.2",
  5325. "symfony/mime": "<6.2",
  5326. "symfony/twig-bridge": "<6.2.1"
  5327. },
  5328. "require-dev": {
  5329. "symfony/console": "^5.4|^6.0|^7.0",
  5330. "symfony/http-client": "^5.4|^6.0|^7.0",
  5331. "symfony/messenger": "^6.2|^7.0",
  5332. "symfony/twig-bridge": "^6.2|^7.0"
  5333. },
  5334. "type": "library",
  5335. "autoload": {
  5336. "psr-4": {
  5337. "Symfony\\Component\\Mailer\\": ""
  5338. },
  5339. "exclude-from-classmap": [
  5340. "/Tests/"
  5341. ]
  5342. },
  5343. "notification-url": "https://packagist.org/downloads/",
  5344. "license": [
  5345. "MIT"
  5346. ],
  5347. "authors": [
  5348. {
  5349. "name": "Fabien Potencier",
  5350. "email": "fabien@symfony.com"
  5351. },
  5352. {
  5353. "name": "Symfony Community",
  5354. "homepage": "https://symfony.com/contributors"
  5355. }
  5356. ],
  5357. "description": "Helps sending emails",
  5358. "homepage": "https://symfony.com",
  5359. "support": {
  5360. "source": "https://github.com/symfony/mailer/tree/v6.4.18"
  5361. },
  5362. "funding": [
  5363. {
  5364. "url": "https://symfony.com/sponsor",
  5365. "type": "custom"
  5366. },
  5367. {
  5368. "url": "https://github.com/fabpot",
  5369. "type": "github"
  5370. },
  5371. {
  5372. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5373. "type": "tidelift"
  5374. }
  5375. ],
  5376. "time": "2025-01-24T15:27:15+00:00"
  5377. },
  5378. {
  5379. "name": "symfony/mime",
  5380. "version": "v6.4.19",
  5381. "source": {
  5382. "type": "git",
  5383. "url": "https://github.com/symfony/mime.git",
  5384. "reference": "ac537b6c55ccc2c749f3c979edfa9ec14aaed4f3"
  5385. },
  5386. "dist": {
  5387. "type": "zip",
  5388. "url": "https://api.github.com/repos/symfony/mime/zipball/ac537b6c55ccc2c749f3c979edfa9ec14aaed4f3",
  5389. "reference": "ac537b6c55ccc2c749f3c979edfa9ec14aaed4f3",
  5390. "shasum": ""
  5391. },
  5392. "require": {
  5393. "php": ">=8.1",
  5394. "symfony/deprecation-contracts": "^2.5|^3",
  5395. "symfony/polyfill-intl-idn": "^1.10",
  5396. "symfony/polyfill-mbstring": "^1.0"
  5397. },
  5398. "conflict": {
  5399. "egulias/email-validator": "~3.0.0",
  5400. "phpdocumentor/reflection-docblock": "<3.2.2",
  5401. "phpdocumentor/type-resolver": "<1.4.0",
  5402. "symfony/mailer": "<5.4",
  5403. "symfony/serializer": "<6.4.3|>7.0,<7.0.3"
  5404. },
  5405. "require-dev": {
  5406. "egulias/email-validator": "^2.1.10|^3.1|^4",
  5407. "league/html-to-markdown": "^5.0",
  5408. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  5409. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  5410. "symfony/process": "^5.4|^6.4|^7.0",
  5411. "symfony/property-access": "^5.4|^6.0|^7.0",
  5412. "symfony/property-info": "^5.4|^6.0|^7.0",
  5413. "symfony/serializer": "^6.4.3|^7.0.3"
  5414. },
  5415. "type": "library",
  5416. "autoload": {
  5417. "psr-4": {
  5418. "Symfony\\Component\\Mime\\": ""
  5419. },
  5420. "exclude-from-classmap": [
  5421. "/Tests/"
  5422. ]
  5423. },
  5424. "notification-url": "https://packagist.org/downloads/",
  5425. "license": [
  5426. "MIT"
  5427. ],
  5428. "authors": [
  5429. {
  5430. "name": "Fabien Potencier",
  5431. "email": "fabien@symfony.com"
  5432. },
  5433. {
  5434. "name": "Symfony Community",
  5435. "homepage": "https://symfony.com/contributors"
  5436. }
  5437. ],
  5438. "description": "Allows manipulating MIME messages",
  5439. "homepage": "https://symfony.com",
  5440. "keywords": [
  5441. "mime",
  5442. "mime-type"
  5443. ],
  5444. "support": {
  5445. "source": "https://github.com/symfony/mime/tree/v6.4.19"
  5446. },
  5447. "funding": [
  5448. {
  5449. "url": "https://symfony.com/sponsor",
  5450. "type": "custom"
  5451. },
  5452. {
  5453. "url": "https://github.com/fabpot",
  5454. "type": "github"
  5455. },
  5456. {
  5457. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5458. "type": "tidelift"
  5459. }
  5460. ],
  5461. "time": "2025-02-17T21:23:52+00:00"
  5462. },
  5463. {
  5464. "name": "symfony/polyfill-ctype",
  5465. "version": "v1.31.0",
  5466. "source": {
  5467. "type": "git",
  5468. "url": "https://github.com/symfony/polyfill-ctype.git",
  5469. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  5470. },
  5471. "dist": {
  5472. "type": "zip",
  5473. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  5474. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  5475. "shasum": ""
  5476. },
  5477. "require": {
  5478. "php": ">=7.2"
  5479. },
  5480. "provide": {
  5481. "ext-ctype": "*"
  5482. },
  5483. "suggest": {
  5484. "ext-ctype": "For best performance"
  5485. },
  5486. "type": "library",
  5487. "extra": {
  5488. "thanks": {
  5489. "url": "https://github.com/symfony/polyfill",
  5490. "name": "symfony/polyfill"
  5491. }
  5492. },
  5493. "autoload": {
  5494. "files": [
  5495. "bootstrap.php"
  5496. ],
  5497. "psr-4": {
  5498. "Symfony\\Polyfill\\Ctype\\": ""
  5499. }
  5500. },
  5501. "notification-url": "https://packagist.org/downloads/",
  5502. "license": [
  5503. "MIT"
  5504. ],
  5505. "authors": [
  5506. {
  5507. "name": "Gert de Pagter",
  5508. "email": "BackEndTea@gmail.com"
  5509. },
  5510. {
  5511. "name": "Symfony Community",
  5512. "homepage": "https://symfony.com/contributors"
  5513. }
  5514. ],
  5515. "description": "Symfony polyfill for ctype functions",
  5516. "homepage": "https://symfony.com",
  5517. "keywords": [
  5518. "compatibility",
  5519. "ctype",
  5520. "polyfill",
  5521. "portable"
  5522. ],
  5523. "support": {
  5524. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.31.0"
  5525. },
  5526. "funding": [
  5527. {
  5528. "url": "https://symfony.com/sponsor",
  5529. "type": "custom"
  5530. },
  5531. {
  5532. "url": "https://github.com/fabpot",
  5533. "type": "github"
  5534. },
  5535. {
  5536. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5537. "type": "tidelift"
  5538. }
  5539. ],
  5540. "time": "2024-09-09T11:45:10+00:00"
  5541. },
  5542. {
  5543. "name": "symfony/polyfill-intl-grapheme",
  5544. "version": "v1.31.0",
  5545. "source": {
  5546. "type": "git",
  5547. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5548. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe"
  5549. },
  5550. "dist": {
  5551. "type": "zip",
  5552. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5553. "reference": "b9123926e3b7bc2f98c02ad54f6a4b02b91a8abe",
  5554. "shasum": ""
  5555. },
  5556. "require": {
  5557. "php": ">=7.2"
  5558. },
  5559. "suggest": {
  5560. "ext-intl": "For best performance"
  5561. },
  5562. "type": "library",
  5563. "extra": {
  5564. "thanks": {
  5565. "url": "https://github.com/symfony/polyfill",
  5566. "name": "symfony/polyfill"
  5567. }
  5568. },
  5569. "autoload": {
  5570. "files": [
  5571. "bootstrap.php"
  5572. ],
  5573. "psr-4": {
  5574. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5575. }
  5576. },
  5577. "notification-url": "https://packagist.org/downloads/",
  5578. "license": [
  5579. "MIT"
  5580. ],
  5581. "authors": [
  5582. {
  5583. "name": "Nicolas Grekas",
  5584. "email": "p@tchwork.com"
  5585. },
  5586. {
  5587. "name": "Symfony Community",
  5588. "homepage": "https://symfony.com/contributors"
  5589. }
  5590. ],
  5591. "description": "Symfony polyfill for intl's grapheme_* functions",
  5592. "homepage": "https://symfony.com",
  5593. "keywords": [
  5594. "compatibility",
  5595. "grapheme",
  5596. "intl",
  5597. "polyfill",
  5598. "portable",
  5599. "shim"
  5600. ],
  5601. "support": {
  5602. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.31.0"
  5603. },
  5604. "funding": [
  5605. {
  5606. "url": "https://symfony.com/sponsor",
  5607. "type": "custom"
  5608. },
  5609. {
  5610. "url": "https://github.com/fabpot",
  5611. "type": "github"
  5612. },
  5613. {
  5614. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5615. "type": "tidelift"
  5616. }
  5617. ],
  5618. "time": "2024-09-09T11:45:10+00:00"
  5619. },
  5620. {
  5621. "name": "symfony/polyfill-intl-idn",
  5622. "version": "v1.31.0",
  5623. "source": {
  5624. "type": "git",
  5625. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  5626. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773"
  5627. },
  5628. "dist": {
  5629. "type": "zip",
  5630. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/c36586dcf89a12315939e00ec9b4474adcb1d773",
  5631. "reference": "c36586dcf89a12315939e00ec9b4474adcb1d773",
  5632. "shasum": ""
  5633. },
  5634. "require": {
  5635. "php": ">=7.2",
  5636. "symfony/polyfill-intl-normalizer": "^1.10"
  5637. },
  5638. "suggest": {
  5639. "ext-intl": "For best performance"
  5640. },
  5641. "type": "library",
  5642. "extra": {
  5643. "thanks": {
  5644. "url": "https://github.com/symfony/polyfill",
  5645. "name": "symfony/polyfill"
  5646. }
  5647. },
  5648. "autoload": {
  5649. "files": [
  5650. "bootstrap.php"
  5651. ],
  5652. "psr-4": {
  5653. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  5654. }
  5655. },
  5656. "notification-url": "https://packagist.org/downloads/",
  5657. "license": [
  5658. "MIT"
  5659. ],
  5660. "authors": [
  5661. {
  5662. "name": "Laurent Bassin",
  5663. "email": "laurent@bassin.info"
  5664. },
  5665. {
  5666. "name": "Trevor Rowbotham",
  5667. "email": "trevor.rowbotham@pm.me"
  5668. },
  5669. {
  5670. "name": "Symfony Community",
  5671. "homepage": "https://symfony.com/contributors"
  5672. }
  5673. ],
  5674. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  5675. "homepage": "https://symfony.com",
  5676. "keywords": [
  5677. "compatibility",
  5678. "idn",
  5679. "intl",
  5680. "polyfill",
  5681. "portable",
  5682. "shim"
  5683. ],
  5684. "support": {
  5685. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.31.0"
  5686. },
  5687. "funding": [
  5688. {
  5689. "url": "https://symfony.com/sponsor",
  5690. "type": "custom"
  5691. },
  5692. {
  5693. "url": "https://github.com/fabpot",
  5694. "type": "github"
  5695. },
  5696. {
  5697. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5698. "type": "tidelift"
  5699. }
  5700. ],
  5701. "time": "2024-09-09T11:45:10+00:00"
  5702. },
  5703. {
  5704. "name": "symfony/polyfill-intl-normalizer",
  5705. "version": "v1.31.0",
  5706. "source": {
  5707. "type": "git",
  5708. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5709. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  5710. },
  5711. "dist": {
  5712. "type": "zip",
  5713. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  5714. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  5715. "shasum": ""
  5716. },
  5717. "require": {
  5718. "php": ">=7.2"
  5719. },
  5720. "suggest": {
  5721. "ext-intl": "For best performance"
  5722. },
  5723. "type": "library",
  5724. "extra": {
  5725. "thanks": {
  5726. "url": "https://github.com/symfony/polyfill",
  5727. "name": "symfony/polyfill"
  5728. }
  5729. },
  5730. "autoload": {
  5731. "files": [
  5732. "bootstrap.php"
  5733. ],
  5734. "psr-4": {
  5735. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5736. },
  5737. "classmap": [
  5738. "Resources/stubs"
  5739. ]
  5740. },
  5741. "notification-url": "https://packagist.org/downloads/",
  5742. "license": [
  5743. "MIT"
  5744. ],
  5745. "authors": [
  5746. {
  5747. "name": "Nicolas Grekas",
  5748. "email": "p@tchwork.com"
  5749. },
  5750. {
  5751. "name": "Symfony Community",
  5752. "homepage": "https://symfony.com/contributors"
  5753. }
  5754. ],
  5755. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5756. "homepage": "https://symfony.com",
  5757. "keywords": [
  5758. "compatibility",
  5759. "intl",
  5760. "normalizer",
  5761. "polyfill",
  5762. "portable",
  5763. "shim"
  5764. ],
  5765. "support": {
  5766. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.31.0"
  5767. },
  5768. "funding": [
  5769. {
  5770. "url": "https://symfony.com/sponsor",
  5771. "type": "custom"
  5772. },
  5773. {
  5774. "url": "https://github.com/fabpot",
  5775. "type": "github"
  5776. },
  5777. {
  5778. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5779. "type": "tidelift"
  5780. }
  5781. ],
  5782. "time": "2024-09-09T11:45:10+00:00"
  5783. },
  5784. {
  5785. "name": "symfony/polyfill-mbstring",
  5786. "version": "v1.31.0",
  5787. "source": {
  5788. "type": "git",
  5789. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5790. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341"
  5791. },
  5792. "dist": {
  5793. "type": "zip",
  5794. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5795. "reference": "85181ba99b2345b0ef10ce42ecac37612d9fd341",
  5796. "shasum": ""
  5797. },
  5798. "require": {
  5799. "php": ">=7.2"
  5800. },
  5801. "provide": {
  5802. "ext-mbstring": "*"
  5803. },
  5804. "suggest": {
  5805. "ext-mbstring": "For best performance"
  5806. },
  5807. "type": "library",
  5808. "extra": {
  5809. "thanks": {
  5810. "url": "https://github.com/symfony/polyfill",
  5811. "name": "symfony/polyfill"
  5812. }
  5813. },
  5814. "autoload": {
  5815. "files": [
  5816. "bootstrap.php"
  5817. ],
  5818. "psr-4": {
  5819. "Symfony\\Polyfill\\Mbstring\\": ""
  5820. }
  5821. },
  5822. "notification-url": "https://packagist.org/downloads/",
  5823. "license": [
  5824. "MIT"
  5825. ],
  5826. "authors": [
  5827. {
  5828. "name": "Nicolas Grekas",
  5829. "email": "p@tchwork.com"
  5830. },
  5831. {
  5832. "name": "Symfony Community",
  5833. "homepage": "https://symfony.com/contributors"
  5834. }
  5835. ],
  5836. "description": "Symfony polyfill for the Mbstring extension",
  5837. "homepage": "https://symfony.com",
  5838. "keywords": [
  5839. "compatibility",
  5840. "mbstring",
  5841. "polyfill",
  5842. "portable",
  5843. "shim"
  5844. ],
  5845. "support": {
  5846. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.31.0"
  5847. },
  5848. "funding": [
  5849. {
  5850. "url": "https://symfony.com/sponsor",
  5851. "type": "custom"
  5852. },
  5853. {
  5854. "url": "https://github.com/fabpot",
  5855. "type": "github"
  5856. },
  5857. {
  5858. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5859. "type": "tidelift"
  5860. }
  5861. ],
  5862. "time": "2024-09-09T11:45:10+00:00"
  5863. },
  5864. {
  5865. "name": "symfony/polyfill-php80",
  5866. "version": "v1.31.0",
  5867. "source": {
  5868. "type": "git",
  5869. "url": "https://github.com/symfony/polyfill-php80.git",
  5870. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8"
  5871. },
  5872. "dist": {
  5873. "type": "zip",
  5874. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  5875. "reference": "60328e362d4c2c802a54fcbf04f9d3fb892b4cf8",
  5876. "shasum": ""
  5877. },
  5878. "require": {
  5879. "php": ">=7.2"
  5880. },
  5881. "type": "library",
  5882. "extra": {
  5883. "thanks": {
  5884. "url": "https://github.com/symfony/polyfill",
  5885. "name": "symfony/polyfill"
  5886. }
  5887. },
  5888. "autoload": {
  5889. "files": [
  5890. "bootstrap.php"
  5891. ],
  5892. "psr-4": {
  5893. "Symfony\\Polyfill\\Php80\\": ""
  5894. },
  5895. "classmap": [
  5896. "Resources/stubs"
  5897. ]
  5898. },
  5899. "notification-url": "https://packagist.org/downloads/",
  5900. "license": [
  5901. "MIT"
  5902. ],
  5903. "authors": [
  5904. {
  5905. "name": "Ion Bazan",
  5906. "email": "ion.bazan@gmail.com"
  5907. },
  5908. {
  5909. "name": "Nicolas Grekas",
  5910. "email": "p@tchwork.com"
  5911. },
  5912. {
  5913. "name": "Symfony Community",
  5914. "homepage": "https://symfony.com/contributors"
  5915. }
  5916. ],
  5917. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5918. "homepage": "https://symfony.com",
  5919. "keywords": [
  5920. "compatibility",
  5921. "polyfill",
  5922. "portable",
  5923. "shim"
  5924. ],
  5925. "support": {
  5926. "source": "https://github.com/symfony/polyfill-php80/tree/v1.31.0"
  5927. },
  5928. "funding": [
  5929. {
  5930. "url": "https://symfony.com/sponsor",
  5931. "type": "custom"
  5932. },
  5933. {
  5934. "url": "https://github.com/fabpot",
  5935. "type": "github"
  5936. },
  5937. {
  5938. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5939. "type": "tidelift"
  5940. }
  5941. ],
  5942. "time": "2024-09-09T11:45:10+00:00"
  5943. },
  5944. {
  5945. "name": "symfony/polyfill-php83",
  5946. "version": "v1.31.0",
  5947. "source": {
  5948. "type": "git",
  5949. "url": "https://github.com/symfony/polyfill-php83.git",
  5950. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491"
  5951. },
  5952. "dist": {
  5953. "type": "zip",
  5954. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/2fb86d65e2d424369ad2905e83b236a8805ba491",
  5955. "reference": "2fb86d65e2d424369ad2905e83b236a8805ba491",
  5956. "shasum": ""
  5957. },
  5958. "require": {
  5959. "php": ">=7.2"
  5960. },
  5961. "type": "library",
  5962. "extra": {
  5963. "thanks": {
  5964. "url": "https://github.com/symfony/polyfill",
  5965. "name": "symfony/polyfill"
  5966. }
  5967. },
  5968. "autoload": {
  5969. "files": [
  5970. "bootstrap.php"
  5971. ],
  5972. "psr-4": {
  5973. "Symfony\\Polyfill\\Php83\\": ""
  5974. },
  5975. "classmap": [
  5976. "Resources/stubs"
  5977. ]
  5978. },
  5979. "notification-url": "https://packagist.org/downloads/",
  5980. "license": [
  5981. "MIT"
  5982. ],
  5983. "authors": [
  5984. {
  5985. "name": "Nicolas Grekas",
  5986. "email": "p@tchwork.com"
  5987. },
  5988. {
  5989. "name": "Symfony Community",
  5990. "homepage": "https://symfony.com/contributors"
  5991. }
  5992. ],
  5993. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  5994. "homepage": "https://symfony.com",
  5995. "keywords": [
  5996. "compatibility",
  5997. "polyfill",
  5998. "portable",
  5999. "shim"
  6000. ],
  6001. "support": {
  6002. "source": "https://github.com/symfony/polyfill-php83/tree/v1.31.0"
  6003. },
  6004. "funding": [
  6005. {
  6006. "url": "https://symfony.com/sponsor",
  6007. "type": "custom"
  6008. },
  6009. {
  6010. "url": "https://github.com/fabpot",
  6011. "type": "github"
  6012. },
  6013. {
  6014. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6015. "type": "tidelift"
  6016. }
  6017. ],
  6018. "time": "2024-09-09T11:45:10+00:00"
  6019. },
  6020. {
  6021. "name": "symfony/polyfill-uuid",
  6022. "version": "v1.31.0",
  6023. "source": {
  6024. "type": "git",
  6025. "url": "https://github.com/symfony/polyfill-uuid.git",
  6026. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2"
  6027. },
  6028. "dist": {
  6029. "type": "zip",
  6030. "url": "https://api.github.com/repos/symfony/polyfill-uuid/zipball/21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6031. "reference": "21533be36c24be3f4b1669c4725c7d1d2bab4ae2",
  6032. "shasum": ""
  6033. },
  6034. "require": {
  6035. "php": ">=7.2"
  6036. },
  6037. "provide": {
  6038. "ext-uuid": "*"
  6039. },
  6040. "suggest": {
  6041. "ext-uuid": "For best performance"
  6042. },
  6043. "type": "library",
  6044. "extra": {
  6045. "thanks": {
  6046. "url": "https://github.com/symfony/polyfill",
  6047. "name": "symfony/polyfill"
  6048. }
  6049. },
  6050. "autoload": {
  6051. "files": [
  6052. "bootstrap.php"
  6053. ],
  6054. "psr-4": {
  6055. "Symfony\\Polyfill\\Uuid\\": ""
  6056. }
  6057. },
  6058. "notification-url": "https://packagist.org/downloads/",
  6059. "license": [
  6060. "MIT"
  6061. ],
  6062. "authors": [
  6063. {
  6064. "name": "Grégoire Pineau",
  6065. "email": "lyrixx@lyrixx.info"
  6066. },
  6067. {
  6068. "name": "Symfony Community",
  6069. "homepage": "https://symfony.com/contributors"
  6070. }
  6071. ],
  6072. "description": "Symfony polyfill for uuid functions",
  6073. "homepage": "https://symfony.com",
  6074. "keywords": [
  6075. "compatibility",
  6076. "polyfill",
  6077. "portable",
  6078. "uuid"
  6079. ],
  6080. "support": {
  6081. "source": "https://github.com/symfony/polyfill-uuid/tree/v1.31.0"
  6082. },
  6083. "funding": [
  6084. {
  6085. "url": "https://symfony.com/sponsor",
  6086. "type": "custom"
  6087. },
  6088. {
  6089. "url": "https://github.com/fabpot",
  6090. "type": "github"
  6091. },
  6092. {
  6093. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6094. "type": "tidelift"
  6095. }
  6096. ],
  6097. "time": "2024-09-09T11:45:10+00:00"
  6098. },
  6099. {
  6100. "name": "symfony/process",
  6101. "version": "v6.4.20",
  6102. "source": {
  6103. "type": "git",
  6104. "url": "https://github.com/symfony/process.git",
  6105. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20"
  6106. },
  6107. "dist": {
  6108. "type": "zip",
  6109. "url": "https://api.github.com/repos/symfony/process/zipball/e2a61c16af36c9a07e5c9906498b73e091949a20",
  6110. "reference": "e2a61c16af36c9a07e5c9906498b73e091949a20",
  6111. "shasum": ""
  6112. },
  6113. "require": {
  6114. "php": ">=8.1"
  6115. },
  6116. "type": "library",
  6117. "autoload": {
  6118. "psr-4": {
  6119. "Symfony\\Component\\Process\\": ""
  6120. },
  6121. "exclude-from-classmap": [
  6122. "/Tests/"
  6123. ]
  6124. },
  6125. "notification-url": "https://packagist.org/downloads/",
  6126. "license": [
  6127. "MIT"
  6128. ],
  6129. "authors": [
  6130. {
  6131. "name": "Fabien Potencier",
  6132. "email": "fabien@symfony.com"
  6133. },
  6134. {
  6135. "name": "Symfony Community",
  6136. "homepage": "https://symfony.com/contributors"
  6137. }
  6138. ],
  6139. "description": "Executes commands in sub-processes",
  6140. "homepage": "https://symfony.com",
  6141. "support": {
  6142. "source": "https://github.com/symfony/process/tree/v6.4.20"
  6143. },
  6144. "funding": [
  6145. {
  6146. "url": "https://symfony.com/sponsor",
  6147. "type": "custom"
  6148. },
  6149. {
  6150. "url": "https://github.com/fabpot",
  6151. "type": "github"
  6152. },
  6153. {
  6154. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6155. "type": "tidelift"
  6156. }
  6157. ],
  6158. "time": "2025-03-10T17:11:00+00:00"
  6159. },
  6160. {
  6161. "name": "symfony/routing",
  6162. "version": "v6.4.18",
  6163. "source": {
  6164. "type": "git",
  6165. "url": "https://github.com/symfony/routing.git",
  6166. "reference": "e9bfc94953019089acdfb9be51c1b9142c4afa68"
  6167. },
  6168. "dist": {
  6169. "type": "zip",
  6170. "url": "https://api.github.com/repos/symfony/routing/zipball/e9bfc94953019089acdfb9be51c1b9142c4afa68",
  6171. "reference": "e9bfc94953019089acdfb9be51c1b9142c4afa68",
  6172. "shasum": ""
  6173. },
  6174. "require": {
  6175. "php": ">=8.1",
  6176. "symfony/deprecation-contracts": "^2.5|^3"
  6177. },
  6178. "conflict": {
  6179. "doctrine/annotations": "<1.12",
  6180. "symfony/config": "<6.2",
  6181. "symfony/dependency-injection": "<5.4",
  6182. "symfony/yaml": "<5.4"
  6183. },
  6184. "require-dev": {
  6185. "doctrine/annotations": "^1.12|^2",
  6186. "psr/log": "^1|^2|^3",
  6187. "symfony/config": "^6.2|^7.0",
  6188. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6189. "symfony/expression-language": "^5.4|^6.0|^7.0",
  6190. "symfony/http-foundation": "^5.4|^6.0|^7.0",
  6191. "symfony/yaml": "^5.4|^6.0|^7.0"
  6192. },
  6193. "type": "library",
  6194. "autoload": {
  6195. "psr-4": {
  6196. "Symfony\\Component\\Routing\\": ""
  6197. },
  6198. "exclude-from-classmap": [
  6199. "/Tests/"
  6200. ]
  6201. },
  6202. "notification-url": "https://packagist.org/downloads/",
  6203. "license": [
  6204. "MIT"
  6205. ],
  6206. "authors": [
  6207. {
  6208. "name": "Fabien Potencier",
  6209. "email": "fabien@symfony.com"
  6210. },
  6211. {
  6212. "name": "Symfony Community",
  6213. "homepage": "https://symfony.com/contributors"
  6214. }
  6215. ],
  6216. "description": "Maps an HTTP request to a set of configuration variables",
  6217. "homepage": "https://symfony.com",
  6218. "keywords": [
  6219. "router",
  6220. "routing",
  6221. "uri",
  6222. "url"
  6223. ],
  6224. "support": {
  6225. "source": "https://github.com/symfony/routing/tree/v6.4.18"
  6226. },
  6227. "funding": [
  6228. {
  6229. "url": "https://symfony.com/sponsor",
  6230. "type": "custom"
  6231. },
  6232. {
  6233. "url": "https://github.com/fabpot",
  6234. "type": "github"
  6235. },
  6236. {
  6237. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6238. "type": "tidelift"
  6239. }
  6240. ],
  6241. "time": "2025-01-09T08:51:02+00:00"
  6242. },
  6243. {
  6244. "name": "symfony/service-contracts",
  6245. "version": "v3.5.1",
  6246. "source": {
  6247. "type": "git",
  6248. "url": "https://github.com/symfony/service-contracts.git",
  6249. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0"
  6250. },
  6251. "dist": {
  6252. "type": "zip",
  6253. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6254. "reference": "e53260aabf78fb3d63f8d79d69ece59f80d5eda0",
  6255. "shasum": ""
  6256. },
  6257. "require": {
  6258. "php": ">=8.1",
  6259. "psr/container": "^1.1|^2.0",
  6260. "symfony/deprecation-contracts": "^2.5|^3"
  6261. },
  6262. "conflict": {
  6263. "ext-psr": "<1.1|>=2"
  6264. },
  6265. "type": "library",
  6266. "extra": {
  6267. "thanks": {
  6268. "url": "https://github.com/symfony/contracts",
  6269. "name": "symfony/contracts"
  6270. },
  6271. "branch-alias": {
  6272. "dev-main": "3.5-dev"
  6273. }
  6274. },
  6275. "autoload": {
  6276. "psr-4": {
  6277. "Symfony\\Contracts\\Service\\": ""
  6278. },
  6279. "exclude-from-classmap": [
  6280. "/Test/"
  6281. ]
  6282. },
  6283. "notification-url": "https://packagist.org/downloads/",
  6284. "license": [
  6285. "MIT"
  6286. ],
  6287. "authors": [
  6288. {
  6289. "name": "Nicolas Grekas",
  6290. "email": "p@tchwork.com"
  6291. },
  6292. {
  6293. "name": "Symfony Community",
  6294. "homepage": "https://symfony.com/contributors"
  6295. }
  6296. ],
  6297. "description": "Generic abstractions related to writing services",
  6298. "homepage": "https://symfony.com",
  6299. "keywords": [
  6300. "abstractions",
  6301. "contracts",
  6302. "decoupling",
  6303. "interfaces",
  6304. "interoperability",
  6305. "standards"
  6306. ],
  6307. "support": {
  6308. "source": "https://github.com/symfony/service-contracts/tree/v3.5.1"
  6309. },
  6310. "funding": [
  6311. {
  6312. "url": "https://symfony.com/sponsor",
  6313. "type": "custom"
  6314. },
  6315. {
  6316. "url": "https://github.com/fabpot",
  6317. "type": "github"
  6318. },
  6319. {
  6320. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6321. "type": "tidelift"
  6322. }
  6323. ],
  6324. "time": "2024-09-25T14:20:29+00:00"
  6325. },
  6326. {
  6327. "name": "symfony/string",
  6328. "version": "v7.2.0",
  6329. "source": {
  6330. "type": "git",
  6331. "url": "https://github.com/symfony/string.git",
  6332. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82"
  6333. },
  6334. "dist": {
  6335. "type": "zip",
  6336. "url": "https://api.github.com/repos/symfony/string/zipball/446e0d146f991dde3e73f45f2c97a9faad773c82",
  6337. "reference": "446e0d146f991dde3e73f45f2c97a9faad773c82",
  6338. "shasum": ""
  6339. },
  6340. "require": {
  6341. "php": ">=8.2",
  6342. "symfony/polyfill-ctype": "~1.8",
  6343. "symfony/polyfill-intl-grapheme": "~1.0",
  6344. "symfony/polyfill-intl-normalizer": "~1.0",
  6345. "symfony/polyfill-mbstring": "~1.0"
  6346. },
  6347. "conflict": {
  6348. "symfony/translation-contracts": "<2.5"
  6349. },
  6350. "require-dev": {
  6351. "symfony/emoji": "^7.1",
  6352. "symfony/error-handler": "^6.4|^7.0",
  6353. "symfony/http-client": "^6.4|^7.0",
  6354. "symfony/intl": "^6.4|^7.0",
  6355. "symfony/translation-contracts": "^2.5|^3.0",
  6356. "symfony/var-exporter": "^6.4|^7.0"
  6357. },
  6358. "type": "library",
  6359. "autoload": {
  6360. "files": [
  6361. "Resources/functions.php"
  6362. ],
  6363. "psr-4": {
  6364. "Symfony\\Component\\String\\": ""
  6365. },
  6366. "exclude-from-classmap": [
  6367. "/Tests/"
  6368. ]
  6369. },
  6370. "notification-url": "https://packagist.org/downloads/",
  6371. "license": [
  6372. "MIT"
  6373. ],
  6374. "authors": [
  6375. {
  6376. "name": "Nicolas Grekas",
  6377. "email": "p@tchwork.com"
  6378. },
  6379. {
  6380. "name": "Symfony Community",
  6381. "homepage": "https://symfony.com/contributors"
  6382. }
  6383. ],
  6384. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6385. "homepage": "https://symfony.com",
  6386. "keywords": [
  6387. "grapheme",
  6388. "i18n",
  6389. "string",
  6390. "unicode",
  6391. "utf-8",
  6392. "utf8"
  6393. ],
  6394. "support": {
  6395. "source": "https://github.com/symfony/string/tree/v7.2.0"
  6396. },
  6397. "funding": [
  6398. {
  6399. "url": "https://symfony.com/sponsor",
  6400. "type": "custom"
  6401. },
  6402. {
  6403. "url": "https://github.com/fabpot",
  6404. "type": "github"
  6405. },
  6406. {
  6407. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6408. "type": "tidelift"
  6409. }
  6410. ],
  6411. "time": "2024-11-13T13:31:26+00:00"
  6412. },
  6413. {
  6414. "name": "symfony/translation",
  6415. "version": "v6.4.19",
  6416. "source": {
  6417. "type": "git",
  6418. "url": "https://github.com/symfony/translation.git",
  6419. "reference": "3b9bf9f33997c064885a7bfc126c14b9daa0e00e"
  6420. },
  6421. "dist": {
  6422. "type": "zip",
  6423. "url": "https://api.github.com/repos/symfony/translation/zipball/3b9bf9f33997c064885a7bfc126c14b9daa0e00e",
  6424. "reference": "3b9bf9f33997c064885a7bfc126c14b9daa0e00e",
  6425. "shasum": ""
  6426. },
  6427. "require": {
  6428. "php": ">=8.1",
  6429. "symfony/deprecation-contracts": "^2.5|^3",
  6430. "symfony/polyfill-mbstring": "~1.0",
  6431. "symfony/translation-contracts": "^2.5|^3.0"
  6432. },
  6433. "conflict": {
  6434. "symfony/config": "<5.4",
  6435. "symfony/console": "<5.4",
  6436. "symfony/dependency-injection": "<5.4",
  6437. "symfony/http-client-contracts": "<2.5",
  6438. "symfony/http-kernel": "<5.4",
  6439. "symfony/service-contracts": "<2.5",
  6440. "symfony/twig-bundle": "<5.4",
  6441. "symfony/yaml": "<5.4"
  6442. },
  6443. "provide": {
  6444. "symfony/translation-implementation": "2.3|3.0"
  6445. },
  6446. "require-dev": {
  6447. "nikic/php-parser": "^4.18|^5.0",
  6448. "psr/log": "^1|^2|^3",
  6449. "symfony/config": "^5.4|^6.0|^7.0",
  6450. "symfony/console": "^5.4|^6.0|^7.0",
  6451. "symfony/dependency-injection": "^5.4|^6.0|^7.0",
  6452. "symfony/finder": "^5.4|^6.0|^7.0",
  6453. "symfony/http-client-contracts": "^2.5|^3.0",
  6454. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6455. "symfony/intl": "^5.4|^6.0|^7.0",
  6456. "symfony/polyfill-intl-icu": "^1.21",
  6457. "symfony/routing": "^5.4|^6.0|^7.0",
  6458. "symfony/service-contracts": "^2.5|^3",
  6459. "symfony/yaml": "^5.4|^6.0|^7.0"
  6460. },
  6461. "type": "library",
  6462. "autoload": {
  6463. "files": [
  6464. "Resources/functions.php"
  6465. ],
  6466. "psr-4": {
  6467. "Symfony\\Component\\Translation\\": ""
  6468. },
  6469. "exclude-from-classmap": [
  6470. "/Tests/"
  6471. ]
  6472. },
  6473. "notification-url": "https://packagist.org/downloads/",
  6474. "license": [
  6475. "MIT"
  6476. ],
  6477. "authors": [
  6478. {
  6479. "name": "Fabien Potencier",
  6480. "email": "fabien@symfony.com"
  6481. },
  6482. {
  6483. "name": "Symfony Community",
  6484. "homepage": "https://symfony.com/contributors"
  6485. }
  6486. ],
  6487. "description": "Provides tools to internationalize your application",
  6488. "homepage": "https://symfony.com",
  6489. "support": {
  6490. "source": "https://github.com/symfony/translation/tree/v6.4.19"
  6491. },
  6492. "funding": [
  6493. {
  6494. "url": "https://symfony.com/sponsor",
  6495. "type": "custom"
  6496. },
  6497. {
  6498. "url": "https://github.com/fabpot",
  6499. "type": "github"
  6500. },
  6501. {
  6502. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6503. "type": "tidelift"
  6504. }
  6505. ],
  6506. "time": "2025-02-13T10:18:43+00:00"
  6507. },
  6508. {
  6509. "name": "symfony/translation-contracts",
  6510. "version": "v3.5.1",
  6511. "source": {
  6512. "type": "git",
  6513. "url": "https://github.com/symfony/translation-contracts.git",
  6514. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c"
  6515. },
  6516. "dist": {
  6517. "type": "zip",
  6518. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/4667ff3bd513750603a09c8dedbea942487fb07c",
  6519. "reference": "4667ff3bd513750603a09c8dedbea942487fb07c",
  6520. "shasum": ""
  6521. },
  6522. "require": {
  6523. "php": ">=8.1"
  6524. },
  6525. "type": "library",
  6526. "extra": {
  6527. "thanks": {
  6528. "url": "https://github.com/symfony/contracts",
  6529. "name": "symfony/contracts"
  6530. },
  6531. "branch-alias": {
  6532. "dev-main": "3.5-dev"
  6533. }
  6534. },
  6535. "autoload": {
  6536. "psr-4": {
  6537. "Symfony\\Contracts\\Translation\\": ""
  6538. },
  6539. "exclude-from-classmap": [
  6540. "/Test/"
  6541. ]
  6542. },
  6543. "notification-url": "https://packagist.org/downloads/",
  6544. "license": [
  6545. "MIT"
  6546. ],
  6547. "authors": [
  6548. {
  6549. "name": "Nicolas Grekas",
  6550. "email": "p@tchwork.com"
  6551. },
  6552. {
  6553. "name": "Symfony Community",
  6554. "homepage": "https://symfony.com/contributors"
  6555. }
  6556. ],
  6557. "description": "Generic abstractions related to translation",
  6558. "homepage": "https://symfony.com",
  6559. "keywords": [
  6560. "abstractions",
  6561. "contracts",
  6562. "decoupling",
  6563. "interfaces",
  6564. "interoperability",
  6565. "standards"
  6566. ],
  6567. "support": {
  6568. "source": "https://github.com/symfony/translation-contracts/tree/v3.5.1"
  6569. },
  6570. "funding": [
  6571. {
  6572. "url": "https://symfony.com/sponsor",
  6573. "type": "custom"
  6574. },
  6575. {
  6576. "url": "https://github.com/fabpot",
  6577. "type": "github"
  6578. },
  6579. {
  6580. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6581. "type": "tidelift"
  6582. }
  6583. ],
  6584. "time": "2024-09-25T14:20:29+00:00"
  6585. },
  6586. {
  6587. "name": "symfony/uid",
  6588. "version": "v6.4.13",
  6589. "source": {
  6590. "type": "git",
  6591. "url": "https://github.com/symfony/uid.git",
  6592. "reference": "18eb207f0436a993fffbdd811b5b8fa35fa5e007"
  6593. },
  6594. "dist": {
  6595. "type": "zip",
  6596. "url": "https://api.github.com/repos/symfony/uid/zipball/18eb207f0436a993fffbdd811b5b8fa35fa5e007",
  6597. "reference": "18eb207f0436a993fffbdd811b5b8fa35fa5e007",
  6598. "shasum": ""
  6599. },
  6600. "require": {
  6601. "php": ">=8.1",
  6602. "symfony/polyfill-uuid": "^1.15"
  6603. },
  6604. "require-dev": {
  6605. "symfony/console": "^5.4|^6.0|^7.0"
  6606. },
  6607. "type": "library",
  6608. "autoload": {
  6609. "psr-4": {
  6610. "Symfony\\Component\\Uid\\": ""
  6611. },
  6612. "exclude-from-classmap": [
  6613. "/Tests/"
  6614. ]
  6615. },
  6616. "notification-url": "https://packagist.org/downloads/",
  6617. "license": [
  6618. "MIT"
  6619. ],
  6620. "authors": [
  6621. {
  6622. "name": "Grégoire Pineau",
  6623. "email": "lyrixx@lyrixx.info"
  6624. },
  6625. {
  6626. "name": "Nicolas Grekas",
  6627. "email": "p@tchwork.com"
  6628. },
  6629. {
  6630. "name": "Symfony Community",
  6631. "homepage": "https://symfony.com/contributors"
  6632. }
  6633. ],
  6634. "description": "Provides an object-oriented API to generate and represent UIDs",
  6635. "homepage": "https://symfony.com",
  6636. "keywords": [
  6637. "UID",
  6638. "ulid",
  6639. "uuid"
  6640. ],
  6641. "support": {
  6642. "source": "https://github.com/symfony/uid/tree/v6.4.13"
  6643. },
  6644. "funding": [
  6645. {
  6646. "url": "https://symfony.com/sponsor",
  6647. "type": "custom"
  6648. },
  6649. {
  6650. "url": "https://github.com/fabpot",
  6651. "type": "github"
  6652. },
  6653. {
  6654. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6655. "type": "tidelift"
  6656. }
  6657. ],
  6658. "time": "2024-09-25T14:18:03+00:00"
  6659. },
  6660. {
  6661. "name": "symfony/var-dumper",
  6662. "version": "v6.4.18",
  6663. "source": {
  6664. "type": "git",
  6665. "url": "https://github.com/symfony/var-dumper.git",
  6666. "reference": "4ad10cf8b020e77ba665305bb7804389884b4837"
  6667. },
  6668. "dist": {
  6669. "type": "zip",
  6670. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/4ad10cf8b020e77ba665305bb7804389884b4837",
  6671. "reference": "4ad10cf8b020e77ba665305bb7804389884b4837",
  6672. "shasum": ""
  6673. },
  6674. "require": {
  6675. "php": ">=8.1",
  6676. "symfony/deprecation-contracts": "^2.5|^3",
  6677. "symfony/polyfill-mbstring": "~1.0"
  6678. },
  6679. "conflict": {
  6680. "symfony/console": "<5.4"
  6681. },
  6682. "require-dev": {
  6683. "ext-iconv": "*",
  6684. "symfony/console": "^5.4|^6.0|^7.0",
  6685. "symfony/error-handler": "^6.3|^7.0",
  6686. "symfony/http-kernel": "^5.4|^6.0|^7.0",
  6687. "symfony/process": "^5.4|^6.0|^7.0",
  6688. "symfony/uid": "^5.4|^6.0|^7.0",
  6689. "twig/twig": "^2.13|^3.0.4"
  6690. },
  6691. "bin": [
  6692. "Resources/bin/var-dump-server"
  6693. ],
  6694. "type": "library",
  6695. "autoload": {
  6696. "files": [
  6697. "Resources/functions/dump.php"
  6698. ],
  6699. "psr-4": {
  6700. "Symfony\\Component\\VarDumper\\": ""
  6701. },
  6702. "exclude-from-classmap": [
  6703. "/Tests/"
  6704. ]
  6705. },
  6706. "notification-url": "https://packagist.org/downloads/",
  6707. "license": [
  6708. "MIT"
  6709. ],
  6710. "authors": [
  6711. {
  6712. "name": "Nicolas Grekas",
  6713. "email": "p@tchwork.com"
  6714. },
  6715. {
  6716. "name": "Symfony Community",
  6717. "homepage": "https://symfony.com/contributors"
  6718. }
  6719. ],
  6720. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  6721. "homepage": "https://symfony.com",
  6722. "keywords": [
  6723. "debug",
  6724. "dump"
  6725. ],
  6726. "support": {
  6727. "source": "https://github.com/symfony/var-dumper/tree/v6.4.18"
  6728. },
  6729. "funding": [
  6730. {
  6731. "url": "https://symfony.com/sponsor",
  6732. "type": "custom"
  6733. },
  6734. {
  6735. "url": "https://github.com/fabpot",
  6736. "type": "github"
  6737. },
  6738. {
  6739. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6740. "type": "tidelift"
  6741. }
  6742. ],
  6743. "time": "2025-01-17T11:26:11+00:00"
  6744. },
  6745. {
  6746. "name": "tijsverkoyen/css-to-inline-styles",
  6747. "version": "v2.3.0",
  6748. "source": {
  6749. "type": "git",
  6750. "url": "https://github.com/tijsverkoyen/CssToInlineStyles.git",
  6751. "reference": "0d72ac1c00084279c1816675284073c5a337c20d"
  6752. },
  6753. "dist": {
  6754. "type": "zip",
  6755. "url": "https://api.github.com/repos/tijsverkoyen/CssToInlineStyles/zipball/0d72ac1c00084279c1816675284073c5a337c20d",
  6756. "reference": "0d72ac1c00084279c1816675284073c5a337c20d",
  6757. "shasum": ""
  6758. },
  6759. "require": {
  6760. "ext-dom": "*",
  6761. "ext-libxml": "*",
  6762. "php": "^7.4 || ^8.0",
  6763. "symfony/css-selector": "^5.4 || ^6.0 || ^7.0"
  6764. },
  6765. "require-dev": {
  6766. "phpstan/phpstan": "^2.0",
  6767. "phpstan/phpstan-phpunit": "^2.0",
  6768. "phpunit/phpunit": "^8.5.21 || ^9.5.10"
  6769. },
  6770. "type": "library",
  6771. "extra": {
  6772. "branch-alias": {
  6773. "dev-master": "2.x-dev"
  6774. }
  6775. },
  6776. "autoload": {
  6777. "psr-4": {
  6778. "TijsVerkoyen\\CssToInlineStyles\\": "src"
  6779. }
  6780. },
  6781. "notification-url": "https://packagist.org/downloads/",
  6782. "license": [
  6783. "BSD-3-Clause"
  6784. ],
  6785. "authors": [
  6786. {
  6787. "name": "Tijs Verkoyen",
  6788. "email": "css_to_inline_styles@verkoyen.eu",
  6789. "role": "Developer"
  6790. }
  6791. ],
  6792. "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.",
  6793. "homepage": "https://github.com/tijsverkoyen/CssToInlineStyles",
  6794. "support": {
  6795. "issues": "https://github.com/tijsverkoyen/CssToInlineStyles/issues",
  6796. "source": "https://github.com/tijsverkoyen/CssToInlineStyles/tree/v2.3.0"
  6797. },
  6798. "time": "2024-12-21T16:25:41+00:00"
  6799. },
  6800. {
  6801. "name": "vlucas/phpdotenv",
  6802. "version": "v5.6.1",
  6803. "source": {
  6804. "type": "git",
  6805. "url": "https://github.com/vlucas/phpdotenv.git",
  6806. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2"
  6807. },
  6808. "dist": {
  6809. "type": "zip",
  6810. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  6811. "reference": "a59a13791077fe3d44f90e7133eb68e7d22eaff2",
  6812. "shasum": ""
  6813. },
  6814. "require": {
  6815. "ext-pcre": "*",
  6816. "graham-campbell/result-type": "^1.1.3",
  6817. "php": "^7.2.5 || ^8.0",
  6818. "phpoption/phpoption": "^1.9.3",
  6819. "symfony/polyfill-ctype": "^1.24",
  6820. "symfony/polyfill-mbstring": "^1.24",
  6821. "symfony/polyfill-php80": "^1.24"
  6822. },
  6823. "require-dev": {
  6824. "bamarni/composer-bin-plugin": "^1.8.2",
  6825. "ext-filter": "*",
  6826. "phpunit/phpunit": "^8.5.34 || ^9.6.13 || ^10.4.2"
  6827. },
  6828. "suggest": {
  6829. "ext-filter": "Required to use the boolean validator."
  6830. },
  6831. "type": "library",
  6832. "extra": {
  6833. "bamarni-bin": {
  6834. "bin-links": true,
  6835. "forward-command": false
  6836. },
  6837. "branch-alias": {
  6838. "dev-master": "5.6-dev"
  6839. }
  6840. },
  6841. "autoload": {
  6842. "psr-4": {
  6843. "Dotenv\\": "src/"
  6844. }
  6845. },
  6846. "notification-url": "https://packagist.org/downloads/",
  6847. "license": [
  6848. "BSD-3-Clause"
  6849. ],
  6850. "authors": [
  6851. {
  6852. "name": "Graham Campbell",
  6853. "email": "hello@gjcampbell.co.uk",
  6854. "homepage": "https://github.com/GrahamCampbell"
  6855. },
  6856. {
  6857. "name": "Vance Lucas",
  6858. "email": "vance@vancelucas.com",
  6859. "homepage": "https://github.com/vlucas"
  6860. }
  6861. ],
  6862. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  6863. "keywords": [
  6864. "dotenv",
  6865. "env",
  6866. "environment"
  6867. ],
  6868. "support": {
  6869. "issues": "https://github.com/vlucas/phpdotenv/issues",
  6870. "source": "https://github.com/vlucas/phpdotenv/tree/v5.6.1"
  6871. },
  6872. "funding": [
  6873. {
  6874. "url": "https://github.com/GrahamCampbell",
  6875. "type": "github"
  6876. },
  6877. {
  6878. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  6879. "type": "tidelift"
  6880. }
  6881. ],
  6882. "time": "2024-07-20T21:52:34+00:00"
  6883. },
  6884. {
  6885. "name": "voku/portable-ascii",
  6886. "version": "2.0.3",
  6887. "source": {
  6888. "type": "git",
  6889. "url": "https://github.com/voku/portable-ascii.git",
  6890. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d"
  6891. },
  6892. "dist": {
  6893. "type": "zip",
  6894. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  6895. "reference": "b1d923f88091c6bf09699efcd7c8a1b1bfd7351d",
  6896. "shasum": ""
  6897. },
  6898. "require": {
  6899. "php": ">=7.0.0"
  6900. },
  6901. "require-dev": {
  6902. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6903. },
  6904. "suggest": {
  6905. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6906. },
  6907. "type": "library",
  6908. "autoload": {
  6909. "psr-4": {
  6910. "voku\\": "src/voku/"
  6911. }
  6912. },
  6913. "notification-url": "https://packagist.org/downloads/",
  6914. "license": [
  6915. "MIT"
  6916. ],
  6917. "authors": [
  6918. {
  6919. "name": "Lars Moelleken",
  6920. "homepage": "https://www.moelleken.org/"
  6921. }
  6922. ],
  6923. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6924. "homepage": "https://github.com/voku/portable-ascii",
  6925. "keywords": [
  6926. "ascii",
  6927. "clean",
  6928. "php"
  6929. ],
  6930. "support": {
  6931. "issues": "https://github.com/voku/portable-ascii/issues",
  6932. "source": "https://github.com/voku/portable-ascii/tree/2.0.3"
  6933. },
  6934. "funding": [
  6935. {
  6936. "url": "https://www.paypal.me/moelleken",
  6937. "type": "custom"
  6938. },
  6939. {
  6940. "url": "https://github.com/voku",
  6941. "type": "github"
  6942. },
  6943. {
  6944. "url": "https://opencollective.com/portable-ascii",
  6945. "type": "open_collective"
  6946. },
  6947. {
  6948. "url": "https://www.patreon.com/voku",
  6949. "type": "patreon"
  6950. },
  6951. {
  6952. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6953. "type": "tidelift"
  6954. }
  6955. ],
  6956. "time": "2024-11-21T01:49:47+00:00"
  6957. },
  6958. {
  6959. "name": "webmozart/assert",
  6960. "version": "1.11.0",
  6961. "source": {
  6962. "type": "git",
  6963. "url": "https://github.com/webmozarts/assert.git",
  6964. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6965. },
  6966. "dist": {
  6967. "type": "zip",
  6968. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6969. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6970. "shasum": ""
  6971. },
  6972. "require": {
  6973. "ext-ctype": "*",
  6974. "php": "^7.2 || ^8.0"
  6975. },
  6976. "conflict": {
  6977. "phpstan/phpstan": "<0.12.20",
  6978. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6979. },
  6980. "require-dev": {
  6981. "phpunit/phpunit": "^8.5.13"
  6982. },
  6983. "type": "library",
  6984. "extra": {
  6985. "branch-alias": {
  6986. "dev-master": "1.10-dev"
  6987. }
  6988. },
  6989. "autoload": {
  6990. "psr-4": {
  6991. "Webmozart\\Assert\\": "src/"
  6992. }
  6993. },
  6994. "notification-url": "https://packagist.org/downloads/",
  6995. "license": [
  6996. "MIT"
  6997. ],
  6998. "authors": [
  6999. {
  7000. "name": "Bernhard Schussek",
  7001. "email": "bschussek@gmail.com"
  7002. }
  7003. ],
  7004. "description": "Assertions to validate method input/output with nice error messages.",
  7005. "keywords": [
  7006. "assert",
  7007. "check",
  7008. "validate"
  7009. ],
  7010. "support": {
  7011. "issues": "https://github.com/webmozarts/assert/issues",
  7012. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  7013. },
  7014. "time": "2022-06-03T18:03:27+00:00"
  7015. }
  7016. ],
  7017. "packages-dev": [
  7018. {
  7019. "name": "doctrine/instantiator",
  7020. "version": "2.0.0",
  7021. "source": {
  7022. "type": "git",
  7023. "url": "https://github.com/doctrine/instantiator.git",
  7024. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0"
  7025. },
  7026. "dist": {
  7027. "type": "zip",
  7028. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  7029. "reference": "c6222283fa3f4ac679f8b9ced9a4e23f163e80d0",
  7030. "shasum": ""
  7031. },
  7032. "require": {
  7033. "php": "^8.1"
  7034. },
  7035. "require-dev": {
  7036. "doctrine/coding-standard": "^11",
  7037. "ext-pdo": "*",
  7038. "ext-phar": "*",
  7039. "phpbench/phpbench": "^1.2",
  7040. "phpstan/phpstan": "^1.9.4",
  7041. "phpstan/phpstan-phpunit": "^1.3",
  7042. "phpunit/phpunit": "^9.5.27",
  7043. "vimeo/psalm": "^5.4"
  7044. },
  7045. "type": "library",
  7046. "autoload": {
  7047. "psr-4": {
  7048. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  7049. }
  7050. },
  7051. "notification-url": "https://packagist.org/downloads/",
  7052. "license": [
  7053. "MIT"
  7054. ],
  7055. "authors": [
  7056. {
  7057. "name": "Marco Pivetta",
  7058. "email": "ocramius@gmail.com",
  7059. "homepage": "https://ocramius.github.io/"
  7060. }
  7061. ],
  7062. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  7063. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  7064. "keywords": [
  7065. "constructor",
  7066. "instantiate"
  7067. ],
  7068. "support": {
  7069. "issues": "https://github.com/doctrine/instantiator/issues",
  7070. "source": "https://github.com/doctrine/instantiator/tree/2.0.0"
  7071. },
  7072. "funding": [
  7073. {
  7074. "url": "https://www.doctrine-project.org/sponsorship.html",
  7075. "type": "custom"
  7076. },
  7077. {
  7078. "url": "https://www.patreon.com/phpdoctrine",
  7079. "type": "patreon"
  7080. },
  7081. {
  7082. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  7083. "type": "tidelift"
  7084. }
  7085. ],
  7086. "time": "2022-12-30T00:23:10+00:00"
  7087. },
  7088. {
  7089. "name": "fakerphp/faker",
  7090. "version": "v1.24.1",
  7091. "source": {
  7092. "type": "git",
  7093. "url": "https://github.com/FakerPHP/Faker.git",
  7094. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  7095. },
  7096. "dist": {
  7097. "type": "zip",
  7098. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  7099. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  7100. "shasum": ""
  7101. },
  7102. "require": {
  7103. "php": "^7.4 || ^8.0",
  7104. "psr/container": "^1.0 || ^2.0",
  7105. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  7106. },
  7107. "conflict": {
  7108. "fzaninotto/faker": "*"
  7109. },
  7110. "require-dev": {
  7111. "bamarni/composer-bin-plugin": "^1.4.1",
  7112. "doctrine/persistence": "^1.3 || ^2.0",
  7113. "ext-intl": "*",
  7114. "phpunit/phpunit": "^9.5.26",
  7115. "symfony/phpunit-bridge": "^5.4.16"
  7116. },
  7117. "suggest": {
  7118. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  7119. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  7120. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  7121. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  7122. "ext-mbstring": "Required for multibyte Unicode string functionality."
  7123. },
  7124. "type": "library",
  7125. "autoload": {
  7126. "psr-4": {
  7127. "Faker\\": "src/Faker/"
  7128. }
  7129. },
  7130. "notification-url": "https://packagist.org/downloads/",
  7131. "license": [
  7132. "MIT"
  7133. ],
  7134. "authors": [
  7135. {
  7136. "name": "François Zaninotto"
  7137. }
  7138. ],
  7139. "description": "Faker is a PHP library that generates fake data for you.",
  7140. "keywords": [
  7141. "data",
  7142. "faker",
  7143. "fixtures"
  7144. ],
  7145. "support": {
  7146. "issues": "https://github.com/FakerPHP/Faker/issues",
  7147. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  7148. },
  7149. "time": "2024-11-21T13:46:39+00:00"
  7150. },
  7151. {
  7152. "name": "filp/whoops",
  7153. "version": "2.18.0",
  7154. "source": {
  7155. "type": "git",
  7156. "url": "https://github.com/filp/whoops.git",
  7157. "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e"
  7158. },
  7159. "dist": {
  7160. "type": "zip",
  7161. "url": "https://api.github.com/repos/filp/whoops/zipball/a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
  7162. "reference": "a7de6c3c6c3c022f5cfc337f8ede6a14460cf77e",
  7163. "shasum": ""
  7164. },
  7165. "require": {
  7166. "php": "^7.1 || ^8.0",
  7167. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  7168. },
  7169. "require-dev": {
  7170. "mockery/mockery": "^1.0",
  7171. "phpunit/phpunit": "^7.5.20 || ^8.5.8 || ^9.3.3",
  7172. "symfony/var-dumper": "^4.0 || ^5.0"
  7173. },
  7174. "suggest": {
  7175. "symfony/var-dumper": "Pretty print complex values better with var-dumper available",
  7176. "whoops/soap": "Formats errors as SOAP responses"
  7177. },
  7178. "type": "library",
  7179. "extra": {
  7180. "branch-alias": {
  7181. "dev-master": "2.7-dev"
  7182. }
  7183. },
  7184. "autoload": {
  7185. "psr-4": {
  7186. "Whoops\\": "src/Whoops/"
  7187. }
  7188. },
  7189. "notification-url": "https://packagist.org/downloads/",
  7190. "license": [
  7191. "MIT"
  7192. ],
  7193. "authors": [
  7194. {
  7195. "name": "Filipe Dobreira",
  7196. "homepage": "https://github.com/filp",
  7197. "role": "Developer"
  7198. }
  7199. ],
  7200. "description": "php error handling for cool kids",
  7201. "homepage": "https://filp.github.io/whoops/",
  7202. "keywords": [
  7203. "error",
  7204. "exception",
  7205. "handling",
  7206. "library",
  7207. "throwable",
  7208. "whoops"
  7209. ],
  7210. "support": {
  7211. "issues": "https://github.com/filp/whoops/issues",
  7212. "source": "https://github.com/filp/whoops/tree/2.18.0"
  7213. },
  7214. "funding": [
  7215. {
  7216. "url": "https://github.com/denis-sokolov",
  7217. "type": "github"
  7218. }
  7219. ],
  7220. "time": "2025-03-15T12:00:00+00:00"
  7221. },
  7222. {
  7223. "name": "hamcrest/hamcrest-php",
  7224. "version": "v2.0.1",
  7225. "source": {
  7226. "type": "git",
  7227. "url": "https://github.com/hamcrest/hamcrest-php.git",
  7228. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  7229. },
  7230. "dist": {
  7231. "type": "zip",
  7232. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7233. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  7234. "shasum": ""
  7235. },
  7236. "require": {
  7237. "php": "^5.3|^7.0|^8.0"
  7238. },
  7239. "replace": {
  7240. "cordoval/hamcrest-php": "*",
  7241. "davedevelopment/hamcrest-php": "*",
  7242. "kodova/hamcrest-php": "*"
  7243. },
  7244. "require-dev": {
  7245. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  7246. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  7247. },
  7248. "type": "library",
  7249. "extra": {
  7250. "branch-alias": {
  7251. "dev-master": "2.1-dev"
  7252. }
  7253. },
  7254. "autoload": {
  7255. "classmap": [
  7256. "hamcrest"
  7257. ]
  7258. },
  7259. "notification-url": "https://packagist.org/downloads/",
  7260. "license": [
  7261. "BSD-3-Clause"
  7262. ],
  7263. "description": "This is the PHP port of Hamcrest Matchers",
  7264. "keywords": [
  7265. "test"
  7266. ],
  7267. "support": {
  7268. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  7269. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  7270. },
  7271. "time": "2020-07-09T08:09:16+00:00"
  7272. },
  7273. {
  7274. "name": "laravel/pint",
  7275. "version": "v1.22.0",
  7276. "source": {
  7277. "type": "git",
  7278. "url": "https://github.com/laravel/pint.git",
  7279. "reference": "7ddfaa6523a675fae5c4123ee38fc6bfb8ee4f36"
  7280. },
  7281. "dist": {
  7282. "type": "zip",
  7283. "url": "https://api.github.com/repos/laravel/pint/zipball/7ddfaa6523a675fae5c4123ee38fc6bfb8ee4f36",
  7284. "reference": "7ddfaa6523a675fae5c4123ee38fc6bfb8ee4f36",
  7285. "shasum": ""
  7286. },
  7287. "require": {
  7288. "ext-json": "*",
  7289. "ext-mbstring": "*",
  7290. "ext-tokenizer": "*",
  7291. "ext-xml": "*",
  7292. "php": "^8.2.0"
  7293. },
  7294. "require-dev": {
  7295. "friendsofphp/php-cs-fixer": "^3.75.0",
  7296. "illuminate/view": "^11.44.2",
  7297. "larastan/larastan": "^3.3.1",
  7298. "laravel-zero/framework": "^11.36.1",
  7299. "mockery/mockery": "^1.6.12",
  7300. "nunomaduro/termwind": "^2.3",
  7301. "pestphp/pest": "^2.36.0"
  7302. },
  7303. "bin": [
  7304. "builds/pint"
  7305. ],
  7306. "type": "project",
  7307. "autoload": {
  7308. "psr-4": {
  7309. "App\\": "app/",
  7310. "Database\\Seeders\\": "database/seeders/",
  7311. "Database\\Factories\\": "database/factories/"
  7312. }
  7313. },
  7314. "notification-url": "https://packagist.org/downloads/",
  7315. "license": [
  7316. "MIT"
  7317. ],
  7318. "authors": [
  7319. {
  7320. "name": "Nuno Maduro",
  7321. "email": "enunomaduro@gmail.com"
  7322. }
  7323. ],
  7324. "description": "An opinionated code formatter for PHP.",
  7325. "homepage": "https://laravel.com",
  7326. "keywords": [
  7327. "format",
  7328. "formatter",
  7329. "lint",
  7330. "linter",
  7331. "php"
  7332. ],
  7333. "support": {
  7334. "issues": "https://github.com/laravel/pint/issues",
  7335. "source": "https://github.com/laravel/pint"
  7336. },
  7337. "time": "2025-04-08T22:11:45+00:00"
  7338. },
  7339. {
  7340. "name": "laravel/sail",
  7341. "version": "v1.41.0",
  7342. "source": {
  7343. "type": "git",
  7344. "url": "https://github.com/laravel/sail.git",
  7345. "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec"
  7346. },
  7347. "dist": {
  7348. "type": "zip",
  7349. "url": "https://api.github.com/repos/laravel/sail/zipball/fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec",
  7350. "reference": "fe1a4ada0abb5e4bd99eb4e4b0d87906c00cdeec",
  7351. "shasum": ""
  7352. },
  7353. "require": {
  7354. "illuminate/console": "^9.52.16|^10.0|^11.0|^12.0",
  7355. "illuminate/contracts": "^9.52.16|^10.0|^11.0|^12.0",
  7356. "illuminate/support": "^9.52.16|^10.0|^11.0|^12.0",
  7357. "php": "^8.0",
  7358. "symfony/console": "^6.0|^7.0",
  7359. "symfony/yaml": "^6.0|^7.0"
  7360. },
  7361. "require-dev": {
  7362. "orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
  7363. "phpstan/phpstan": "^1.10"
  7364. },
  7365. "bin": [
  7366. "bin/sail"
  7367. ],
  7368. "type": "library",
  7369. "extra": {
  7370. "laravel": {
  7371. "providers": [
  7372. "Laravel\\Sail\\SailServiceProvider"
  7373. ]
  7374. }
  7375. },
  7376. "autoload": {
  7377. "psr-4": {
  7378. "Laravel\\Sail\\": "src/"
  7379. }
  7380. },
  7381. "notification-url": "https://packagist.org/downloads/",
  7382. "license": [
  7383. "MIT"
  7384. ],
  7385. "authors": [
  7386. {
  7387. "name": "Taylor Otwell",
  7388. "email": "taylor@laravel.com"
  7389. }
  7390. ],
  7391. "description": "Docker files for running a basic Laravel application.",
  7392. "keywords": [
  7393. "docker",
  7394. "laravel"
  7395. ],
  7396. "support": {
  7397. "issues": "https://github.com/laravel/sail/issues",
  7398. "source": "https://github.com/laravel/sail"
  7399. },
  7400. "time": "2025-01-24T15:45:36+00:00"
  7401. },
  7402. {
  7403. "name": "mockery/mockery",
  7404. "version": "1.6.12",
  7405. "source": {
  7406. "type": "git",
  7407. "url": "https://github.com/mockery/mockery.git",
  7408. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699"
  7409. },
  7410. "dist": {
  7411. "type": "zip",
  7412. "url": "https://api.github.com/repos/mockery/mockery/zipball/1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7413. "reference": "1f4efdd7d3beafe9807b08156dfcb176d18f1699",
  7414. "shasum": ""
  7415. },
  7416. "require": {
  7417. "hamcrest/hamcrest-php": "^2.0.1",
  7418. "lib-pcre": ">=7.0",
  7419. "php": ">=7.3"
  7420. },
  7421. "conflict": {
  7422. "phpunit/phpunit": "<8.0"
  7423. },
  7424. "require-dev": {
  7425. "phpunit/phpunit": "^8.5 || ^9.6.17",
  7426. "symplify/easy-coding-standard": "^12.1.14"
  7427. },
  7428. "type": "library",
  7429. "autoload": {
  7430. "files": [
  7431. "library/helpers.php",
  7432. "library/Mockery.php"
  7433. ],
  7434. "psr-4": {
  7435. "Mockery\\": "library/Mockery"
  7436. }
  7437. },
  7438. "notification-url": "https://packagist.org/downloads/",
  7439. "license": [
  7440. "BSD-3-Clause"
  7441. ],
  7442. "authors": [
  7443. {
  7444. "name": "Pádraic Brady",
  7445. "email": "padraic.brady@gmail.com",
  7446. "homepage": "https://github.com/padraic",
  7447. "role": "Author"
  7448. },
  7449. {
  7450. "name": "Dave Marshall",
  7451. "email": "dave.marshall@atstsolutions.co.uk",
  7452. "homepage": "https://davedevelopment.co.uk",
  7453. "role": "Developer"
  7454. },
  7455. {
  7456. "name": "Nathanael Esayeas",
  7457. "email": "nathanael.esayeas@protonmail.com",
  7458. "homepage": "https://github.com/ghostwriter",
  7459. "role": "Lead Developer"
  7460. }
  7461. ],
  7462. "description": "Mockery is a simple yet flexible PHP mock object framework",
  7463. "homepage": "https://github.com/mockery/mockery",
  7464. "keywords": [
  7465. "BDD",
  7466. "TDD",
  7467. "library",
  7468. "mock",
  7469. "mock objects",
  7470. "mockery",
  7471. "stub",
  7472. "test",
  7473. "test double",
  7474. "testing"
  7475. ],
  7476. "support": {
  7477. "docs": "https://docs.mockery.io/",
  7478. "issues": "https://github.com/mockery/mockery/issues",
  7479. "rss": "https://github.com/mockery/mockery/releases.atom",
  7480. "security": "https://github.com/mockery/mockery/security/advisories",
  7481. "source": "https://github.com/mockery/mockery"
  7482. },
  7483. "time": "2024-05-16T03:13:13+00:00"
  7484. },
  7485. {
  7486. "name": "myclabs/deep-copy",
  7487. "version": "1.13.0",
  7488. "source": {
  7489. "type": "git",
  7490. "url": "https://github.com/myclabs/DeepCopy.git",
  7491. "reference": "024473a478be9df5fdaca2c793f2232fe788e414"
  7492. },
  7493. "dist": {
  7494. "type": "zip",
  7495. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/024473a478be9df5fdaca2c793f2232fe788e414",
  7496. "reference": "024473a478be9df5fdaca2c793f2232fe788e414",
  7497. "shasum": ""
  7498. },
  7499. "require": {
  7500. "php": "^7.1 || ^8.0"
  7501. },
  7502. "conflict": {
  7503. "doctrine/collections": "<1.6.8",
  7504. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  7505. },
  7506. "require-dev": {
  7507. "doctrine/collections": "^1.6.8",
  7508. "doctrine/common": "^2.13.3 || ^3.2.2",
  7509. "phpspec/prophecy": "^1.10",
  7510. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7511. },
  7512. "type": "library",
  7513. "autoload": {
  7514. "files": [
  7515. "src/DeepCopy/deep_copy.php"
  7516. ],
  7517. "psr-4": {
  7518. "DeepCopy\\": "src/DeepCopy/"
  7519. }
  7520. },
  7521. "notification-url": "https://packagist.org/downloads/",
  7522. "license": [
  7523. "MIT"
  7524. ],
  7525. "description": "Create deep copies (clones) of your objects",
  7526. "keywords": [
  7527. "clone",
  7528. "copy",
  7529. "duplicate",
  7530. "object",
  7531. "object graph"
  7532. ],
  7533. "support": {
  7534. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7535. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.0"
  7536. },
  7537. "funding": [
  7538. {
  7539. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7540. "type": "tidelift"
  7541. }
  7542. ],
  7543. "time": "2025-02-12T12:17:51+00:00"
  7544. },
  7545. {
  7546. "name": "nunomaduro/collision",
  7547. "version": "v6.4.0",
  7548. "source": {
  7549. "type": "git",
  7550. "url": "https://github.com/nunomaduro/collision.git",
  7551. "reference": "f05978827b9343cba381ca05b8c7deee346b6015"
  7552. },
  7553. "dist": {
  7554. "type": "zip",
  7555. "url": "https://api.github.com/repos/nunomaduro/collision/zipball/f05978827b9343cba381ca05b8c7deee346b6015",
  7556. "reference": "f05978827b9343cba381ca05b8c7deee346b6015",
  7557. "shasum": ""
  7558. },
  7559. "require": {
  7560. "filp/whoops": "^2.14.5",
  7561. "php": "^8.0.0",
  7562. "symfony/console": "^6.0.2"
  7563. },
  7564. "require-dev": {
  7565. "brianium/paratest": "^6.4.1",
  7566. "laravel/framework": "^9.26.1",
  7567. "laravel/pint": "^1.1.1",
  7568. "nunomaduro/larastan": "^1.0.3",
  7569. "nunomaduro/mock-final-classes": "^1.1.0",
  7570. "orchestra/testbench": "^7.7",
  7571. "phpunit/phpunit": "^9.5.23",
  7572. "spatie/ignition": "^1.4.1"
  7573. },
  7574. "type": "library",
  7575. "extra": {
  7576. "laravel": {
  7577. "providers": [
  7578. "NunoMaduro\\Collision\\Adapters\\Laravel\\CollisionServiceProvider"
  7579. ]
  7580. },
  7581. "branch-alias": {
  7582. "dev-develop": "6.x-dev"
  7583. }
  7584. },
  7585. "autoload": {
  7586. "psr-4": {
  7587. "NunoMaduro\\Collision\\": "src/"
  7588. }
  7589. },
  7590. "notification-url": "https://packagist.org/downloads/",
  7591. "license": [
  7592. "MIT"
  7593. ],
  7594. "authors": [
  7595. {
  7596. "name": "Nuno Maduro",
  7597. "email": "enunomaduro@gmail.com"
  7598. }
  7599. ],
  7600. "description": "Cli error handling for console/command-line PHP applications.",
  7601. "keywords": [
  7602. "artisan",
  7603. "cli",
  7604. "command-line",
  7605. "console",
  7606. "error",
  7607. "handling",
  7608. "laravel",
  7609. "laravel-zero",
  7610. "php",
  7611. "symfony"
  7612. ],
  7613. "support": {
  7614. "issues": "https://github.com/nunomaduro/collision/issues",
  7615. "source": "https://github.com/nunomaduro/collision"
  7616. },
  7617. "funding": [
  7618. {
  7619. "url": "https://www.paypal.com/paypalme/enunomaduro",
  7620. "type": "custom"
  7621. },
  7622. {
  7623. "url": "https://github.com/nunomaduro",
  7624. "type": "github"
  7625. },
  7626. {
  7627. "url": "https://www.patreon.com/nunomaduro",
  7628. "type": "patreon"
  7629. }
  7630. ],
  7631. "time": "2023-01-03T12:54:54+00:00"
  7632. },
  7633. {
  7634. "name": "phar-io/manifest",
  7635. "version": "2.0.4",
  7636. "source": {
  7637. "type": "git",
  7638. "url": "https://github.com/phar-io/manifest.git",
  7639. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7640. },
  7641. "dist": {
  7642. "type": "zip",
  7643. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7644. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7645. "shasum": ""
  7646. },
  7647. "require": {
  7648. "ext-dom": "*",
  7649. "ext-libxml": "*",
  7650. "ext-phar": "*",
  7651. "ext-xmlwriter": "*",
  7652. "phar-io/version": "^3.0.1",
  7653. "php": "^7.2 || ^8.0"
  7654. },
  7655. "type": "library",
  7656. "extra": {
  7657. "branch-alias": {
  7658. "dev-master": "2.0.x-dev"
  7659. }
  7660. },
  7661. "autoload": {
  7662. "classmap": [
  7663. "src/"
  7664. ]
  7665. },
  7666. "notification-url": "https://packagist.org/downloads/",
  7667. "license": [
  7668. "BSD-3-Clause"
  7669. ],
  7670. "authors": [
  7671. {
  7672. "name": "Arne Blankerts",
  7673. "email": "arne@blankerts.de",
  7674. "role": "Developer"
  7675. },
  7676. {
  7677. "name": "Sebastian Heuer",
  7678. "email": "sebastian@phpeople.de",
  7679. "role": "Developer"
  7680. },
  7681. {
  7682. "name": "Sebastian Bergmann",
  7683. "email": "sebastian@phpunit.de",
  7684. "role": "Developer"
  7685. }
  7686. ],
  7687. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7688. "support": {
  7689. "issues": "https://github.com/phar-io/manifest/issues",
  7690. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7691. },
  7692. "funding": [
  7693. {
  7694. "url": "https://github.com/theseer",
  7695. "type": "github"
  7696. }
  7697. ],
  7698. "time": "2024-03-03T12:33:53+00:00"
  7699. },
  7700. {
  7701. "name": "phar-io/version",
  7702. "version": "3.2.1",
  7703. "source": {
  7704. "type": "git",
  7705. "url": "https://github.com/phar-io/version.git",
  7706. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7707. },
  7708. "dist": {
  7709. "type": "zip",
  7710. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7711. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7712. "shasum": ""
  7713. },
  7714. "require": {
  7715. "php": "^7.2 || ^8.0"
  7716. },
  7717. "type": "library",
  7718. "autoload": {
  7719. "classmap": [
  7720. "src/"
  7721. ]
  7722. },
  7723. "notification-url": "https://packagist.org/downloads/",
  7724. "license": [
  7725. "BSD-3-Clause"
  7726. ],
  7727. "authors": [
  7728. {
  7729. "name": "Arne Blankerts",
  7730. "email": "arne@blankerts.de",
  7731. "role": "Developer"
  7732. },
  7733. {
  7734. "name": "Sebastian Heuer",
  7735. "email": "sebastian@phpeople.de",
  7736. "role": "Developer"
  7737. },
  7738. {
  7739. "name": "Sebastian Bergmann",
  7740. "email": "sebastian@phpunit.de",
  7741. "role": "Developer"
  7742. }
  7743. ],
  7744. "description": "Library for handling version information and constraints",
  7745. "support": {
  7746. "issues": "https://github.com/phar-io/version/issues",
  7747. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7748. },
  7749. "time": "2022-02-21T01:04:05+00:00"
  7750. },
  7751. {
  7752. "name": "phpunit/php-code-coverage",
  7753. "version": "9.2.32",
  7754. "source": {
  7755. "type": "git",
  7756. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7757. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5"
  7758. },
  7759. "dist": {
  7760. "type": "zip",
  7761. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/85402a822d1ecf1db1096959413d35e1c37cf1a5",
  7762. "reference": "85402a822d1ecf1db1096959413d35e1c37cf1a5",
  7763. "shasum": ""
  7764. },
  7765. "require": {
  7766. "ext-dom": "*",
  7767. "ext-libxml": "*",
  7768. "ext-xmlwriter": "*",
  7769. "nikic/php-parser": "^4.19.1 || ^5.1.0",
  7770. "php": ">=7.3",
  7771. "phpunit/php-file-iterator": "^3.0.6",
  7772. "phpunit/php-text-template": "^2.0.4",
  7773. "sebastian/code-unit-reverse-lookup": "^2.0.3",
  7774. "sebastian/complexity": "^2.0.3",
  7775. "sebastian/environment": "^5.1.5",
  7776. "sebastian/lines-of-code": "^1.0.4",
  7777. "sebastian/version": "^3.0.2",
  7778. "theseer/tokenizer": "^1.2.3"
  7779. },
  7780. "require-dev": {
  7781. "phpunit/phpunit": "^9.6"
  7782. },
  7783. "suggest": {
  7784. "ext-pcov": "PHP extension that provides line coverage",
  7785. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7786. },
  7787. "type": "library",
  7788. "extra": {
  7789. "branch-alias": {
  7790. "dev-main": "9.2.x-dev"
  7791. }
  7792. },
  7793. "autoload": {
  7794. "classmap": [
  7795. "src/"
  7796. ]
  7797. },
  7798. "notification-url": "https://packagist.org/downloads/",
  7799. "license": [
  7800. "BSD-3-Clause"
  7801. ],
  7802. "authors": [
  7803. {
  7804. "name": "Sebastian Bergmann",
  7805. "email": "sebastian@phpunit.de",
  7806. "role": "lead"
  7807. }
  7808. ],
  7809. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  7810. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  7811. "keywords": [
  7812. "coverage",
  7813. "testing",
  7814. "xunit"
  7815. ],
  7816. "support": {
  7817. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  7818. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  7819. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.32"
  7820. },
  7821. "funding": [
  7822. {
  7823. "url": "https://github.com/sebastianbergmann",
  7824. "type": "github"
  7825. }
  7826. ],
  7827. "time": "2024-08-22T04:23:01+00:00"
  7828. },
  7829. {
  7830. "name": "phpunit/php-file-iterator",
  7831. "version": "3.0.6",
  7832. "source": {
  7833. "type": "git",
  7834. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  7835. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  7836. },
  7837. "dist": {
  7838. "type": "zip",
  7839. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7840. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  7841. "shasum": ""
  7842. },
  7843. "require": {
  7844. "php": ">=7.3"
  7845. },
  7846. "require-dev": {
  7847. "phpunit/phpunit": "^9.3"
  7848. },
  7849. "type": "library",
  7850. "extra": {
  7851. "branch-alias": {
  7852. "dev-master": "3.0-dev"
  7853. }
  7854. },
  7855. "autoload": {
  7856. "classmap": [
  7857. "src/"
  7858. ]
  7859. },
  7860. "notification-url": "https://packagist.org/downloads/",
  7861. "license": [
  7862. "BSD-3-Clause"
  7863. ],
  7864. "authors": [
  7865. {
  7866. "name": "Sebastian Bergmann",
  7867. "email": "sebastian@phpunit.de",
  7868. "role": "lead"
  7869. }
  7870. ],
  7871. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  7872. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  7873. "keywords": [
  7874. "filesystem",
  7875. "iterator"
  7876. ],
  7877. "support": {
  7878. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  7879. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  7880. },
  7881. "funding": [
  7882. {
  7883. "url": "https://github.com/sebastianbergmann",
  7884. "type": "github"
  7885. }
  7886. ],
  7887. "time": "2021-12-02T12:48:52+00:00"
  7888. },
  7889. {
  7890. "name": "phpunit/php-invoker",
  7891. "version": "3.1.1",
  7892. "source": {
  7893. "type": "git",
  7894. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  7895. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  7896. },
  7897. "dist": {
  7898. "type": "zip",
  7899. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  7900. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  7901. "shasum": ""
  7902. },
  7903. "require": {
  7904. "php": ">=7.3"
  7905. },
  7906. "require-dev": {
  7907. "ext-pcntl": "*",
  7908. "phpunit/phpunit": "^9.3"
  7909. },
  7910. "suggest": {
  7911. "ext-pcntl": "*"
  7912. },
  7913. "type": "library",
  7914. "extra": {
  7915. "branch-alias": {
  7916. "dev-master": "3.1-dev"
  7917. }
  7918. },
  7919. "autoload": {
  7920. "classmap": [
  7921. "src/"
  7922. ]
  7923. },
  7924. "notification-url": "https://packagist.org/downloads/",
  7925. "license": [
  7926. "BSD-3-Clause"
  7927. ],
  7928. "authors": [
  7929. {
  7930. "name": "Sebastian Bergmann",
  7931. "email": "sebastian@phpunit.de",
  7932. "role": "lead"
  7933. }
  7934. ],
  7935. "description": "Invoke callables with a timeout",
  7936. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  7937. "keywords": [
  7938. "process"
  7939. ],
  7940. "support": {
  7941. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  7942. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  7943. },
  7944. "funding": [
  7945. {
  7946. "url": "https://github.com/sebastianbergmann",
  7947. "type": "github"
  7948. }
  7949. ],
  7950. "time": "2020-09-28T05:58:55+00:00"
  7951. },
  7952. {
  7953. "name": "phpunit/php-text-template",
  7954. "version": "2.0.4",
  7955. "source": {
  7956. "type": "git",
  7957. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  7958. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  7959. },
  7960. "dist": {
  7961. "type": "zip",
  7962. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  7963. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  7964. "shasum": ""
  7965. },
  7966. "require": {
  7967. "php": ">=7.3"
  7968. },
  7969. "require-dev": {
  7970. "phpunit/phpunit": "^9.3"
  7971. },
  7972. "type": "library",
  7973. "extra": {
  7974. "branch-alias": {
  7975. "dev-master": "2.0-dev"
  7976. }
  7977. },
  7978. "autoload": {
  7979. "classmap": [
  7980. "src/"
  7981. ]
  7982. },
  7983. "notification-url": "https://packagist.org/downloads/",
  7984. "license": [
  7985. "BSD-3-Clause"
  7986. ],
  7987. "authors": [
  7988. {
  7989. "name": "Sebastian Bergmann",
  7990. "email": "sebastian@phpunit.de",
  7991. "role": "lead"
  7992. }
  7993. ],
  7994. "description": "Simple template engine.",
  7995. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  7996. "keywords": [
  7997. "template"
  7998. ],
  7999. "support": {
  8000. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8001. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  8002. },
  8003. "funding": [
  8004. {
  8005. "url": "https://github.com/sebastianbergmann",
  8006. "type": "github"
  8007. }
  8008. ],
  8009. "time": "2020-10-26T05:33:50+00:00"
  8010. },
  8011. {
  8012. "name": "phpunit/php-timer",
  8013. "version": "5.0.3",
  8014. "source": {
  8015. "type": "git",
  8016. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8017. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  8018. },
  8019. "dist": {
  8020. "type": "zip",
  8021. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8022. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  8023. "shasum": ""
  8024. },
  8025. "require": {
  8026. "php": ">=7.3"
  8027. },
  8028. "require-dev": {
  8029. "phpunit/phpunit": "^9.3"
  8030. },
  8031. "type": "library",
  8032. "extra": {
  8033. "branch-alias": {
  8034. "dev-master": "5.0-dev"
  8035. }
  8036. },
  8037. "autoload": {
  8038. "classmap": [
  8039. "src/"
  8040. ]
  8041. },
  8042. "notification-url": "https://packagist.org/downloads/",
  8043. "license": [
  8044. "BSD-3-Clause"
  8045. ],
  8046. "authors": [
  8047. {
  8048. "name": "Sebastian Bergmann",
  8049. "email": "sebastian@phpunit.de",
  8050. "role": "lead"
  8051. }
  8052. ],
  8053. "description": "Utility class for timing",
  8054. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8055. "keywords": [
  8056. "timer"
  8057. ],
  8058. "support": {
  8059. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8060. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  8061. },
  8062. "funding": [
  8063. {
  8064. "url": "https://github.com/sebastianbergmann",
  8065. "type": "github"
  8066. }
  8067. ],
  8068. "time": "2020-10-26T13:16:10+00:00"
  8069. },
  8070. {
  8071. "name": "phpunit/phpunit",
  8072. "version": "9.6.22",
  8073. "source": {
  8074. "type": "git",
  8075. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8076. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c"
  8077. },
  8078. "dist": {
  8079. "type": "zip",
  8080. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  8081. "reference": "f80235cb4d3caa59ae09be3adf1ded27521d1a9c",
  8082. "shasum": ""
  8083. },
  8084. "require": {
  8085. "doctrine/instantiator": "^1.5.0 || ^2",
  8086. "ext-dom": "*",
  8087. "ext-json": "*",
  8088. "ext-libxml": "*",
  8089. "ext-mbstring": "*",
  8090. "ext-xml": "*",
  8091. "ext-xmlwriter": "*",
  8092. "myclabs/deep-copy": "^1.12.1",
  8093. "phar-io/manifest": "^2.0.4",
  8094. "phar-io/version": "^3.2.1",
  8095. "php": ">=7.3",
  8096. "phpunit/php-code-coverage": "^9.2.32",
  8097. "phpunit/php-file-iterator": "^3.0.6",
  8098. "phpunit/php-invoker": "^3.1.1",
  8099. "phpunit/php-text-template": "^2.0.4",
  8100. "phpunit/php-timer": "^5.0.3",
  8101. "sebastian/cli-parser": "^1.0.2",
  8102. "sebastian/code-unit": "^1.0.8",
  8103. "sebastian/comparator": "^4.0.8",
  8104. "sebastian/diff": "^4.0.6",
  8105. "sebastian/environment": "^5.1.5",
  8106. "sebastian/exporter": "^4.0.6",
  8107. "sebastian/global-state": "^5.0.7",
  8108. "sebastian/object-enumerator": "^4.0.4",
  8109. "sebastian/resource-operations": "^3.0.4",
  8110. "sebastian/type": "^3.2.1",
  8111. "sebastian/version": "^3.0.2"
  8112. },
  8113. "suggest": {
  8114. "ext-soap": "To be able to generate mocks based on WSDL files",
  8115. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  8116. },
  8117. "bin": [
  8118. "phpunit"
  8119. ],
  8120. "type": "library",
  8121. "extra": {
  8122. "branch-alias": {
  8123. "dev-master": "9.6-dev"
  8124. }
  8125. },
  8126. "autoload": {
  8127. "files": [
  8128. "src/Framework/Assert/Functions.php"
  8129. ],
  8130. "classmap": [
  8131. "src/"
  8132. ]
  8133. },
  8134. "notification-url": "https://packagist.org/downloads/",
  8135. "license": [
  8136. "BSD-3-Clause"
  8137. ],
  8138. "authors": [
  8139. {
  8140. "name": "Sebastian Bergmann",
  8141. "email": "sebastian@phpunit.de",
  8142. "role": "lead"
  8143. }
  8144. ],
  8145. "description": "The PHP Unit Testing framework.",
  8146. "homepage": "https://phpunit.de/",
  8147. "keywords": [
  8148. "phpunit",
  8149. "testing",
  8150. "xunit"
  8151. ],
  8152. "support": {
  8153. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8154. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8155. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.22"
  8156. },
  8157. "funding": [
  8158. {
  8159. "url": "https://phpunit.de/sponsors.html",
  8160. "type": "custom"
  8161. },
  8162. {
  8163. "url": "https://github.com/sebastianbergmann",
  8164. "type": "github"
  8165. },
  8166. {
  8167. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8168. "type": "tidelift"
  8169. }
  8170. ],
  8171. "time": "2024-12-05T13:48:26+00:00"
  8172. },
  8173. {
  8174. "name": "sebastian/cli-parser",
  8175. "version": "1.0.2",
  8176. "source": {
  8177. "type": "git",
  8178. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8179. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b"
  8180. },
  8181. "dist": {
  8182. "type": "zip",
  8183. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8184. "reference": "2b56bea83a09de3ac06bb18b92f068e60cc6f50b",
  8185. "shasum": ""
  8186. },
  8187. "require": {
  8188. "php": ">=7.3"
  8189. },
  8190. "require-dev": {
  8191. "phpunit/phpunit": "^9.3"
  8192. },
  8193. "type": "library",
  8194. "extra": {
  8195. "branch-alias": {
  8196. "dev-master": "1.0-dev"
  8197. }
  8198. },
  8199. "autoload": {
  8200. "classmap": [
  8201. "src/"
  8202. ]
  8203. },
  8204. "notification-url": "https://packagist.org/downloads/",
  8205. "license": [
  8206. "BSD-3-Clause"
  8207. ],
  8208. "authors": [
  8209. {
  8210. "name": "Sebastian Bergmann",
  8211. "email": "sebastian@phpunit.de",
  8212. "role": "lead"
  8213. }
  8214. ],
  8215. "description": "Library for parsing CLI options",
  8216. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8217. "support": {
  8218. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8219. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.2"
  8220. },
  8221. "funding": [
  8222. {
  8223. "url": "https://github.com/sebastianbergmann",
  8224. "type": "github"
  8225. }
  8226. ],
  8227. "time": "2024-03-02T06:27:43+00:00"
  8228. },
  8229. {
  8230. "name": "sebastian/code-unit",
  8231. "version": "1.0.8",
  8232. "source": {
  8233. "type": "git",
  8234. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8235. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  8236. },
  8237. "dist": {
  8238. "type": "zip",
  8239. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8240. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  8241. "shasum": ""
  8242. },
  8243. "require": {
  8244. "php": ">=7.3"
  8245. },
  8246. "require-dev": {
  8247. "phpunit/phpunit": "^9.3"
  8248. },
  8249. "type": "library",
  8250. "extra": {
  8251. "branch-alias": {
  8252. "dev-master": "1.0-dev"
  8253. }
  8254. },
  8255. "autoload": {
  8256. "classmap": [
  8257. "src/"
  8258. ]
  8259. },
  8260. "notification-url": "https://packagist.org/downloads/",
  8261. "license": [
  8262. "BSD-3-Clause"
  8263. ],
  8264. "authors": [
  8265. {
  8266. "name": "Sebastian Bergmann",
  8267. "email": "sebastian@phpunit.de",
  8268. "role": "lead"
  8269. }
  8270. ],
  8271. "description": "Collection of value objects that represent the PHP code units",
  8272. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8273. "support": {
  8274. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8275. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  8276. },
  8277. "funding": [
  8278. {
  8279. "url": "https://github.com/sebastianbergmann",
  8280. "type": "github"
  8281. }
  8282. ],
  8283. "time": "2020-10-26T13:08:54+00:00"
  8284. },
  8285. {
  8286. "name": "sebastian/code-unit-reverse-lookup",
  8287. "version": "2.0.3",
  8288. "source": {
  8289. "type": "git",
  8290. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8291. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  8292. },
  8293. "dist": {
  8294. "type": "zip",
  8295. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8296. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  8297. "shasum": ""
  8298. },
  8299. "require": {
  8300. "php": ">=7.3"
  8301. },
  8302. "require-dev": {
  8303. "phpunit/phpunit": "^9.3"
  8304. },
  8305. "type": "library",
  8306. "extra": {
  8307. "branch-alias": {
  8308. "dev-master": "2.0-dev"
  8309. }
  8310. },
  8311. "autoload": {
  8312. "classmap": [
  8313. "src/"
  8314. ]
  8315. },
  8316. "notification-url": "https://packagist.org/downloads/",
  8317. "license": [
  8318. "BSD-3-Clause"
  8319. ],
  8320. "authors": [
  8321. {
  8322. "name": "Sebastian Bergmann",
  8323. "email": "sebastian@phpunit.de"
  8324. }
  8325. ],
  8326. "description": "Looks up which function or method a line of code belongs to",
  8327. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8328. "support": {
  8329. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8330. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  8331. },
  8332. "funding": [
  8333. {
  8334. "url": "https://github.com/sebastianbergmann",
  8335. "type": "github"
  8336. }
  8337. ],
  8338. "time": "2020-09-28T05:30:19+00:00"
  8339. },
  8340. {
  8341. "name": "sebastian/comparator",
  8342. "version": "4.0.8",
  8343. "source": {
  8344. "type": "git",
  8345. "url": "https://github.com/sebastianbergmann/comparator.git",
  8346. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  8347. },
  8348. "dist": {
  8349. "type": "zip",
  8350. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  8351. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  8352. "shasum": ""
  8353. },
  8354. "require": {
  8355. "php": ">=7.3",
  8356. "sebastian/diff": "^4.0",
  8357. "sebastian/exporter": "^4.0"
  8358. },
  8359. "require-dev": {
  8360. "phpunit/phpunit": "^9.3"
  8361. },
  8362. "type": "library",
  8363. "extra": {
  8364. "branch-alias": {
  8365. "dev-master": "4.0-dev"
  8366. }
  8367. },
  8368. "autoload": {
  8369. "classmap": [
  8370. "src/"
  8371. ]
  8372. },
  8373. "notification-url": "https://packagist.org/downloads/",
  8374. "license": [
  8375. "BSD-3-Clause"
  8376. ],
  8377. "authors": [
  8378. {
  8379. "name": "Sebastian Bergmann",
  8380. "email": "sebastian@phpunit.de"
  8381. },
  8382. {
  8383. "name": "Jeff Welch",
  8384. "email": "whatthejeff@gmail.com"
  8385. },
  8386. {
  8387. "name": "Volker Dusch",
  8388. "email": "github@wallbash.com"
  8389. },
  8390. {
  8391. "name": "Bernhard Schussek",
  8392. "email": "bschussek@2bepublished.at"
  8393. }
  8394. ],
  8395. "description": "Provides the functionality to compare PHP values for equality",
  8396. "homepage": "https://github.com/sebastianbergmann/comparator",
  8397. "keywords": [
  8398. "comparator",
  8399. "compare",
  8400. "equality"
  8401. ],
  8402. "support": {
  8403. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8404. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  8405. },
  8406. "funding": [
  8407. {
  8408. "url": "https://github.com/sebastianbergmann",
  8409. "type": "github"
  8410. }
  8411. ],
  8412. "time": "2022-09-14T12:41:17+00:00"
  8413. },
  8414. {
  8415. "name": "sebastian/complexity",
  8416. "version": "2.0.3",
  8417. "source": {
  8418. "type": "git",
  8419. "url": "https://github.com/sebastianbergmann/complexity.git",
  8420. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a"
  8421. },
  8422. "dist": {
  8423. "type": "zip",
  8424. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/25f207c40d62b8b7aa32f5ab026c53561964053a",
  8425. "reference": "25f207c40d62b8b7aa32f5ab026c53561964053a",
  8426. "shasum": ""
  8427. },
  8428. "require": {
  8429. "nikic/php-parser": "^4.18 || ^5.0",
  8430. "php": ">=7.3"
  8431. },
  8432. "require-dev": {
  8433. "phpunit/phpunit": "^9.3"
  8434. },
  8435. "type": "library",
  8436. "extra": {
  8437. "branch-alias": {
  8438. "dev-master": "2.0-dev"
  8439. }
  8440. },
  8441. "autoload": {
  8442. "classmap": [
  8443. "src/"
  8444. ]
  8445. },
  8446. "notification-url": "https://packagist.org/downloads/",
  8447. "license": [
  8448. "BSD-3-Clause"
  8449. ],
  8450. "authors": [
  8451. {
  8452. "name": "Sebastian Bergmann",
  8453. "email": "sebastian@phpunit.de",
  8454. "role": "lead"
  8455. }
  8456. ],
  8457. "description": "Library for calculating the complexity of PHP code units",
  8458. "homepage": "https://github.com/sebastianbergmann/complexity",
  8459. "support": {
  8460. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8461. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.3"
  8462. },
  8463. "funding": [
  8464. {
  8465. "url": "https://github.com/sebastianbergmann",
  8466. "type": "github"
  8467. }
  8468. ],
  8469. "time": "2023-12-22T06:19:30+00:00"
  8470. },
  8471. {
  8472. "name": "sebastian/diff",
  8473. "version": "4.0.6",
  8474. "source": {
  8475. "type": "git",
  8476. "url": "https://github.com/sebastianbergmann/diff.git",
  8477. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc"
  8478. },
  8479. "dist": {
  8480. "type": "zip",
  8481. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/ba01945089c3a293b01ba9badc29ad55b106b0bc",
  8482. "reference": "ba01945089c3a293b01ba9badc29ad55b106b0bc",
  8483. "shasum": ""
  8484. },
  8485. "require": {
  8486. "php": ">=7.3"
  8487. },
  8488. "require-dev": {
  8489. "phpunit/phpunit": "^9.3",
  8490. "symfony/process": "^4.2 || ^5"
  8491. },
  8492. "type": "library",
  8493. "extra": {
  8494. "branch-alias": {
  8495. "dev-master": "4.0-dev"
  8496. }
  8497. },
  8498. "autoload": {
  8499. "classmap": [
  8500. "src/"
  8501. ]
  8502. },
  8503. "notification-url": "https://packagist.org/downloads/",
  8504. "license": [
  8505. "BSD-3-Clause"
  8506. ],
  8507. "authors": [
  8508. {
  8509. "name": "Sebastian Bergmann",
  8510. "email": "sebastian@phpunit.de"
  8511. },
  8512. {
  8513. "name": "Kore Nordmann",
  8514. "email": "mail@kore-nordmann.de"
  8515. }
  8516. ],
  8517. "description": "Diff implementation",
  8518. "homepage": "https://github.com/sebastianbergmann/diff",
  8519. "keywords": [
  8520. "diff",
  8521. "udiff",
  8522. "unidiff",
  8523. "unified diff"
  8524. ],
  8525. "support": {
  8526. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8527. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.6"
  8528. },
  8529. "funding": [
  8530. {
  8531. "url": "https://github.com/sebastianbergmann",
  8532. "type": "github"
  8533. }
  8534. ],
  8535. "time": "2024-03-02T06:30:58+00:00"
  8536. },
  8537. {
  8538. "name": "sebastian/environment",
  8539. "version": "5.1.5",
  8540. "source": {
  8541. "type": "git",
  8542. "url": "https://github.com/sebastianbergmann/environment.git",
  8543. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  8544. },
  8545. "dist": {
  8546. "type": "zip",
  8547. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  8548. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  8549. "shasum": ""
  8550. },
  8551. "require": {
  8552. "php": ">=7.3"
  8553. },
  8554. "require-dev": {
  8555. "phpunit/phpunit": "^9.3"
  8556. },
  8557. "suggest": {
  8558. "ext-posix": "*"
  8559. },
  8560. "type": "library",
  8561. "extra": {
  8562. "branch-alias": {
  8563. "dev-master": "5.1-dev"
  8564. }
  8565. },
  8566. "autoload": {
  8567. "classmap": [
  8568. "src/"
  8569. ]
  8570. },
  8571. "notification-url": "https://packagist.org/downloads/",
  8572. "license": [
  8573. "BSD-3-Clause"
  8574. ],
  8575. "authors": [
  8576. {
  8577. "name": "Sebastian Bergmann",
  8578. "email": "sebastian@phpunit.de"
  8579. }
  8580. ],
  8581. "description": "Provides functionality to handle HHVM/PHP environments",
  8582. "homepage": "http://www.github.com/sebastianbergmann/environment",
  8583. "keywords": [
  8584. "Xdebug",
  8585. "environment",
  8586. "hhvm"
  8587. ],
  8588. "support": {
  8589. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8590. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  8591. },
  8592. "funding": [
  8593. {
  8594. "url": "https://github.com/sebastianbergmann",
  8595. "type": "github"
  8596. }
  8597. ],
  8598. "time": "2023-02-03T06:03:51+00:00"
  8599. },
  8600. {
  8601. "name": "sebastian/exporter",
  8602. "version": "4.0.6",
  8603. "source": {
  8604. "type": "git",
  8605. "url": "https://github.com/sebastianbergmann/exporter.git",
  8606. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72"
  8607. },
  8608. "dist": {
  8609. "type": "zip",
  8610. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/78c00df8f170e02473b682df15bfcdacc3d32d72",
  8611. "reference": "78c00df8f170e02473b682df15bfcdacc3d32d72",
  8612. "shasum": ""
  8613. },
  8614. "require": {
  8615. "php": ">=7.3",
  8616. "sebastian/recursion-context": "^4.0"
  8617. },
  8618. "require-dev": {
  8619. "ext-mbstring": "*",
  8620. "phpunit/phpunit": "^9.3"
  8621. },
  8622. "type": "library",
  8623. "extra": {
  8624. "branch-alias": {
  8625. "dev-master": "4.0-dev"
  8626. }
  8627. },
  8628. "autoload": {
  8629. "classmap": [
  8630. "src/"
  8631. ]
  8632. },
  8633. "notification-url": "https://packagist.org/downloads/",
  8634. "license": [
  8635. "BSD-3-Clause"
  8636. ],
  8637. "authors": [
  8638. {
  8639. "name": "Sebastian Bergmann",
  8640. "email": "sebastian@phpunit.de"
  8641. },
  8642. {
  8643. "name": "Jeff Welch",
  8644. "email": "whatthejeff@gmail.com"
  8645. },
  8646. {
  8647. "name": "Volker Dusch",
  8648. "email": "github@wallbash.com"
  8649. },
  8650. {
  8651. "name": "Adam Harvey",
  8652. "email": "aharvey@php.net"
  8653. },
  8654. {
  8655. "name": "Bernhard Schussek",
  8656. "email": "bschussek@gmail.com"
  8657. }
  8658. ],
  8659. "description": "Provides the functionality to export PHP variables for visualization",
  8660. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8661. "keywords": [
  8662. "export",
  8663. "exporter"
  8664. ],
  8665. "support": {
  8666. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8667. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.6"
  8668. },
  8669. "funding": [
  8670. {
  8671. "url": "https://github.com/sebastianbergmann",
  8672. "type": "github"
  8673. }
  8674. ],
  8675. "time": "2024-03-02T06:33:00+00:00"
  8676. },
  8677. {
  8678. "name": "sebastian/global-state",
  8679. "version": "5.0.7",
  8680. "source": {
  8681. "type": "git",
  8682. "url": "https://github.com/sebastianbergmann/global-state.git",
  8683. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9"
  8684. },
  8685. "dist": {
  8686. "type": "zip",
  8687. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  8688. "reference": "bca7df1f32ee6fe93b4d4a9abbf69e13a4ada2c9",
  8689. "shasum": ""
  8690. },
  8691. "require": {
  8692. "php": ">=7.3",
  8693. "sebastian/object-reflector": "^2.0",
  8694. "sebastian/recursion-context": "^4.0"
  8695. },
  8696. "require-dev": {
  8697. "ext-dom": "*",
  8698. "phpunit/phpunit": "^9.3"
  8699. },
  8700. "suggest": {
  8701. "ext-uopz": "*"
  8702. },
  8703. "type": "library",
  8704. "extra": {
  8705. "branch-alias": {
  8706. "dev-master": "5.0-dev"
  8707. }
  8708. },
  8709. "autoload": {
  8710. "classmap": [
  8711. "src/"
  8712. ]
  8713. },
  8714. "notification-url": "https://packagist.org/downloads/",
  8715. "license": [
  8716. "BSD-3-Clause"
  8717. ],
  8718. "authors": [
  8719. {
  8720. "name": "Sebastian Bergmann",
  8721. "email": "sebastian@phpunit.de"
  8722. }
  8723. ],
  8724. "description": "Snapshotting of global state",
  8725. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  8726. "keywords": [
  8727. "global state"
  8728. ],
  8729. "support": {
  8730. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8731. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.7"
  8732. },
  8733. "funding": [
  8734. {
  8735. "url": "https://github.com/sebastianbergmann",
  8736. "type": "github"
  8737. }
  8738. ],
  8739. "time": "2024-03-02T06:35:11+00:00"
  8740. },
  8741. {
  8742. "name": "sebastian/lines-of-code",
  8743. "version": "1.0.4",
  8744. "source": {
  8745. "type": "git",
  8746. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  8747. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5"
  8748. },
  8749. "dist": {
  8750. "type": "zip",
  8751. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  8752. "reference": "e1e4a170560925c26d424b6a03aed157e7dcc5c5",
  8753. "shasum": ""
  8754. },
  8755. "require": {
  8756. "nikic/php-parser": "^4.18 || ^5.0",
  8757. "php": ">=7.3"
  8758. },
  8759. "require-dev": {
  8760. "phpunit/phpunit": "^9.3"
  8761. },
  8762. "type": "library",
  8763. "extra": {
  8764. "branch-alias": {
  8765. "dev-master": "1.0-dev"
  8766. }
  8767. },
  8768. "autoload": {
  8769. "classmap": [
  8770. "src/"
  8771. ]
  8772. },
  8773. "notification-url": "https://packagist.org/downloads/",
  8774. "license": [
  8775. "BSD-3-Clause"
  8776. ],
  8777. "authors": [
  8778. {
  8779. "name": "Sebastian Bergmann",
  8780. "email": "sebastian@phpunit.de",
  8781. "role": "lead"
  8782. }
  8783. ],
  8784. "description": "Library for counting the lines of code in PHP source code",
  8785. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  8786. "support": {
  8787. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  8788. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.4"
  8789. },
  8790. "funding": [
  8791. {
  8792. "url": "https://github.com/sebastianbergmann",
  8793. "type": "github"
  8794. }
  8795. ],
  8796. "time": "2023-12-22T06:20:34+00:00"
  8797. },
  8798. {
  8799. "name": "sebastian/object-enumerator",
  8800. "version": "4.0.4",
  8801. "source": {
  8802. "type": "git",
  8803. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  8804. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  8805. },
  8806. "dist": {
  8807. "type": "zip",
  8808. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  8809. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  8810. "shasum": ""
  8811. },
  8812. "require": {
  8813. "php": ">=7.3",
  8814. "sebastian/object-reflector": "^2.0",
  8815. "sebastian/recursion-context": "^4.0"
  8816. },
  8817. "require-dev": {
  8818. "phpunit/phpunit": "^9.3"
  8819. },
  8820. "type": "library",
  8821. "extra": {
  8822. "branch-alias": {
  8823. "dev-master": "4.0-dev"
  8824. }
  8825. },
  8826. "autoload": {
  8827. "classmap": [
  8828. "src/"
  8829. ]
  8830. },
  8831. "notification-url": "https://packagist.org/downloads/",
  8832. "license": [
  8833. "BSD-3-Clause"
  8834. ],
  8835. "authors": [
  8836. {
  8837. "name": "Sebastian Bergmann",
  8838. "email": "sebastian@phpunit.de"
  8839. }
  8840. ],
  8841. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  8842. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  8843. "support": {
  8844. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  8845. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  8846. },
  8847. "funding": [
  8848. {
  8849. "url": "https://github.com/sebastianbergmann",
  8850. "type": "github"
  8851. }
  8852. ],
  8853. "time": "2020-10-26T13:12:34+00:00"
  8854. },
  8855. {
  8856. "name": "sebastian/object-reflector",
  8857. "version": "2.0.4",
  8858. "source": {
  8859. "type": "git",
  8860. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  8861. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  8862. },
  8863. "dist": {
  8864. "type": "zip",
  8865. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8866. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  8867. "shasum": ""
  8868. },
  8869. "require": {
  8870. "php": ">=7.3"
  8871. },
  8872. "require-dev": {
  8873. "phpunit/phpunit": "^9.3"
  8874. },
  8875. "type": "library",
  8876. "extra": {
  8877. "branch-alias": {
  8878. "dev-master": "2.0-dev"
  8879. }
  8880. },
  8881. "autoload": {
  8882. "classmap": [
  8883. "src/"
  8884. ]
  8885. },
  8886. "notification-url": "https://packagist.org/downloads/",
  8887. "license": [
  8888. "BSD-3-Clause"
  8889. ],
  8890. "authors": [
  8891. {
  8892. "name": "Sebastian Bergmann",
  8893. "email": "sebastian@phpunit.de"
  8894. }
  8895. ],
  8896. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  8897. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  8898. "support": {
  8899. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  8900. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  8901. },
  8902. "funding": [
  8903. {
  8904. "url": "https://github.com/sebastianbergmann",
  8905. "type": "github"
  8906. }
  8907. ],
  8908. "time": "2020-10-26T13:14:26+00:00"
  8909. },
  8910. {
  8911. "name": "sebastian/recursion-context",
  8912. "version": "4.0.5",
  8913. "source": {
  8914. "type": "git",
  8915. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  8916. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  8917. },
  8918. "dist": {
  8919. "type": "zip",
  8920. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  8921. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  8922. "shasum": ""
  8923. },
  8924. "require": {
  8925. "php": ">=7.3"
  8926. },
  8927. "require-dev": {
  8928. "phpunit/phpunit": "^9.3"
  8929. },
  8930. "type": "library",
  8931. "extra": {
  8932. "branch-alias": {
  8933. "dev-master": "4.0-dev"
  8934. }
  8935. },
  8936. "autoload": {
  8937. "classmap": [
  8938. "src/"
  8939. ]
  8940. },
  8941. "notification-url": "https://packagist.org/downloads/",
  8942. "license": [
  8943. "BSD-3-Clause"
  8944. ],
  8945. "authors": [
  8946. {
  8947. "name": "Sebastian Bergmann",
  8948. "email": "sebastian@phpunit.de"
  8949. },
  8950. {
  8951. "name": "Jeff Welch",
  8952. "email": "whatthejeff@gmail.com"
  8953. },
  8954. {
  8955. "name": "Adam Harvey",
  8956. "email": "aharvey@php.net"
  8957. }
  8958. ],
  8959. "description": "Provides functionality to recursively process PHP variables",
  8960. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  8961. "support": {
  8962. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  8963. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  8964. },
  8965. "funding": [
  8966. {
  8967. "url": "https://github.com/sebastianbergmann",
  8968. "type": "github"
  8969. }
  8970. ],
  8971. "time": "2023-02-03T06:07:39+00:00"
  8972. },
  8973. {
  8974. "name": "sebastian/resource-operations",
  8975. "version": "3.0.4",
  8976. "source": {
  8977. "type": "git",
  8978. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  8979. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e"
  8980. },
  8981. "dist": {
  8982. "type": "zip",
  8983. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  8984. "reference": "05d5692a7993ecccd56a03e40cd7e5b09b1d404e",
  8985. "shasum": ""
  8986. },
  8987. "require": {
  8988. "php": ">=7.3"
  8989. },
  8990. "require-dev": {
  8991. "phpunit/phpunit": "^9.0"
  8992. },
  8993. "type": "library",
  8994. "extra": {
  8995. "branch-alias": {
  8996. "dev-main": "3.0-dev"
  8997. }
  8998. },
  8999. "autoload": {
  9000. "classmap": [
  9001. "src/"
  9002. ]
  9003. },
  9004. "notification-url": "https://packagist.org/downloads/",
  9005. "license": [
  9006. "BSD-3-Clause"
  9007. ],
  9008. "authors": [
  9009. {
  9010. "name": "Sebastian Bergmann",
  9011. "email": "sebastian@phpunit.de"
  9012. }
  9013. ],
  9014. "description": "Provides a list of PHP built-in functions that operate on resources",
  9015. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9016. "support": {
  9017. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.4"
  9018. },
  9019. "funding": [
  9020. {
  9021. "url": "https://github.com/sebastianbergmann",
  9022. "type": "github"
  9023. }
  9024. ],
  9025. "time": "2024-03-14T16:00:52+00:00"
  9026. },
  9027. {
  9028. "name": "sebastian/type",
  9029. "version": "3.2.1",
  9030. "source": {
  9031. "type": "git",
  9032. "url": "https://github.com/sebastianbergmann/type.git",
  9033. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  9034. },
  9035. "dist": {
  9036. "type": "zip",
  9037. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9038. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  9039. "shasum": ""
  9040. },
  9041. "require": {
  9042. "php": ">=7.3"
  9043. },
  9044. "require-dev": {
  9045. "phpunit/phpunit": "^9.5"
  9046. },
  9047. "type": "library",
  9048. "extra": {
  9049. "branch-alias": {
  9050. "dev-master": "3.2-dev"
  9051. }
  9052. },
  9053. "autoload": {
  9054. "classmap": [
  9055. "src/"
  9056. ]
  9057. },
  9058. "notification-url": "https://packagist.org/downloads/",
  9059. "license": [
  9060. "BSD-3-Clause"
  9061. ],
  9062. "authors": [
  9063. {
  9064. "name": "Sebastian Bergmann",
  9065. "email": "sebastian@phpunit.de",
  9066. "role": "lead"
  9067. }
  9068. ],
  9069. "description": "Collection of value objects that represent the types of the PHP type system",
  9070. "homepage": "https://github.com/sebastianbergmann/type",
  9071. "support": {
  9072. "issues": "https://github.com/sebastianbergmann/type/issues",
  9073. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  9074. },
  9075. "funding": [
  9076. {
  9077. "url": "https://github.com/sebastianbergmann",
  9078. "type": "github"
  9079. }
  9080. ],
  9081. "time": "2023-02-03T06:13:03+00:00"
  9082. },
  9083. {
  9084. "name": "sebastian/version",
  9085. "version": "3.0.2",
  9086. "source": {
  9087. "type": "git",
  9088. "url": "https://github.com/sebastianbergmann/version.git",
  9089. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  9090. },
  9091. "dist": {
  9092. "type": "zip",
  9093. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  9094. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  9095. "shasum": ""
  9096. },
  9097. "require": {
  9098. "php": ">=7.3"
  9099. },
  9100. "type": "library",
  9101. "extra": {
  9102. "branch-alias": {
  9103. "dev-master": "3.0-dev"
  9104. }
  9105. },
  9106. "autoload": {
  9107. "classmap": [
  9108. "src/"
  9109. ]
  9110. },
  9111. "notification-url": "https://packagist.org/downloads/",
  9112. "license": [
  9113. "BSD-3-Clause"
  9114. ],
  9115. "authors": [
  9116. {
  9117. "name": "Sebastian Bergmann",
  9118. "email": "sebastian@phpunit.de",
  9119. "role": "lead"
  9120. }
  9121. ],
  9122. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9123. "homepage": "https://github.com/sebastianbergmann/version",
  9124. "support": {
  9125. "issues": "https://github.com/sebastianbergmann/version/issues",
  9126. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  9127. },
  9128. "funding": [
  9129. {
  9130. "url": "https://github.com/sebastianbergmann",
  9131. "type": "github"
  9132. }
  9133. ],
  9134. "time": "2020-09-28T06:39:44+00:00"
  9135. },
  9136. {
  9137. "name": "spatie/backtrace",
  9138. "version": "1.7.1",
  9139. "source": {
  9140. "type": "git",
  9141. "url": "https://github.com/spatie/backtrace.git",
  9142. "reference": "0f2477c520e3729de58e061b8192f161c99f770b"
  9143. },
  9144. "dist": {
  9145. "type": "zip",
  9146. "url": "https://api.github.com/repos/spatie/backtrace/zipball/0f2477c520e3729de58e061b8192f161c99f770b",
  9147. "reference": "0f2477c520e3729de58e061b8192f161c99f770b",
  9148. "shasum": ""
  9149. },
  9150. "require": {
  9151. "php": "^7.3 || ^8.0"
  9152. },
  9153. "require-dev": {
  9154. "ext-json": "*",
  9155. "laravel/serializable-closure": "^1.3 || ^2.0",
  9156. "phpunit/phpunit": "^9.3 || ^11.4.3",
  9157. "spatie/phpunit-snapshot-assertions": "^4.2 || ^5.1.6",
  9158. "symfony/var-dumper": "^5.1 || ^6.0 || ^7.0"
  9159. },
  9160. "type": "library",
  9161. "autoload": {
  9162. "psr-4": {
  9163. "Spatie\\Backtrace\\": "src"
  9164. }
  9165. },
  9166. "notification-url": "https://packagist.org/downloads/",
  9167. "license": [
  9168. "MIT"
  9169. ],
  9170. "authors": [
  9171. {
  9172. "name": "Freek Van de Herten",
  9173. "email": "freek@spatie.be",
  9174. "homepage": "https://spatie.be",
  9175. "role": "Developer"
  9176. }
  9177. ],
  9178. "description": "A better backtrace",
  9179. "homepage": "https://github.com/spatie/backtrace",
  9180. "keywords": [
  9181. "Backtrace",
  9182. "spatie"
  9183. ],
  9184. "support": {
  9185. "source": "https://github.com/spatie/backtrace/tree/1.7.1"
  9186. },
  9187. "funding": [
  9188. {
  9189. "url": "https://github.com/sponsors/spatie",
  9190. "type": "github"
  9191. },
  9192. {
  9193. "url": "https://spatie.be/open-source/support-us",
  9194. "type": "other"
  9195. }
  9196. ],
  9197. "time": "2024-12-02T13:28:15+00:00"
  9198. },
  9199. {
  9200. "name": "spatie/flare-client-php",
  9201. "version": "1.10.1",
  9202. "source": {
  9203. "type": "git",
  9204. "url": "https://github.com/spatie/flare-client-php.git",
  9205. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f"
  9206. },
  9207. "dist": {
  9208. "type": "zip",
  9209. "url": "https://api.github.com/repos/spatie/flare-client-php/zipball/bf1716eb98bd689451b071548ae9e70738dce62f",
  9210. "reference": "bf1716eb98bd689451b071548ae9e70738dce62f",
  9211. "shasum": ""
  9212. },
  9213. "require": {
  9214. "illuminate/pipeline": "^8.0|^9.0|^10.0|^11.0|^12.0",
  9215. "php": "^8.0",
  9216. "spatie/backtrace": "^1.6.1",
  9217. "symfony/http-foundation": "^5.2|^6.0|^7.0",
  9218. "symfony/mime": "^5.2|^6.0|^7.0",
  9219. "symfony/process": "^5.2|^6.0|^7.0",
  9220. "symfony/var-dumper": "^5.2|^6.0|^7.0"
  9221. },
  9222. "require-dev": {
  9223. "dms/phpunit-arraysubset-asserts": "^0.5.0",
  9224. "pestphp/pest": "^1.20|^2.0",
  9225. "phpstan/extension-installer": "^1.1",
  9226. "phpstan/phpstan-deprecation-rules": "^1.0",
  9227. "phpstan/phpstan-phpunit": "^1.0",
  9228. "spatie/pest-plugin-snapshots": "^1.0|^2.0"
  9229. },
  9230. "type": "library",
  9231. "extra": {
  9232. "branch-alias": {
  9233. "dev-main": "1.3.x-dev"
  9234. }
  9235. },
  9236. "autoload": {
  9237. "files": [
  9238. "src/helpers.php"
  9239. ],
  9240. "psr-4": {
  9241. "Spatie\\FlareClient\\": "src"
  9242. }
  9243. },
  9244. "notification-url": "https://packagist.org/downloads/",
  9245. "license": [
  9246. "MIT"
  9247. ],
  9248. "description": "Send PHP errors to Flare",
  9249. "homepage": "https://github.com/spatie/flare-client-php",
  9250. "keywords": [
  9251. "exception",
  9252. "flare",
  9253. "reporting",
  9254. "spatie"
  9255. ],
  9256. "support": {
  9257. "issues": "https://github.com/spatie/flare-client-php/issues",
  9258. "source": "https://github.com/spatie/flare-client-php/tree/1.10.1"
  9259. },
  9260. "funding": [
  9261. {
  9262. "url": "https://github.com/spatie",
  9263. "type": "github"
  9264. }
  9265. ],
  9266. "time": "2025-02-14T13:42:06+00:00"
  9267. },
  9268. {
  9269. "name": "spatie/ignition",
  9270. "version": "1.14.2",
  9271. "source": {
  9272. "type": "git",
  9273. "url": "https://github.com/spatie/ignition.git",
  9274. "reference": "5e11c11f675bb5251f061491a493e04a1a571532"
  9275. },
  9276. "dist": {
  9277. "type": "zip",
  9278. "url": "https://api.github.com/repos/spatie/ignition/zipball/5e11c11f675bb5251f061491a493e04a1a571532",
  9279. "reference": "5e11c11f675bb5251f061491a493e04a1a571532",
  9280. "shasum": ""
  9281. },
  9282. "require": {
  9283. "ext-json": "*",
  9284. "ext-mbstring": "*",
  9285. "php": "^8.0",
  9286. "spatie/backtrace": "^1.5.3",
  9287. "spatie/flare-client-php": "^1.4.0",
  9288. "symfony/console": "^5.4|^6.0|^7.0",
  9289. "symfony/var-dumper": "^5.4|^6.0|^7.0"
  9290. },
  9291. "require-dev": {
  9292. "illuminate/cache": "^9.52|^10.0|^11.0",
  9293. "mockery/mockery": "^1.4",
  9294. "pestphp/pest": "^1.20|^2.0",
  9295. "phpstan/extension-installer": "^1.1",
  9296. "phpstan/phpstan-deprecation-rules": "^1.0",
  9297. "phpstan/phpstan-phpunit": "^1.0",
  9298. "psr/simple-cache-implementation": "*",
  9299. "symfony/cache": "^5.4|^6.0|^7.0",
  9300. "symfony/process": "^5.4|^6.0|^7.0",
  9301. "vlucas/phpdotenv": "^5.5"
  9302. },
  9303. "suggest": {
  9304. "openai-php/client": "Require get solutions from OpenAI",
  9305. "simple-cache-implementation": "To cache solutions from OpenAI"
  9306. },
  9307. "type": "library",
  9308. "extra": {
  9309. "branch-alias": {
  9310. "dev-main": "1.5.x-dev"
  9311. }
  9312. },
  9313. "autoload": {
  9314. "psr-4": {
  9315. "Spatie\\Ignition\\": "src"
  9316. }
  9317. },
  9318. "notification-url": "https://packagist.org/downloads/",
  9319. "license": [
  9320. "MIT"
  9321. ],
  9322. "authors": [
  9323. {
  9324. "name": "Spatie",
  9325. "email": "info@spatie.be",
  9326. "role": "Developer"
  9327. }
  9328. ],
  9329. "description": "A beautiful error page for PHP applications.",
  9330. "homepage": "https://flareapp.io/ignition",
  9331. "keywords": [
  9332. "error",
  9333. "flare",
  9334. "laravel",
  9335. "page"
  9336. ],
  9337. "support": {
  9338. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9339. "forum": "https://twitter.com/flareappio",
  9340. "issues": "https://github.com/spatie/ignition/issues",
  9341. "source": "https://github.com/spatie/ignition"
  9342. },
  9343. "funding": [
  9344. {
  9345. "url": "https://github.com/spatie",
  9346. "type": "github"
  9347. }
  9348. ],
  9349. "time": "2024-05-29T08:10:20+00:00"
  9350. },
  9351. {
  9352. "name": "spatie/laravel-ignition",
  9353. "version": "1.7.0",
  9354. "source": {
  9355. "type": "git",
  9356. "url": "https://github.com/spatie/laravel-ignition.git",
  9357. "reference": "b6d5c33cf0b8260d6540572af2d9bcf9182fe5fb"
  9358. },
  9359. "dist": {
  9360. "type": "zip",
  9361. "url": "https://api.github.com/repos/spatie/laravel-ignition/zipball/b6d5c33cf0b8260d6540572af2d9bcf9182fe5fb",
  9362. "reference": "b6d5c33cf0b8260d6540572af2d9bcf9182fe5fb",
  9363. "shasum": ""
  9364. },
  9365. "require": {
  9366. "ext-curl": "*",
  9367. "ext-json": "*",
  9368. "ext-mbstring": "*",
  9369. "illuminate/support": "^8.77|^9.27",
  9370. "monolog/monolog": "^2.3",
  9371. "php": "^8.0",
  9372. "spatie/flare-client-php": "^1.0.1",
  9373. "spatie/ignition": "<= 1.14.2",
  9374. "symfony/console": "^5.0|^6.0",
  9375. "symfony/var-dumper": "^5.0|^6.0"
  9376. },
  9377. "require-dev": {
  9378. "filp/whoops": "^2.14",
  9379. "livewire/livewire": "^2.8|dev-develop",
  9380. "mockery/mockery": "^1.4",
  9381. "nunomaduro/larastan": "^1.0",
  9382. "orchestra/testbench": "^6.23|^7.0",
  9383. "pestphp/pest": "^1.20",
  9384. "phpstan/extension-installer": "^1.1",
  9385. "phpstan/phpstan-deprecation-rules": "^1.0",
  9386. "phpstan/phpstan-phpunit": "^1.0",
  9387. "spatie/laravel-ray": "^1.27"
  9388. },
  9389. "type": "library",
  9390. "extra": {
  9391. "laravel": {
  9392. "aliases": {
  9393. "Flare": "Spatie\\LaravelIgnition\\Facades\\Flare"
  9394. },
  9395. "providers": [
  9396. "Spatie\\LaravelIgnition\\IgnitionServiceProvider"
  9397. ]
  9398. }
  9399. },
  9400. "autoload": {
  9401. "files": [
  9402. "src/helpers.php"
  9403. ],
  9404. "psr-4": {
  9405. "Spatie\\LaravelIgnition\\": "src"
  9406. }
  9407. },
  9408. "notification-url": "https://packagist.org/downloads/",
  9409. "license": [
  9410. "MIT"
  9411. ],
  9412. "authors": [
  9413. {
  9414. "name": "Spatie",
  9415. "email": "info@spatie.be",
  9416. "role": "Developer"
  9417. }
  9418. ],
  9419. "description": "A beautiful error page for Laravel applications.",
  9420. "homepage": "https://flareapp.io/ignition",
  9421. "keywords": [
  9422. "error",
  9423. "flare",
  9424. "laravel",
  9425. "page"
  9426. ],
  9427. "support": {
  9428. "docs": "https://flareapp.io/docs/ignition-for-laravel/introduction",
  9429. "forum": "https://twitter.com/flareappio",
  9430. "issues": "https://github.com/spatie/laravel-ignition/issues",
  9431. "source": "https://github.com/spatie/laravel-ignition"
  9432. },
  9433. "funding": [
  9434. {
  9435. "url": "https://github.com/spatie",
  9436. "type": "github"
  9437. }
  9438. ],
  9439. "time": "2024-06-13T07:21:06+00:00"
  9440. },
  9441. {
  9442. "name": "symfony/yaml",
  9443. "version": "v7.2.5",
  9444. "source": {
  9445. "type": "git",
  9446. "url": "https://github.com/symfony/yaml.git",
  9447. "reference": "4c4b6f4cfcd7e52053f0c8bfad0f7f30fb924912"
  9448. },
  9449. "dist": {
  9450. "type": "zip",
  9451. "url": "https://api.github.com/repos/symfony/yaml/zipball/4c4b6f4cfcd7e52053f0c8bfad0f7f30fb924912",
  9452. "reference": "4c4b6f4cfcd7e52053f0c8bfad0f7f30fb924912",
  9453. "shasum": ""
  9454. },
  9455. "require": {
  9456. "php": ">=8.2",
  9457. "symfony/deprecation-contracts": "^2.5|^3.0",
  9458. "symfony/polyfill-ctype": "^1.8"
  9459. },
  9460. "conflict": {
  9461. "symfony/console": "<6.4"
  9462. },
  9463. "require-dev": {
  9464. "symfony/console": "^6.4|^7.0"
  9465. },
  9466. "bin": [
  9467. "Resources/bin/yaml-lint"
  9468. ],
  9469. "type": "library",
  9470. "autoload": {
  9471. "psr-4": {
  9472. "Symfony\\Component\\Yaml\\": ""
  9473. },
  9474. "exclude-from-classmap": [
  9475. "/Tests/"
  9476. ]
  9477. },
  9478. "notification-url": "https://packagist.org/downloads/",
  9479. "license": [
  9480. "MIT"
  9481. ],
  9482. "authors": [
  9483. {
  9484. "name": "Fabien Potencier",
  9485. "email": "fabien@symfony.com"
  9486. },
  9487. {
  9488. "name": "Symfony Community",
  9489. "homepage": "https://symfony.com/contributors"
  9490. }
  9491. ],
  9492. "description": "Loads and dumps YAML files",
  9493. "homepage": "https://symfony.com",
  9494. "support": {
  9495. "source": "https://github.com/symfony/yaml/tree/v7.2.5"
  9496. },
  9497. "funding": [
  9498. {
  9499. "url": "https://symfony.com/sponsor",
  9500. "type": "custom"
  9501. },
  9502. {
  9503. "url": "https://github.com/fabpot",
  9504. "type": "github"
  9505. },
  9506. {
  9507. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9508. "type": "tidelift"
  9509. }
  9510. ],
  9511. "time": "2025-03-03T07:12:39+00:00"
  9512. },
  9513. {
  9514. "name": "theseer/tokenizer",
  9515. "version": "1.2.3",
  9516. "source": {
  9517. "type": "git",
  9518. "url": "https://github.com/theseer/tokenizer.git",
  9519. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  9520. },
  9521. "dist": {
  9522. "type": "zip",
  9523. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9524. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  9525. "shasum": ""
  9526. },
  9527. "require": {
  9528. "ext-dom": "*",
  9529. "ext-tokenizer": "*",
  9530. "ext-xmlwriter": "*",
  9531. "php": "^7.2 || ^8.0"
  9532. },
  9533. "type": "library",
  9534. "autoload": {
  9535. "classmap": [
  9536. "src/"
  9537. ]
  9538. },
  9539. "notification-url": "https://packagist.org/downloads/",
  9540. "license": [
  9541. "BSD-3-Clause"
  9542. ],
  9543. "authors": [
  9544. {
  9545. "name": "Arne Blankerts",
  9546. "email": "arne@blankerts.de",
  9547. "role": "Developer"
  9548. }
  9549. ],
  9550. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9551. "support": {
  9552. "issues": "https://github.com/theseer/tokenizer/issues",
  9553. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  9554. },
  9555. "funding": [
  9556. {
  9557. "url": "https://github.com/theseer",
  9558. "type": "github"
  9559. }
  9560. ],
  9561. "time": "2024-03-03T12:36:25+00:00"
  9562. }
  9563. ],
  9564. "aliases": [],
  9565. "minimum-stability": "stable",
  9566. "stability-flags": [],
  9567. "prefer-stable": true,
  9568. "prefer-lowest": false,
  9569. "platform": {
  9570. "php": "^8.0.2"
  9571. },
  9572. "platform-dev": [],
  9573. "plugin-api-version": "2.2.0"
  9574. }