composer.lock 373 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922992399249925992699279928992999309931993299339934993599369937993899399940994199429943994499459946994799489949995099519952995399549955995699579958995999609961996299639964996599669967996899699970997199729973997499759976997799789979998099819982998399849985998699879988998999909991999299939994999599969997999899991000010001100021000310004100051000610007100081000910010100111001210013100141001510016100171001810019100201002110022100231002410025100261002710028100291003010031100321003310034100351003610037100381003910040100411004210043100441004510046100471004810049100501005110052100531005410055100561005710058100591006010061100621006310064100651006610067100681006910070100711007210073100741007510076100771007810079100801008110082100831008410085100861008710088100891009010091100921009310094100951009610097100981009910100101011010210103101041010510106101071010810109101101011110112101131011410115101161011710118101191012010121101221012310124101251012610127101281012910130101311013210133101341013510136101371013810139101401014110142101431014410145101461014710148101491015010151101521015310154101551015610157101581015910160101611016210163101641016510166101671016810169101701017110172101731017410175101761017710178101791018010181101821018310184101851018610187101881018910190101911019210193101941019510196101971019810199102001020110202102031020410205102061020710208102091021010211102121021310214102151021610217102181021910220102211022210223102241022510226102271022810229102301023110232102331023410235102361023710238102391024010241102421024310244102451024610247102481024910250102511025210253102541025510256102571025810259102601026110262102631026410265102661026710268102691027010271102721027310274102751027610277102781027910280102811028210283102841028510286102871028810289102901029110292102931029410295102961029710298102991030010301103021030310304103051030610307103081030910310103111031210313103141031510316103171031810319103201032110322103231032410325103261032710328103291033010331103321033310334103351033610337103381033910340103411034210343103441034510346103471034810349103501035110352103531035410355103561035710358103591036010361103621036310364103651036610367103681036910370103711037210373103741037510376103771037810379103801038110382103831038410385103861038710388103891039010391103921039310394103951039610397103981039910400104011040210403104041040510406104071040810409104101041110412104131041410415104161041710418104191042010421104221042310424104251042610427104281042910430104311043210433104341043510436104371043810439104401044110442104431044410445104461044710448104491045010451104521045310454104551045610457104581045910460104611046210463104641046510466104671046810469104701047110472104731047410475104761047710478
  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": "39ab430ad43a297c4e1b232afd979153",
  8. "packages": [
  9. {
  10. "name": "adbario/php-dot-notation",
  11. "version": "2.5.0",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/adbario/php-dot-notation.git",
  15. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/adbario/php-dot-notation/zipball/081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  20. "reference": "081e2cca50c84bfeeea2e3ef9b2c8d206d80ccae",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-json": "*",
  25. "php": "^5.5 || ^7.0 || ^8.0"
  26. },
  27. "require-dev": {
  28. "phpunit/phpunit": "^4.8|^5.7|^6.6|^7.5|^8.5|^9.5",
  29. "squizlabs/php_codesniffer": "^3.6"
  30. },
  31. "type": "library",
  32. "autoload": {
  33. "files": [
  34. "src/helpers.php"
  35. ],
  36. "psr-4": {
  37. "Adbar\\": "src"
  38. }
  39. },
  40. "notification-url": "https://packagist.org/downloads/",
  41. "license": [
  42. "MIT"
  43. ],
  44. "authors": [
  45. {
  46. "name": "Riku Särkinen",
  47. "email": "[email protected]"
  48. }
  49. ],
  50. "description": "PHP dot notation access to arrays",
  51. "homepage": "https://github.com/adbario/php-dot-notation",
  52. "keywords": [
  53. "ArrayAccess",
  54. "dotnotation"
  55. ],
  56. "support": {
  57. "issues": "https://github.com/adbario/php-dot-notation/issues",
  58. "source": "https://github.com/adbario/php-dot-notation/tree/2.5.0"
  59. },
  60. "time": "2022-10-14T20:31:46+00:00"
  61. },
  62. {
  63. "name": "alibabacloud/credentials",
  64. "version": "1.1.5",
  65. "source": {
  66. "type": "git",
  67. "url": "https://github.com/aliyun/credentials-php.git",
  68. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a"
  69. },
  70. "dist": {
  71. "type": "zip",
  72. "url": "https://api.github.com/repos/aliyun/credentials-php/zipball/1d8383ceef695974a88a3859c42e235fd2e3981a",
  73. "reference": "1d8383ceef695974a88a3859c42e235fd2e3981a",
  74. "shasum": ""
  75. },
  76. "require": {
  77. "adbario/php-dot-notation": "^2.2",
  78. "alibabacloud/tea": "^3.0",
  79. "ext-curl": "*",
  80. "ext-json": "*",
  81. "ext-libxml": "*",
  82. "ext-mbstring": "*",
  83. "ext-openssl": "*",
  84. "ext-simplexml": "*",
  85. "ext-xmlwriter": "*",
  86. "guzzlehttp/guzzle": "^6.3|^7.0",
  87. "php": ">=5.6"
  88. },
  89. "require-dev": {
  90. "composer/composer": "^1.8",
  91. "drupal/coder": "^8.3",
  92. "ext-dom": "*",
  93. "ext-pcre": "*",
  94. "ext-sockets": "*",
  95. "ext-spl": "*",
  96. "mikey179/vfsstream": "^1.6",
  97. "monolog/monolog": "^1.24",
  98. "phpunit/phpunit": "^5.7|^6.6|^7.5",
  99. "psr/cache": "^1.0",
  100. "symfony/dotenv": "^3.4",
  101. "symfony/var-dumper": "^3.4"
  102. },
  103. "suggest": {
  104. "ext-sockets": "To use client-side monitoring"
  105. },
  106. "type": "library",
  107. "autoload": {
  108. "psr-4": {
  109. "AlibabaCloud\\Credentials\\": "src"
  110. }
  111. },
  112. "notification-url": "https://packagist.org/downloads/",
  113. "license": [
  114. "Apache-2.0"
  115. ],
  116. "authors": [
  117. {
  118. "name": "Alibaba Cloud SDK",
  119. "email": "[email protected]",
  120. "homepage": "http://www.alibabacloud.com"
  121. }
  122. ],
  123. "description": "Alibaba Cloud Credentials for PHP",
  124. "homepage": "https://www.alibabacloud.com/",
  125. "keywords": [
  126. "alibaba",
  127. "alibabacloud",
  128. "aliyun",
  129. "client",
  130. "cloud",
  131. "credentials",
  132. "library",
  133. "sdk",
  134. "tool"
  135. ],
  136. "support": {
  137. "issues": "https://github.com/aliyun/credentials-php/issues",
  138. "source": "https://github.com/aliyun/credentials-php"
  139. },
  140. "time": "2023-04-11T02:12:12+00:00"
  141. },
  142. {
  143. "name": "alibabacloud/darabonba-openapi",
  144. "version": "0.2.10",
  145. "source": {
  146. "type": "git",
  147. "url": "https://github.com/alibabacloud-sdk-php/darabonba-openapi.git",
  148. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb"
  149. },
  150. "dist": {
  151. "type": "zip",
  152. "url": "https://api.github.com/repos/alibabacloud-sdk-php/darabonba-openapi/zipball/88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  153. "reference": "88f42443e1b5c9d086d0444baa4a874f8636f7bb",
  154. "shasum": ""
  155. },
  156. "require": {
  157. "alibabacloud/credentials": "^1.1",
  158. "alibabacloud/gateway-spi": "^1",
  159. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  160. "alibabacloud/tea-utils": "^0.2.19",
  161. "alibabacloud/tea-xml": "^0.2",
  162. "php": ">5.5"
  163. },
  164. "type": "library",
  165. "autoload": {
  166. "psr-4": {
  167. "Darabonba\\OpenApi\\": "src"
  168. }
  169. },
  170. "notification-url": "https://packagist.org/downloads/",
  171. "license": [
  172. "Apache-2.0"
  173. ],
  174. "authors": [
  175. {
  176. "name": "Alibaba Cloud SDK",
  177. "email": "[email protected]"
  178. }
  179. ],
  180. "description": "Alibaba Cloud OpenApi Client",
  181. "support": {
  182. "issues": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/issues",
  183. "source": "https://github.com/alibabacloud-sdk-php/darabonba-openapi/tree/0.2.10"
  184. },
  185. "time": "2023-11-23T07:01:20+00:00"
  186. },
  187. {
  188. "name": "alibabacloud/dm-20170622",
  189. "version": "1.2.1",
  190. "source": {
  191. "type": "git",
  192. "url": "https://github.com/alibabacloud-sdk-php/dm-20170622.git",
  193. "reference": "a5efe273e9651b53ed648a806d3f653217d733a2"
  194. },
  195. "dist": {
  196. "type": "zip",
  197. "url": "https://api.github.com/repos/alibabacloud-sdk-php/dm-20170622/zipball/a5efe273e9651b53ed648a806d3f653217d733a2",
  198. "reference": "a5efe273e9651b53ed648a806d3f653217d733a2",
  199. "shasum": ""
  200. },
  201. "require": {
  202. "alibabacloud/darabonba-openapi": "^0.2.10",
  203. "alibabacloud/endpoint-util": "^0.1.0",
  204. "alibabacloud/openapi-util": "^0.1.10|^0.2.1",
  205. "alibabacloud/tea-utils": "^0.2.19",
  206. "php": ">5.5"
  207. },
  208. "type": "library",
  209. "autoload": {
  210. "psr-4": {
  211. "AlibabaCloud\\SDK\\Dm\\V20170622\\": "src"
  212. }
  213. },
  214. "notification-url": "https://packagist.org/downloads/",
  215. "license": [
  216. "Apache-2.0"
  217. ],
  218. "authors": [
  219. {
  220. "name": "Alibaba Cloud SDK",
  221. "email": "[email protected]"
  222. }
  223. ],
  224. "description": "Alibaba Cloud Dm (20170622) SDK Library for PHP",
  225. "support": {
  226. "source": "https://github.com/alibabacloud-sdk-php/dm-20170622/tree/1.2.1"
  227. },
  228. "time": "2024-02-20T17:15:43+00:00"
  229. },
  230. {
  231. "name": "alibabacloud/endpoint-util",
  232. "version": "0.1.1",
  233. "source": {
  234. "type": "git",
  235. "url": "https://github.com/alibabacloud-sdk-php/endpoint-util.git",
  236. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5"
  237. },
  238. "dist": {
  239. "type": "zip",
  240. "url": "https://api.github.com/repos/alibabacloud-sdk-php/endpoint-util/zipball/f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  241. "reference": "f3fe88a25d8df4faa3b0ae14ff202a9cc094e6c5",
  242. "shasum": ""
  243. },
  244. "require": {
  245. "php": ">5.5"
  246. },
  247. "require-dev": {
  248. "phpunit/phpunit": "^4.8.35|^5.4.3"
  249. },
  250. "type": "library",
  251. "autoload": {
  252. "psr-4": {
  253. "AlibabaCloud\\Endpoint\\": "src"
  254. }
  255. },
  256. "notification-url": "https://packagist.org/downloads/",
  257. "license": [
  258. "Apache-2.0"
  259. ],
  260. "authors": [
  261. {
  262. "name": "Alibaba Cloud SDK",
  263. "email": "[email protected]"
  264. }
  265. ],
  266. "description": "Alibaba Cloud Endpoint Library for PHP",
  267. "support": {
  268. "source": "https://github.com/alibabacloud-sdk-php/endpoint-util/tree/0.1.1"
  269. },
  270. "time": "2020-06-04T10:57:15+00:00"
  271. },
  272. {
  273. "name": "alibabacloud/gateway-spi",
  274. "version": "1.0.0",
  275. "source": {
  276. "type": "git",
  277. "url": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi.git",
  278. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb"
  279. },
  280. "dist": {
  281. "type": "zip",
  282. "url": "https://api.github.com/repos/alibabacloud-sdk-php/alibabacloud-gateway-spi/zipball/7440f77750c329d8ab252db1d1d967314ccd1fcb",
  283. "reference": "7440f77750c329d8ab252db1d1d967314ccd1fcb",
  284. "shasum": ""
  285. },
  286. "require": {
  287. "alibabacloud/credentials": "^1.1",
  288. "php": ">5.5"
  289. },
  290. "type": "library",
  291. "autoload": {
  292. "psr-4": {
  293. "Darabonba\\GatewaySpi\\": "src"
  294. }
  295. },
  296. "notification-url": "https://packagist.org/downloads/",
  297. "license": [
  298. "Apache-2.0"
  299. ],
  300. "authors": [
  301. {
  302. "name": "Alibaba Cloud SDK",
  303. "email": "[email protected]"
  304. }
  305. ],
  306. "description": "Alibaba Cloud Gateway SPI Client",
  307. "support": {
  308. "source": "https://github.com/alibabacloud-sdk-php/alibabacloud-gateway-spi/tree/1.0.0"
  309. },
  310. "time": "2022-07-14T05:31:35+00:00"
  311. },
  312. {
  313. "name": "alibabacloud/openapi-util",
  314. "version": "0.2.1",
  315. "source": {
  316. "type": "git",
  317. "url": "https://github.com/alibabacloud-sdk-php/openapi-util.git",
  318. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a"
  319. },
  320. "dist": {
  321. "type": "zip",
  322. "url": "https://api.github.com/repos/alibabacloud-sdk-php/openapi-util/zipball/f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  323. "reference": "f31f7bcd835e08ca24b6b8ba33637eb4eceb093a",
  324. "shasum": ""
  325. },
  326. "require": {
  327. "alibabacloud/tea": "^3.1",
  328. "alibabacloud/tea-utils": "^0.2",
  329. "lizhichao/one-sm": "^1.5",
  330. "php": ">5.5"
  331. },
  332. "require-dev": {
  333. "phpunit/phpunit": "*"
  334. },
  335. "type": "library",
  336. "autoload": {
  337. "psr-4": {
  338. "AlibabaCloud\\OpenApiUtil\\": "src"
  339. }
  340. },
  341. "notification-url": "https://packagist.org/downloads/",
  342. "license": [
  343. "Apache-2.0"
  344. ],
  345. "authors": [
  346. {
  347. "name": "Alibaba Cloud SDK",
  348. "email": "[email protected]"
  349. }
  350. ],
  351. "description": "Alibaba Cloud OpenApi Util",
  352. "support": {
  353. "issues": "https://github.com/alibabacloud-sdk-php/openapi-util/issues",
  354. "source": "https://github.com/alibabacloud-sdk-php/openapi-util/tree/0.2.1"
  355. },
  356. "time": "2023-01-10T09:10:10+00:00"
  357. },
  358. {
  359. "name": "alibabacloud/tea",
  360. "version": "3.2.1",
  361. "source": {
  362. "type": "git",
  363. "url": "https://github.com/aliyun/tea-php.git",
  364. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367"
  365. },
  366. "dist": {
  367. "type": "zip",
  368. "url": "https://api.github.com/repos/aliyun/tea-php/zipball/1619cb96c158384f72b873e1f85de8b299c9c367",
  369. "reference": "1619cb96c158384f72b873e1f85de8b299c9c367",
  370. "shasum": ""
  371. },
  372. "require": {
  373. "adbario/php-dot-notation": "^2.4",
  374. "ext-curl": "*",
  375. "ext-json": "*",
  376. "ext-libxml": "*",
  377. "ext-mbstring": "*",
  378. "ext-openssl": "*",
  379. "ext-simplexml": "*",
  380. "ext-xmlwriter": "*",
  381. "guzzlehttp/guzzle": "^6.3|^7.0",
  382. "php": ">=5.5"
  383. },
  384. "require-dev": {
  385. "phpunit/phpunit": "*",
  386. "symfony/dotenv": "^3.4",
  387. "symfony/var-dumper": "^3.4"
  388. },
  389. "suggest": {
  390. "ext-sockets": "To use client-side monitoring"
  391. },
  392. "type": "library",
  393. "autoload": {
  394. "psr-4": {
  395. "AlibabaCloud\\Tea\\": "src"
  396. }
  397. },
  398. "notification-url": "https://packagist.org/downloads/",
  399. "license": [
  400. "Apache-2.0"
  401. ],
  402. "authors": [
  403. {
  404. "name": "Alibaba Cloud SDK",
  405. "email": "[email protected]",
  406. "homepage": "http://www.alibabacloud.com"
  407. }
  408. ],
  409. "description": "Client of Tea for PHP",
  410. "homepage": "https://www.alibabacloud.com/",
  411. "keywords": [
  412. "alibabacloud",
  413. "client",
  414. "cloud",
  415. "tea"
  416. ],
  417. "support": {
  418. "issues": "https://github.com/aliyun/tea-php/issues",
  419. "source": "https://github.com/aliyun/tea-php"
  420. },
  421. "time": "2023-05-16T06:43:41+00:00"
  422. },
  423. {
  424. "name": "alibabacloud/tea-utils",
  425. "version": "0.2.19",
  426. "source": {
  427. "type": "git",
  428. "url": "https://github.com/alibabacloud-sdk-php/tea-utils.git",
  429. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4"
  430. },
  431. "dist": {
  432. "type": "zip",
  433. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-utils/zipball/8dfc1a93e9415818e93a621b644abbb84981aea4",
  434. "reference": "8dfc1a93e9415818e93a621b644abbb84981aea4",
  435. "shasum": ""
  436. },
  437. "require": {
  438. "alibabacloud/tea": "^3.1",
  439. "php": ">5.5"
  440. },
  441. "type": "library",
  442. "autoload": {
  443. "psr-4": {
  444. "AlibabaCloud\\Tea\\Utils\\": "src"
  445. }
  446. },
  447. "notification-url": "https://packagist.org/downloads/",
  448. "license": [
  449. "Apache-2.0"
  450. ],
  451. "authors": [
  452. {
  453. "name": "Alibaba Cloud SDK",
  454. "email": "[email protected]"
  455. }
  456. ],
  457. "description": "Alibaba Cloud Tea Utils for PHP",
  458. "support": {
  459. "issues": "https://github.com/aliyun/tea-util/issues",
  460. "source": "https://github.com/aliyun/tea-util"
  461. },
  462. "time": "2023-06-26T09:49:19+00:00"
  463. },
  464. {
  465. "name": "alibabacloud/tea-xml",
  466. "version": "0.2.4",
  467. "source": {
  468. "type": "git",
  469. "url": "https://github.com/alibabacloud-sdk-php/tea-xml.git",
  470. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a"
  471. },
  472. "dist": {
  473. "type": "zip",
  474. "url": "https://api.github.com/repos/alibabacloud-sdk-php/tea-xml/zipball/3e0c000bf536224eebbac913c371bef174c0a16a",
  475. "reference": "3e0c000bf536224eebbac913c371bef174c0a16a",
  476. "shasum": ""
  477. },
  478. "require": {
  479. "php": ">5.5"
  480. },
  481. "require-dev": {
  482. "phpunit/phpunit": "*",
  483. "symfony/var-dumper": "*"
  484. },
  485. "type": "library",
  486. "autoload": {
  487. "psr-4": {
  488. "AlibabaCloud\\Tea\\XML\\": "src"
  489. }
  490. },
  491. "notification-url": "https://packagist.org/downloads/",
  492. "license": [
  493. "Apache-2.0"
  494. ],
  495. "authors": [
  496. {
  497. "name": "Alibaba Cloud SDK",
  498. "email": "[email protected]"
  499. }
  500. ],
  501. "description": "Alibaba Cloud Tea XML Library for PHP",
  502. "support": {
  503. "source": "https://github.com/alibabacloud-sdk-php/tea-xml/tree/0.2.4"
  504. },
  505. "time": "2022-08-02T04:12:58+00:00"
  506. },
  507. {
  508. "name": "alipaysdk/openapi",
  509. "version": "dev-master",
  510. "source": {
  511. "type": "git",
  512. "url": "https://github.com/alipay/alipay-sdk-php-all.git",
  513. "reference": "3b86882423995c15992c277ffeb1c8e8b2a4a6c3"
  514. },
  515. "dist": {
  516. "type": "zip",
  517. "url": "https://api.github.com/repos/alipay/alipay-sdk-php-all/zipball/3b86882423995c15992c277ffeb1c8e8b2a4a6c3",
  518. "reference": "3b86882423995c15992c277ffeb1c8e8b2a4a6c3",
  519. "shasum": ""
  520. },
  521. "require": {
  522. "ext-bcmath": "*",
  523. "ext-curl": "*",
  524. "ext-dom": "*",
  525. "ext-json": "*",
  526. "ext-mbstring": "*",
  527. "ext-openssl": "*",
  528. "guzzlehttp/guzzle": "^7.3",
  529. "guzzlehttp/psr7": "^1.7 || ^2.0",
  530. "php": "^7.4 || ^8.0"
  531. },
  532. "require-dev": {
  533. "friendsofphp/php-cs-fixer": "^3.5",
  534. "phpunit/phpunit": "^8.0 || ^9.0"
  535. },
  536. "default-branch": true,
  537. "type": "library",
  538. "autoload": {
  539. "psr-4": {
  540. "Alipay\\OpenAPISDK\\": "v3/src/"
  541. }
  542. },
  543. "notification-url": "https://packagist.org/downloads/",
  544. "license": [
  545. "unlicense"
  546. ],
  547. "authors": [
  548. {
  549. "name": "OpenAPI-Generator contributors",
  550. "homepage": "https://openapi-generator.tech"
  551. }
  552. ],
  553. "description": "支付宝开放平台v3协议文档",
  554. "homepage": "https://openapi-generator.tech",
  555. "keywords": [
  556. "api",
  557. "openapi",
  558. "openapi-generator",
  559. "openapitools",
  560. "php",
  561. "rest",
  562. "sdk"
  563. ],
  564. "support": {
  565. "source": "https://github.com/alipay/alipay-sdk-php-all/tree/master"
  566. },
  567. "time": "2024-03-27T06:32:49+00:00"
  568. },
  569. {
  570. "name": "aws/aws-crt-php",
  571. "version": "v1.2.4",
  572. "source": {
  573. "type": "git",
  574. "url": "https://github.com/awslabs/aws-crt-php.git",
  575. "reference": "eb0c6e4e142224a10b08f49ebf87f32611d162b2"
  576. },
  577. "dist": {
  578. "type": "zip",
  579. "url": "https://api.github.com/repos/awslabs/aws-crt-php/zipball/eb0c6e4e142224a10b08f49ebf87f32611d162b2",
  580. "reference": "eb0c6e4e142224a10b08f49ebf87f32611d162b2",
  581. "shasum": ""
  582. },
  583. "require": {
  584. "php": ">=5.5"
  585. },
  586. "require-dev": {
  587. "phpunit/phpunit": "^4.8.35||^5.6.3||^9.5",
  588. "yoast/phpunit-polyfills": "^1.0"
  589. },
  590. "suggest": {
  591. "ext-awscrt": "Make sure you install awscrt native extension to use any of the functionality."
  592. },
  593. "type": "library",
  594. "autoload": {
  595. "classmap": [
  596. "src/"
  597. ]
  598. },
  599. "notification-url": "https://packagist.org/downloads/",
  600. "license": [
  601. "Apache-2.0"
  602. ],
  603. "authors": [
  604. {
  605. "name": "AWS SDK Common Runtime Team",
  606. "email": "[email protected]"
  607. }
  608. ],
  609. "description": "AWS Common Runtime for PHP",
  610. "homepage": "https://github.com/awslabs/aws-crt-php",
  611. "keywords": [
  612. "amazon",
  613. "aws",
  614. "crt",
  615. "sdk"
  616. ],
  617. "support": {
  618. "issues": "https://github.com/awslabs/aws-crt-php/issues",
  619. "source": "https://github.com/awslabs/aws-crt-php/tree/v1.2.4"
  620. },
  621. "time": "2023-11-08T00:42:13+00:00"
  622. },
  623. {
  624. "name": "aws/aws-sdk-php",
  625. "version": "3.303.1",
  626. "source": {
  627. "type": "git",
  628. "url": "https://github.com/aws/aws-sdk-php.git",
  629. "reference": "e695623e9f6f278bed69172fddb932de3705030f"
  630. },
  631. "dist": {
  632. "type": "zip",
  633. "url": "https://api.github.com/repos/aws/aws-sdk-php/zipball/e695623e9f6f278bed69172fddb932de3705030f",
  634. "reference": "e695623e9f6f278bed69172fddb932de3705030f",
  635. "shasum": ""
  636. },
  637. "require": {
  638. "aws/aws-crt-php": "^1.2.3",
  639. "ext-json": "*",
  640. "ext-pcre": "*",
  641. "ext-simplexml": "*",
  642. "guzzlehttp/guzzle": "^6.5.8 || ^7.4.5",
  643. "guzzlehttp/promises": "^1.4.0 || ^2.0",
  644. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  645. "mtdowling/jmespath.php": "^2.6",
  646. "php": ">=7.2.5",
  647. "psr/http-message": "^1.0 || ^2.0"
  648. },
  649. "require-dev": {
  650. "andrewsville/php-token-reflection": "^1.4",
  651. "aws/aws-php-sns-message-validator": "~1.0",
  652. "behat/behat": "~3.0",
  653. "composer/composer": "^1.10.22",
  654. "dms/phpunit-arraysubset-asserts": "^0.4.0",
  655. "doctrine/cache": "~1.4",
  656. "ext-dom": "*",
  657. "ext-openssl": "*",
  658. "ext-pcntl": "*",
  659. "ext-sockets": "*",
  660. "nette/neon": "^2.3",
  661. "paragonie/random_compat": ">= 2",
  662. "phpunit/phpunit": "^5.6.3 || ^8.5 || ^9.5",
  663. "psr/cache": "^1.0",
  664. "psr/simple-cache": "^1.0",
  665. "sebastian/comparator": "^1.2.3 || ^4.0",
  666. "yoast/phpunit-polyfills": "^1.0"
  667. },
  668. "suggest": {
  669. "aws/aws-php-sns-message-validator": "To validate incoming SNS notifications",
  670. "doctrine/cache": "To use the DoctrineCacheAdapter",
  671. "ext-curl": "To send requests using cURL",
  672. "ext-openssl": "Allows working with CloudFront private distributions and verifying received SNS messages",
  673. "ext-sockets": "To use client-side monitoring"
  674. },
  675. "type": "library",
  676. "extra": {
  677. "branch-alias": {
  678. "dev-master": "3.0-dev"
  679. }
  680. },
  681. "autoload": {
  682. "files": [
  683. "src/functions.php"
  684. ],
  685. "psr-4": {
  686. "Aws\\": "src/"
  687. }
  688. },
  689. "notification-url": "https://packagist.org/downloads/",
  690. "license": [
  691. "Apache-2.0"
  692. ],
  693. "authors": [
  694. {
  695. "name": "Amazon Web Services",
  696. "homepage": "http://aws.amazon.com"
  697. }
  698. ],
  699. "description": "AWS SDK for PHP - Use Amazon Web Services in your PHP project",
  700. "homepage": "http://aws.amazon.com/sdkforphp",
  701. "keywords": [
  702. "amazon",
  703. "aws",
  704. "cloud",
  705. "dynamodb",
  706. "ec2",
  707. "glacier",
  708. "s3",
  709. "sdk"
  710. ],
  711. "support": {
  712. "forum": "https://forums.aws.amazon.com/forum.jspa?forumID=80",
  713. "issues": "https://github.com/aws/aws-sdk-php/issues",
  714. "source": "https://github.com/aws/aws-sdk-php/tree/3.303.1"
  715. },
  716. "time": "2024-04-02T18:09:38+00:00"
  717. },
  718. {
  719. "name": "bacon/bacon-qr-code",
  720. "version": "2.0.8",
  721. "source": {
  722. "type": "git",
  723. "url": "https://github.com/Bacon/BaconQrCode.git",
  724. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22"
  725. },
  726. "dist": {
  727. "type": "zip",
  728. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/8674e51bb65af933a5ffaf1c308a660387c35c22",
  729. "reference": "8674e51bb65af933a5ffaf1c308a660387c35c22",
  730. "shasum": ""
  731. },
  732. "require": {
  733. "dasprid/enum": "^1.0.3",
  734. "ext-iconv": "*",
  735. "php": "^7.1 || ^8.0"
  736. },
  737. "require-dev": {
  738. "phly/keep-a-changelog": "^2.1",
  739. "phpunit/phpunit": "^7 | ^8 | ^9",
  740. "spatie/phpunit-snapshot-assertions": "^4.2.9",
  741. "squizlabs/php_codesniffer": "^3.4"
  742. },
  743. "suggest": {
  744. "ext-imagick": "to generate QR code images"
  745. },
  746. "type": "library",
  747. "autoload": {
  748. "psr-4": {
  749. "BaconQrCode\\": "src/"
  750. }
  751. },
  752. "notification-url": "https://packagist.org/downloads/",
  753. "license": [
  754. "BSD-2-Clause"
  755. ],
  756. "authors": [
  757. {
  758. "name": "Ben Scholzen 'DASPRiD'",
  759. "email": "[email protected]",
  760. "homepage": "https://dasprids.de/",
  761. "role": "Developer"
  762. }
  763. ],
  764. "description": "BaconQrCode is a QR code generator for PHP.",
  765. "homepage": "https://github.com/Bacon/BaconQrCode",
  766. "support": {
  767. "issues": "https://github.com/Bacon/BaconQrCode/issues",
  768. "source": "https://github.com/Bacon/BaconQrCode/tree/2.0.8"
  769. },
  770. "time": "2022-12-07T17:46:57+00:00"
  771. },
  772. {
  773. "name": "beberlei/assert",
  774. "version": "v3.3.2",
  775. "source": {
  776. "type": "git",
  777. "url": "https://github.com/beberlei/assert.git",
  778. "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655"
  779. },
  780. "dist": {
  781. "type": "zip",
  782. "url": "https://api.github.com/repos/beberlei/assert/zipball/cb70015c04be1baee6f5f5c953703347c0ac1655",
  783. "reference": "cb70015c04be1baee6f5f5c953703347c0ac1655",
  784. "shasum": ""
  785. },
  786. "require": {
  787. "ext-ctype": "*",
  788. "ext-json": "*",
  789. "ext-mbstring": "*",
  790. "ext-simplexml": "*",
  791. "php": "^7.0 || ^8.0"
  792. },
  793. "require-dev": {
  794. "friendsofphp/php-cs-fixer": "*",
  795. "phpstan/phpstan": "*",
  796. "phpunit/phpunit": ">=6.0.0",
  797. "yoast/phpunit-polyfills": "^0.1.0"
  798. },
  799. "suggest": {
  800. "ext-intl": "Needed to allow Assertion::count(), Assertion::isCountable(), Assertion::minCount(), and Assertion::maxCount() to operate on ResourceBundles"
  801. },
  802. "type": "library",
  803. "autoload": {
  804. "files": [
  805. "lib/Assert/functions.php"
  806. ],
  807. "psr-4": {
  808. "Assert\\": "lib/Assert"
  809. }
  810. },
  811. "notification-url": "https://packagist.org/downloads/",
  812. "license": [
  813. "BSD-2-Clause"
  814. ],
  815. "authors": [
  816. {
  817. "name": "Benjamin Eberlei",
  818. "email": "[email protected]",
  819. "role": "Lead Developer"
  820. },
  821. {
  822. "name": "Richard Quadling",
  823. "email": "[email protected]",
  824. "role": "Collaborator"
  825. }
  826. ],
  827. "description": "Thin assertion library for input validation in business models.",
  828. "keywords": [
  829. "assert",
  830. "assertion",
  831. "validation"
  832. ],
  833. "support": {
  834. "issues": "https://github.com/beberlei/assert/issues",
  835. "source": "https://github.com/beberlei/assert/tree/v3.3.2"
  836. },
  837. "time": "2021-12-16T21:41:27+00:00"
  838. },
  839. {
  840. "name": "brick/math",
  841. "version": "0.11.0",
  842. "source": {
  843. "type": "git",
  844. "url": "https://github.com/brick/math.git",
  845. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478"
  846. },
  847. "dist": {
  848. "type": "zip",
  849. "url": "https://api.github.com/repos/brick/math/zipball/0ad82ce168c82ba30d1c01ec86116ab52f589478",
  850. "reference": "0ad82ce168c82ba30d1c01ec86116ab52f589478",
  851. "shasum": ""
  852. },
  853. "require": {
  854. "php": "^8.0"
  855. },
  856. "require-dev": {
  857. "php-coveralls/php-coveralls": "^2.2",
  858. "phpunit/phpunit": "^9.0",
  859. "vimeo/psalm": "5.0.0"
  860. },
  861. "type": "library",
  862. "autoload": {
  863. "psr-4": {
  864. "Brick\\Math\\": "src/"
  865. }
  866. },
  867. "notification-url": "https://packagist.org/downloads/",
  868. "license": [
  869. "MIT"
  870. ],
  871. "description": "Arbitrary-precision arithmetic library",
  872. "keywords": [
  873. "Arbitrary-precision",
  874. "BigInteger",
  875. "BigRational",
  876. "arithmetic",
  877. "bigdecimal",
  878. "bignum",
  879. "brick",
  880. "math"
  881. ],
  882. "support": {
  883. "issues": "https://github.com/brick/math/issues",
  884. "source": "https://github.com/brick/math/tree/0.11.0"
  885. },
  886. "funding": [
  887. {
  888. "url": "https://github.com/BenMorel",
  889. "type": "github"
  890. }
  891. ],
  892. "time": "2023-01-15T23:15:59+00:00"
  893. },
  894. {
  895. "name": "carbonphp/carbon-doctrine-types",
  896. "version": "3.2.0",
  897. "source": {
  898. "type": "git",
  899. "url": "https://github.com/CarbonPHP/carbon-doctrine-types.git",
  900. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d"
  901. },
  902. "dist": {
  903. "type": "zip",
  904. "url": "https://api.github.com/repos/CarbonPHP/carbon-doctrine-types/zipball/18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  905. "reference": "18ba5ddfec8976260ead6e866180bd5d2f71aa1d",
  906. "shasum": ""
  907. },
  908. "require": {
  909. "php": "^8.1"
  910. },
  911. "conflict": {
  912. "doctrine/dbal": "<4.0.0 || >=5.0.0"
  913. },
  914. "require-dev": {
  915. "doctrine/dbal": "^4.0.0",
  916. "nesbot/carbon": "^2.71.0 || ^3.0.0",
  917. "phpunit/phpunit": "^10.3"
  918. },
  919. "type": "library",
  920. "autoload": {
  921. "psr-4": {
  922. "Carbon\\Doctrine\\": "src/Carbon/Doctrine/"
  923. }
  924. },
  925. "notification-url": "https://packagist.org/downloads/",
  926. "license": [
  927. "MIT"
  928. ],
  929. "authors": [
  930. {
  931. "name": "KyleKatarn",
  932. "email": "[email protected]"
  933. }
  934. ],
  935. "description": "Types to use Carbon in Doctrine",
  936. "keywords": [
  937. "carbon",
  938. "date",
  939. "datetime",
  940. "doctrine",
  941. "time"
  942. ],
  943. "support": {
  944. "issues": "https://github.com/CarbonPHP/carbon-doctrine-types/issues",
  945. "source": "https://github.com/CarbonPHP/carbon-doctrine-types/tree/3.2.0"
  946. },
  947. "funding": [
  948. {
  949. "url": "https://github.com/kylekatarnls",
  950. "type": "github"
  951. },
  952. {
  953. "url": "https://opencollective.com/Carbon",
  954. "type": "open_collective"
  955. },
  956. {
  957. "url": "https://tidelift.com/funding/github/packagist/nesbot/carbon",
  958. "type": "tidelift"
  959. }
  960. ],
  961. "time": "2024-02-09T16:56:22+00:00"
  962. },
  963. {
  964. "name": "clue/stream-filter",
  965. "version": "v1.7.0",
  966. "source": {
  967. "type": "git",
  968. "url": "https://github.com/clue/stream-filter.git",
  969. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7"
  970. },
  971. "dist": {
  972. "type": "zip",
  973. "url": "https://api.github.com/repos/clue/stream-filter/zipball/049509fef80032cb3f051595029ab75b49a3c2f7",
  974. "reference": "049509fef80032cb3f051595029ab75b49a3c2f7",
  975. "shasum": ""
  976. },
  977. "require": {
  978. "php": ">=5.3"
  979. },
  980. "require-dev": {
  981. "phpunit/phpunit": "^9.6 || ^5.7 || ^4.8.36"
  982. },
  983. "type": "library",
  984. "autoload": {
  985. "files": [
  986. "src/functions_include.php"
  987. ],
  988. "psr-4": {
  989. "Clue\\StreamFilter\\": "src/"
  990. }
  991. },
  992. "notification-url": "https://packagist.org/downloads/",
  993. "license": [
  994. "MIT"
  995. ],
  996. "authors": [
  997. {
  998. "name": "Christian Lück",
  999. "email": "[email protected]"
  1000. }
  1001. ],
  1002. "description": "A simple and modern approach to stream filtering in PHP",
  1003. "homepage": "https://github.com/clue/stream-filter",
  1004. "keywords": [
  1005. "bucket brigade",
  1006. "callback",
  1007. "filter",
  1008. "php_user_filter",
  1009. "stream",
  1010. "stream_filter_append",
  1011. "stream_filter_register"
  1012. ],
  1013. "support": {
  1014. "issues": "https://github.com/clue/stream-filter/issues",
  1015. "source": "https://github.com/clue/stream-filter/tree/v1.7.0"
  1016. },
  1017. "funding": [
  1018. {
  1019. "url": "https://clue.engineering/support",
  1020. "type": "custom"
  1021. },
  1022. {
  1023. "url": "https://github.com/clue",
  1024. "type": "github"
  1025. }
  1026. ],
  1027. "time": "2023-12-20T15:40:13+00:00"
  1028. },
  1029. {
  1030. "name": "composer/ca-bundle",
  1031. "version": "1.5.0",
  1032. "source": {
  1033. "type": "git",
  1034. "url": "https://github.com/composer/ca-bundle.git",
  1035. "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99"
  1036. },
  1037. "dist": {
  1038. "type": "zip",
  1039. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/0c5ccfcfea312b5c5a190a21ac5cef93f74baf99",
  1040. "reference": "0c5ccfcfea312b5c5a190a21ac5cef93f74baf99",
  1041. "shasum": ""
  1042. },
  1043. "require": {
  1044. "ext-openssl": "*",
  1045. "ext-pcre": "*",
  1046. "php": "^7.2 || ^8.0"
  1047. },
  1048. "require-dev": {
  1049. "phpstan/phpstan": "^1.10",
  1050. "psr/log": "^1.0",
  1051. "symfony/phpunit-bridge": "^4.2 || ^5",
  1052. "symfony/process": "^4.0 || ^5.0 || ^6.0 || ^7.0"
  1053. },
  1054. "type": "library",
  1055. "extra": {
  1056. "branch-alias": {
  1057. "dev-main": "1.x-dev"
  1058. }
  1059. },
  1060. "autoload": {
  1061. "psr-4": {
  1062. "Composer\\CaBundle\\": "src"
  1063. }
  1064. },
  1065. "notification-url": "https://packagist.org/downloads/",
  1066. "license": [
  1067. "MIT"
  1068. ],
  1069. "authors": [
  1070. {
  1071. "name": "Jordi Boggiano",
  1072. "email": "[email protected]",
  1073. "homepage": "http://seld.be"
  1074. }
  1075. ],
  1076. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  1077. "keywords": [
  1078. "cabundle",
  1079. "cacert",
  1080. "certificate",
  1081. "ssl",
  1082. "tls"
  1083. ],
  1084. "support": {
  1085. "irc": "irc://irc.freenode.org/composer",
  1086. "issues": "https://github.com/composer/ca-bundle/issues",
  1087. "source": "https://github.com/composer/ca-bundle/tree/1.5.0"
  1088. },
  1089. "funding": [
  1090. {
  1091. "url": "https://packagist.com",
  1092. "type": "custom"
  1093. },
  1094. {
  1095. "url": "https://github.com/composer",
  1096. "type": "github"
  1097. },
  1098. {
  1099. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  1100. "type": "tidelift"
  1101. }
  1102. ],
  1103. "time": "2024-03-15T14:00:32+00:00"
  1104. },
  1105. {
  1106. "name": "dasprid/enum",
  1107. "version": "1.0.5",
  1108. "source": {
  1109. "type": "git",
  1110. "url": "https://github.com/DASPRiD/Enum.git",
  1111. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016"
  1112. },
  1113. "dist": {
  1114. "type": "zip",
  1115. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/6faf451159fb8ba4126b925ed2d78acfce0dc016",
  1116. "reference": "6faf451159fb8ba4126b925ed2d78acfce0dc016",
  1117. "shasum": ""
  1118. },
  1119. "require": {
  1120. "php": ">=7.1 <9.0"
  1121. },
  1122. "require-dev": {
  1123. "phpunit/phpunit": "^7 | ^8 | ^9",
  1124. "squizlabs/php_codesniffer": "*"
  1125. },
  1126. "type": "library",
  1127. "autoload": {
  1128. "psr-4": {
  1129. "DASPRiD\\Enum\\": "src/"
  1130. }
  1131. },
  1132. "notification-url": "https://packagist.org/downloads/",
  1133. "license": [
  1134. "BSD-2-Clause"
  1135. ],
  1136. "authors": [
  1137. {
  1138. "name": "Ben Scholzen 'DASPRiD'",
  1139. "email": "[email protected]",
  1140. "homepage": "https://dasprids.de/",
  1141. "role": "Developer"
  1142. }
  1143. ],
  1144. "description": "PHP 7.1 enum implementation",
  1145. "keywords": [
  1146. "enum",
  1147. "map"
  1148. ],
  1149. "support": {
  1150. "issues": "https://github.com/DASPRiD/Enum/issues",
  1151. "source": "https://github.com/DASPRiD/Enum/tree/1.0.5"
  1152. },
  1153. "time": "2023-08-25T16:18:39+00:00"
  1154. },
  1155. {
  1156. "name": "doctrine/inflector",
  1157. "version": "2.0.10",
  1158. "source": {
  1159. "type": "git",
  1160. "url": "https://github.com/doctrine/inflector.git",
  1161. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc"
  1162. },
  1163. "dist": {
  1164. "type": "zip",
  1165. "url": "https://api.github.com/repos/doctrine/inflector/zipball/5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1166. "reference": "5817d0659c5b50c9b950feb9af7b9668e2c436bc",
  1167. "shasum": ""
  1168. },
  1169. "require": {
  1170. "php": "^7.2 || ^8.0"
  1171. },
  1172. "require-dev": {
  1173. "doctrine/coding-standard": "^11.0",
  1174. "phpstan/phpstan": "^1.8",
  1175. "phpstan/phpstan-phpunit": "^1.1",
  1176. "phpstan/phpstan-strict-rules": "^1.3",
  1177. "phpunit/phpunit": "^8.5 || ^9.5",
  1178. "vimeo/psalm": "^4.25 || ^5.4"
  1179. },
  1180. "type": "library",
  1181. "autoload": {
  1182. "psr-4": {
  1183. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1184. }
  1185. },
  1186. "notification-url": "https://packagist.org/downloads/",
  1187. "license": [
  1188. "MIT"
  1189. ],
  1190. "authors": [
  1191. {
  1192. "name": "Guilherme Blanco",
  1193. "email": "[email protected]"
  1194. },
  1195. {
  1196. "name": "Roman Borschel",
  1197. "email": "[email protected]"
  1198. },
  1199. {
  1200. "name": "Benjamin Eberlei",
  1201. "email": "[email protected]"
  1202. },
  1203. {
  1204. "name": "Jonathan Wage",
  1205. "email": "[email protected]"
  1206. },
  1207. {
  1208. "name": "Johannes Schmitt",
  1209. "email": "[email protected]"
  1210. }
  1211. ],
  1212. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1213. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1214. "keywords": [
  1215. "inflection",
  1216. "inflector",
  1217. "lowercase",
  1218. "manipulation",
  1219. "php",
  1220. "plural",
  1221. "singular",
  1222. "strings",
  1223. "uppercase",
  1224. "words"
  1225. ],
  1226. "support": {
  1227. "issues": "https://github.com/doctrine/inflector/issues",
  1228. "source": "https://github.com/doctrine/inflector/tree/2.0.10"
  1229. },
  1230. "funding": [
  1231. {
  1232. "url": "https://www.doctrine-project.org/sponsorship.html",
  1233. "type": "custom"
  1234. },
  1235. {
  1236. "url": "https://www.patreon.com/phpdoctrine",
  1237. "type": "patreon"
  1238. },
  1239. {
  1240. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  1241. "type": "tidelift"
  1242. }
  1243. ],
  1244. "time": "2024-02-18T20:23:39+00:00"
  1245. },
  1246. {
  1247. "name": "endroid/qr-code",
  1248. "version": "5.0.7",
  1249. "source": {
  1250. "type": "git",
  1251. "url": "https://github.com/endroid/qr-code.git",
  1252. "reference": "0cc00f0626b73bc71a1ea17af01387d0ac75e046"
  1253. },
  1254. "dist": {
  1255. "type": "zip",
  1256. "url": "https://api.github.com/repos/endroid/qr-code/zipball/0cc00f0626b73bc71a1ea17af01387d0ac75e046",
  1257. "reference": "0cc00f0626b73bc71a1ea17af01387d0ac75e046",
  1258. "shasum": ""
  1259. },
  1260. "require": {
  1261. "bacon/bacon-qr-code": "^2.0.5",
  1262. "php": "^8.1"
  1263. },
  1264. "conflict": {
  1265. "khanamiryan/qrcode-detector-decoder": "^1.0.6"
  1266. },
  1267. "require-dev": {
  1268. "endroid/quality": "dev-main",
  1269. "ext-gd": "*",
  1270. "khanamiryan/qrcode-detector-decoder": "^1.0.4||^2.0.2",
  1271. "setasign/fpdf": "^1.8.2"
  1272. },
  1273. "suggest": {
  1274. "ext-gd": "Enables you to write PNG images",
  1275. "khanamiryan/qrcode-detector-decoder": "Enables you to use the image validator",
  1276. "roave/security-advisories": "Makes sure package versions with known security issues are not installed",
  1277. "setasign/fpdf": "Enables you to use the PDF writer"
  1278. },
  1279. "type": "library",
  1280. "extra": {
  1281. "branch-alias": {
  1282. "dev-main": "5.x-dev"
  1283. }
  1284. },
  1285. "autoload": {
  1286. "psr-4": {
  1287. "Endroid\\QrCode\\": "src/"
  1288. }
  1289. },
  1290. "notification-url": "https://packagist.org/downloads/",
  1291. "license": [
  1292. "MIT"
  1293. ],
  1294. "authors": [
  1295. {
  1296. "name": "Jeroen van den Enden",
  1297. "email": "[email protected]"
  1298. }
  1299. ],
  1300. "description": "Endroid QR Code",
  1301. "homepage": "https://github.com/endroid/qr-code",
  1302. "keywords": [
  1303. "code",
  1304. "endroid",
  1305. "php",
  1306. "qr",
  1307. "qrcode"
  1308. ],
  1309. "support": {
  1310. "issues": "https://github.com/endroid/qr-code/issues",
  1311. "source": "https://github.com/endroid/qr-code/tree/5.0.7"
  1312. },
  1313. "funding": [
  1314. {
  1315. "url": "https://github.com/endroid",
  1316. "type": "github"
  1317. }
  1318. ],
  1319. "time": "2024-03-08T11:24:40+00:00"
  1320. },
  1321. {
  1322. "name": "geoip2/geoip2",
  1323. "version": "v3.0.0",
  1324. "source": {
  1325. "type": "git",
  1326. "url": "https://github.com/maxmind/GeoIP2-php.git",
  1327. "reference": "1a802ce9356cdd1c6b681c030fd9563750e11e6a"
  1328. },
  1329. "dist": {
  1330. "type": "zip",
  1331. "url": "https://api.github.com/repos/maxmind/GeoIP2-php/zipball/1a802ce9356cdd1c6b681c030fd9563750e11e6a",
  1332. "reference": "1a802ce9356cdd1c6b681c030fd9563750e11e6a",
  1333. "shasum": ""
  1334. },
  1335. "require": {
  1336. "ext-json": "*",
  1337. "maxmind-db/reader": "^1.11.1",
  1338. "maxmind/web-service-common": "~0.8",
  1339. "php": ">=8.1"
  1340. },
  1341. "require-dev": {
  1342. "friendsofphp/php-cs-fixer": "3.*",
  1343. "phpstan/phpstan": "*",
  1344. "phpunit/phpunit": "^10.0",
  1345. "squizlabs/php_codesniffer": "3.*"
  1346. },
  1347. "type": "library",
  1348. "autoload": {
  1349. "psr-4": {
  1350. "GeoIp2\\": "src"
  1351. }
  1352. },
  1353. "notification-url": "https://packagist.org/downloads/",
  1354. "license": [
  1355. "Apache-2.0"
  1356. ],
  1357. "authors": [
  1358. {
  1359. "name": "Gregory J. Oschwald",
  1360. "email": "[email protected]",
  1361. "homepage": "https://www.maxmind.com/"
  1362. }
  1363. ],
  1364. "description": "MaxMind GeoIP2 PHP API",
  1365. "homepage": "https://github.com/maxmind/GeoIP2-php",
  1366. "keywords": [
  1367. "IP",
  1368. "geoip",
  1369. "geoip2",
  1370. "geolocation",
  1371. "maxmind"
  1372. ],
  1373. "support": {
  1374. "issues": "https://github.com/maxmind/GeoIP2-php/issues",
  1375. "source": "https://github.com/maxmind/GeoIP2-php/tree/v3.0.0"
  1376. },
  1377. "time": "2023-12-04T17:16:34+00:00"
  1378. },
  1379. {
  1380. "name": "guzzlehttp/guzzle",
  1381. "version": "7.8.1",
  1382. "source": {
  1383. "type": "git",
  1384. "url": "https://github.com/guzzle/guzzle.git",
  1385. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104"
  1386. },
  1387. "dist": {
  1388. "type": "zip",
  1389. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/41042bc7ab002487b876a0683fc8dce04ddce104",
  1390. "reference": "41042bc7ab002487b876a0683fc8dce04ddce104",
  1391. "shasum": ""
  1392. },
  1393. "require": {
  1394. "ext-json": "*",
  1395. "guzzlehttp/promises": "^1.5.3 || ^2.0.1",
  1396. "guzzlehttp/psr7": "^1.9.1 || ^2.5.1",
  1397. "php": "^7.2.5 || ^8.0",
  1398. "psr/http-client": "^1.0",
  1399. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1400. },
  1401. "provide": {
  1402. "psr/http-client-implementation": "1.0"
  1403. },
  1404. "require-dev": {
  1405. "bamarni/composer-bin-plugin": "^1.8.2",
  1406. "ext-curl": "*",
  1407. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  1408. "php-http/message-factory": "^1.1",
  1409. "phpunit/phpunit": "^8.5.36 || ^9.6.15",
  1410. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1411. },
  1412. "suggest": {
  1413. "ext-curl": "Required for CURL handler support",
  1414. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1415. "psr/log": "Required for using the Log middleware"
  1416. },
  1417. "type": "library",
  1418. "extra": {
  1419. "bamarni-bin": {
  1420. "bin-links": true,
  1421. "forward-command": false
  1422. }
  1423. },
  1424. "autoload": {
  1425. "files": [
  1426. "src/functions_include.php"
  1427. ],
  1428. "psr-4": {
  1429. "GuzzleHttp\\": "src/"
  1430. }
  1431. },
  1432. "notification-url": "https://packagist.org/downloads/",
  1433. "license": [
  1434. "MIT"
  1435. ],
  1436. "authors": [
  1437. {
  1438. "name": "Graham Campbell",
  1439. "email": "[email protected]",
  1440. "homepage": "https://github.com/GrahamCampbell"
  1441. },
  1442. {
  1443. "name": "Michael Dowling",
  1444. "email": "[email protected]",
  1445. "homepage": "https://github.com/mtdowling"
  1446. },
  1447. {
  1448. "name": "Jeremy Lindblom",
  1449. "email": "[email protected]",
  1450. "homepage": "https://github.com/jeremeamia"
  1451. },
  1452. {
  1453. "name": "George Mponos",
  1454. "email": "[email protected]",
  1455. "homepage": "https://github.com/gmponos"
  1456. },
  1457. {
  1458. "name": "Tobias Nyholm",
  1459. "email": "[email protected]",
  1460. "homepage": "https://github.com/Nyholm"
  1461. },
  1462. {
  1463. "name": "Márk Sági-Kazár",
  1464. "email": "[email protected]",
  1465. "homepage": "https://github.com/sagikazarmark"
  1466. },
  1467. {
  1468. "name": "Tobias Schultze",
  1469. "email": "[email protected]",
  1470. "homepage": "https://github.com/Tobion"
  1471. }
  1472. ],
  1473. "description": "Guzzle is a PHP HTTP client library",
  1474. "keywords": [
  1475. "client",
  1476. "curl",
  1477. "framework",
  1478. "http",
  1479. "http client",
  1480. "psr-18",
  1481. "psr-7",
  1482. "rest",
  1483. "web service"
  1484. ],
  1485. "support": {
  1486. "issues": "https://github.com/guzzle/guzzle/issues",
  1487. "source": "https://github.com/guzzle/guzzle/tree/7.8.1"
  1488. },
  1489. "funding": [
  1490. {
  1491. "url": "https://github.com/GrahamCampbell",
  1492. "type": "github"
  1493. },
  1494. {
  1495. "url": "https://github.com/Nyholm",
  1496. "type": "github"
  1497. },
  1498. {
  1499. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1500. "type": "tidelift"
  1501. }
  1502. ],
  1503. "time": "2023-12-03T20:35:24+00:00"
  1504. },
  1505. {
  1506. "name": "guzzlehttp/promises",
  1507. "version": "2.0.2",
  1508. "source": {
  1509. "type": "git",
  1510. "url": "https://github.com/guzzle/promises.git",
  1511. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223"
  1512. },
  1513. "dist": {
  1514. "type": "zip",
  1515. "url": "https://api.github.com/repos/guzzle/promises/zipball/bbff78d96034045e58e13dedd6ad91b5d1253223",
  1516. "reference": "bbff78d96034045e58e13dedd6ad91b5d1253223",
  1517. "shasum": ""
  1518. },
  1519. "require": {
  1520. "php": "^7.2.5 || ^8.0"
  1521. },
  1522. "require-dev": {
  1523. "bamarni/composer-bin-plugin": "^1.8.2",
  1524. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1525. },
  1526. "type": "library",
  1527. "extra": {
  1528. "bamarni-bin": {
  1529. "bin-links": true,
  1530. "forward-command": false
  1531. }
  1532. },
  1533. "autoload": {
  1534. "psr-4": {
  1535. "GuzzleHttp\\Promise\\": "src/"
  1536. }
  1537. },
  1538. "notification-url": "https://packagist.org/downloads/",
  1539. "license": [
  1540. "MIT"
  1541. ],
  1542. "authors": [
  1543. {
  1544. "name": "Graham Campbell",
  1545. "email": "[email protected]",
  1546. "homepage": "https://github.com/GrahamCampbell"
  1547. },
  1548. {
  1549. "name": "Michael Dowling",
  1550. "email": "[email protected]",
  1551. "homepage": "https://github.com/mtdowling"
  1552. },
  1553. {
  1554. "name": "Tobias Nyholm",
  1555. "email": "[email protected]",
  1556. "homepage": "https://github.com/Nyholm"
  1557. },
  1558. {
  1559. "name": "Tobias Schultze",
  1560. "email": "[email protected]",
  1561. "homepage": "https://github.com/Tobion"
  1562. }
  1563. ],
  1564. "description": "Guzzle promises library",
  1565. "keywords": [
  1566. "promise"
  1567. ],
  1568. "support": {
  1569. "issues": "https://github.com/guzzle/promises/issues",
  1570. "source": "https://github.com/guzzle/promises/tree/2.0.2"
  1571. },
  1572. "funding": [
  1573. {
  1574. "url": "https://github.com/GrahamCampbell",
  1575. "type": "github"
  1576. },
  1577. {
  1578. "url": "https://github.com/Nyholm",
  1579. "type": "github"
  1580. },
  1581. {
  1582. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1583. "type": "tidelift"
  1584. }
  1585. ],
  1586. "time": "2023-12-03T20:19:20+00:00"
  1587. },
  1588. {
  1589. "name": "guzzlehttp/psr7",
  1590. "version": "2.6.2",
  1591. "source": {
  1592. "type": "git",
  1593. "url": "https://github.com/guzzle/psr7.git",
  1594. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221"
  1595. },
  1596. "dist": {
  1597. "type": "zip",
  1598. "url": "https://api.github.com/repos/guzzle/psr7/zipball/45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1599. "reference": "45b30f99ac27b5ca93cb4831afe16285f57b8221",
  1600. "shasum": ""
  1601. },
  1602. "require": {
  1603. "php": "^7.2.5 || ^8.0",
  1604. "psr/http-factory": "^1.0",
  1605. "psr/http-message": "^1.1 || ^2.0",
  1606. "ralouphie/getallheaders": "^3.0"
  1607. },
  1608. "provide": {
  1609. "psr/http-factory-implementation": "1.0",
  1610. "psr/http-message-implementation": "1.0"
  1611. },
  1612. "require-dev": {
  1613. "bamarni/composer-bin-plugin": "^1.8.2",
  1614. "http-interop/http-factory-tests": "^0.9",
  1615. "phpunit/phpunit": "^8.5.36 || ^9.6.15"
  1616. },
  1617. "suggest": {
  1618. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1619. },
  1620. "type": "library",
  1621. "extra": {
  1622. "bamarni-bin": {
  1623. "bin-links": true,
  1624. "forward-command": false
  1625. }
  1626. },
  1627. "autoload": {
  1628. "psr-4": {
  1629. "GuzzleHttp\\Psr7\\": "src/"
  1630. }
  1631. },
  1632. "notification-url": "https://packagist.org/downloads/",
  1633. "license": [
  1634. "MIT"
  1635. ],
  1636. "authors": [
  1637. {
  1638. "name": "Graham Campbell",
  1639. "email": "[email protected]",
  1640. "homepage": "https://github.com/GrahamCampbell"
  1641. },
  1642. {
  1643. "name": "Michael Dowling",
  1644. "email": "[email protected]",
  1645. "homepage": "https://github.com/mtdowling"
  1646. },
  1647. {
  1648. "name": "George Mponos",
  1649. "email": "[email protected]",
  1650. "homepage": "https://github.com/gmponos"
  1651. },
  1652. {
  1653. "name": "Tobias Nyholm",
  1654. "email": "[email protected]",
  1655. "homepage": "https://github.com/Nyholm"
  1656. },
  1657. {
  1658. "name": "Márk Sági-Kazár",
  1659. "email": "[email protected]",
  1660. "homepage": "https://github.com/sagikazarmark"
  1661. },
  1662. {
  1663. "name": "Tobias Schultze",
  1664. "email": "[email protected]",
  1665. "homepage": "https://github.com/Tobion"
  1666. },
  1667. {
  1668. "name": "Márk Sági-Kazár",
  1669. "email": "[email protected]",
  1670. "homepage": "https://sagikazarmark.hu"
  1671. }
  1672. ],
  1673. "description": "PSR-7 message implementation that also provides common utility methods",
  1674. "keywords": [
  1675. "http",
  1676. "message",
  1677. "psr-7",
  1678. "request",
  1679. "response",
  1680. "stream",
  1681. "uri",
  1682. "url"
  1683. ],
  1684. "support": {
  1685. "issues": "https://github.com/guzzle/psr7/issues",
  1686. "source": "https://github.com/guzzle/psr7/tree/2.6.2"
  1687. },
  1688. "funding": [
  1689. {
  1690. "url": "https://github.com/GrahamCampbell",
  1691. "type": "github"
  1692. },
  1693. {
  1694. "url": "https://github.com/Nyholm",
  1695. "type": "github"
  1696. },
  1697. {
  1698. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1699. "type": "tidelift"
  1700. }
  1701. ],
  1702. "time": "2023-12-03T20:05:35+00:00"
  1703. },
  1704. {
  1705. "name": "illuminate/collections",
  1706. "version": "v11.2.0",
  1707. "source": {
  1708. "type": "git",
  1709. "url": "https://github.com/illuminate/collections.git",
  1710. "reference": "4cbbdae4ef3654378e28e7ebd43cad91adf4a658"
  1711. },
  1712. "dist": {
  1713. "type": "zip",
  1714. "url": "https://api.github.com/repos/illuminate/collections/zipball/4cbbdae4ef3654378e28e7ebd43cad91adf4a658",
  1715. "reference": "4cbbdae4ef3654378e28e7ebd43cad91adf4a658",
  1716. "shasum": ""
  1717. },
  1718. "require": {
  1719. "illuminate/conditionable": "^11.0",
  1720. "illuminate/contracts": "^11.0",
  1721. "illuminate/macroable": "^11.0",
  1722. "php": "^8.2"
  1723. },
  1724. "suggest": {
  1725. "symfony/var-dumper": "Required to use the dump method (^7.0)."
  1726. },
  1727. "type": "library",
  1728. "extra": {
  1729. "branch-alias": {
  1730. "dev-master": "11.x-dev"
  1731. }
  1732. },
  1733. "autoload": {
  1734. "files": [
  1735. "helpers.php"
  1736. ],
  1737. "psr-4": {
  1738. "Illuminate\\Support\\": ""
  1739. }
  1740. },
  1741. "notification-url": "https://packagist.org/downloads/",
  1742. "license": [
  1743. "MIT"
  1744. ],
  1745. "authors": [
  1746. {
  1747. "name": "Taylor Otwell",
  1748. "email": "[email protected]"
  1749. }
  1750. ],
  1751. "description": "The Illuminate Collections package.",
  1752. "homepage": "https://laravel.com",
  1753. "support": {
  1754. "issues": "https://github.com/laravel/framework/issues",
  1755. "source": "https://github.com/laravel/framework"
  1756. },
  1757. "time": "2024-03-21T09:12:36+00:00"
  1758. },
  1759. {
  1760. "name": "illuminate/conditionable",
  1761. "version": "v11.2.0",
  1762. "source": {
  1763. "type": "git",
  1764. "url": "https://github.com/illuminate/conditionable.git",
  1765. "reference": "e4c5c9b855c60c7bb16ce92ca9372684448cce47"
  1766. },
  1767. "dist": {
  1768. "type": "zip",
  1769. "url": "https://api.github.com/repos/illuminate/conditionable/zipball/e4c5c9b855c60c7bb16ce92ca9372684448cce47",
  1770. "reference": "e4c5c9b855c60c7bb16ce92ca9372684448cce47",
  1771. "shasum": ""
  1772. },
  1773. "require": {
  1774. "php": "^8.0.2"
  1775. },
  1776. "type": "library",
  1777. "extra": {
  1778. "branch-alias": {
  1779. "dev-master": "11.x-dev"
  1780. }
  1781. },
  1782. "autoload": {
  1783. "psr-4": {
  1784. "Illuminate\\Support\\": ""
  1785. }
  1786. },
  1787. "notification-url": "https://packagist.org/downloads/",
  1788. "license": [
  1789. "MIT"
  1790. ],
  1791. "authors": [
  1792. {
  1793. "name": "Taylor Otwell",
  1794. "email": "[email protected]"
  1795. }
  1796. ],
  1797. "description": "The Illuminate Conditionable package.",
  1798. "homepage": "https://laravel.com",
  1799. "support": {
  1800. "issues": "https://github.com/laravel/framework/issues",
  1801. "source": "https://github.com/laravel/framework"
  1802. },
  1803. "time": "2023-02-07T10:39:14+00:00"
  1804. },
  1805. {
  1806. "name": "illuminate/container",
  1807. "version": "v11.2.0",
  1808. "source": {
  1809. "type": "git",
  1810. "url": "https://github.com/illuminate/container.git",
  1811. "reference": "78cbe88cdc7300efd4cf90244abec2e3c42219bb"
  1812. },
  1813. "dist": {
  1814. "type": "zip",
  1815. "url": "https://api.github.com/repos/illuminate/container/zipball/78cbe88cdc7300efd4cf90244abec2e3c42219bb",
  1816. "reference": "78cbe88cdc7300efd4cf90244abec2e3c42219bb",
  1817. "shasum": ""
  1818. },
  1819. "require": {
  1820. "illuminate/contracts": "^11.0",
  1821. "php": "^8.2",
  1822. "psr/container": "^1.1.1|^2.0.1"
  1823. },
  1824. "provide": {
  1825. "psr/container-implementation": "1.1|2.0"
  1826. },
  1827. "type": "library",
  1828. "extra": {
  1829. "branch-alias": {
  1830. "dev-master": "11.x-dev"
  1831. }
  1832. },
  1833. "autoload": {
  1834. "psr-4": {
  1835. "Illuminate\\Container\\": ""
  1836. }
  1837. },
  1838. "notification-url": "https://packagist.org/downloads/",
  1839. "license": [
  1840. "MIT"
  1841. ],
  1842. "authors": [
  1843. {
  1844. "name": "Taylor Otwell",
  1845. "email": "[email protected]"
  1846. }
  1847. ],
  1848. "description": "The Illuminate Container package.",
  1849. "homepage": "https://laravel.com",
  1850. "support": {
  1851. "issues": "https://github.com/laravel/framework/issues",
  1852. "source": "https://github.com/laravel/framework"
  1853. },
  1854. "time": "2023-09-15T13:17:41+00:00"
  1855. },
  1856. {
  1857. "name": "illuminate/contracts",
  1858. "version": "v11.2.0",
  1859. "source": {
  1860. "type": "git",
  1861. "url": "https://github.com/illuminate/contracts.git",
  1862. "reference": "fae548ad43f569fc506f40385b2e0dcf1f4eb2c9"
  1863. },
  1864. "dist": {
  1865. "type": "zip",
  1866. "url": "https://api.github.com/repos/illuminate/contracts/zipball/fae548ad43f569fc506f40385b2e0dcf1f4eb2c9",
  1867. "reference": "fae548ad43f569fc506f40385b2e0dcf1f4eb2c9",
  1868. "shasum": ""
  1869. },
  1870. "require": {
  1871. "php": "^8.2",
  1872. "psr/container": "^1.1.1|^2.0.1",
  1873. "psr/simple-cache": "^1.0|^2.0|^3.0"
  1874. },
  1875. "type": "library",
  1876. "extra": {
  1877. "branch-alias": {
  1878. "dev-master": "11.x-dev"
  1879. }
  1880. },
  1881. "autoload": {
  1882. "psr-4": {
  1883. "Illuminate\\Contracts\\": ""
  1884. }
  1885. },
  1886. "notification-url": "https://packagist.org/downloads/",
  1887. "license": [
  1888. "MIT"
  1889. ],
  1890. "authors": [
  1891. {
  1892. "name": "Taylor Otwell",
  1893. "email": "[email protected]"
  1894. }
  1895. ],
  1896. "description": "The Illuminate Contracts package.",
  1897. "homepage": "https://laravel.com",
  1898. "support": {
  1899. "issues": "https://github.com/laravel/framework/issues",
  1900. "source": "https://github.com/laravel/framework"
  1901. },
  1902. "time": "2024-02-23T15:52:10+00:00"
  1903. },
  1904. {
  1905. "name": "illuminate/database",
  1906. "version": "v11.2.0",
  1907. "source": {
  1908. "type": "git",
  1909. "url": "https://github.com/illuminate/database.git",
  1910. "reference": "c7ee848e6a0bc5466c17549bdd118ca99283a65f"
  1911. },
  1912. "dist": {
  1913. "type": "zip",
  1914. "url": "https://api.github.com/repos/illuminate/database/zipball/c7ee848e6a0bc5466c17549bdd118ca99283a65f",
  1915. "reference": "c7ee848e6a0bc5466c17549bdd118ca99283a65f",
  1916. "shasum": ""
  1917. },
  1918. "require": {
  1919. "brick/math": "^0.9.3|^0.10.2|^0.11|^0.12",
  1920. "ext-pdo": "*",
  1921. "illuminate/collections": "^11.0",
  1922. "illuminate/container": "^11.0",
  1923. "illuminate/contracts": "^11.0",
  1924. "illuminate/macroable": "^11.0",
  1925. "illuminate/support": "^11.0",
  1926. "php": "^8.2"
  1927. },
  1928. "suggest": {
  1929. "ext-filter": "Required to use the Postgres database driver.",
  1930. "fakerphp/faker": "Required to use the eloquent factory builder (^1.21).",
  1931. "illuminate/console": "Required to use the database commands (^11.0).",
  1932. "illuminate/events": "Required to use the observers with Eloquent (^11.0).",
  1933. "illuminate/filesystem": "Required to use the migrations (^11.0).",
  1934. "illuminate/pagination": "Required to paginate the result set (^11.0).",
  1935. "symfony/finder": "Required to use Eloquent model factories (^7.0)."
  1936. },
  1937. "type": "library",
  1938. "extra": {
  1939. "branch-alias": {
  1940. "dev-master": "11.x-dev"
  1941. }
  1942. },
  1943. "autoload": {
  1944. "psr-4": {
  1945. "Illuminate\\Database\\": ""
  1946. }
  1947. },
  1948. "notification-url": "https://packagist.org/downloads/",
  1949. "license": [
  1950. "MIT"
  1951. ],
  1952. "authors": [
  1953. {
  1954. "name": "Taylor Otwell",
  1955. "email": "[email protected]"
  1956. }
  1957. ],
  1958. "description": "The Illuminate Database package.",
  1959. "homepage": "https://laravel.com",
  1960. "keywords": [
  1961. "database",
  1962. "laravel",
  1963. "orm",
  1964. "sql"
  1965. ],
  1966. "support": {
  1967. "issues": "https://github.com/laravel/framework/issues",
  1968. "source": "https://github.com/laravel/framework"
  1969. },
  1970. "time": "2024-04-01T22:47:30+00:00"
  1971. },
  1972. {
  1973. "name": "illuminate/macroable",
  1974. "version": "v11.2.0",
  1975. "source": {
  1976. "type": "git",
  1977. "url": "https://github.com/illuminate/macroable.git",
  1978. "reference": "e1be58f9b2af73f242dc6a9add1f376b3ec89eef"
  1979. },
  1980. "dist": {
  1981. "type": "zip",
  1982. "url": "https://api.github.com/repos/illuminate/macroable/zipball/e1be58f9b2af73f242dc6a9add1f376b3ec89eef",
  1983. "reference": "e1be58f9b2af73f242dc6a9add1f376b3ec89eef",
  1984. "shasum": ""
  1985. },
  1986. "require": {
  1987. "php": "^8.2"
  1988. },
  1989. "type": "library",
  1990. "extra": {
  1991. "branch-alias": {
  1992. "dev-master": "11.x-dev"
  1993. }
  1994. },
  1995. "autoload": {
  1996. "psr-4": {
  1997. "Illuminate\\Support\\": ""
  1998. }
  1999. },
  2000. "notification-url": "https://packagist.org/downloads/",
  2001. "license": [
  2002. "MIT"
  2003. ],
  2004. "authors": [
  2005. {
  2006. "name": "Taylor Otwell",
  2007. "email": "[email protected]"
  2008. }
  2009. ],
  2010. "description": "The Illuminate Macroable package.",
  2011. "homepage": "https://laravel.com",
  2012. "support": {
  2013. "issues": "https://github.com/laravel/framework/issues",
  2014. "source": "https://github.com/laravel/framework"
  2015. },
  2016. "time": "2023-06-08T14:08:27+00:00"
  2017. },
  2018. {
  2019. "name": "illuminate/pagination",
  2020. "version": "v11.2.0",
  2021. "source": {
  2022. "type": "git",
  2023. "url": "https://github.com/illuminate/pagination.git",
  2024. "reference": "ab541626a692597278bae9dabaf7ae3c3657e035"
  2025. },
  2026. "dist": {
  2027. "type": "zip",
  2028. "url": "https://api.github.com/repos/illuminate/pagination/zipball/ab541626a692597278bae9dabaf7ae3c3657e035",
  2029. "reference": "ab541626a692597278bae9dabaf7ae3c3657e035",
  2030. "shasum": ""
  2031. },
  2032. "require": {
  2033. "ext-filter": "*",
  2034. "illuminate/collections": "^11.0",
  2035. "illuminate/contracts": "^11.0",
  2036. "illuminate/support": "^11.0",
  2037. "php": "^8.2"
  2038. },
  2039. "type": "library",
  2040. "extra": {
  2041. "branch-alias": {
  2042. "dev-master": "11.x-dev"
  2043. }
  2044. },
  2045. "autoload": {
  2046. "psr-4": {
  2047. "Illuminate\\Pagination\\": ""
  2048. }
  2049. },
  2050. "notification-url": "https://packagist.org/downloads/",
  2051. "license": [
  2052. "MIT"
  2053. ],
  2054. "authors": [
  2055. {
  2056. "name": "Taylor Otwell",
  2057. "email": "[email protected]"
  2058. }
  2059. ],
  2060. "description": "The Illuminate Pagination package.",
  2061. "homepage": "https://laravel.com",
  2062. "support": {
  2063. "issues": "https://github.com/laravel/framework/issues",
  2064. "source": "https://github.com/laravel/framework"
  2065. },
  2066. "time": "2024-04-02T13:11:56+00:00"
  2067. },
  2068. {
  2069. "name": "illuminate/support",
  2070. "version": "v11.2.0",
  2071. "source": {
  2072. "type": "git",
  2073. "url": "https://github.com/illuminate/support.git",
  2074. "reference": "abedd71609c48606735754192c15e7eb7c9f1248"
  2075. },
  2076. "dist": {
  2077. "type": "zip",
  2078. "url": "https://api.github.com/repos/illuminate/support/zipball/abedd71609c48606735754192c15e7eb7c9f1248",
  2079. "reference": "abedd71609c48606735754192c15e7eb7c9f1248",
  2080. "shasum": ""
  2081. },
  2082. "require": {
  2083. "doctrine/inflector": "^2.0",
  2084. "ext-ctype": "*",
  2085. "ext-filter": "*",
  2086. "ext-mbstring": "*",
  2087. "illuminate/collections": "^11.0",
  2088. "illuminate/conditionable": "^11.0",
  2089. "illuminate/contracts": "^11.0",
  2090. "illuminate/macroable": "^11.0",
  2091. "nesbot/carbon": "^2.72.2|^3.0",
  2092. "php": "^8.2",
  2093. "voku/portable-ascii": "^2.0"
  2094. },
  2095. "conflict": {
  2096. "tightenco/collect": "<5.5.33"
  2097. },
  2098. "replace": {
  2099. "spatie/once": "*"
  2100. },
  2101. "suggest": {
  2102. "illuminate/filesystem": "Required to use the composer class (^11.0).",
  2103. "league/commonmark": "Required to use Str::markdown() and Stringable::markdown() (^2.0.2).",
  2104. "ramsey/uuid": "Required to use Str::uuid() (^4.7).",
  2105. "symfony/process": "Required to use the composer class (^7.0).",
  2106. "symfony/uid": "Required to use Str::ulid() (^7.0).",
  2107. "symfony/var-dumper": "Required to use the dd function (^7.0).",
  2108. "vlucas/phpdotenv": "Required to use the Env class and env helper (^5.4.1)."
  2109. },
  2110. "type": "library",
  2111. "extra": {
  2112. "branch-alias": {
  2113. "dev-master": "11.x-dev"
  2114. }
  2115. },
  2116. "autoload": {
  2117. "files": [
  2118. "helpers.php"
  2119. ],
  2120. "psr-4": {
  2121. "Illuminate\\Support\\": ""
  2122. }
  2123. },
  2124. "notification-url": "https://packagist.org/downloads/",
  2125. "license": [
  2126. "MIT"
  2127. ],
  2128. "authors": [
  2129. {
  2130. "name": "Taylor Otwell",
  2131. "email": "[email protected]"
  2132. }
  2133. ],
  2134. "description": "The Illuminate Support package.",
  2135. "homepage": "https://laravel.com",
  2136. "support": {
  2137. "issues": "https://github.com/laravel/framework/issues",
  2138. "source": "https://github.com/laravel/framework"
  2139. },
  2140. "time": "2024-04-01T15:22:25+00:00"
  2141. },
  2142. {
  2143. "name": "irazasyed/telegram-bot-sdk",
  2144. "version": "v3.14.0",
  2145. "source": {
  2146. "type": "git",
  2147. "url": "https://github.com/irazasyed/telegram-bot-sdk.git",
  2148. "reference": "c72ef585556578105c4d5cc56324575ef3677fd2"
  2149. },
  2150. "dist": {
  2151. "type": "zip",
  2152. "url": "https://api.github.com/repos/irazasyed/telegram-bot-sdk/zipball/c72ef585556578105c4d5cc56324575ef3677fd2",
  2153. "reference": "c72ef585556578105c4d5cc56324575ef3677fd2",
  2154. "shasum": ""
  2155. },
  2156. "require": {
  2157. "ext-json": "*",
  2158. "guzzlehttp/guzzle": "^7.5.1",
  2159. "guzzlehttp/psr7": "^2.5",
  2160. "illuminate/support": "9 - 11",
  2161. "league/event": "^2.2 || ^3.0",
  2162. "php": ">=8.0",
  2163. "psr/container": "^1.1 || ^2.0",
  2164. "psr/event-dispatcher": "^1.0"
  2165. },
  2166. "require-dev": {
  2167. "irazasyed/docgen": "^0.2",
  2168. "pestphp/pest": "^1.22 || ^2.0",
  2169. "php-parallel-lint/php-parallel-lint": "^1.3",
  2170. "phpspec/prophecy": "^1.17",
  2171. "phpspec/prophecy-phpunit": "^2.0",
  2172. "rector/rector": "^0.16.0 || ^0.17.0 || ^0.18.0 || ^0.19.0 || ^1.0.0"
  2173. },
  2174. "suggest": {
  2175. "illuminate/container": "Hold dependencies to be injected in commands constructors",
  2176. "irazasyed/larasupport": "Allows you to use any Laravel Package in Lumen by adding support!"
  2177. },
  2178. "type": "library",
  2179. "extra": {
  2180. "branch-alias": {
  2181. "dev-master": "3.0-dev"
  2182. },
  2183. "laravel": {
  2184. "aliases": {
  2185. "Telegram": "Telegram\\Bot\\Laravel\\Facades\\Telegram"
  2186. },
  2187. "providers": [
  2188. "Telegram\\Bot\\Laravel\\TelegramServiceProvider"
  2189. ]
  2190. }
  2191. },
  2192. "autoload": {
  2193. "psr-4": {
  2194. "Telegram\\Bot\\": "src/"
  2195. }
  2196. },
  2197. "notification-url": "https://packagist.org/downloads/",
  2198. "license": [
  2199. "BSD-3-Clause"
  2200. ],
  2201. "authors": [
  2202. {
  2203. "name": "Irfaq Syed",
  2204. "email": "[email protected]",
  2205. "homepage": "https://github.com/irazasyed"
  2206. }
  2207. ],
  2208. "description": "The Unofficial Telegram Bot API PHP SDK",
  2209. "homepage": "https://github.com/irazasyed/telegram-bot-sdk",
  2210. "keywords": [
  2211. "laravel",
  2212. "laravel telegram",
  2213. "telegram",
  2214. "telegram bot",
  2215. "telegram bot api",
  2216. "telegram php",
  2217. "telegram sdk"
  2218. ],
  2219. "support": {
  2220. "issues": "https://github.com/irazasyed/telegram-bot-sdk/issues",
  2221. "source": "https://github.com/irazasyed/telegram-bot-sdk/tree/v3.14.0"
  2222. },
  2223. "time": "2024-03-11T03:11:26+00:00"
  2224. },
  2225. {
  2226. "name": "jean85/pretty-package-versions",
  2227. "version": "2.0.6",
  2228. "source": {
  2229. "type": "git",
  2230. "url": "https://github.com/Jean85/pretty-package-versions.git",
  2231. "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4"
  2232. },
  2233. "dist": {
  2234. "type": "zip",
  2235. "url": "https://api.github.com/repos/Jean85/pretty-package-versions/zipball/f9fdd29ad8e6d024f52678b570e5593759b550b4",
  2236. "reference": "f9fdd29ad8e6d024f52678b570e5593759b550b4",
  2237. "shasum": ""
  2238. },
  2239. "require": {
  2240. "composer-runtime-api": "^2.0.0",
  2241. "php": "^7.1|^8.0"
  2242. },
  2243. "require-dev": {
  2244. "friendsofphp/php-cs-fixer": "^3.2",
  2245. "jean85/composer-provided-replaced-stub-package": "^1.0",
  2246. "phpstan/phpstan": "^1.4",
  2247. "phpunit/phpunit": "^7.5|^8.5|^9.4",
  2248. "vimeo/psalm": "^4.3"
  2249. },
  2250. "type": "library",
  2251. "extra": {
  2252. "branch-alias": {
  2253. "dev-master": "1.x-dev"
  2254. }
  2255. },
  2256. "autoload": {
  2257. "psr-4": {
  2258. "Jean85\\": "src/"
  2259. }
  2260. },
  2261. "notification-url": "https://packagist.org/downloads/",
  2262. "license": [
  2263. "MIT"
  2264. ],
  2265. "authors": [
  2266. {
  2267. "name": "Alessandro Lai",
  2268. "email": "[email protected]"
  2269. }
  2270. ],
  2271. "description": "A library to get pretty versions strings of installed dependencies",
  2272. "keywords": [
  2273. "composer",
  2274. "package",
  2275. "release",
  2276. "versions"
  2277. ],
  2278. "support": {
  2279. "issues": "https://github.com/Jean85/pretty-package-versions/issues",
  2280. "source": "https://github.com/Jean85/pretty-package-versions/tree/2.0.6"
  2281. },
  2282. "time": "2024-03-08T09:58:59+00:00"
  2283. },
  2284. {
  2285. "name": "lcobucci/jwt",
  2286. "version": "5.2.0",
  2287. "source": {
  2288. "type": "git",
  2289. "url": "https://github.com/lcobucci/jwt.git",
  2290. "reference": "0ba88aed12c04bd2ed9924f500673f32b67a6211"
  2291. },
  2292. "dist": {
  2293. "type": "zip",
  2294. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/0ba88aed12c04bd2ed9924f500673f32b67a6211",
  2295. "reference": "0ba88aed12c04bd2ed9924f500673f32b67a6211",
  2296. "shasum": ""
  2297. },
  2298. "require": {
  2299. "ext-openssl": "*",
  2300. "ext-sodium": "*",
  2301. "php": "~8.1.0 || ~8.2.0 || ~8.3.0",
  2302. "psr/clock": "^1.0"
  2303. },
  2304. "require-dev": {
  2305. "infection/infection": "^0.27.0",
  2306. "lcobucci/clock": "^3.0",
  2307. "lcobucci/coding-standard": "^11.0",
  2308. "phpbench/phpbench": "^1.2.9",
  2309. "phpstan/extension-installer": "^1.2",
  2310. "phpstan/phpstan": "^1.10.7",
  2311. "phpstan/phpstan-deprecation-rules": "^1.1.3",
  2312. "phpstan/phpstan-phpunit": "^1.3.10",
  2313. "phpstan/phpstan-strict-rules": "^1.5.0",
  2314. "phpunit/phpunit": "^10.2.6"
  2315. },
  2316. "suggest": {
  2317. "lcobucci/clock": ">= 3.0"
  2318. },
  2319. "type": "library",
  2320. "autoload": {
  2321. "psr-4": {
  2322. "Lcobucci\\JWT\\": "src"
  2323. }
  2324. },
  2325. "notification-url": "https://packagist.org/downloads/",
  2326. "license": [
  2327. "BSD-3-Clause"
  2328. ],
  2329. "authors": [
  2330. {
  2331. "name": "Luís Cobucci",
  2332. "email": "[email protected]",
  2333. "role": "Developer"
  2334. }
  2335. ],
  2336. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  2337. "keywords": [
  2338. "JWS",
  2339. "jwt"
  2340. ],
  2341. "support": {
  2342. "issues": "https://github.com/lcobucci/jwt/issues",
  2343. "source": "https://github.com/lcobucci/jwt/tree/5.2.0"
  2344. },
  2345. "funding": [
  2346. {
  2347. "url": "https://github.com/lcobucci",
  2348. "type": "github"
  2349. },
  2350. {
  2351. "url": "https://www.patreon.com/lcobucci",
  2352. "type": "patreon"
  2353. }
  2354. ],
  2355. "time": "2023-11-20T21:17:42+00:00"
  2356. },
  2357. {
  2358. "name": "league/event",
  2359. "version": "3.0.2",
  2360. "source": {
  2361. "type": "git",
  2362. "url": "https://github.com/thephpleague/event.git",
  2363. "reference": "221867a61087ee265ca07bd39aa757879afca820"
  2364. },
  2365. "dist": {
  2366. "type": "zip",
  2367. "url": "https://api.github.com/repos/thephpleague/event/zipball/221867a61087ee265ca07bd39aa757879afca820",
  2368. "reference": "221867a61087ee265ca07bd39aa757879afca820",
  2369. "shasum": ""
  2370. },
  2371. "require": {
  2372. "php": ">=7.2.0",
  2373. "psr/event-dispatcher": "^1.0"
  2374. },
  2375. "provide": {
  2376. "psr/event-dispatcher-implementation": "1.0"
  2377. },
  2378. "require-dev": {
  2379. "friendsofphp/php-cs-fixer": "^2.16",
  2380. "phpstan/phpstan": "^0.12.45",
  2381. "phpunit/phpunit": "^8.5"
  2382. },
  2383. "type": "library",
  2384. "extra": {
  2385. "branch-alias": {
  2386. "dev-master": "3.0-dev"
  2387. }
  2388. },
  2389. "autoload": {
  2390. "psr-4": {
  2391. "League\\Event\\": "src/"
  2392. }
  2393. },
  2394. "notification-url": "https://packagist.org/downloads/",
  2395. "license": [
  2396. "MIT"
  2397. ],
  2398. "authors": [
  2399. {
  2400. "name": "Frank de Jonge",
  2401. "email": "[email protected]"
  2402. }
  2403. ],
  2404. "description": "Event package",
  2405. "keywords": [
  2406. "emitter",
  2407. "event",
  2408. "listener"
  2409. ],
  2410. "support": {
  2411. "issues": "https://github.com/thephpleague/event/issues",
  2412. "source": "https://github.com/thephpleague/event/tree/3.0.2"
  2413. },
  2414. "time": "2022-10-29T09:31:25+00:00"
  2415. },
  2416. {
  2417. "name": "lizhichao/one-sm",
  2418. "version": "1.10",
  2419. "source": {
  2420. "type": "git",
  2421. "url": "https://github.com/lizhichao/sm.git",
  2422. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a"
  2423. },
  2424. "dist": {
  2425. "type": "zip",
  2426. "url": "https://api.github.com/repos/lizhichao/sm/zipball/687a012a44a5bfd4d9143a0234e1060543be455a",
  2427. "reference": "687a012a44a5bfd4d9143a0234e1060543be455a",
  2428. "shasum": ""
  2429. },
  2430. "require": {
  2431. "php": ">=5.6"
  2432. },
  2433. "type": "library",
  2434. "autoload": {
  2435. "psr-4": {
  2436. "OneSm\\": "src/"
  2437. }
  2438. },
  2439. "notification-url": "https://packagist.org/downloads/",
  2440. "license": [
  2441. "Apache-2.0"
  2442. ],
  2443. "authors": [
  2444. {
  2445. "name": "tanszhe",
  2446. "email": "[email protected]"
  2447. }
  2448. ],
  2449. "description": "国密sm3",
  2450. "keywords": [
  2451. "php",
  2452. "sm3"
  2453. ],
  2454. "support": {
  2455. "issues": "https://github.com/lizhichao/sm/issues",
  2456. "source": "https://github.com/lizhichao/sm/tree/1.10"
  2457. },
  2458. "funding": [
  2459. {
  2460. "url": "https://www.vicsdf.com/img/w.jpg",
  2461. "type": "custom"
  2462. },
  2463. {
  2464. "url": "https://www.vicsdf.com/img/z.jpg",
  2465. "type": "custom"
  2466. }
  2467. ],
  2468. "time": "2021-05-26T06:19:22+00:00"
  2469. },
  2470. {
  2471. "name": "mailchimp/transactional",
  2472. "version": "1.0.59",
  2473. "source": {
  2474. "type": "git",
  2475. "url": "https://github.com/mailchimp/mailchimp-transactional-php.git",
  2476. "reference": "1783927027820dc1c624fd04abf5012a57f96feb"
  2477. },
  2478. "dist": {
  2479. "type": "zip",
  2480. "url": "https://api.github.com/repos/mailchimp/mailchimp-transactional-php/zipball/1783927027820dc1c624fd04abf5012a57f96feb",
  2481. "reference": "1783927027820dc1c624fd04abf5012a57f96feb",
  2482. "shasum": ""
  2483. },
  2484. "require": {
  2485. "ext-curl": "*",
  2486. "ext-json": "*",
  2487. "ext-mbstring": "*",
  2488. "guzzlehttp/guzzle": "^6.4 || ^7.2",
  2489. "php": ">=7.2"
  2490. },
  2491. "require-dev": {
  2492. "friendsofphp/php-cs-fixer": "~2.12",
  2493. "phpunit/phpunit": "^7",
  2494. "squizlabs/php_codesniffer": "~2.6"
  2495. },
  2496. "type": "library",
  2497. "autoload": {
  2498. "psr-4": {
  2499. "MailchimpTransactional\\": "lib/"
  2500. }
  2501. },
  2502. "notification-url": "https://packagist.org/downloads/",
  2503. "license": [
  2504. "proprietary"
  2505. ],
  2506. "authors": [
  2507. {
  2508. "name": "Mailchimp",
  2509. "homepage": "https://github.com/mailchimp/mailchimp-transactional-php"
  2510. }
  2511. ],
  2512. "homepage": "http://swagger.io",
  2513. "keywords": [
  2514. "api",
  2515. "php",
  2516. "sdk",
  2517. "swagger"
  2518. ],
  2519. "support": {
  2520. "source": "https://github.com/mailchimp/mailchimp-transactional-php/tree/v1.0.59"
  2521. },
  2522. "time": "2024-02-10T01:12:26+00:00"
  2523. },
  2524. {
  2525. "name": "mailgun/mailgun-php",
  2526. "version": "v4.2.0",
  2527. "source": {
  2528. "type": "git",
  2529. "url": "https://github.com/mailgun/mailgun-php.git",
  2530. "reference": "6e31693370a254522118b9961ca675823c76c3c0"
  2531. },
  2532. "dist": {
  2533. "type": "zip",
  2534. "url": "https://api.github.com/repos/mailgun/mailgun-php/zipball/6e31693370a254522118b9961ca675823c76c3c0",
  2535. "reference": "6e31693370a254522118b9961ca675823c76c3c0",
  2536. "shasum": ""
  2537. },
  2538. "require": {
  2539. "php": "^7.3 || ^8.0",
  2540. "php-http/client-common": "^2.2.1",
  2541. "php-http/discovery": "^1.19",
  2542. "php-http/multipart-stream-builder": "^1.1.2",
  2543. "psr/http-client": "^1.0",
  2544. "webmozart/assert": "^1.9.1"
  2545. },
  2546. "require-dev": {
  2547. "nyholm/nsa": "^1.2.1",
  2548. "nyholm/psr7": "^1.3.1",
  2549. "phpunit/phpunit": "^9.3",
  2550. "squizlabs/php_codesniffer": "^3.7",
  2551. "symfony/http-client": "^5.4 || ^6.3"
  2552. },
  2553. "suggest": {
  2554. "nyholm/psr7": "PSR-7 message implementation",
  2555. "symfony/http-client": "HTTP client"
  2556. },
  2557. "type": "library",
  2558. "extra": {
  2559. "branch-alias": {
  2560. "dev-master": "3.0-dev"
  2561. }
  2562. },
  2563. "autoload": {
  2564. "psr-4": {
  2565. "Mailgun\\": "src/"
  2566. }
  2567. },
  2568. "notification-url": "https://packagist.org/downloads/",
  2569. "license": [
  2570. "MIT"
  2571. ],
  2572. "authors": [
  2573. {
  2574. "name": "Travis Swientek",
  2575. "email": "[email protected]"
  2576. }
  2577. ],
  2578. "description": "The Mailgun SDK provides methods for all API functions.",
  2579. "support": {
  2580. "issues": "https://github.com/mailgun/mailgun-php/issues",
  2581. "source": "https://github.com/mailgun/mailgun-php/tree/v4.2.0"
  2582. },
  2583. "time": "2024-03-09T11:07:21+00:00"
  2584. },
  2585. {
  2586. "name": "maxmind-db/reader",
  2587. "version": "v1.11.1",
  2588. "source": {
  2589. "type": "git",
  2590. "url": "[email protected]:maxmind/MaxMind-DB-Reader-php.git",
  2591. "reference": "1e66f73ffcf25e17c7a910a1317e9720a95497c7"
  2592. },
  2593. "dist": {
  2594. "type": "zip",
  2595. "url": "https://api.github.com/repos/maxmind/MaxMind-DB-Reader-php/zipball/1e66f73ffcf25e17c7a910a1317e9720a95497c7",
  2596. "reference": "1e66f73ffcf25e17c7a910a1317e9720a95497c7",
  2597. "shasum": ""
  2598. },
  2599. "require": {
  2600. "php": ">=7.2"
  2601. },
  2602. "conflict": {
  2603. "ext-maxminddb": "<1.11.1,>=2.0.0"
  2604. },
  2605. "require-dev": {
  2606. "friendsofphp/php-cs-fixer": "3.*",
  2607. "php-coveralls/php-coveralls": "^2.1",
  2608. "phpstan/phpstan": "*",
  2609. "phpunit/phpcov": ">=6.0.0",
  2610. "phpunit/phpunit": ">=8.0.0,<10.0.0",
  2611. "squizlabs/php_codesniffer": "3.*"
  2612. },
  2613. "suggest": {
  2614. "ext-bcmath": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2615. "ext-gmp": "bcmath or gmp is required for decoding larger integers with the pure PHP decoder",
  2616. "ext-maxminddb": "A C-based database decoder that provides significantly faster lookups"
  2617. },
  2618. "type": "library",
  2619. "autoload": {
  2620. "psr-4": {
  2621. "MaxMind\\Db\\": "src/MaxMind/Db"
  2622. }
  2623. },
  2624. "notification-url": "https://packagist.org/downloads/",
  2625. "license": [
  2626. "Apache-2.0"
  2627. ],
  2628. "authors": [
  2629. {
  2630. "name": "Gregory J. Oschwald",
  2631. "email": "[email protected]",
  2632. "homepage": "https://www.maxmind.com/"
  2633. }
  2634. ],
  2635. "description": "MaxMind DB Reader API",
  2636. "homepage": "https://github.com/maxmind/MaxMind-DB-Reader-php",
  2637. "keywords": [
  2638. "database",
  2639. "geoip",
  2640. "geoip2",
  2641. "geolocation",
  2642. "maxmind"
  2643. ],
  2644. "time": "2023-12-02T00:09:23+00:00"
  2645. },
  2646. {
  2647. "name": "maxmind/web-service-common",
  2648. "version": "v0.9.0",
  2649. "source": {
  2650. "type": "git",
  2651. "url": "https://github.com/maxmind/web-service-common-php.git",
  2652. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53"
  2653. },
  2654. "dist": {
  2655. "type": "zip",
  2656. "url": "https://api.github.com/repos/maxmind/web-service-common-php/zipball/4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2657. "reference": "4dc5a3e8df38aea4ca3b1096cee3a038094e9b53",
  2658. "shasum": ""
  2659. },
  2660. "require": {
  2661. "composer/ca-bundle": "^1.0.3",
  2662. "ext-curl": "*",
  2663. "ext-json": "*",
  2664. "php": ">=7.2"
  2665. },
  2666. "require-dev": {
  2667. "friendsofphp/php-cs-fixer": "3.*",
  2668. "phpstan/phpstan": "*",
  2669. "phpunit/phpunit": "^8.0 || ^9.0",
  2670. "squizlabs/php_codesniffer": "3.*"
  2671. },
  2672. "type": "library",
  2673. "autoload": {
  2674. "psr-4": {
  2675. "MaxMind\\Exception\\": "src/Exception",
  2676. "MaxMind\\WebService\\": "src/WebService"
  2677. }
  2678. },
  2679. "notification-url": "https://packagist.org/downloads/",
  2680. "license": [
  2681. "Apache-2.0"
  2682. ],
  2683. "authors": [
  2684. {
  2685. "name": "Gregory Oschwald",
  2686. "email": "[email protected]"
  2687. }
  2688. ],
  2689. "description": "Internal MaxMind Web Service API",
  2690. "homepage": "https://github.com/maxmind/web-service-common-php",
  2691. "support": {
  2692. "issues": "https://github.com/maxmind/web-service-common-php/issues",
  2693. "source": "https://github.com/maxmind/web-service-common-php/tree/v0.9.0"
  2694. },
  2695. "time": "2022-03-28T17:43:20+00:00"
  2696. },
  2697. {
  2698. "name": "mtdowling/jmespath.php",
  2699. "version": "2.7.0",
  2700. "source": {
  2701. "type": "git",
  2702. "url": "https://github.com/jmespath/jmespath.php.git",
  2703. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b"
  2704. },
  2705. "dist": {
  2706. "type": "zip",
  2707. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2708. "reference": "bbb69a935c2cbb0c03d7f481a238027430f6440b",
  2709. "shasum": ""
  2710. },
  2711. "require": {
  2712. "php": "^7.2.5 || ^8.0",
  2713. "symfony/polyfill-mbstring": "^1.17"
  2714. },
  2715. "require-dev": {
  2716. "composer/xdebug-handler": "^3.0.3",
  2717. "phpunit/phpunit": "^8.5.33"
  2718. },
  2719. "bin": [
  2720. "bin/jp.php"
  2721. ],
  2722. "type": "library",
  2723. "extra": {
  2724. "branch-alias": {
  2725. "dev-master": "2.7-dev"
  2726. }
  2727. },
  2728. "autoload": {
  2729. "files": [
  2730. "src/JmesPath.php"
  2731. ],
  2732. "psr-4": {
  2733. "JmesPath\\": "src/"
  2734. }
  2735. },
  2736. "notification-url": "https://packagist.org/downloads/",
  2737. "license": [
  2738. "MIT"
  2739. ],
  2740. "authors": [
  2741. {
  2742. "name": "Graham Campbell",
  2743. "email": "[email protected]",
  2744. "homepage": "https://github.com/GrahamCampbell"
  2745. },
  2746. {
  2747. "name": "Michael Dowling",
  2748. "email": "[email protected]",
  2749. "homepage": "https://github.com/mtdowling"
  2750. }
  2751. ],
  2752. "description": "Declaratively specify how to extract elements from a JSON document",
  2753. "keywords": [
  2754. "json",
  2755. "jsonpath"
  2756. ],
  2757. "support": {
  2758. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2759. "source": "https://github.com/jmespath/jmespath.php/tree/2.7.0"
  2760. },
  2761. "time": "2023-08-25T10:54:48+00:00"
  2762. },
  2763. {
  2764. "name": "nesbot/carbon",
  2765. "version": "3.2.3",
  2766. "source": {
  2767. "type": "git",
  2768. "url": "https://github.com/briannesbitt/Carbon.git",
  2769. "reference": "4d599a6e2351d6b6bf21737accdfe1a4ce3fdbb1"
  2770. },
  2771. "dist": {
  2772. "type": "zip",
  2773. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4d599a6e2351d6b6bf21737accdfe1a4ce3fdbb1",
  2774. "reference": "4d599a6e2351d6b6bf21737accdfe1a4ce3fdbb1",
  2775. "shasum": ""
  2776. },
  2777. "require": {
  2778. "carbonphp/carbon-doctrine-types": "*",
  2779. "ext-json": "*",
  2780. "php": "^8.1",
  2781. "psr/clock": "^1.0",
  2782. "symfony/clock": "^6.3 || ^7.0",
  2783. "symfony/polyfill-mbstring": "^1.0",
  2784. "symfony/translation": "^4.4.18 || ^5.2.1|| ^6.0 || ^7.0"
  2785. },
  2786. "provide": {
  2787. "psr/clock-implementation": "1.0"
  2788. },
  2789. "require-dev": {
  2790. "doctrine/dbal": "^3.6.3 || ^4.0",
  2791. "doctrine/orm": "^2.15.2 || ^3.0",
  2792. "friendsofphp/php-cs-fixer": "^3.52.1",
  2793. "kylekatarnls/multi-tester": "^2.5.3",
  2794. "ondrejmirtes/better-reflection": "^6.25.0.4",
  2795. "phpmd/phpmd": "^2.15.0",
  2796. "phpstan/extension-installer": "^1.3.1",
  2797. "phpstan/phpstan": "^1.10.65",
  2798. "phpunit/phpunit": "^10.5.15",
  2799. "squizlabs/php_codesniffer": "^3.9.0"
  2800. },
  2801. "bin": [
  2802. "bin/carbon"
  2803. ],
  2804. "type": "library",
  2805. "extra": {
  2806. "branch-alias": {
  2807. "dev-master": "3.x-dev",
  2808. "dev-2.x": "2.x-dev"
  2809. },
  2810. "laravel": {
  2811. "providers": [
  2812. "Carbon\\Laravel\\ServiceProvider"
  2813. ]
  2814. },
  2815. "phpstan": {
  2816. "includes": [
  2817. "extension.neon"
  2818. ]
  2819. }
  2820. },
  2821. "autoload": {
  2822. "psr-4": {
  2823. "Carbon\\": "src/Carbon/"
  2824. }
  2825. },
  2826. "notification-url": "https://packagist.org/downloads/",
  2827. "license": [
  2828. "MIT"
  2829. ],
  2830. "authors": [
  2831. {
  2832. "name": "Brian Nesbitt",
  2833. "email": "[email protected]",
  2834. "homepage": "https://markido.com"
  2835. },
  2836. {
  2837. "name": "kylekatarnls",
  2838. "homepage": "https://github.com/kylekatarnls"
  2839. }
  2840. ],
  2841. "description": "An API extension for DateTime that supports 281 different languages.",
  2842. "homepage": "https://carbon.nesbot.com",
  2843. "keywords": [
  2844. "date",
  2845. "datetime",
  2846. "time"
  2847. ],
  2848. "support": {
  2849. "docs": "https://carbon.nesbot.com/docs",
  2850. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2851. "source": "https://github.com/briannesbitt/Carbon"
  2852. },
  2853. "funding": [
  2854. {
  2855. "url": "https://github.com/sponsors/kylekatarnls",
  2856. "type": "github"
  2857. },
  2858. {
  2859. "url": "https://opencollective.com/Carbon#sponsor",
  2860. "type": "opencollective"
  2861. },
  2862. {
  2863. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  2864. "type": "tidelift"
  2865. }
  2866. ],
  2867. "time": "2024-03-30T18:22:00+00:00"
  2868. },
  2869. {
  2870. "name": "nikic/fast-route",
  2871. "version": "v1.3.0",
  2872. "source": {
  2873. "type": "git",
  2874. "url": "https://github.com/nikic/FastRoute.git",
  2875. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  2876. },
  2877. "dist": {
  2878. "type": "zip",
  2879. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  2880. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  2881. "shasum": ""
  2882. },
  2883. "require": {
  2884. "php": ">=5.4.0"
  2885. },
  2886. "require-dev": {
  2887. "phpunit/phpunit": "^4.8.35|~5.7"
  2888. },
  2889. "type": "library",
  2890. "autoload": {
  2891. "files": [
  2892. "src/functions.php"
  2893. ],
  2894. "psr-4": {
  2895. "FastRoute\\": "src/"
  2896. }
  2897. },
  2898. "notification-url": "https://packagist.org/downloads/",
  2899. "license": [
  2900. "BSD-3-Clause"
  2901. ],
  2902. "authors": [
  2903. {
  2904. "name": "Nikita Popov",
  2905. "email": "[email protected]"
  2906. }
  2907. ],
  2908. "description": "Fast request router for PHP",
  2909. "keywords": [
  2910. "router",
  2911. "routing"
  2912. ],
  2913. "support": {
  2914. "issues": "https://github.com/nikic/FastRoute/issues",
  2915. "source": "https://github.com/nikic/FastRoute/tree/master"
  2916. },
  2917. "time": "2018-02-13T20:26:39+00:00"
  2918. },
  2919. {
  2920. "name": "nikolaposa/rate-limit",
  2921. "version": "3.1.0",
  2922. "source": {
  2923. "type": "git",
  2924. "url": "https://github.com/nikolaposa/rate-limit.git",
  2925. "reference": "fa5d32ff5a31566a8839fa556c51930c0a7b467e"
  2926. },
  2927. "dist": {
  2928. "type": "zip",
  2929. "url": "https://api.github.com/repos/nikolaposa/rate-limit/zipball/fa5d32ff5a31566a8839fa556c51930c0a7b467e",
  2930. "reference": "fa5d32ff5a31566a8839fa556c51930c0a7b467e",
  2931. "shasum": ""
  2932. },
  2933. "require": {
  2934. "beberlei/assert": "^3.2",
  2935. "php": "^8.1"
  2936. },
  2937. "require-dev": {
  2938. "ext-apcu": ">=5.1.12",
  2939. "ext-redis": "*",
  2940. "friendsofphp/php-cs-fixer": "3.44",
  2941. "phpstan/phpstan": "^1.10",
  2942. "phpstan/phpstan-beberlei-assert": "^1.1",
  2943. "phpstan/phpstan-phpunit": "^1.3",
  2944. "phpunit/phpunit": "^10.5",
  2945. "predis/predis": "^1.1"
  2946. },
  2947. "suggest": {
  2948. "ext-apcu": "In order to use ApcuRateLimiter",
  2949. "ext-memcached": "In order to use MemcachedRateLimiter",
  2950. "ext-redis": "In order to use RedisRateLimiter",
  2951. "predis/predis": "In order to use PredisRateLimiter"
  2952. },
  2953. "type": "library",
  2954. "extra": {
  2955. "branch-alias": {
  2956. "dev-master": "3.1.x-dev"
  2957. }
  2958. },
  2959. "autoload": {
  2960. "psr-4": {
  2961. "RateLimit\\": "src/"
  2962. }
  2963. },
  2964. "notification-url": "https://packagist.org/downloads/",
  2965. "license": [
  2966. "MIT"
  2967. ],
  2968. "authors": [
  2969. {
  2970. "name": "Nikola Poša",
  2971. "email": "[email protected]",
  2972. "homepage": "https://www.nikolaposa.in.rs"
  2973. }
  2974. ],
  2975. "description": "General purpose rate limiter implementation.",
  2976. "keywords": [
  2977. "rate limit",
  2978. "redis"
  2979. ],
  2980. "support": {
  2981. "issues": "https://github.com/nikolaposa/rate-limit/issues",
  2982. "source": "https://github.com/nikolaposa/rate-limit/tree/3.1.0"
  2983. },
  2984. "time": "2023-12-29T22:51:49+00:00"
  2985. },
  2986. {
  2987. "name": "openai-php/client",
  2988. "version": "v0.8.4",
  2989. "source": {
  2990. "type": "git",
  2991. "url": "https://github.com/openai-php/client.git",
  2992. "reference": "00470f5fedd7b08ee4860959d6952f0be0ec48a0"
  2993. },
  2994. "dist": {
  2995. "type": "zip",
  2996. "url": "https://api.github.com/repos/openai-php/client/zipball/00470f5fedd7b08ee4860959d6952f0be0ec48a0",
  2997. "reference": "00470f5fedd7b08ee4860959d6952f0be0ec48a0",
  2998. "shasum": ""
  2999. },
  3000. "require": {
  3001. "php": "^8.1.0",
  3002. "php-http/discovery": "^1.19.2",
  3003. "php-http/multipart-stream-builder": "^1.3.0",
  3004. "psr/http-client": "^1.0.3",
  3005. "psr/http-client-implementation": "^1.0.1",
  3006. "psr/http-factory-implementation": "*",
  3007. "psr/http-message": "^1.1.0|^2.0.0"
  3008. },
  3009. "require-dev": {
  3010. "guzzlehttp/guzzle": "^7.8.1",
  3011. "guzzlehttp/psr7": "^2.6.2",
  3012. "laravel/pint": "^1.13.7",
  3013. "mockery/mockery": "^1.6.7",
  3014. "nunomaduro/collision": "^7.10.0",
  3015. "pestphp/pest": "^2.30.0",
  3016. "pestphp/pest-plugin-arch": "^2.6",
  3017. "pestphp/pest-plugin-type-coverage": "^2.7.0",
  3018. "phpstan/phpstan": "^1.10.55",
  3019. "rector/rector": "^0.16.0",
  3020. "symfony/var-dumper": "^6.4.2"
  3021. },
  3022. "type": "library",
  3023. "autoload": {
  3024. "files": [
  3025. "src/OpenAI.php"
  3026. ],
  3027. "psr-4": {
  3028. "OpenAI\\": "src/"
  3029. }
  3030. },
  3031. "notification-url": "https://packagist.org/downloads/",
  3032. "license": [
  3033. "MIT"
  3034. ],
  3035. "authors": [
  3036. {
  3037. "name": "Nuno Maduro",
  3038. "email": "[email protected]"
  3039. },
  3040. {
  3041. "name": "Sandro Gehri"
  3042. }
  3043. ],
  3044. "description": "OpenAI PHP is a supercharged PHP API client that allows you to interact with the Open AI API",
  3045. "keywords": [
  3046. "GPT-3",
  3047. "api",
  3048. "client",
  3049. "codex",
  3050. "dall-e",
  3051. "language",
  3052. "natural",
  3053. "openai",
  3054. "php",
  3055. "processing",
  3056. "sdk"
  3057. ],
  3058. "support": {
  3059. "issues": "https://github.com/openai-php/client/issues",
  3060. "source": "https://github.com/openai-php/client/tree/v0.8.4"
  3061. },
  3062. "funding": [
  3063. {
  3064. "url": "https://www.paypal.com/paypalme/enunomaduro",
  3065. "type": "custom"
  3066. },
  3067. {
  3068. "url": "https://github.com/gehrisandro",
  3069. "type": "github"
  3070. },
  3071. {
  3072. "url": "https://github.com/nunomaduro",
  3073. "type": "github"
  3074. }
  3075. ],
  3076. "time": "2024-02-07T07:57:38+00:00"
  3077. },
  3078. {
  3079. "name": "ozdemir/datatables",
  3080. "version": "2.3.7",
  3081. "source": {
  3082. "type": "git",
  3083. "url": "https://github.com/n1crack/datatables.git",
  3084. "reference": "7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d"
  3085. },
  3086. "dist": {
  3087. "type": "zip",
  3088. "url": "https://api.github.com/repos/n1crack/datatables/zipball/7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d",
  3089. "reference": "7d8d51dccc1647fc68d3b6f90453e3f8b8b8bf9d",
  3090. "shasum": ""
  3091. },
  3092. "require": {
  3093. "php": ">=7.1.3"
  3094. },
  3095. "require-dev": {
  3096. "phpunit/phpunit": "^7.0|^8.0|^9.0"
  3097. },
  3098. "type": "library",
  3099. "autoload": {
  3100. "psr-4": {
  3101. "Ozdemir\\Datatables\\": "src/"
  3102. }
  3103. },
  3104. "notification-url": "https://packagist.org/downloads/",
  3105. "license": [
  3106. "MIT"
  3107. ],
  3108. "authors": [
  3109. {
  3110. "name": "Yusuf Özdemir",
  3111. "email": "[email protected]"
  3112. }
  3113. ],
  3114. "description": "PHP Library to handle server-side processing for Datatables, in a fast and simple way.",
  3115. "support": {
  3116. "issues": "https://github.com/n1crack/datatables/issues",
  3117. "source": "https://github.com/n1crack/datatables/tree/2.3.7"
  3118. },
  3119. "time": "2023-05-29T10:42:49+00:00"
  3120. },
  3121. {
  3122. "name": "php-http/client-common",
  3123. "version": "2.7.1",
  3124. "source": {
  3125. "type": "git",
  3126. "url": "https://github.com/php-http/client-common.git",
  3127. "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612"
  3128. },
  3129. "dist": {
  3130. "type": "zip",
  3131. "url": "https://api.github.com/repos/php-http/client-common/zipball/1e19c059b0e4d5f717bf5d524d616165aeab0612",
  3132. "reference": "1e19c059b0e4d5f717bf5d524d616165aeab0612",
  3133. "shasum": ""
  3134. },
  3135. "require": {
  3136. "php": "^7.1 || ^8.0",
  3137. "php-http/httplug": "^2.0",
  3138. "php-http/message": "^1.6",
  3139. "psr/http-client": "^1.0",
  3140. "psr/http-factory": "^1.0",
  3141. "psr/http-message": "^1.0 || ^2.0",
  3142. "symfony/options-resolver": "~4.0.15 || ~4.1.9 || ^4.2.1 || ^5.0 || ^6.0 || ^7.0",
  3143. "symfony/polyfill-php80": "^1.17"
  3144. },
  3145. "require-dev": {
  3146. "doctrine/instantiator": "^1.1",
  3147. "guzzlehttp/psr7": "^1.4",
  3148. "nyholm/psr7": "^1.2",
  3149. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  3150. "phpspec/prophecy": "^1.10.2",
  3151. "phpunit/phpunit": "^7.5.20 || ^8.5.33 || ^9.6.7"
  3152. },
  3153. "suggest": {
  3154. "ext-json": "To detect JSON responses with the ContentTypePlugin",
  3155. "ext-libxml": "To detect XML responses with the ContentTypePlugin",
  3156. "php-http/cache-plugin": "PSR-6 Cache plugin",
  3157. "php-http/logger-plugin": "PSR-3 Logger plugin",
  3158. "php-http/stopwatch-plugin": "Symfony Stopwatch plugin"
  3159. },
  3160. "type": "library",
  3161. "autoload": {
  3162. "psr-4": {
  3163. "Http\\Client\\Common\\": "src/"
  3164. }
  3165. },
  3166. "notification-url": "https://packagist.org/downloads/",
  3167. "license": [
  3168. "MIT"
  3169. ],
  3170. "authors": [
  3171. {
  3172. "name": "Márk Sági-Kazár",
  3173. "email": "[email protected]"
  3174. }
  3175. ],
  3176. "description": "Common HTTP Client implementations and tools for HTTPlug",
  3177. "homepage": "http://httplug.io",
  3178. "keywords": [
  3179. "client",
  3180. "common",
  3181. "http",
  3182. "httplug"
  3183. ],
  3184. "support": {
  3185. "issues": "https://github.com/php-http/client-common/issues",
  3186. "source": "https://github.com/php-http/client-common/tree/2.7.1"
  3187. },
  3188. "time": "2023-11-30T10:31:25+00:00"
  3189. },
  3190. {
  3191. "name": "php-http/discovery",
  3192. "version": "1.19.4",
  3193. "source": {
  3194. "type": "git",
  3195. "url": "https://github.com/php-http/discovery.git",
  3196. "reference": "0700efda8d7526335132360167315fdab3aeb599"
  3197. },
  3198. "dist": {
  3199. "type": "zip",
  3200. "url": "https://api.github.com/repos/php-http/discovery/zipball/0700efda8d7526335132360167315fdab3aeb599",
  3201. "reference": "0700efda8d7526335132360167315fdab3aeb599",
  3202. "shasum": ""
  3203. },
  3204. "require": {
  3205. "composer-plugin-api": "^1.0|^2.0",
  3206. "php": "^7.1 || ^8.0"
  3207. },
  3208. "conflict": {
  3209. "nyholm/psr7": "<1.0",
  3210. "zendframework/zend-diactoros": "*"
  3211. },
  3212. "provide": {
  3213. "php-http/async-client-implementation": "*",
  3214. "php-http/client-implementation": "*",
  3215. "psr/http-client-implementation": "*",
  3216. "psr/http-factory-implementation": "*",
  3217. "psr/http-message-implementation": "*"
  3218. },
  3219. "require-dev": {
  3220. "composer/composer": "^1.0.2|^2.0",
  3221. "graham-campbell/phpspec-skip-example-extension": "^5.0",
  3222. "php-http/httplug": "^1.0 || ^2.0",
  3223. "php-http/message-factory": "^1.0",
  3224. "phpspec/phpspec": "^5.1 || ^6.1 || ^7.3",
  3225. "sebastian/comparator": "^3.0.5 || ^4.0.8",
  3226. "symfony/phpunit-bridge": "^6.4.4 || ^7.0.1"
  3227. },
  3228. "type": "composer-plugin",
  3229. "extra": {
  3230. "class": "Http\\Discovery\\Composer\\Plugin",
  3231. "plugin-optional": true
  3232. },
  3233. "autoload": {
  3234. "psr-4": {
  3235. "Http\\Discovery\\": "src/"
  3236. },
  3237. "exclude-from-classmap": [
  3238. "src/Composer/Plugin.php"
  3239. ]
  3240. },
  3241. "notification-url": "https://packagist.org/downloads/",
  3242. "license": [
  3243. "MIT"
  3244. ],
  3245. "authors": [
  3246. {
  3247. "name": "Márk Sági-Kazár",
  3248. "email": "[email protected]"
  3249. }
  3250. ],
  3251. "description": "Finds and installs PSR-7, PSR-17, PSR-18 and HTTPlug implementations",
  3252. "homepage": "http://php-http.org",
  3253. "keywords": [
  3254. "adapter",
  3255. "client",
  3256. "discovery",
  3257. "factory",
  3258. "http",
  3259. "message",
  3260. "psr17",
  3261. "psr7"
  3262. ],
  3263. "support": {
  3264. "issues": "https://github.com/php-http/discovery/issues",
  3265. "source": "https://github.com/php-http/discovery/tree/1.19.4"
  3266. },
  3267. "time": "2024-03-29T13:00:05+00:00"
  3268. },
  3269. {
  3270. "name": "php-http/httplug",
  3271. "version": "2.4.0",
  3272. "source": {
  3273. "type": "git",
  3274. "url": "https://github.com/php-http/httplug.git",
  3275. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67"
  3276. },
  3277. "dist": {
  3278. "type": "zip",
  3279. "url": "https://api.github.com/repos/php-http/httplug/zipball/625ad742c360c8ac580fcc647a1541d29e257f67",
  3280. "reference": "625ad742c360c8ac580fcc647a1541d29e257f67",
  3281. "shasum": ""
  3282. },
  3283. "require": {
  3284. "php": "^7.1 || ^8.0",
  3285. "php-http/promise": "^1.1",
  3286. "psr/http-client": "^1.0",
  3287. "psr/http-message": "^1.0 || ^2.0"
  3288. },
  3289. "require-dev": {
  3290. "friends-of-phpspec/phpspec-code-coverage": "^4.1 || ^5.0 || ^6.0",
  3291. "phpspec/phpspec": "^5.1 || ^6.0 || ^7.0"
  3292. },
  3293. "type": "library",
  3294. "autoload": {
  3295. "psr-4": {
  3296. "Http\\Client\\": "src/"
  3297. }
  3298. },
  3299. "notification-url": "https://packagist.org/downloads/",
  3300. "license": [
  3301. "MIT"
  3302. ],
  3303. "authors": [
  3304. {
  3305. "name": "Eric GELOEN",
  3306. "email": "[email protected]"
  3307. },
  3308. {
  3309. "name": "Márk Sági-Kazár",
  3310. "email": "[email protected]",
  3311. "homepage": "https://sagikazarmark.hu"
  3312. }
  3313. ],
  3314. "description": "HTTPlug, the HTTP client abstraction for PHP",
  3315. "homepage": "http://httplug.io",
  3316. "keywords": [
  3317. "client",
  3318. "http"
  3319. ],
  3320. "support": {
  3321. "issues": "https://github.com/php-http/httplug/issues",
  3322. "source": "https://github.com/php-http/httplug/tree/2.4.0"
  3323. },
  3324. "time": "2023-04-14T15:10:03+00:00"
  3325. },
  3326. {
  3327. "name": "php-http/message",
  3328. "version": "1.16.1",
  3329. "source": {
  3330. "type": "git",
  3331. "url": "https://github.com/php-http/message.git",
  3332. "reference": "5997f3289332c699fa2545c427826272498a2088"
  3333. },
  3334. "dist": {
  3335. "type": "zip",
  3336. "url": "https://api.github.com/repos/php-http/message/zipball/5997f3289332c699fa2545c427826272498a2088",
  3337. "reference": "5997f3289332c699fa2545c427826272498a2088",
  3338. "shasum": ""
  3339. },
  3340. "require": {
  3341. "clue/stream-filter": "^1.5",
  3342. "php": "^7.2 || ^8.0",
  3343. "psr/http-message": "^1.1 || ^2.0"
  3344. },
  3345. "provide": {
  3346. "php-http/message-factory-implementation": "1.0"
  3347. },
  3348. "require-dev": {
  3349. "ergebnis/composer-normalize": "^2.6",
  3350. "ext-zlib": "*",
  3351. "guzzlehttp/psr7": "^1.0 || ^2.0",
  3352. "laminas/laminas-diactoros": "^2.0 || ^3.0",
  3353. "php-http/message-factory": "^1.0.2",
  3354. "phpspec/phpspec": "^5.1 || ^6.3 || ^7.1",
  3355. "slim/slim": "^3.0"
  3356. },
  3357. "suggest": {
  3358. "ext-zlib": "Used with compressor/decompressor streams",
  3359. "guzzlehttp/psr7": "Used with Guzzle PSR-7 Factories",
  3360. "laminas/laminas-diactoros": "Used with Diactoros Factories",
  3361. "slim/slim": "Used with Slim Framework PSR-7 implementation"
  3362. },
  3363. "type": "library",
  3364. "autoload": {
  3365. "files": [
  3366. "src/filters.php"
  3367. ],
  3368. "psr-4": {
  3369. "Http\\Message\\": "src/"
  3370. }
  3371. },
  3372. "notification-url": "https://packagist.org/downloads/",
  3373. "license": [
  3374. "MIT"
  3375. ],
  3376. "authors": [
  3377. {
  3378. "name": "Márk Sági-Kazár",
  3379. "email": "[email protected]"
  3380. }
  3381. ],
  3382. "description": "HTTP Message related tools",
  3383. "homepage": "http://php-http.org",
  3384. "keywords": [
  3385. "http",
  3386. "message",
  3387. "psr-7"
  3388. ],
  3389. "support": {
  3390. "issues": "https://github.com/php-http/message/issues",
  3391. "source": "https://github.com/php-http/message/tree/1.16.1"
  3392. },
  3393. "time": "2024-03-07T13:22:09+00:00"
  3394. },
  3395. {
  3396. "name": "php-http/multipart-stream-builder",
  3397. "version": "1.3.0",
  3398. "source": {
  3399. "type": "git",
  3400. "url": "https://github.com/php-http/multipart-stream-builder.git",
  3401. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a"
  3402. },
  3403. "dist": {
  3404. "type": "zip",
  3405. "url": "https://api.github.com/repos/php-http/multipart-stream-builder/zipball/f5938fd135d9fa442cc297dc98481805acfe2b6a",
  3406. "reference": "f5938fd135d9fa442cc297dc98481805acfe2b6a",
  3407. "shasum": ""
  3408. },
  3409. "require": {
  3410. "php": "^7.1 || ^8.0",
  3411. "php-http/discovery": "^1.15",
  3412. "psr/http-factory-implementation": "^1.0"
  3413. },
  3414. "require-dev": {
  3415. "nyholm/psr7": "^1.0",
  3416. "php-http/message": "^1.5",
  3417. "php-http/message-factory": "^1.0.2",
  3418. "phpunit/phpunit": "^7.5.15 || ^8.5 || ^9.3"
  3419. },
  3420. "type": "library",
  3421. "autoload": {
  3422. "psr-4": {
  3423. "Http\\Message\\MultipartStream\\": "src/"
  3424. }
  3425. },
  3426. "notification-url": "https://packagist.org/downloads/",
  3427. "license": [
  3428. "MIT"
  3429. ],
  3430. "authors": [
  3431. {
  3432. "name": "Tobias Nyholm",
  3433. "email": "[email protected]"
  3434. }
  3435. ],
  3436. "description": "A builder class that help you create a multipart stream",
  3437. "homepage": "http://php-http.org",
  3438. "keywords": [
  3439. "factory",
  3440. "http",
  3441. "message",
  3442. "multipart stream",
  3443. "stream"
  3444. ],
  3445. "support": {
  3446. "issues": "https://github.com/php-http/multipart-stream-builder/issues",
  3447. "source": "https://github.com/php-http/multipart-stream-builder/tree/1.3.0"
  3448. },
  3449. "time": "2023-04-28T14:10:22+00:00"
  3450. },
  3451. {
  3452. "name": "php-http/promise",
  3453. "version": "1.3.1",
  3454. "source": {
  3455. "type": "git",
  3456. "url": "https://github.com/php-http/promise.git",
  3457. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83"
  3458. },
  3459. "dist": {
  3460. "type": "zip",
  3461. "url": "https://api.github.com/repos/php-http/promise/zipball/fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  3462. "reference": "fc85b1fba37c169a69a07ef0d5a8075770cc1f83",
  3463. "shasum": ""
  3464. },
  3465. "require": {
  3466. "php": "^7.1 || ^8.0"
  3467. },
  3468. "require-dev": {
  3469. "friends-of-phpspec/phpspec-code-coverage": "^4.3.2 || ^6.3",
  3470. "phpspec/phpspec": "^5.1.2 || ^6.2 || ^7.4"
  3471. },
  3472. "type": "library",
  3473. "autoload": {
  3474. "psr-4": {
  3475. "Http\\Promise\\": "src/"
  3476. }
  3477. },
  3478. "notification-url": "https://packagist.org/downloads/",
  3479. "license": [
  3480. "MIT"
  3481. ],
  3482. "authors": [
  3483. {
  3484. "name": "Joel Wurtz",
  3485. "email": "[email protected]"
  3486. },
  3487. {
  3488. "name": "Márk Sági-Kazár",
  3489. "email": "[email protected]"
  3490. }
  3491. ],
  3492. "description": "Promise used for asynchronous HTTP requests",
  3493. "homepage": "http://httplug.io",
  3494. "keywords": [
  3495. "promise"
  3496. ],
  3497. "support": {
  3498. "issues": "https://github.com/php-http/promise/issues",
  3499. "source": "https://github.com/php-http/promise/tree/1.3.1"
  3500. },
  3501. "time": "2024-03-15T13:55:21+00:00"
  3502. },
  3503. {
  3504. "name": "phpmailer/phpmailer",
  3505. "version": "v6.9.1",
  3506. "source": {
  3507. "type": "git",
  3508. "url": "https://github.com/PHPMailer/PHPMailer.git",
  3509. "reference": "039de174cd9c17a8389754d3b877a2ed22743e18"
  3510. },
  3511. "dist": {
  3512. "type": "zip",
  3513. "url": "https://api.github.com/repos/PHPMailer/PHPMailer/zipball/039de174cd9c17a8389754d3b877a2ed22743e18",
  3514. "reference": "039de174cd9c17a8389754d3b877a2ed22743e18",
  3515. "shasum": ""
  3516. },
  3517. "require": {
  3518. "ext-ctype": "*",
  3519. "ext-filter": "*",
  3520. "ext-hash": "*",
  3521. "php": ">=5.5.0"
  3522. },
  3523. "require-dev": {
  3524. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  3525. "doctrine/annotations": "^1.2.6 || ^1.13.3",
  3526. "php-parallel-lint/php-console-highlighter": "^1.0.0",
  3527. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  3528. "phpcompatibility/php-compatibility": "^9.3.5",
  3529. "roave/security-advisories": "dev-latest",
  3530. "squizlabs/php_codesniffer": "^3.7.2",
  3531. "yoast/phpunit-polyfills": "^1.0.4"
  3532. },
  3533. "suggest": {
  3534. "decomplexity/SendOauth2": "Adapter for using XOAUTH2 authentication",
  3535. "ext-mbstring": "Needed to send email in multibyte encoding charset or decode encoded addresses",
  3536. "ext-openssl": "Needed for secure SMTP sending and DKIM signing",
  3537. "greew/oauth2-azure-provider": "Needed for Microsoft Azure XOAUTH2 authentication",
  3538. "hayageek/oauth2-yahoo": "Needed for Yahoo XOAUTH2 authentication",
  3539. "league/oauth2-google": "Needed for Google XOAUTH2 authentication",
  3540. "psr/log": "For optional PSR-3 debug logging",
  3541. "symfony/polyfill-mbstring": "To support UTF-8 if the Mbstring PHP extension is not enabled (^1.2)",
  3542. "thenetworg/oauth2-azure": "Needed for Microsoft XOAUTH2 authentication"
  3543. },
  3544. "type": "library",
  3545. "autoload": {
  3546. "psr-4": {
  3547. "PHPMailer\\PHPMailer\\": "src/"
  3548. }
  3549. },
  3550. "notification-url": "https://packagist.org/downloads/",
  3551. "license": [
  3552. "LGPL-2.1-only"
  3553. ],
  3554. "authors": [
  3555. {
  3556. "name": "Marcus Bointon",
  3557. "email": "[email protected]"
  3558. },
  3559. {
  3560. "name": "Jim Jagielski",
  3561. "email": "[email protected]"
  3562. },
  3563. {
  3564. "name": "Andy Prevost",
  3565. "email": "[email protected]"
  3566. },
  3567. {
  3568. "name": "Brent R. Matzelle"
  3569. }
  3570. ],
  3571. "description": "PHPMailer is a full-featured email creation and transfer class for PHP",
  3572. "support": {
  3573. "issues": "https://github.com/PHPMailer/PHPMailer/issues",
  3574. "source": "https://github.com/PHPMailer/PHPMailer/tree/v6.9.1"
  3575. },
  3576. "funding": [
  3577. {
  3578. "url": "https://github.com/Synchro",
  3579. "type": "github"
  3580. }
  3581. ],
  3582. "time": "2023-11-25T22:23:28+00:00"
  3583. },
  3584. {
  3585. "name": "postal/postal",
  3586. "version": "v2.0.1",
  3587. "source": {
  3588. "type": "git",
  3589. "url": "https://github.com/postalserver/postal-php.git",
  3590. "reference": "e361d11aadb724a482092784ebfe00461c492b5d"
  3591. },
  3592. "dist": {
  3593. "type": "zip",
  3594. "url": "https://api.github.com/repos/postalserver/postal-php/zipball/e361d11aadb724a482092784ebfe00461c492b5d",
  3595. "reference": "e361d11aadb724a482092784ebfe00461c492b5d",
  3596. "shasum": ""
  3597. },
  3598. "require": {
  3599. "guzzlehttp/guzzle": "^6 || ^7",
  3600. "php": "^7.4 || ^8.0"
  3601. },
  3602. "require-dev": {
  3603. "phpstan/phpstan": "^1.10",
  3604. "phpunit/phpunit": "^9.6",
  3605. "symplify/easy-coding-standard": "^11.3"
  3606. },
  3607. "type": "library",
  3608. "autoload": {
  3609. "psr-4": {
  3610. "Postal\\": "src/"
  3611. }
  3612. },
  3613. "notification-url": "https://packagist.org/downloads/",
  3614. "license": [
  3615. "MIT"
  3616. ],
  3617. "authors": [
  3618. {
  3619. "name": "Adam Cooke",
  3620. "email": "[email protected]"
  3621. },
  3622. {
  3623. "name": "Josh Grant",
  3624. "email": "[email protected]"
  3625. },
  3626. {
  3627. "name": "William Hall",
  3628. "email": "[email protected]"
  3629. }
  3630. ],
  3631. "description": "Postal for PHP library.",
  3632. "homepage": "https://github.com/atech/postal",
  3633. "keywords": [
  3634. "mail",
  3635. "postal"
  3636. ],
  3637. "support": {
  3638. "issues": "https://github.com/postalserver/postal-php/issues",
  3639. "source": "https://github.com/postalserver/postal-php/tree/v2.0.1"
  3640. },
  3641. "time": "2023-12-19T09:49:41+00:00"
  3642. },
  3643. {
  3644. "name": "psr/clock",
  3645. "version": "1.0.0",
  3646. "source": {
  3647. "type": "git",
  3648. "url": "https://github.com/php-fig/clock.git",
  3649. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  3650. },
  3651. "dist": {
  3652. "type": "zip",
  3653. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3654. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  3655. "shasum": ""
  3656. },
  3657. "require": {
  3658. "php": "^7.0 || ^8.0"
  3659. },
  3660. "type": "library",
  3661. "autoload": {
  3662. "psr-4": {
  3663. "Psr\\Clock\\": "src/"
  3664. }
  3665. },
  3666. "notification-url": "https://packagist.org/downloads/",
  3667. "license": [
  3668. "MIT"
  3669. ],
  3670. "authors": [
  3671. {
  3672. "name": "PHP-FIG",
  3673. "homepage": "https://www.php-fig.org/"
  3674. }
  3675. ],
  3676. "description": "Common interface for reading the clock.",
  3677. "homepage": "https://github.com/php-fig/clock",
  3678. "keywords": [
  3679. "clock",
  3680. "now",
  3681. "psr",
  3682. "psr-20",
  3683. "time"
  3684. ],
  3685. "support": {
  3686. "issues": "https://github.com/php-fig/clock/issues",
  3687. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  3688. },
  3689. "time": "2022-11-25T14:36:26+00:00"
  3690. },
  3691. {
  3692. "name": "psr/container",
  3693. "version": "2.0.2",
  3694. "source": {
  3695. "type": "git",
  3696. "url": "https://github.com/php-fig/container.git",
  3697. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3698. },
  3699. "dist": {
  3700. "type": "zip",
  3701. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3702. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3703. "shasum": ""
  3704. },
  3705. "require": {
  3706. "php": ">=7.4.0"
  3707. },
  3708. "type": "library",
  3709. "extra": {
  3710. "branch-alias": {
  3711. "dev-master": "2.0.x-dev"
  3712. }
  3713. },
  3714. "autoload": {
  3715. "psr-4": {
  3716. "Psr\\Container\\": "src/"
  3717. }
  3718. },
  3719. "notification-url": "https://packagist.org/downloads/",
  3720. "license": [
  3721. "MIT"
  3722. ],
  3723. "authors": [
  3724. {
  3725. "name": "PHP-FIG",
  3726. "homepage": "https://www.php-fig.org/"
  3727. }
  3728. ],
  3729. "description": "Common Container Interface (PHP FIG PSR-11)",
  3730. "homepage": "https://github.com/php-fig/container",
  3731. "keywords": [
  3732. "PSR-11",
  3733. "container",
  3734. "container-interface",
  3735. "container-interop",
  3736. "psr"
  3737. ],
  3738. "support": {
  3739. "issues": "https://github.com/php-fig/container/issues",
  3740. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3741. },
  3742. "time": "2021-11-05T16:47:00+00:00"
  3743. },
  3744. {
  3745. "name": "psr/event-dispatcher",
  3746. "version": "1.0.0",
  3747. "source": {
  3748. "type": "git",
  3749. "url": "https://github.com/php-fig/event-dispatcher.git",
  3750. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3751. },
  3752. "dist": {
  3753. "type": "zip",
  3754. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3755. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3756. "shasum": ""
  3757. },
  3758. "require": {
  3759. "php": ">=7.2.0"
  3760. },
  3761. "type": "library",
  3762. "extra": {
  3763. "branch-alias": {
  3764. "dev-master": "1.0.x-dev"
  3765. }
  3766. },
  3767. "autoload": {
  3768. "psr-4": {
  3769. "Psr\\EventDispatcher\\": "src/"
  3770. }
  3771. },
  3772. "notification-url": "https://packagist.org/downloads/",
  3773. "license": [
  3774. "MIT"
  3775. ],
  3776. "authors": [
  3777. {
  3778. "name": "PHP-FIG",
  3779. "homepage": "http://www.php-fig.org/"
  3780. }
  3781. ],
  3782. "description": "Standard interfaces for event handling.",
  3783. "keywords": [
  3784. "events",
  3785. "psr",
  3786. "psr-14"
  3787. ],
  3788. "support": {
  3789. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3790. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3791. },
  3792. "time": "2019-01-08T18:20:26+00:00"
  3793. },
  3794. {
  3795. "name": "psr/http-client",
  3796. "version": "1.0.3",
  3797. "source": {
  3798. "type": "git",
  3799. "url": "https://github.com/php-fig/http-client.git",
  3800. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  3801. },
  3802. "dist": {
  3803. "type": "zip",
  3804. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3805. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  3806. "shasum": ""
  3807. },
  3808. "require": {
  3809. "php": "^7.0 || ^8.0",
  3810. "psr/http-message": "^1.0 || ^2.0"
  3811. },
  3812. "type": "library",
  3813. "extra": {
  3814. "branch-alias": {
  3815. "dev-master": "1.0.x-dev"
  3816. }
  3817. },
  3818. "autoload": {
  3819. "psr-4": {
  3820. "Psr\\Http\\Client\\": "src/"
  3821. }
  3822. },
  3823. "notification-url": "https://packagist.org/downloads/",
  3824. "license": [
  3825. "MIT"
  3826. ],
  3827. "authors": [
  3828. {
  3829. "name": "PHP-FIG",
  3830. "homepage": "https://www.php-fig.org/"
  3831. }
  3832. ],
  3833. "description": "Common interface for HTTP clients",
  3834. "homepage": "https://github.com/php-fig/http-client",
  3835. "keywords": [
  3836. "http",
  3837. "http-client",
  3838. "psr",
  3839. "psr-18"
  3840. ],
  3841. "support": {
  3842. "source": "https://github.com/php-fig/http-client"
  3843. },
  3844. "time": "2023-09-23T14:17:50+00:00"
  3845. },
  3846. {
  3847. "name": "psr/http-factory",
  3848. "version": "1.0.2",
  3849. "source": {
  3850. "type": "git",
  3851. "url": "https://github.com/php-fig/http-factory.git",
  3852. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3853. },
  3854. "dist": {
  3855. "type": "zip",
  3856. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3857. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3858. "shasum": ""
  3859. },
  3860. "require": {
  3861. "php": ">=7.0.0",
  3862. "psr/http-message": "^1.0 || ^2.0"
  3863. },
  3864. "type": "library",
  3865. "extra": {
  3866. "branch-alias": {
  3867. "dev-master": "1.0.x-dev"
  3868. }
  3869. },
  3870. "autoload": {
  3871. "psr-4": {
  3872. "Psr\\Http\\Message\\": "src/"
  3873. }
  3874. },
  3875. "notification-url": "https://packagist.org/downloads/",
  3876. "license": [
  3877. "MIT"
  3878. ],
  3879. "authors": [
  3880. {
  3881. "name": "PHP-FIG",
  3882. "homepage": "https://www.php-fig.org/"
  3883. }
  3884. ],
  3885. "description": "Common interfaces for PSR-7 HTTP message factories",
  3886. "keywords": [
  3887. "factory",
  3888. "http",
  3889. "message",
  3890. "psr",
  3891. "psr-17",
  3892. "psr-7",
  3893. "request",
  3894. "response"
  3895. ],
  3896. "support": {
  3897. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3898. },
  3899. "time": "2023-04-10T20:10:41+00:00"
  3900. },
  3901. {
  3902. "name": "psr/http-message",
  3903. "version": "1.1",
  3904. "source": {
  3905. "type": "git",
  3906. "url": "https://github.com/php-fig/http-message.git",
  3907. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3908. },
  3909. "dist": {
  3910. "type": "zip",
  3911. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3912. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3913. "shasum": ""
  3914. },
  3915. "require": {
  3916. "php": "^7.2 || ^8.0"
  3917. },
  3918. "type": "library",
  3919. "extra": {
  3920. "branch-alias": {
  3921. "dev-master": "1.1.x-dev"
  3922. }
  3923. },
  3924. "autoload": {
  3925. "psr-4": {
  3926. "Psr\\Http\\Message\\": "src/"
  3927. }
  3928. },
  3929. "notification-url": "https://packagist.org/downloads/",
  3930. "license": [
  3931. "MIT"
  3932. ],
  3933. "authors": [
  3934. {
  3935. "name": "PHP-FIG",
  3936. "homepage": "http://www.php-fig.org/"
  3937. }
  3938. ],
  3939. "description": "Common interface for HTTP messages",
  3940. "homepage": "https://github.com/php-fig/http-message",
  3941. "keywords": [
  3942. "http",
  3943. "http-message",
  3944. "psr",
  3945. "psr-7",
  3946. "request",
  3947. "response"
  3948. ],
  3949. "support": {
  3950. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3951. },
  3952. "time": "2023-04-04T09:50:52+00:00"
  3953. },
  3954. {
  3955. "name": "psr/http-server-handler",
  3956. "version": "1.0.2",
  3957. "source": {
  3958. "type": "git",
  3959. "url": "https://github.com/php-fig/http-server-handler.git",
  3960. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  3961. },
  3962. "dist": {
  3963. "type": "zip",
  3964. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  3965. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  3966. "shasum": ""
  3967. },
  3968. "require": {
  3969. "php": ">=7.0",
  3970. "psr/http-message": "^1.0 || ^2.0"
  3971. },
  3972. "type": "library",
  3973. "extra": {
  3974. "branch-alias": {
  3975. "dev-master": "1.0.x-dev"
  3976. }
  3977. },
  3978. "autoload": {
  3979. "psr-4": {
  3980. "Psr\\Http\\Server\\": "src/"
  3981. }
  3982. },
  3983. "notification-url": "https://packagist.org/downloads/",
  3984. "license": [
  3985. "MIT"
  3986. ],
  3987. "authors": [
  3988. {
  3989. "name": "PHP-FIG",
  3990. "homepage": "https://www.php-fig.org/"
  3991. }
  3992. ],
  3993. "description": "Common interface for HTTP server-side request handler",
  3994. "keywords": [
  3995. "handler",
  3996. "http",
  3997. "http-interop",
  3998. "psr",
  3999. "psr-15",
  4000. "psr-7",
  4001. "request",
  4002. "response",
  4003. "server"
  4004. ],
  4005. "support": {
  4006. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  4007. },
  4008. "time": "2023-04-10T20:06:20+00:00"
  4009. },
  4010. {
  4011. "name": "psr/http-server-middleware",
  4012. "version": "1.0.2",
  4013. "source": {
  4014. "type": "git",
  4015. "url": "https://github.com/php-fig/http-server-middleware.git",
  4016. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  4017. },
  4018. "dist": {
  4019. "type": "zip",
  4020. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  4021. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  4022. "shasum": ""
  4023. },
  4024. "require": {
  4025. "php": ">=7.0",
  4026. "psr/http-message": "^1.0 || ^2.0",
  4027. "psr/http-server-handler": "^1.0"
  4028. },
  4029. "type": "library",
  4030. "extra": {
  4031. "branch-alias": {
  4032. "dev-master": "1.0.x-dev"
  4033. }
  4034. },
  4035. "autoload": {
  4036. "psr-4": {
  4037. "Psr\\Http\\Server\\": "src/"
  4038. }
  4039. },
  4040. "notification-url": "https://packagist.org/downloads/",
  4041. "license": [
  4042. "MIT"
  4043. ],
  4044. "authors": [
  4045. {
  4046. "name": "PHP-FIG",
  4047. "homepage": "https://www.php-fig.org/"
  4048. }
  4049. ],
  4050. "description": "Common interface for HTTP server-side middleware",
  4051. "keywords": [
  4052. "http",
  4053. "http-interop",
  4054. "middleware",
  4055. "psr",
  4056. "psr-15",
  4057. "psr-7",
  4058. "request",
  4059. "response"
  4060. ],
  4061. "support": {
  4062. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  4063. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  4064. },
  4065. "time": "2023-04-11T06:14:47+00:00"
  4066. },
  4067. {
  4068. "name": "psr/log",
  4069. "version": "3.0.0",
  4070. "source": {
  4071. "type": "git",
  4072. "url": "https://github.com/php-fig/log.git",
  4073. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001"
  4074. },
  4075. "dist": {
  4076. "type": "zip",
  4077. "url": "https://api.github.com/repos/php-fig/log/zipball/fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4078. "reference": "fe5ea303b0887d5caefd3d431c3e61ad47037001",
  4079. "shasum": ""
  4080. },
  4081. "require": {
  4082. "php": ">=8.0.0"
  4083. },
  4084. "type": "library",
  4085. "extra": {
  4086. "branch-alias": {
  4087. "dev-master": "3.x-dev"
  4088. }
  4089. },
  4090. "autoload": {
  4091. "psr-4": {
  4092. "Psr\\Log\\": "src"
  4093. }
  4094. },
  4095. "notification-url": "https://packagist.org/downloads/",
  4096. "license": [
  4097. "MIT"
  4098. ],
  4099. "authors": [
  4100. {
  4101. "name": "PHP-FIG",
  4102. "homepage": "https://www.php-fig.org/"
  4103. }
  4104. ],
  4105. "description": "Common interface for logging libraries",
  4106. "homepage": "https://github.com/php-fig/log",
  4107. "keywords": [
  4108. "log",
  4109. "psr",
  4110. "psr-3"
  4111. ],
  4112. "support": {
  4113. "source": "https://github.com/php-fig/log/tree/3.0.0"
  4114. },
  4115. "time": "2021-07-14T16:46:02+00:00"
  4116. },
  4117. {
  4118. "name": "psr/simple-cache",
  4119. "version": "3.0.0",
  4120. "source": {
  4121. "type": "git",
  4122. "url": "https://github.com/php-fig/simple-cache.git",
  4123. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865"
  4124. },
  4125. "dist": {
  4126. "type": "zip",
  4127. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4128. "reference": "764e0b3939f5ca87cb904f570ef9be2d78a07865",
  4129. "shasum": ""
  4130. },
  4131. "require": {
  4132. "php": ">=8.0.0"
  4133. },
  4134. "type": "library",
  4135. "extra": {
  4136. "branch-alias": {
  4137. "dev-master": "3.0.x-dev"
  4138. }
  4139. },
  4140. "autoload": {
  4141. "psr-4": {
  4142. "Psr\\SimpleCache\\": "src/"
  4143. }
  4144. },
  4145. "notification-url": "https://packagist.org/downloads/",
  4146. "license": [
  4147. "MIT"
  4148. ],
  4149. "authors": [
  4150. {
  4151. "name": "PHP-FIG",
  4152. "homepage": "https://www.php-fig.org/"
  4153. }
  4154. ],
  4155. "description": "Common interfaces for simple caching",
  4156. "keywords": [
  4157. "cache",
  4158. "caching",
  4159. "psr",
  4160. "psr-16",
  4161. "simple-cache"
  4162. ],
  4163. "support": {
  4164. "source": "https://github.com/php-fig/simple-cache/tree/3.0.0"
  4165. },
  4166. "time": "2021-10-29T13:26:27+00:00"
  4167. },
  4168. {
  4169. "name": "ralouphie/getallheaders",
  4170. "version": "3.0.3",
  4171. "source": {
  4172. "type": "git",
  4173. "url": "https://github.com/ralouphie/getallheaders.git",
  4174. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  4175. },
  4176. "dist": {
  4177. "type": "zip",
  4178. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  4179. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  4180. "shasum": ""
  4181. },
  4182. "require": {
  4183. "php": ">=5.6"
  4184. },
  4185. "require-dev": {
  4186. "php-coveralls/php-coveralls": "^2.1",
  4187. "phpunit/phpunit": "^5 || ^6.5"
  4188. },
  4189. "type": "library",
  4190. "autoload": {
  4191. "files": [
  4192. "src/getallheaders.php"
  4193. ]
  4194. },
  4195. "notification-url": "https://packagist.org/downloads/",
  4196. "license": [
  4197. "MIT"
  4198. ],
  4199. "authors": [
  4200. {
  4201. "name": "Ralph Khattar",
  4202. "email": "[email protected]"
  4203. }
  4204. ],
  4205. "description": "A polyfill for getallheaders.",
  4206. "support": {
  4207. "issues": "https://github.com/ralouphie/getallheaders/issues",
  4208. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  4209. },
  4210. "time": "2019-03-08T08:55:37+00:00"
  4211. },
  4212. {
  4213. "name": "ramsey/collection",
  4214. "version": "2.0.0",
  4215. "source": {
  4216. "type": "git",
  4217. "url": "https://github.com/ramsey/collection.git",
  4218. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5"
  4219. },
  4220. "dist": {
  4221. "type": "zip",
  4222. "url": "https://api.github.com/repos/ramsey/collection/zipball/a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4223. "reference": "a4b48764bfbb8f3a6a4d1aeb1a35bb5e9ecac4a5",
  4224. "shasum": ""
  4225. },
  4226. "require": {
  4227. "php": "^8.1"
  4228. },
  4229. "require-dev": {
  4230. "captainhook/plugin-composer": "^5.3",
  4231. "ergebnis/composer-normalize": "^2.28.3",
  4232. "fakerphp/faker": "^1.21",
  4233. "hamcrest/hamcrest-php": "^2.0",
  4234. "jangregor/phpstan-prophecy": "^1.0",
  4235. "mockery/mockery": "^1.5",
  4236. "php-parallel-lint/php-console-highlighter": "^1.0",
  4237. "php-parallel-lint/php-parallel-lint": "^1.3",
  4238. "phpcsstandards/phpcsutils": "^1.0.0-rc1",
  4239. "phpspec/prophecy-phpunit": "^2.0",
  4240. "phpstan/extension-installer": "^1.2",
  4241. "phpstan/phpstan": "^1.9",
  4242. "phpstan/phpstan-mockery": "^1.1",
  4243. "phpstan/phpstan-phpunit": "^1.3",
  4244. "phpunit/phpunit": "^9.5",
  4245. "psalm/plugin-mockery": "^1.1",
  4246. "psalm/plugin-phpunit": "^0.18.4",
  4247. "ramsey/coding-standard": "^2.0.3",
  4248. "ramsey/conventional-commits": "^1.3",
  4249. "vimeo/psalm": "^5.4"
  4250. },
  4251. "type": "library",
  4252. "extra": {
  4253. "captainhook": {
  4254. "force-install": true
  4255. },
  4256. "ramsey/conventional-commits": {
  4257. "configFile": "conventional-commits.json"
  4258. }
  4259. },
  4260. "autoload": {
  4261. "psr-4": {
  4262. "Ramsey\\Collection\\": "src/"
  4263. }
  4264. },
  4265. "notification-url": "https://packagist.org/downloads/",
  4266. "license": [
  4267. "MIT"
  4268. ],
  4269. "authors": [
  4270. {
  4271. "name": "Ben Ramsey",
  4272. "email": "[email protected]",
  4273. "homepage": "https://benramsey.com"
  4274. }
  4275. ],
  4276. "description": "A PHP library for representing and manipulating collections.",
  4277. "keywords": [
  4278. "array",
  4279. "collection",
  4280. "hash",
  4281. "map",
  4282. "queue",
  4283. "set"
  4284. ],
  4285. "support": {
  4286. "issues": "https://github.com/ramsey/collection/issues",
  4287. "source": "https://github.com/ramsey/collection/tree/2.0.0"
  4288. },
  4289. "funding": [
  4290. {
  4291. "url": "https://github.com/ramsey",
  4292. "type": "github"
  4293. },
  4294. {
  4295. "url": "https://tidelift.com/funding/github/packagist/ramsey/collection",
  4296. "type": "tidelift"
  4297. }
  4298. ],
  4299. "time": "2022-12-31T21:50:55+00:00"
  4300. },
  4301. {
  4302. "name": "ramsey/uuid",
  4303. "version": "4.7.5",
  4304. "source": {
  4305. "type": "git",
  4306. "url": "https://github.com/ramsey/uuid.git",
  4307. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e"
  4308. },
  4309. "dist": {
  4310. "type": "zip",
  4311. "url": "https://api.github.com/repos/ramsey/uuid/zipball/5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4312. "reference": "5f0df49ae5ad6efb7afa69e6bfab4e5b1e080d8e",
  4313. "shasum": ""
  4314. },
  4315. "require": {
  4316. "brick/math": "^0.8.8 || ^0.9 || ^0.10 || ^0.11",
  4317. "ext-json": "*",
  4318. "php": "^8.0",
  4319. "ramsey/collection": "^1.2 || ^2.0"
  4320. },
  4321. "replace": {
  4322. "rhumsaa/uuid": "self.version"
  4323. },
  4324. "require-dev": {
  4325. "captainhook/captainhook": "^5.10",
  4326. "captainhook/plugin-composer": "^5.3",
  4327. "dealerdirect/phpcodesniffer-composer-installer": "^0.7.0",
  4328. "doctrine/annotations": "^1.8",
  4329. "ergebnis/composer-normalize": "^2.15",
  4330. "mockery/mockery": "^1.3",
  4331. "paragonie/random-lib": "^2",
  4332. "php-mock/php-mock": "^2.2",
  4333. "php-mock/php-mock-mockery": "^1.3",
  4334. "php-parallel-lint/php-parallel-lint": "^1.1",
  4335. "phpbench/phpbench": "^1.0",
  4336. "phpstan/extension-installer": "^1.1",
  4337. "phpstan/phpstan": "^1.8",
  4338. "phpstan/phpstan-mockery": "^1.1",
  4339. "phpstan/phpstan-phpunit": "^1.1",
  4340. "phpunit/phpunit": "^8.5 || ^9",
  4341. "ramsey/composer-repl": "^1.4",
  4342. "slevomat/coding-standard": "^8.4",
  4343. "squizlabs/php_codesniffer": "^3.5",
  4344. "vimeo/psalm": "^4.9"
  4345. },
  4346. "suggest": {
  4347. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  4348. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  4349. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  4350. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  4351. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  4352. },
  4353. "type": "library",
  4354. "extra": {
  4355. "captainhook": {
  4356. "force-install": true
  4357. }
  4358. },
  4359. "autoload": {
  4360. "files": [
  4361. "src/functions.php"
  4362. ],
  4363. "psr-4": {
  4364. "Ramsey\\Uuid\\": "src/"
  4365. }
  4366. },
  4367. "notification-url": "https://packagist.org/downloads/",
  4368. "license": [
  4369. "MIT"
  4370. ],
  4371. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  4372. "keywords": [
  4373. "guid",
  4374. "identifier",
  4375. "uuid"
  4376. ],
  4377. "support": {
  4378. "issues": "https://github.com/ramsey/uuid/issues",
  4379. "source": "https://github.com/ramsey/uuid/tree/4.7.5"
  4380. },
  4381. "funding": [
  4382. {
  4383. "url": "https://github.com/ramsey",
  4384. "type": "github"
  4385. },
  4386. {
  4387. "url": "https://tidelift.com/funding/github/packagist/ramsey/uuid",
  4388. "type": "tidelift"
  4389. }
  4390. ],
  4391. "time": "2023-11-08T05:53:05+00:00"
  4392. },
  4393. {
  4394. "name": "sendgrid/php-http-client",
  4395. "version": "4.1.0",
  4396. "source": {
  4397. "type": "git",
  4398. "url": "https://github.com/sendgrid/php-http-client.git",
  4399. "reference": "84fe926f3d2ac3454f088c9a06ebdc398cc3727e"
  4400. },
  4401. "dist": {
  4402. "type": "zip",
  4403. "url": "https://api.github.com/repos/sendgrid/php-http-client/zipball/84fe926f3d2ac3454f088c9a06ebdc398cc3727e",
  4404. "reference": "84fe926f3d2ac3454f088c9a06ebdc398cc3727e",
  4405. "shasum": ""
  4406. },
  4407. "require": {
  4408. "ext-curl": "*",
  4409. "ext-json": "*",
  4410. "ext-mbstring": "*",
  4411. "php": ">=7.3"
  4412. },
  4413. "require-dev": {
  4414. "friendsofphp/php-cs-fixer": "^2.16",
  4415. "phpunit/phpunit": "^9",
  4416. "squizlabs/php_codesniffer": "~2.0"
  4417. },
  4418. "suggest": {
  4419. "composer/ca-bundle": "Including this library will ensure that a valid CA bundle is available for secure connections"
  4420. },
  4421. "type": "library",
  4422. "autoload": {
  4423. "psr-4": {
  4424. "SendGrid\\": "lib/"
  4425. }
  4426. },
  4427. "notification-url": "https://packagist.org/downloads/",
  4428. "license": [
  4429. "MIT"
  4430. ],
  4431. "authors": [
  4432. {
  4433. "name": "Matt Bernier",
  4434. "email": "[email protected]"
  4435. },
  4436. {
  4437. "name": "Elmer Thomas",
  4438. "email": "[email protected]"
  4439. }
  4440. ],
  4441. "description": "HTTP REST client, simplified for PHP",
  4442. "homepage": "http://github.com/sendgrid/php-http-client",
  4443. "keywords": [
  4444. "api",
  4445. "fluent",
  4446. "http",
  4447. "rest",
  4448. "sendgrid"
  4449. ],
  4450. "support": {
  4451. "source": "https://github.com/sendgrid/php-http-client/tree/4.1.0"
  4452. },
  4453. "time": "2023-12-01T05:16:21+00:00"
  4454. },
  4455. {
  4456. "name": "sendgrid/sendgrid",
  4457. "version": "8.1.1",
  4458. "source": {
  4459. "type": "git",
  4460. "url": "https://github.com/sendgrid/sendgrid-php.git",
  4461. "reference": "08514e75789f192c034fdcf18efe6d8b1a7c91da"
  4462. },
  4463. "dist": {
  4464. "type": "zip",
  4465. "url": "https://api.github.com/repos/sendgrid/sendgrid-php/zipball/08514e75789f192c034fdcf18efe6d8b1a7c91da",
  4466. "reference": "08514e75789f192c034fdcf18efe6d8b1a7c91da",
  4467. "shasum": ""
  4468. },
  4469. "require": {
  4470. "ext-curl": "*",
  4471. "ext-json": "*",
  4472. "ext-mbstring": "*",
  4473. "ext-openssl": "*",
  4474. "php": ">=7.3",
  4475. "sendgrid/php-http-client": "4.1.0",
  4476. "starkbank/ecdsa": "0.*"
  4477. },
  4478. "replace": {
  4479. "sendgrid/sendgrid-php": "*"
  4480. },
  4481. "require-dev": {
  4482. "phpstan/phpstan": "^1.5",
  4483. "phpunit/phpunit": "^9",
  4484. "squizlabs/php_codesniffer": "3.*",
  4485. "swaggest/json-diff": "^3.4"
  4486. },
  4487. "type": "library",
  4488. "autoload": {
  4489. "psr-4": {
  4490. "SendGrid\\Mail\\": "lib/mail/",
  4491. "SendGrid\\Stats\\": "lib/stats/",
  4492. "SendGrid\\Helper\\": "lib/helper/",
  4493. "SendGrid\\Contacts\\": "lib/contacts/",
  4494. "SendGrid\\EventWebhook\\": "lib/eventwebhook/"
  4495. },
  4496. "classmap": [
  4497. "lib/BaseSendGridClientInterface.php",
  4498. "lib/SendGrid.php",
  4499. "lib/TwilioEmail.php"
  4500. ]
  4501. },
  4502. "notification-url": "https://packagist.org/downloads/",
  4503. "license": [
  4504. "MIT"
  4505. ],
  4506. "description": "This library allows you to quickly and easily send emails through Twilio SendGrid using PHP.",
  4507. "homepage": "http://github.com/sendgrid/sendgrid-php",
  4508. "keywords": [
  4509. "email",
  4510. "grid",
  4511. "send",
  4512. "sendgrid",
  4513. "twilio sendgrid"
  4514. ],
  4515. "support": {
  4516. "source": "https://github.com/sendgrid/sendgrid-php/tree/8.1.1"
  4517. },
  4518. "time": "2023-12-06T07:11:08+00:00"
  4519. },
  4520. {
  4521. "name": "sentry/sdk",
  4522. "version": "4.0.0",
  4523. "source": {
  4524. "type": "git",
  4525. "url": "https://github.com/getsentry/sentry-php-sdk.git",
  4526. "reference": "fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53"
  4527. },
  4528. "dist": {
  4529. "type": "zip",
  4530. "url": "https://api.github.com/repos/getsentry/sentry-php-sdk/zipball/fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53",
  4531. "reference": "fcbca864e8d1dc712f3ecfaa95ea89d024fb2e53",
  4532. "shasum": ""
  4533. },
  4534. "require": {
  4535. "sentry/sentry": "^4.0"
  4536. },
  4537. "type": "metapackage",
  4538. "notification-url": "https://packagist.org/downloads/",
  4539. "license": [
  4540. "MIT"
  4541. ],
  4542. "authors": [
  4543. {
  4544. "name": "Sentry",
  4545. "email": "[email protected]"
  4546. }
  4547. ],
  4548. "description": "This is a meta package of sentry/sentry. We recommend using sentry/sentry directly.",
  4549. "homepage": "http://sentry.io",
  4550. "keywords": [
  4551. "crash-reporting",
  4552. "crash-reports",
  4553. "error-handler",
  4554. "error-monitoring",
  4555. "log",
  4556. "logging",
  4557. "sentry"
  4558. ],
  4559. "support": {
  4560. "issues": "https://github.com/getsentry/sentry-php-sdk/issues",
  4561. "source": "https://github.com/getsentry/sentry-php-sdk/tree/4.0.0"
  4562. },
  4563. "funding": [
  4564. {
  4565. "url": "https://sentry.io/",
  4566. "type": "custom"
  4567. },
  4568. {
  4569. "url": "https://sentry.io/pricing/",
  4570. "type": "custom"
  4571. }
  4572. ],
  4573. "time": "2023-11-06T10:23:19+00:00"
  4574. },
  4575. {
  4576. "name": "sentry/sentry",
  4577. "version": "4.6.1",
  4578. "source": {
  4579. "type": "git",
  4580. "url": "https://github.com/getsentry/sentry-php.git",
  4581. "reference": "5a94184175e5830b589bf923da8c9c3af2c0f409"
  4582. },
  4583. "dist": {
  4584. "type": "zip",
  4585. "url": "https://api.github.com/repos/getsentry/sentry-php/zipball/5a94184175e5830b589bf923da8c9c3af2c0f409",
  4586. "reference": "5a94184175e5830b589bf923da8c9c3af2c0f409",
  4587. "shasum": ""
  4588. },
  4589. "require": {
  4590. "ext-curl": "*",
  4591. "ext-json": "*",
  4592. "ext-mbstring": "*",
  4593. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  4594. "jean85/pretty-package-versions": "^1.5|^2.0.4",
  4595. "php": "^7.2|^8.0",
  4596. "psr/log": "^1.0|^2.0|^3.0",
  4597. "symfony/options-resolver": "^4.4.30|^5.0.11|^6.0|^7.0"
  4598. },
  4599. "conflict": {
  4600. "raven/raven": "*"
  4601. },
  4602. "require-dev": {
  4603. "friendsofphp/php-cs-fixer": "^3.4",
  4604. "guzzlehttp/promises": "^1.0|^2.0",
  4605. "guzzlehttp/psr7": "^1.8.4|^2.1.1",
  4606. "monolog/monolog": "^1.6|^2.0|^3.0",
  4607. "phpbench/phpbench": "^1.0",
  4608. "phpstan/phpstan": "^1.3",
  4609. "phpunit/phpunit": "^8.5.14|^9.4",
  4610. "symfony/phpunit-bridge": "^5.2|^6.0|^7.0",
  4611. "vimeo/psalm": "^4.17"
  4612. },
  4613. "suggest": {
  4614. "monolog/monolog": "Allow sending log messages to Sentry by using the included Monolog handler."
  4615. },
  4616. "type": "library",
  4617. "autoload": {
  4618. "files": [
  4619. "src/functions.php"
  4620. ],
  4621. "psr-4": {
  4622. "Sentry\\": "src/"
  4623. }
  4624. },
  4625. "notification-url": "https://packagist.org/downloads/",
  4626. "license": [
  4627. "MIT"
  4628. ],
  4629. "authors": [
  4630. {
  4631. "name": "Sentry",
  4632. "email": "[email protected]"
  4633. }
  4634. ],
  4635. "description": "PHP SDK for Sentry (http://sentry.io)",
  4636. "homepage": "http://sentry.io",
  4637. "keywords": [
  4638. "crash-reporting",
  4639. "crash-reports",
  4640. "error-handler",
  4641. "error-monitoring",
  4642. "log",
  4643. "logging",
  4644. "profiling",
  4645. "sentry",
  4646. "tracing"
  4647. ],
  4648. "support": {
  4649. "issues": "https://github.com/getsentry/sentry-php/issues",
  4650. "source": "https://github.com/getsentry/sentry-php/tree/4.6.1"
  4651. },
  4652. "funding": [
  4653. {
  4654. "url": "https://sentry.io/",
  4655. "type": "custom"
  4656. },
  4657. {
  4658. "url": "https://sentry.io/pricing/",
  4659. "type": "custom"
  4660. }
  4661. ],
  4662. "time": "2024-03-08T08:18:09+00:00"
  4663. },
  4664. {
  4665. "name": "slim/http",
  4666. "version": "1.3",
  4667. "source": {
  4668. "type": "git",
  4669. "url": "https://github.com/slimphp/Slim-Http.git",
  4670. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb"
  4671. },
  4672. "dist": {
  4673. "type": "zip",
  4674. "url": "https://api.github.com/repos/slimphp/Slim-Http/zipball/9542edbe469b7c0f3084c2467efea972387f5beb",
  4675. "reference": "9542edbe469b7c0f3084c2467efea972387f5beb",
  4676. "shasum": ""
  4677. },
  4678. "require": {
  4679. "ext-fileinfo": "*",
  4680. "ext-json": "*",
  4681. "ext-libxml": "*",
  4682. "ext-simplexml": "*",
  4683. "php": "^7.4 || ^8.0",
  4684. "psr/http-factory": "^1.0",
  4685. "psr/http-message": "^1.0"
  4686. },
  4687. "require-dev": {
  4688. "adriansuter/php-autoload-override": "^1.3",
  4689. "laminas/laminas-diactoros": "^2.17",
  4690. "nyholm/psr7": "^1.5",
  4691. "php-http/psr7-integration-tests": "dev-master",
  4692. "phpstan/phpstan": "^1.8",
  4693. "phpunit/phpunit": "^9.5",
  4694. "squizlabs/php_codesniffer": "^3.7"
  4695. },
  4696. "type": "library",
  4697. "autoload": {
  4698. "psr-4": {
  4699. "Slim\\Http\\": "src/"
  4700. }
  4701. },
  4702. "notification-url": "https://packagist.org/downloads/",
  4703. "license": [
  4704. "MIT"
  4705. ],
  4706. "authors": [
  4707. {
  4708. "name": "Josh Lockhart",
  4709. "email": "[email protected]",
  4710. "homepage": "http://joshlockhart.com"
  4711. },
  4712. {
  4713. "name": "Andrew Smith",
  4714. "email": "[email protected]",
  4715. "homepage": "http://silentworks.co.uk"
  4716. },
  4717. {
  4718. "name": "Rob Allen",
  4719. "email": "[email protected]",
  4720. "homepage": "http://akrabat.com"
  4721. },
  4722. {
  4723. "name": "Pierre Berube",
  4724. "email": "[email protected]",
  4725. "homepage": "http://www.lgse.com"
  4726. }
  4727. ],
  4728. "description": "Slim PSR-7 Object Decorators",
  4729. "homepage": "http://slimframework.com",
  4730. "keywords": [
  4731. "http",
  4732. "psr-7",
  4733. "psr7"
  4734. ],
  4735. "support": {
  4736. "issues": "https://github.com/slimphp/Slim-Http/issues",
  4737. "source": "https://github.com/slimphp/Slim-Http/tree/1.3"
  4738. },
  4739. "time": "2022-09-14T15:45:07+00:00"
  4740. },
  4741. {
  4742. "name": "slim/slim",
  4743. "version": "4.13.0",
  4744. "source": {
  4745. "type": "git",
  4746. "url": "https://github.com/slimphp/Slim.git",
  4747. "reference": "038fd5713d5a41636fdff0e8dcceedecdd17fc17"
  4748. },
  4749. "dist": {
  4750. "type": "zip",
  4751. "url": "https://api.github.com/repos/slimphp/Slim/zipball/038fd5713d5a41636fdff0e8dcceedecdd17fc17",
  4752. "reference": "038fd5713d5a41636fdff0e8dcceedecdd17fc17",
  4753. "shasum": ""
  4754. },
  4755. "require": {
  4756. "ext-json": "*",
  4757. "nikic/fast-route": "^1.3",
  4758. "php": "^7.4 || ^8.0",
  4759. "psr/container": "^1.0 || ^2.0",
  4760. "psr/http-factory": "^1.0",
  4761. "psr/http-message": "^1.1 || ^2.0",
  4762. "psr/http-server-handler": "^1.0",
  4763. "psr/http-server-middleware": "^1.0",
  4764. "psr/log": "^1.1 || ^2.0 || ^3.0"
  4765. },
  4766. "require-dev": {
  4767. "adriansuter/php-autoload-override": "^1.4",
  4768. "ext-simplexml": "*",
  4769. "guzzlehttp/psr7": "^2.6",
  4770. "httpsoft/http-message": "^1.1",
  4771. "httpsoft/http-server-request": "^1.1",
  4772. "laminas/laminas-diactoros": "^2.17 || ^3",
  4773. "nyholm/psr7": "^1.8",
  4774. "nyholm/psr7-server": "^1.1",
  4775. "phpspec/prophecy": "^1.19",
  4776. "phpspec/prophecy-phpunit": "^2.1",
  4777. "phpstan/phpstan": "^1.10",
  4778. "phpunit/phpunit": "^9.6",
  4779. "slim/http": "^1.3",
  4780. "slim/psr7": "^1.6",
  4781. "squizlabs/php_codesniffer": "^3.9"
  4782. },
  4783. "suggest": {
  4784. "ext-simplexml": "Needed to support XML format in BodyParsingMiddleware",
  4785. "ext-xml": "Needed to support XML format in BodyParsingMiddleware",
  4786. "php-di/php-di": "PHP-DI is the recommended container library to be used with Slim",
  4787. "slim/psr7": "Slim PSR-7 implementation. See https://www.slimframework.com/docs/v4/start/installation.html for more information."
  4788. },
  4789. "type": "library",
  4790. "autoload": {
  4791. "psr-4": {
  4792. "Slim\\": "Slim"
  4793. }
  4794. },
  4795. "notification-url": "https://packagist.org/downloads/",
  4796. "license": [
  4797. "MIT"
  4798. ],
  4799. "authors": [
  4800. {
  4801. "name": "Josh Lockhart",
  4802. "email": "[email protected]",
  4803. "homepage": "https://joshlockhart.com"
  4804. },
  4805. {
  4806. "name": "Andrew Smith",
  4807. "email": "[email protected]",
  4808. "homepage": "http://silentworks.co.uk"
  4809. },
  4810. {
  4811. "name": "Rob Allen",
  4812. "email": "[email protected]",
  4813. "homepage": "http://akrabat.com"
  4814. },
  4815. {
  4816. "name": "Pierre Berube",
  4817. "email": "[email protected]",
  4818. "homepage": "http://www.lgse.com"
  4819. },
  4820. {
  4821. "name": "Gabriel Manricks",
  4822. "email": "[email protected]",
  4823. "homepage": "http://gabrielmanricks.com"
  4824. }
  4825. ],
  4826. "description": "Slim is a PHP micro framework that helps you quickly write simple yet powerful web applications and APIs",
  4827. "homepage": "https://www.slimframework.com",
  4828. "keywords": [
  4829. "api",
  4830. "framework",
  4831. "micro",
  4832. "router"
  4833. ],
  4834. "support": {
  4835. "docs": "https://www.slimframework.com/docs/v4/",
  4836. "forum": "https://discourse.slimframework.com/",
  4837. "irc": "irc://irc.freenode.net:6667/slimphp",
  4838. "issues": "https://github.com/slimphp/Slim/issues",
  4839. "rss": "https://www.slimframework.com/blog/feed.rss",
  4840. "slack": "https://slimphp.slack.com/",
  4841. "source": "https://github.com/slimphp/Slim",
  4842. "wiki": "https://github.com/slimphp/Slim/wiki"
  4843. },
  4844. "funding": [
  4845. {
  4846. "url": "https://opencollective.com/slimphp",
  4847. "type": "open_collective"
  4848. },
  4849. {
  4850. "url": "https://tidelift.com/funding/github/packagist/slim/slim",
  4851. "type": "tidelift"
  4852. }
  4853. ],
  4854. "time": "2024-03-03T21:25:30+00:00"
  4855. },
  4856. {
  4857. "name": "smarty/smarty",
  4858. "version": "v5.0.2",
  4859. "source": {
  4860. "type": "git",
  4861. "url": "https://github.com/smarty-php/smarty.git",
  4862. "reference": "bbd09c7bfaa6c2c091adc4568a944f765bb4f1d9"
  4863. },
  4864. "dist": {
  4865. "type": "zip",
  4866. "url": "https://api.github.com/repos/smarty-php/smarty/zipball/bbd09c7bfaa6c2c091adc4568a944f765bb4f1d9",
  4867. "reference": "bbd09c7bfaa6c2c091adc4568a944f765bb4f1d9",
  4868. "shasum": ""
  4869. },
  4870. "require": {
  4871. "php": "^7.2 || ^8.0",
  4872. "symfony/polyfill-mbstring": "^1.27"
  4873. },
  4874. "require-dev": {
  4875. "phpunit/phpunit": "^8.5 || ^7.5",
  4876. "smarty/smarty-lexer": "^4.0.2"
  4877. },
  4878. "type": "library",
  4879. "extra": {
  4880. "branch-alias": {
  4881. "dev-master": "5.0.x-dev"
  4882. }
  4883. },
  4884. "autoload": {
  4885. "files": [
  4886. "src/functions.php"
  4887. ],
  4888. "psr-4": {
  4889. "Smarty\\": "src/"
  4890. }
  4891. },
  4892. "notification-url": "https://packagist.org/downloads/",
  4893. "license": [
  4894. "LGPL-3.0"
  4895. ],
  4896. "authors": [
  4897. {
  4898. "name": "Monte Ohrt",
  4899. "email": "[email protected]"
  4900. },
  4901. {
  4902. "name": "Uwe Tews",
  4903. "email": "[email protected]"
  4904. },
  4905. {
  4906. "name": "Rodney Rehm",
  4907. "email": "[email protected]"
  4908. },
  4909. {
  4910. "name": "Simon Wisselink",
  4911. "homepage": "https://www.iwink.nl/"
  4912. }
  4913. ],
  4914. "description": "Smarty - the compiling PHP template engine",
  4915. "homepage": "https://smarty-php.github.io/smarty/",
  4916. "keywords": [
  4917. "templating"
  4918. ],
  4919. "support": {
  4920. "forum": "https://github.com/smarty-php/smarty/discussions",
  4921. "issues": "https://github.com/smarty-php/smarty/issues",
  4922. "source": "https://github.com/smarty-php/smarty/tree/v5.0.2"
  4923. },
  4924. "time": "2024-03-28T10:23:18+00:00"
  4925. },
  4926. {
  4927. "name": "srmklive/paypal",
  4928. "version": "3.0.30",
  4929. "source": {
  4930. "type": "git",
  4931. "url": "https://github.com/srmklive/laravel-paypal.git",
  4932. "reference": "d511038ff01f466e7bfca475c7417b5a6c4d38a5"
  4933. },
  4934. "dist": {
  4935. "type": "zip",
  4936. "url": "https://api.github.com/repos/srmklive/laravel-paypal/zipball/d511038ff01f466e7bfca475c7417b5a6c4d38a5",
  4937. "reference": "d511038ff01f466e7bfca475c7417b5a6c4d38a5",
  4938. "shasum": ""
  4939. },
  4940. "require": {
  4941. "ext-curl": "*",
  4942. "guzzlehttp/guzzle": "~7.0",
  4943. "illuminate/support": "~6.0|~7.0|~8.0|~9.0|^10.0|^11.0",
  4944. "nesbot/carbon": "~2.0|^3.0",
  4945. "php": ">=7.2|^8.0"
  4946. },
  4947. "require-dev": {
  4948. "phpstan/phpstan": "^1.10",
  4949. "phpunit/phpunit": "^8.0|^9.0|^10.0",
  4950. "symfony/var-dumper": "~5.0|^7.0"
  4951. },
  4952. "type": "library",
  4953. "extra": {
  4954. "laravel": {
  4955. "providers": [
  4956. "Srmklive\\PayPal\\Providers\\PayPalServiceProvider"
  4957. ],
  4958. "aliases": {
  4959. "PayPal": "Srmklive\\PayPal\\Facades\\PayPal"
  4960. }
  4961. }
  4962. },
  4963. "autoload": {
  4964. "psr-4": {
  4965. "Srmklive\\PayPal\\": "src/"
  4966. }
  4967. },
  4968. "notification-url": "https://packagist.org/downloads/",
  4969. "license": [
  4970. "MIT"
  4971. ],
  4972. "authors": [
  4973. {
  4974. "name": "Raza Mehdi",
  4975. "email": "[email protected]"
  4976. }
  4977. ],
  4978. "description": "Laravel plugin For Processing Payments Through Paypal Express Checkout. Can Be Used Independently With Other Applications.",
  4979. "keywords": [
  4980. "http",
  4981. "laravel paypal",
  4982. "paypal",
  4983. "rest",
  4984. "web service"
  4985. ],
  4986. "support": {
  4987. "issues": "https://github.com/srmklive/laravel-paypal/issues",
  4988. "source": "https://github.com/srmklive/laravel-paypal/tree/3.0.30"
  4989. },
  4990. "time": "2024-03-03T15:33:56+00:00"
  4991. },
  4992. {
  4993. "name": "starkbank/ecdsa",
  4994. "version": "0.0.5",
  4995. "source": {
  4996. "type": "git",
  4997. "url": "https://github.com/starkbank/ecdsa-php.git",
  4998. "reference": "484bedac47bac4012dc73df91da221f0a66845cb"
  4999. },
  5000. "dist": {
  5001. "type": "zip",
  5002. "url": "https://api.github.com/repos/starkbank/ecdsa-php/zipball/484bedac47bac4012dc73df91da221f0a66845cb",
  5003. "reference": "484bedac47bac4012dc73df91da221f0a66845cb",
  5004. "shasum": ""
  5005. },
  5006. "require": {
  5007. "php": ">=5.5"
  5008. },
  5009. "type": "library",
  5010. "autoload": {
  5011. "files": [
  5012. "src/ellipticcurve.php"
  5013. ]
  5014. },
  5015. "notification-url": "https://packagist.org/downloads/",
  5016. "license": [
  5017. "MIT"
  5018. ],
  5019. "authors": [
  5020. {
  5021. "name": "StarkBank",
  5022. "email": "[email protected]",
  5023. "homepage": "https://starkbank.com",
  5024. "role": "Developer"
  5025. }
  5026. ],
  5027. "description": "fast openSSL-compatible implementation of the Elliptic Curve Digital Signature Algorithm (ECDSA)",
  5028. "homepage": "https://github.com/starkbank/ecdsa-php",
  5029. "support": {
  5030. "issues": "https://github.com/starkbank/ecdsa-php/issues",
  5031. "source": "https://github.com/starkbank/ecdsa-php/tree/v0.0.5"
  5032. },
  5033. "time": "2021-06-06T22:24:49+00:00"
  5034. },
  5035. {
  5036. "name": "stripe/stripe-php",
  5037. "version": "v13.16.0",
  5038. "source": {
  5039. "type": "git",
  5040. "url": "https://github.com/stripe/stripe-php.git",
  5041. "reference": "b122efcf4ee02256e4a9ae60783cbf1c3f702503"
  5042. },
  5043. "dist": {
  5044. "type": "zip",
  5045. "url": "https://api.github.com/repos/stripe/stripe-php/zipball/b122efcf4ee02256e4a9ae60783cbf1c3f702503",
  5046. "reference": "b122efcf4ee02256e4a9ae60783cbf1c3f702503",
  5047. "shasum": ""
  5048. },
  5049. "require": {
  5050. "ext-curl": "*",
  5051. "ext-json": "*",
  5052. "ext-mbstring": "*",
  5053. "php": ">=5.6.0"
  5054. },
  5055. "require-dev": {
  5056. "friendsofphp/php-cs-fixer": "3.5.0",
  5057. "phpstan/phpstan": "^1.2",
  5058. "phpunit/phpunit": "^5.7 || ^9.0"
  5059. },
  5060. "type": "library",
  5061. "extra": {
  5062. "branch-alias": {
  5063. "dev-master": "2.0-dev"
  5064. }
  5065. },
  5066. "autoload": {
  5067. "psr-4": {
  5068. "Stripe\\": "lib/"
  5069. }
  5070. },
  5071. "notification-url": "https://packagist.org/downloads/",
  5072. "license": [
  5073. "MIT"
  5074. ],
  5075. "authors": [
  5076. {
  5077. "name": "Stripe and contributors",
  5078. "homepage": "https://github.com/stripe/stripe-php/contributors"
  5079. }
  5080. ],
  5081. "description": "Stripe PHP Library",
  5082. "homepage": "https://stripe.com/",
  5083. "keywords": [
  5084. "api",
  5085. "payment processing",
  5086. "stripe"
  5087. ],
  5088. "support": {
  5089. "issues": "https://github.com/stripe/stripe-php/issues",
  5090. "source": "https://github.com/stripe/stripe-php/tree/v13.16.0"
  5091. },
  5092. "time": "2024-03-28T19:17:08+00:00"
  5093. },
  5094. {
  5095. "name": "symfony/clock",
  5096. "version": "v7.0.5",
  5097. "source": {
  5098. "type": "git",
  5099. "url": "https://github.com/symfony/clock.git",
  5100. "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2"
  5101. },
  5102. "dist": {
  5103. "type": "zip",
  5104. "url": "https://api.github.com/repos/symfony/clock/zipball/8b9d08887353d627d5f6c3bf3373b398b49051c2",
  5105. "reference": "8b9d08887353d627d5f6c3bf3373b398b49051c2",
  5106. "shasum": ""
  5107. },
  5108. "require": {
  5109. "php": ">=8.2",
  5110. "psr/clock": "^1.0",
  5111. "symfony/polyfill-php83": "^1.28"
  5112. },
  5113. "provide": {
  5114. "psr/clock-implementation": "1.0"
  5115. },
  5116. "type": "library",
  5117. "autoload": {
  5118. "files": [
  5119. "Resources/now.php"
  5120. ],
  5121. "psr-4": {
  5122. "Symfony\\Component\\Clock\\": ""
  5123. },
  5124. "exclude-from-classmap": [
  5125. "/Tests/"
  5126. ]
  5127. },
  5128. "notification-url": "https://packagist.org/downloads/",
  5129. "license": [
  5130. "MIT"
  5131. ],
  5132. "authors": [
  5133. {
  5134. "name": "Nicolas Grekas",
  5135. "email": "[email protected]"
  5136. },
  5137. {
  5138. "name": "Symfony Community",
  5139. "homepage": "https://symfony.com/contributors"
  5140. }
  5141. ],
  5142. "description": "Decouples applications from the system clock",
  5143. "homepage": "https://symfony.com",
  5144. "keywords": [
  5145. "clock",
  5146. "psr20",
  5147. "time"
  5148. ],
  5149. "support": {
  5150. "source": "https://github.com/symfony/clock/tree/v7.0.5"
  5151. },
  5152. "funding": [
  5153. {
  5154. "url": "https://symfony.com/sponsor",
  5155. "type": "custom"
  5156. },
  5157. {
  5158. "url": "https://github.com/fabpot",
  5159. "type": "github"
  5160. },
  5161. {
  5162. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5163. "type": "tidelift"
  5164. }
  5165. ],
  5166. "time": "2024-03-02T12:46:12+00:00"
  5167. },
  5168. {
  5169. "name": "symfony/deprecation-contracts",
  5170. "version": "v3.4.0",
  5171. "source": {
  5172. "type": "git",
  5173. "url": "https://github.com/symfony/deprecation-contracts.git",
  5174. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf"
  5175. },
  5176. "dist": {
  5177. "type": "zip",
  5178. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/7c3aff79d10325257a001fcf92d991f24fc967cf",
  5179. "reference": "7c3aff79d10325257a001fcf92d991f24fc967cf",
  5180. "shasum": ""
  5181. },
  5182. "require": {
  5183. "php": ">=8.1"
  5184. },
  5185. "type": "library",
  5186. "extra": {
  5187. "branch-alias": {
  5188. "dev-main": "3.4-dev"
  5189. },
  5190. "thanks": {
  5191. "name": "symfony/contracts",
  5192. "url": "https://github.com/symfony/contracts"
  5193. }
  5194. },
  5195. "autoload": {
  5196. "files": [
  5197. "function.php"
  5198. ]
  5199. },
  5200. "notification-url": "https://packagist.org/downloads/",
  5201. "license": [
  5202. "MIT"
  5203. ],
  5204. "authors": [
  5205. {
  5206. "name": "Nicolas Grekas",
  5207. "email": "[email protected]"
  5208. },
  5209. {
  5210. "name": "Symfony Community",
  5211. "homepage": "https://symfony.com/contributors"
  5212. }
  5213. ],
  5214. "description": "A generic function and convention to trigger deprecation notices",
  5215. "homepage": "https://symfony.com",
  5216. "support": {
  5217. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.4.0"
  5218. },
  5219. "funding": [
  5220. {
  5221. "url": "https://symfony.com/sponsor",
  5222. "type": "custom"
  5223. },
  5224. {
  5225. "url": "https://github.com/fabpot",
  5226. "type": "github"
  5227. },
  5228. {
  5229. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5230. "type": "tidelift"
  5231. }
  5232. ],
  5233. "time": "2023-05-23T14:45:45+00:00"
  5234. },
  5235. {
  5236. "name": "symfony/http-client",
  5237. "version": "v7.0.5",
  5238. "source": {
  5239. "type": "git",
  5240. "url": "https://github.com/symfony/http-client.git",
  5241. "reference": "425f462a59d8030703ee04a9e1c666575ed5db3b"
  5242. },
  5243. "dist": {
  5244. "type": "zip",
  5245. "url": "https://api.github.com/repos/symfony/http-client/zipball/425f462a59d8030703ee04a9e1c666575ed5db3b",
  5246. "reference": "425f462a59d8030703ee04a9e1c666575ed5db3b",
  5247. "shasum": ""
  5248. },
  5249. "require": {
  5250. "php": ">=8.2",
  5251. "psr/log": "^1|^2|^3",
  5252. "symfony/http-client-contracts": "^3",
  5253. "symfony/service-contracts": "^2.5|^3"
  5254. },
  5255. "conflict": {
  5256. "php-http/discovery": "<1.15",
  5257. "symfony/http-foundation": "<6.4"
  5258. },
  5259. "provide": {
  5260. "php-http/async-client-implementation": "*",
  5261. "php-http/client-implementation": "*",
  5262. "psr/http-client-implementation": "1.0",
  5263. "symfony/http-client-implementation": "3.0"
  5264. },
  5265. "require-dev": {
  5266. "amphp/amp": "^2.5",
  5267. "amphp/http-client": "^4.2.1",
  5268. "amphp/http-tunnel": "^1.0",
  5269. "amphp/socket": "^1.1",
  5270. "guzzlehttp/promises": "^1.4",
  5271. "nyholm/psr7": "^1.0",
  5272. "php-http/httplug": "^1.0|^2.0",
  5273. "psr/http-client": "^1.0",
  5274. "symfony/dependency-injection": "^6.4|^7.0",
  5275. "symfony/http-kernel": "^6.4|^7.0",
  5276. "symfony/messenger": "^6.4|^7.0",
  5277. "symfony/process": "^6.4|^7.0",
  5278. "symfony/stopwatch": "^6.4|^7.0"
  5279. },
  5280. "type": "library",
  5281. "autoload": {
  5282. "psr-4": {
  5283. "Symfony\\Component\\HttpClient\\": ""
  5284. },
  5285. "exclude-from-classmap": [
  5286. "/Tests/"
  5287. ]
  5288. },
  5289. "notification-url": "https://packagist.org/downloads/",
  5290. "license": [
  5291. "MIT"
  5292. ],
  5293. "authors": [
  5294. {
  5295. "name": "Nicolas Grekas",
  5296. "email": "[email protected]"
  5297. },
  5298. {
  5299. "name": "Symfony Community",
  5300. "homepage": "https://symfony.com/contributors"
  5301. }
  5302. ],
  5303. "description": "Provides powerful methods to fetch HTTP resources synchronously or asynchronously",
  5304. "homepage": "https://symfony.com",
  5305. "keywords": [
  5306. "http"
  5307. ],
  5308. "support": {
  5309. "source": "https://github.com/symfony/http-client/tree/v7.0.5"
  5310. },
  5311. "funding": [
  5312. {
  5313. "url": "https://symfony.com/sponsor",
  5314. "type": "custom"
  5315. },
  5316. {
  5317. "url": "https://github.com/fabpot",
  5318. "type": "github"
  5319. },
  5320. {
  5321. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5322. "type": "tidelift"
  5323. }
  5324. ],
  5325. "time": "2024-03-02T12:46:12+00:00"
  5326. },
  5327. {
  5328. "name": "symfony/http-client-contracts",
  5329. "version": "v3.4.0",
  5330. "source": {
  5331. "type": "git",
  5332. "url": "https://github.com/symfony/http-client-contracts.git",
  5333. "reference": "1ee70e699b41909c209a0c930f11034b93578654"
  5334. },
  5335. "dist": {
  5336. "type": "zip",
  5337. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/1ee70e699b41909c209a0c930f11034b93578654",
  5338. "reference": "1ee70e699b41909c209a0c930f11034b93578654",
  5339. "shasum": ""
  5340. },
  5341. "require": {
  5342. "php": ">=8.1"
  5343. },
  5344. "type": "library",
  5345. "extra": {
  5346. "branch-alias": {
  5347. "dev-main": "3.4-dev"
  5348. },
  5349. "thanks": {
  5350. "name": "symfony/contracts",
  5351. "url": "https://github.com/symfony/contracts"
  5352. }
  5353. },
  5354. "autoload": {
  5355. "psr-4": {
  5356. "Symfony\\Contracts\\HttpClient\\": ""
  5357. },
  5358. "exclude-from-classmap": [
  5359. "/Test/"
  5360. ]
  5361. },
  5362. "notification-url": "https://packagist.org/downloads/",
  5363. "license": [
  5364. "MIT"
  5365. ],
  5366. "authors": [
  5367. {
  5368. "name": "Nicolas Grekas",
  5369. "email": "[email protected]"
  5370. },
  5371. {
  5372. "name": "Symfony Community",
  5373. "homepage": "https://symfony.com/contributors"
  5374. }
  5375. ],
  5376. "description": "Generic abstractions related to HTTP clients",
  5377. "homepage": "https://symfony.com",
  5378. "keywords": [
  5379. "abstractions",
  5380. "contracts",
  5381. "decoupling",
  5382. "interfaces",
  5383. "interoperability",
  5384. "standards"
  5385. ],
  5386. "support": {
  5387. "source": "https://github.com/symfony/http-client-contracts/tree/v3.4.0"
  5388. },
  5389. "funding": [
  5390. {
  5391. "url": "https://symfony.com/sponsor",
  5392. "type": "custom"
  5393. },
  5394. {
  5395. "url": "https://github.com/fabpot",
  5396. "type": "github"
  5397. },
  5398. {
  5399. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5400. "type": "tidelift"
  5401. }
  5402. ],
  5403. "time": "2023-07-30T20:28:31+00:00"
  5404. },
  5405. {
  5406. "name": "symfony/options-resolver",
  5407. "version": "v7.0.0",
  5408. "source": {
  5409. "type": "git",
  5410. "url": "https://github.com/symfony/options-resolver.git",
  5411. "reference": "700ff4096e346f54cb628ea650767c8130f1001f"
  5412. },
  5413. "dist": {
  5414. "type": "zip",
  5415. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/700ff4096e346f54cb628ea650767c8130f1001f",
  5416. "reference": "700ff4096e346f54cb628ea650767c8130f1001f",
  5417. "shasum": ""
  5418. },
  5419. "require": {
  5420. "php": ">=8.2",
  5421. "symfony/deprecation-contracts": "^2.5|^3"
  5422. },
  5423. "type": "library",
  5424. "autoload": {
  5425. "psr-4": {
  5426. "Symfony\\Component\\OptionsResolver\\": ""
  5427. },
  5428. "exclude-from-classmap": [
  5429. "/Tests/"
  5430. ]
  5431. },
  5432. "notification-url": "https://packagist.org/downloads/",
  5433. "license": [
  5434. "MIT"
  5435. ],
  5436. "authors": [
  5437. {
  5438. "name": "Fabien Potencier",
  5439. "email": "[email protected]"
  5440. },
  5441. {
  5442. "name": "Symfony Community",
  5443. "homepage": "https://symfony.com/contributors"
  5444. }
  5445. ],
  5446. "description": "Provides an improved replacement for the array_replace PHP function",
  5447. "homepage": "https://symfony.com",
  5448. "keywords": [
  5449. "config",
  5450. "configuration",
  5451. "options"
  5452. ],
  5453. "support": {
  5454. "source": "https://github.com/symfony/options-resolver/tree/v7.0.0"
  5455. },
  5456. "funding": [
  5457. {
  5458. "url": "https://symfony.com/sponsor",
  5459. "type": "custom"
  5460. },
  5461. {
  5462. "url": "https://github.com/fabpot",
  5463. "type": "github"
  5464. },
  5465. {
  5466. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5467. "type": "tidelift"
  5468. }
  5469. ],
  5470. "time": "2023-08-08T10:20:21+00:00"
  5471. },
  5472. {
  5473. "name": "symfony/polyfill-ctype",
  5474. "version": "v1.29.0",
  5475. "source": {
  5476. "type": "git",
  5477. "url": "https://github.com/symfony/polyfill-ctype.git",
  5478. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4"
  5479. },
  5480. "dist": {
  5481. "type": "zip",
  5482. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5483. "reference": "ef4d7e442ca910c4764bce785146269b30cb5fc4",
  5484. "shasum": ""
  5485. },
  5486. "require": {
  5487. "php": ">=7.1"
  5488. },
  5489. "provide": {
  5490. "ext-ctype": "*"
  5491. },
  5492. "suggest": {
  5493. "ext-ctype": "For best performance"
  5494. },
  5495. "type": "library",
  5496. "extra": {
  5497. "thanks": {
  5498. "name": "symfony/polyfill",
  5499. "url": "https://github.com/symfony/polyfill"
  5500. }
  5501. },
  5502. "autoload": {
  5503. "files": [
  5504. "bootstrap.php"
  5505. ],
  5506. "psr-4": {
  5507. "Symfony\\Polyfill\\Ctype\\": ""
  5508. }
  5509. },
  5510. "notification-url": "https://packagist.org/downloads/",
  5511. "license": [
  5512. "MIT"
  5513. ],
  5514. "authors": [
  5515. {
  5516. "name": "Gert de Pagter",
  5517. "email": "[email protected]"
  5518. },
  5519. {
  5520. "name": "Symfony Community",
  5521. "homepage": "https://symfony.com/contributors"
  5522. }
  5523. ],
  5524. "description": "Symfony polyfill for ctype functions",
  5525. "homepage": "https://symfony.com",
  5526. "keywords": [
  5527. "compatibility",
  5528. "ctype",
  5529. "polyfill",
  5530. "portable"
  5531. ],
  5532. "support": {
  5533. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.29.0"
  5534. },
  5535. "funding": [
  5536. {
  5537. "url": "https://symfony.com/sponsor",
  5538. "type": "custom"
  5539. },
  5540. {
  5541. "url": "https://github.com/fabpot",
  5542. "type": "github"
  5543. },
  5544. {
  5545. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5546. "type": "tidelift"
  5547. }
  5548. ],
  5549. "time": "2024-01-29T20:11:03+00:00"
  5550. },
  5551. {
  5552. "name": "symfony/polyfill-iconv",
  5553. "version": "v1.29.0",
  5554. "source": {
  5555. "type": "git",
  5556. "url": "https://github.com/symfony/polyfill-iconv.git",
  5557. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f"
  5558. },
  5559. "dist": {
  5560. "type": "zip",
  5561. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  5562. "reference": "cd4226d140ecd3d0f13d32ed0a4a095ffe871d2f",
  5563. "shasum": ""
  5564. },
  5565. "require": {
  5566. "php": ">=7.1"
  5567. },
  5568. "provide": {
  5569. "ext-iconv": "*"
  5570. },
  5571. "suggest": {
  5572. "ext-iconv": "For best performance"
  5573. },
  5574. "type": "library",
  5575. "extra": {
  5576. "thanks": {
  5577. "name": "symfony/polyfill",
  5578. "url": "https://github.com/symfony/polyfill"
  5579. }
  5580. },
  5581. "autoload": {
  5582. "files": [
  5583. "bootstrap.php"
  5584. ],
  5585. "psr-4": {
  5586. "Symfony\\Polyfill\\Iconv\\": ""
  5587. }
  5588. },
  5589. "notification-url": "https://packagist.org/downloads/",
  5590. "license": [
  5591. "MIT"
  5592. ],
  5593. "authors": [
  5594. {
  5595. "name": "Nicolas Grekas",
  5596. "email": "[email protected]"
  5597. },
  5598. {
  5599. "name": "Symfony Community",
  5600. "homepage": "https://symfony.com/contributors"
  5601. }
  5602. ],
  5603. "description": "Symfony polyfill for the Iconv extension",
  5604. "homepage": "https://symfony.com",
  5605. "keywords": [
  5606. "compatibility",
  5607. "iconv",
  5608. "polyfill",
  5609. "portable",
  5610. "shim"
  5611. ],
  5612. "support": {
  5613. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.29.0"
  5614. },
  5615. "funding": [
  5616. {
  5617. "url": "https://symfony.com/sponsor",
  5618. "type": "custom"
  5619. },
  5620. {
  5621. "url": "https://github.com/fabpot",
  5622. "type": "github"
  5623. },
  5624. {
  5625. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5626. "type": "tidelift"
  5627. }
  5628. ],
  5629. "time": "2024-01-29T20:11:03+00:00"
  5630. },
  5631. {
  5632. "name": "symfony/polyfill-intl-grapheme",
  5633. "version": "v1.29.0",
  5634. "source": {
  5635. "type": "git",
  5636. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  5637. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f"
  5638. },
  5639. "dist": {
  5640. "type": "zip",
  5641. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5642. "reference": "32a9da87d7b3245e09ac426c83d334ae9f06f80f",
  5643. "shasum": ""
  5644. },
  5645. "require": {
  5646. "php": ">=7.1"
  5647. },
  5648. "suggest": {
  5649. "ext-intl": "For best performance"
  5650. },
  5651. "type": "library",
  5652. "extra": {
  5653. "thanks": {
  5654. "name": "symfony/polyfill",
  5655. "url": "https://github.com/symfony/polyfill"
  5656. }
  5657. },
  5658. "autoload": {
  5659. "files": [
  5660. "bootstrap.php"
  5661. ],
  5662. "psr-4": {
  5663. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  5664. }
  5665. },
  5666. "notification-url": "https://packagist.org/downloads/",
  5667. "license": [
  5668. "MIT"
  5669. ],
  5670. "authors": [
  5671. {
  5672. "name": "Nicolas Grekas",
  5673. "email": "[email protected]"
  5674. },
  5675. {
  5676. "name": "Symfony Community",
  5677. "homepage": "https://symfony.com/contributors"
  5678. }
  5679. ],
  5680. "description": "Symfony polyfill for intl's grapheme_* functions",
  5681. "homepage": "https://symfony.com",
  5682. "keywords": [
  5683. "compatibility",
  5684. "grapheme",
  5685. "intl",
  5686. "polyfill",
  5687. "portable",
  5688. "shim"
  5689. ],
  5690. "support": {
  5691. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.29.0"
  5692. },
  5693. "funding": [
  5694. {
  5695. "url": "https://symfony.com/sponsor",
  5696. "type": "custom"
  5697. },
  5698. {
  5699. "url": "https://github.com/fabpot",
  5700. "type": "github"
  5701. },
  5702. {
  5703. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5704. "type": "tidelift"
  5705. }
  5706. ],
  5707. "time": "2024-01-29T20:11:03+00:00"
  5708. },
  5709. {
  5710. "name": "symfony/polyfill-intl-normalizer",
  5711. "version": "v1.29.0",
  5712. "source": {
  5713. "type": "git",
  5714. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  5715. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d"
  5716. },
  5717. "dist": {
  5718. "type": "zip",
  5719. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/bc45c394692b948b4d383a08d7753968bed9a83d",
  5720. "reference": "bc45c394692b948b4d383a08d7753968bed9a83d",
  5721. "shasum": ""
  5722. },
  5723. "require": {
  5724. "php": ">=7.1"
  5725. },
  5726. "suggest": {
  5727. "ext-intl": "For best performance"
  5728. },
  5729. "type": "library",
  5730. "extra": {
  5731. "thanks": {
  5732. "name": "symfony/polyfill",
  5733. "url": "https://github.com/symfony/polyfill"
  5734. }
  5735. },
  5736. "autoload": {
  5737. "files": [
  5738. "bootstrap.php"
  5739. ],
  5740. "psr-4": {
  5741. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  5742. },
  5743. "classmap": [
  5744. "Resources/stubs"
  5745. ]
  5746. },
  5747. "notification-url": "https://packagist.org/downloads/",
  5748. "license": [
  5749. "MIT"
  5750. ],
  5751. "authors": [
  5752. {
  5753. "name": "Nicolas Grekas",
  5754. "email": "[email protected]"
  5755. },
  5756. {
  5757. "name": "Symfony Community",
  5758. "homepage": "https://symfony.com/contributors"
  5759. }
  5760. ],
  5761. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  5762. "homepage": "https://symfony.com",
  5763. "keywords": [
  5764. "compatibility",
  5765. "intl",
  5766. "normalizer",
  5767. "polyfill",
  5768. "portable",
  5769. "shim"
  5770. ],
  5771. "support": {
  5772. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.29.0"
  5773. },
  5774. "funding": [
  5775. {
  5776. "url": "https://symfony.com/sponsor",
  5777. "type": "custom"
  5778. },
  5779. {
  5780. "url": "https://github.com/fabpot",
  5781. "type": "github"
  5782. },
  5783. {
  5784. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5785. "type": "tidelift"
  5786. }
  5787. ],
  5788. "time": "2024-01-29T20:11:03+00:00"
  5789. },
  5790. {
  5791. "name": "symfony/polyfill-mbstring",
  5792. "version": "v1.29.0",
  5793. "source": {
  5794. "type": "git",
  5795. "url": "https://github.com/symfony/polyfill-mbstring.git",
  5796. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec"
  5797. },
  5798. "dist": {
  5799. "type": "zip",
  5800. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  5801. "reference": "9773676c8a1bb1f8d4340a62efe641cf76eda7ec",
  5802. "shasum": ""
  5803. },
  5804. "require": {
  5805. "php": ">=7.1"
  5806. },
  5807. "provide": {
  5808. "ext-mbstring": "*"
  5809. },
  5810. "suggest": {
  5811. "ext-mbstring": "For best performance"
  5812. },
  5813. "type": "library",
  5814. "extra": {
  5815. "thanks": {
  5816. "name": "symfony/polyfill",
  5817. "url": "https://github.com/symfony/polyfill"
  5818. }
  5819. },
  5820. "autoload": {
  5821. "files": [
  5822. "bootstrap.php"
  5823. ],
  5824. "psr-4": {
  5825. "Symfony\\Polyfill\\Mbstring\\": ""
  5826. }
  5827. },
  5828. "notification-url": "https://packagist.org/downloads/",
  5829. "license": [
  5830. "MIT"
  5831. ],
  5832. "authors": [
  5833. {
  5834. "name": "Nicolas Grekas",
  5835. "email": "[email protected]"
  5836. },
  5837. {
  5838. "name": "Symfony Community",
  5839. "homepage": "https://symfony.com/contributors"
  5840. }
  5841. ],
  5842. "description": "Symfony polyfill for the Mbstring extension",
  5843. "homepage": "https://symfony.com",
  5844. "keywords": [
  5845. "compatibility",
  5846. "mbstring",
  5847. "polyfill",
  5848. "portable",
  5849. "shim"
  5850. ],
  5851. "support": {
  5852. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.29.0"
  5853. },
  5854. "funding": [
  5855. {
  5856. "url": "https://symfony.com/sponsor",
  5857. "type": "custom"
  5858. },
  5859. {
  5860. "url": "https://github.com/fabpot",
  5861. "type": "github"
  5862. },
  5863. {
  5864. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5865. "type": "tidelift"
  5866. }
  5867. ],
  5868. "time": "2024-01-29T20:11:03+00:00"
  5869. },
  5870. {
  5871. "name": "symfony/polyfill-php72",
  5872. "version": "v1.29.0",
  5873. "source": {
  5874. "type": "git",
  5875. "url": "https://github.com/symfony/polyfill-php72.git",
  5876. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25"
  5877. },
  5878. "dist": {
  5879. "type": "zip",
  5880. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/861391a8da9a04cbad2d232ddd9e4893220d6e25",
  5881. "reference": "861391a8da9a04cbad2d232ddd9e4893220d6e25",
  5882. "shasum": ""
  5883. },
  5884. "require": {
  5885. "php": ">=7.1"
  5886. },
  5887. "type": "library",
  5888. "extra": {
  5889. "thanks": {
  5890. "name": "symfony/polyfill",
  5891. "url": "https://github.com/symfony/polyfill"
  5892. }
  5893. },
  5894. "autoload": {
  5895. "files": [
  5896. "bootstrap.php"
  5897. ],
  5898. "psr-4": {
  5899. "Symfony\\Polyfill\\Php72\\": ""
  5900. }
  5901. },
  5902. "notification-url": "https://packagist.org/downloads/",
  5903. "license": [
  5904. "MIT"
  5905. ],
  5906. "authors": [
  5907. {
  5908. "name": "Nicolas Grekas",
  5909. "email": "[email protected]"
  5910. },
  5911. {
  5912. "name": "Symfony Community",
  5913. "homepage": "https://symfony.com/contributors"
  5914. }
  5915. ],
  5916. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  5917. "homepage": "https://symfony.com",
  5918. "keywords": [
  5919. "compatibility",
  5920. "polyfill",
  5921. "portable",
  5922. "shim"
  5923. ],
  5924. "support": {
  5925. "source": "https://github.com/symfony/polyfill-php72/tree/v1.29.0"
  5926. },
  5927. "funding": [
  5928. {
  5929. "url": "https://symfony.com/sponsor",
  5930. "type": "custom"
  5931. },
  5932. {
  5933. "url": "https://github.com/fabpot",
  5934. "type": "github"
  5935. },
  5936. {
  5937. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5938. "type": "tidelift"
  5939. }
  5940. ],
  5941. "time": "2024-01-29T20:11:03+00:00"
  5942. },
  5943. {
  5944. "name": "symfony/polyfill-php80",
  5945. "version": "v1.29.0",
  5946. "source": {
  5947. "type": "git",
  5948. "url": "https://github.com/symfony/polyfill-php80.git",
  5949. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b"
  5950. },
  5951. "dist": {
  5952. "type": "zip",
  5953. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  5954. "reference": "87b68208d5c1188808dd7839ee1e6c8ec3b02f1b",
  5955. "shasum": ""
  5956. },
  5957. "require": {
  5958. "php": ">=7.1"
  5959. },
  5960. "type": "library",
  5961. "extra": {
  5962. "thanks": {
  5963. "name": "symfony/polyfill",
  5964. "url": "https://github.com/symfony/polyfill"
  5965. }
  5966. },
  5967. "autoload": {
  5968. "files": [
  5969. "bootstrap.php"
  5970. ],
  5971. "psr-4": {
  5972. "Symfony\\Polyfill\\Php80\\": ""
  5973. },
  5974. "classmap": [
  5975. "Resources/stubs"
  5976. ]
  5977. },
  5978. "notification-url": "https://packagist.org/downloads/",
  5979. "license": [
  5980. "MIT"
  5981. ],
  5982. "authors": [
  5983. {
  5984. "name": "Ion Bazan",
  5985. "email": "[email protected]"
  5986. },
  5987. {
  5988. "name": "Nicolas Grekas",
  5989. "email": "[email protected]"
  5990. },
  5991. {
  5992. "name": "Symfony Community",
  5993. "homepage": "https://symfony.com/contributors"
  5994. }
  5995. ],
  5996. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  5997. "homepage": "https://symfony.com",
  5998. "keywords": [
  5999. "compatibility",
  6000. "polyfill",
  6001. "portable",
  6002. "shim"
  6003. ],
  6004. "support": {
  6005. "source": "https://github.com/symfony/polyfill-php80/tree/v1.29.0"
  6006. },
  6007. "funding": [
  6008. {
  6009. "url": "https://symfony.com/sponsor",
  6010. "type": "custom"
  6011. },
  6012. {
  6013. "url": "https://github.com/fabpot",
  6014. "type": "github"
  6015. },
  6016. {
  6017. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6018. "type": "tidelift"
  6019. }
  6020. ],
  6021. "time": "2024-01-29T20:11:03+00:00"
  6022. },
  6023. {
  6024. "name": "symfony/polyfill-php83",
  6025. "version": "v1.29.0",
  6026. "source": {
  6027. "type": "git",
  6028. "url": "https://github.com/symfony/polyfill-php83.git",
  6029. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff"
  6030. },
  6031. "dist": {
  6032. "type": "zip",
  6033. "url": "https://api.github.com/repos/symfony/polyfill-php83/zipball/86fcae159633351e5fd145d1c47de6c528f8caff",
  6034. "reference": "86fcae159633351e5fd145d1c47de6c528f8caff",
  6035. "shasum": ""
  6036. },
  6037. "require": {
  6038. "php": ">=7.1",
  6039. "symfony/polyfill-php80": "^1.14"
  6040. },
  6041. "type": "library",
  6042. "extra": {
  6043. "thanks": {
  6044. "name": "symfony/polyfill",
  6045. "url": "https://github.com/symfony/polyfill"
  6046. }
  6047. },
  6048. "autoload": {
  6049. "files": [
  6050. "bootstrap.php"
  6051. ],
  6052. "psr-4": {
  6053. "Symfony\\Polyfill\\Php83\\": ""
  6054. },
  6055. "classmap": [
  6056. "Resources/stubs"
  6057. ]
  6058. },
  6059. "notification-url": "https://packagist.org/downloads/",
  6060. "license": [
  6061. "MIT"
  6062. ],
  6063. "authors": [
  6064. {
  6065. "name": "Nicolas Grekas",
  6066. "email": "[email protected]"
  6067. },
  6068. {
  6069. "name": "Symfony Community",
  6070. "homepage": "https://symfony.com/contributors"
  6071. }
  6072. ],
  6073. "description": "Symfony polyfill backporting some PHP 8.3+ features to lower PHP versions",
  6074. "homepage": "https://symfony.com",
  6075. "keywords": [
  6076. "compatibility",
  6077. "polyfill",
  6078. "portable",
  6079. "shim"
  6080. ],
  6081. "support": {
  6082. "source": "https://github.com/symfony/polyfill-php83/tree/v1.29.0"
  6083. },
  6084. "funding": [
  6085. {
  6086. "url": "https://symfony.com/sponsor",
  6087. "type": "custom"
  6088. },
  6089. {
  6090. "url": "https://github.com/fabpot",
  6091. "type": "github"
  6092. },
  6093. {
  6094. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6095. "type": "tidelift"
  6096. }
  6097. ],
  6098. "time": "2024-01-29T20:11:03+00:00"
  6099. },
  6100. {
  6101. "name": "symfony/service-contracts",
  6102. "version": "v3.4.1",
  6103. "source": {
  6104. "type": "git",
  6105. "url": "https://github.com/symfony/service-contracts.git",
  6106. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0"
  6107. },
  6108. "dist": {
  6109. "type": "zip",
  6110. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/fe07cbc8d837f60caf7018068e350cc5163681a0",
  6111. "reference": "fe07cbc8d837f60caf7018068e350cc5163681a0",
  6112. "shasum": ""
  6113. },
  6114. "require": {
  6115. "php": ">=8.1",
  6116. "psr/container": "^1.1|^2.0"
  6117. },
  6118. "conflict": {
  6119. "ext-psr": "<1.1|>=2"
  6120. },
  6121. "type": "library",
  6122. "extra": {
  6123. "branch-alias": {
  6124. "dev-main": "3.4-dev"
  6125. },
  6126. "thanks": {
  6127. "name": "symfony/contracts",
  6128. "url": "https://github.com/symfony/contracts"
  6129. }
  6130. },
  6131. "autoload": {
  6132. "psr-4": {
  6133. "Symfony\\Contracts\\Service\\": ""
  6134. },
  6135. "exclude-from-classmap": [
  6136. "/Test/"
  6137. ]
  6138. },
  6139. "notification-url": "https://packagist.org/downloads/",
  6140. "license": [
  6141. "MIT"
  6142. ],
  6143. "authors": [
  6144. {
  6145. "name": "Nicolas Grekas",
  6146. "email": "[email protected]"
  6147. },
  6148. {
  6149. "name": "Symfony Community",
  6150. "homepage": "https://symfony.com/contributors"
  6151. }
  6152. ],
  6153. "description": "Generic abstractions related to writing services",
  6154. "homepage": "https://symfony.com",
  6155. "keywords": [
  6156. "abstractions",
  6157. "contracts",
  6158. "decoupling",
  6159. "interfaces",
  6160. "interoperability",
  6161. "standards"
  6162. ],
  6163. "support": {
  6164. "source": "https://github.com/symfony/service-contracts/tree/v3.4.1"
  6165. },
  6166. "funding": [
  6167. {
  6168. "url": "https://symfony.com/sponsor",
  6169. "type": "custom"
  6170. },
  6171. {
  6172. "url": "https://github.com/fabpot",
  6173. "type": "github"
  6174. },
  6175. {
  6176. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6177. "type": "tidelift"
  6178. }
  6179. ],
  6180. "time": "2023-12-26T14:02:43+00:00"
  6181. },
  6182. {
  6183. "name": "symfony/translation",
  6184. "version": "v7.0.4",
  6185. "source": {
  6186. "type": "git",
  6187. "url": "https://github.com/symfony/translation.git",
  6188. "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0"
  6189. },
  6190. "dist": {
  6191. "type": "zip",
  6192. "url": "https://api.github.com/repos/symfony/translation/zipball/5b75e872f7d135d7abb4613809fadc8d9f3d30a0",
  6193. "reference": "5b75e872f7d135d7abb4613809fadc8d9f3d30a0",
  6194. "shasum": ""
  6195. },
  6196. "require": {
  6197. "php": ">=8.2",
  6198. "symfony/polyfill-mbstring": "~1.0",
  6199. "symfony/translation-contracts": "^2.5|^3.0"
  6200. },
  6201. "conflict": {
  6202. "symfony/config": "<6.4",
  6203. "symfony/console": "<6.4",
  6204. "symfony/dependency-injection": "<6.4",
  6205. "symfony/http-client-contracts": "<2.5",
  6206. "symfony/http-kernel": "<6.4",
  6207. "symfony/service-contracts": "<2.5",
  6208. "symfony/twig-bundle": "<6.4",
  6209. "symfony/yaml": "<6.4"
  6210. },
  6211. "provide": {
  6212. "symfony/translation-implementation": "2.3|3.0"
  6213. },
  6214. "require-dev": {
  6215. "nikic/php-parser": "^4.18|^5.0",
  6216. "psr/log": "^1|^2|^3",
  6217. "symfony/config": "^6.4|^7.0",
  6218. "symfony/console": "^6.4|^7.0",
  6219. "symfony/dependency-injection": "^6.4|^7.0",
  6220. "symfony/finder": "^6.4|^7.0",
  6221. "symfony/http-client-contracts": "^2.5|^3.0",
  6222. "symfony/http-kernel": "^6.4|^7.0",
  6223. "symfony/intl": "^6.4|^7.0",
  6224. "symfony/polyfill-intl-icu": "^1.21",
  6225. "symfony/routing": "^6.4|^7.0",
  6226. "symfony/service-contracts": "^2.5|^3",
  6227. "symfony/yaml": "^6.4|^7.0"
  6228. },
  6229. "type": "library",
  6230. "autoload": {
  6231. "files": [
  6232. "Resources/functions.php"
  6233. ],
  6234. "psr-4": {
  6235. "Symfony\\Component\\Translation\\": ""
  6236. },
  6237. "exclude-from-classmap": [
  6238. "/Tests/"
  6239. ]
  6240. },
  6241. "notification-url": "https://packagist.org/downloads/",
  6242. "license": [
  6243. "MIT"
  6244. ],
  6245. "authors": [
  6246. {
  6247. "name": "Fabien Potencier",
  6248. "email": "[email protected]"
  6249. },
  6250. {
  6251. "name": "Symfony Community",
  6252. "homepage": "https://symfony.com/contributors"
  6253. }
  6254. ],
  6255. "description": "Provides tools to internationalize your application",
  6256. "homepage": "https://symfony.com",
  6257. "support": {
  6258. "source": "https://github.com/symfony/translation/tree/v7.0.4"
  6259. },
  6260. "funding": [
  6261. {
  6262. "url": "https://symfony.com/sponsor",
  6263. "type": "custom"
  6264. },
  6265. {
  6266. "url": "https://github.com/fabpot",
  6267. "type": "github"
  6268. },
  6269. {
  6270. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6271. "type": "tidelift"
  6272. }
  6273. ],
  6274. "time": "2024-02-22T20:27:20+00:00"
  6275. },
  6276. {
  6277. "name": "symfony/translation-contracts",
  6278. "version": "v3.4.1",
  6279. "source": {
  6280. "type": "git",
  6281. "url": "https://github.com/symfony/translation-contracts.git",
  6282. "reference": "06450585bf65e978026bda220cdebca3f867fde7"
  6283. },
  6284. "dist": {
  6285. "type": "zip",
  6286. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/06450585bf65e978026bda220cdebca3f867fde7",
  6287. "reference": "06450585bf65e978026bda220cdebca3f867fde7",
  6288. "shasum": ""
  6289. },
  6290. "require": {
  6291. "php": ">=8.1"
  6292. },
  6293. "type": "library",
  6294. "extra": {
  6295. "branch-alias": {
  6296. "dev-main": "3.4-dev"
  6297. },
  6298. "thanks": {
  6299. "name": "symfony/contracts",
  6300. "url": "https://github.com/symfony/contracts"
  6301. }
  6302. },
  6303. "autoload": {
  6304. "psr-4": {
  6305. "Symfony\\Contracts\\Translation\\": ""
  6306. },
  6307. "exclude-from-classmap": [
  6308. "/Test/"
  6309. ]
  6310. },
  6311. "notification-url": "https://packagist.org/downloads/",
  6312. "license": [
  6313. "MIT"
  6314. ],
  6315. "authors": [
  6316. {
  6317. "name": "Nicolas Grekas",
  6318. "email": "[email protected]"
  6319. },
  6320. {
  6321. "name": "Symfony Community",
  6322. "homepage": "https://symfony.com/contributors"
  6323. }
  6324. ],
  6325. "description": "Generic abstractions related to translation",
  6326. "homepage": "https://symfony.com",
  6327. "keywords": [
  6328. "abstractions",
  6329. "contracts",
  6330. "decoupling",
  6331. "interfaces",
  6332. "interoperability",
  6333. "standards"
  6334. ],
  6335. "support": {
  6336. "source": "https://github.com/symfony/translation-contracts/tree/v3.4.1"
  6337. },
  6338. "funding": [
  6339. {
  6340. "url": "https://symfony.com/sponsor",
  6341. "type": "custom"
  6342. },
  6343. {
  6344. "url": "https://github.com/fabpot",
  6345. "type": "github"
  6346. },
  6347. {
  6348. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6349. "type": "tidelift"
  6350. }
  6351. ],
  6352. "time": "2023-12-26T14:02:43+00:00"
  6353. },
  6354. {
  6355. "name": "tronovav/geoip2-update",
  6356. "version": "v2.3.1",
  6357. "source": {
  6358. "type": "git",
  6359. "url": "https://github.com/tronovav/geoip2-update.git",
  6360. "reference": "86fddebc2bd277832846c8d6bb3b059fd093db06"
  6361. },
  6362. "dist": {
  6363. "type": "zip",
  6364. "url": "https://api.github.com/repos/tronovav/geoip2-update/zipball/86fddebc2bd277832846c8d6bb3b059fd093db06",
  6365. "reference": "86fddebc2bd277832846c8d6bb3b059fd093db06",
  6366. "shasum": ""
  6367. },
  6368. "require": {
  6369. "ext-curl": "*",
  6370. "ext-json": "*",
  6371. "php": ">=5.3"
  6372. },
  6373. "suggest": {
  6374. "ext-zip": "Required for updating the CSV databases."
  6375. },
  6376. "type": "library",
  6377. "autoload": {
  6378. "psr-4": {
  6379. "tronovav\\GeoIP2Update\\": "src/"
  6380. }
  6381. },
  6382. "notification-url": "https://packagist.org/downloads/",
  6383. "license": [
  6384. "MIT"
  6385. ],
  6386. "authors": [
  6387. {
  6388. "name": "Andrey Tronov",
  6389. "email": "[email protected]"
  6390. }
  6391. ],
  6392. "description": "Update GeoIP2/GeoLite2 databases from your script, program or via composer.",
  6393. "keywords": [
  6394. "geoip",
  6395. "geoip2",
  6396. "geolite2",
  6397. "geolocation",
  6398. "maxmind"
  6399. ],
  6400. "support": {
  6401. "email": "[email protected]",
  6402. "issues": "https://github.com/tronovav/geoip2-update/issues",
  6403. "source": "https://github.com/tronovav/geoip2-update/tree/v2.3.1"
  6404. },
  6405. "time": "2023-10-25T22:16:50+00:00"
  6406. },
  6407. {
  6408. "name": "twig/twig",
  6409. "version": "v3.8.0",
  6410. "source": {
  6411. "type": "git",
  6412. "url": "https://github.com/twigphp/Twig.git",
  6413. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d"
  6414. },
  6415. "dist": {
  6416. "type": "zip",
  6417. "url": "https://api.github.com/repos/twigphp/Twig/zipball/9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  6418. "reference": "9d15f0ac07f44dc4217883ec6ae02fd555c6f71d",
  6419. "shasum": ""
  6420. },
  6421. "require": {
  6422. "php": ">=7.2.5",
  6423. "symfony/polyfill-ctype": "^1.8",
  6424. "symfony/polyfill-mbstring": "^1.3",
  6425. "symfony/polyfill-php80": "^1.22"
  6426. },
  6427. "require-dev": {
  6428. "psr/container": "^1.0|^2.0",
  6429. "symfony/phpunit-bridge": "^5.4.9|^6.3|^7.0"
  6430. },
  6431. "type": "library",
  6432. "autoload": {
  6433. "psr-4": {
  6434. "Twig\\": "src/"
  6435. }
  6436. },
  6437. "notification-url": "https://packagist.org/downloads/",
  6438. "license": [
  6439. "BSD-3-Clause"
  6440. ],
  6441. "authors": [
  6442. {
  6443. "name": "Fabien Potencier",
  6444. "email": "[email protected]",
  6445. "homepage": "http://fabien.potencier.org",
  6446. "role": "Lead Developer"
  6447. },
  6448. {
  6449. "name": "Twig Team",
  6450. "role": "Contributors"
  6451. },
  6452. {
  6453. "name": "Armin Ronacher",
  6454. "email": "[email protected]",
  6455. "role": "Project Founder"
  6456. }
  6457. ],
  6458. "description": "Twig, the flexible, fast, and secure template language for PHP",
  6459. "homepage": "https://twig.symfony.com",
  6460. "keywords": [
  6461. "templating"
  6462. ],
  6463. "support": {
  6464. "issues": "https://github.com/twigphp/Twig/issues",
  6465. "source": "https://github.com/twigphp/Twig/tree/v3.8.0"
  6466. },
  6467. "funding": [
  6468. {
  6469. "url": "https://github.com/fabpot",
  6470. "type": "github"
  6471. },
  6472. {
  6473. "url": "https://tidelift.com/funding/github/packagist/twig/twig",
  6474. "type": "tidelift"
  6475. }
  6476. ],
  6477. "time": "2023-11-21T18:54:41+00:00"
  6478. },
  6479. {
  6480. "name": "vectorface/googleauthenticator",
  6481. "version": "v3.2",
  6482. "source": {
  6483. "type": "git",
  6484. "url": "https://github.com/Vectorface/GoogleAuthenticator.git",
  6485. "reference": "c98adc40a5a1df104693d16908de74b85e107a1d"
  6486. },
  6487. "dist": {
  6488. "type": "zip",
  6489. "url": "https://api.github.com/repos/Vectorface/GoogleAuthenticator/zipball/c98adc40a5a1df104693d16908de74b85e107a1d",
  6490. "reference": "c98adc40a5a1df104693d16908de74b85e107a1d",
  6491. "shasum": ""
  6492. },
  6493. "require": {
  6494. "endroid/qr-code": "^5.0.0",
  6495. "php": ">=8.1"
  6496. },
  6497. "require-dev": {
  6498. "phpunit/phpunit": "^9"
  6499. },
  6500. "type": "library",
  6501. "autoload": {
  6502. "psr-4": {
  6503. "Vectorface\\": "src/"
  6504. }
  6505. },
  6506. "notification-url": "https://packagist.org/downloads/",
  6507. "license": [
  6508. "BSD-2-Clause"
  6509. ],
  6510. "authors": [
  6511. {
  6512. "name": "Michael Kliewe",
  6513. "email": "[email protected]",
  6514. "homepage": "http://www.phpgangsta.de/",
  6515. "role": "Developer"
  6516. },
  6517. {
  6518. "name": "Francis Lavoie",
  6519. "email": "[email protected]",
  6520. "homepage": "http://vectorface.com/",
  6521. "role": "Developer"
  6522. }
  6523. ],
  6524. "description": "Google Authenticator 2-factor authentication",
  6525. "keywords": [
  6526. "googleauthenticator",
  6527. "rfc6238",
  6528. "totp"
  6529. ],
  6530. "support": {
  6531. "issues": "https://github.com/Vectorface/GoogleAuthenticator/issues",
  6532. "source": "https://github.com/Vectorface/GoogleAuthenticator"
  6533. },
  6534. "time": "2024-01-31T13:05:32+00:00"
  6535. },
  6536. {
  6537. "name": "voku/anti-xss",
  6538. "version": "4.1.42",
  6539. "source": {
  6540. "type": "git",
  6541. "url": "https://github.com/voku/anti-xss.git",
  6542. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675"
  6543. },
  6544. "dist": {
  6545. "type": "zip",
  6546. "url": "https://api.github.com/repos/voku/anti-xss/zipball/bca1f8607e55a3c5077483615cd93bd8f11bd675",
  6547. "reference": "bca1f8607e55a3c5077483615cd93bd8f11bd675",
  6548. "shasum": ""
  6549. },
  6550. "require": {
  6551. "php": ">=7.0.0",
  6552. "voku/portable-utf8": "~6.0.2"
  6553. },
  6554. "require-dev": {
  6555. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6556. },
  6557. "type": "library",
  6558. "extra": {
  6559. "branch-alias": {
  6560. "dev-master": "4.1.x-dev"
  6561. }
  6562. },
  6563. "autoload": {
  6564. "psr-4": {
  6565. "voku\\helper\\": "src/voku/helper/"
  6566. }
  6567. },
  6568. "notification-url": "https://packagist.org/downloads/",
  6569. "license": [
  6570. "MIT"
  6571. ],
  6572. "authors": [
  6573. {
  6574. "name": "EllisLab Dev Team",
  6575. "homepage": "http://ellislab.com/"
  6576. },
  6577. {
  6578. "name": "Lars Moelleken",
  6579. "email": "[email protected]",
  6580. "homepage": "https://www.moelleken.org/"
  6581. }
  6582. ],
  6583. "description": "anti xss-library",
  6584. "homepage": "https://github.com/voku/anti-xss",
  6585. "keywords": [
  6586. "anti-xss",
  6587. "clean",
  6588. "security",
  6589. "xss"
  6590. ],
  6591. "support": {
  6592. "issues": "https://github.com/voku/anti-xss/issues",
  6593. "source": "https://github.com/voku/anti-xss/tree/4.1.42"
  6594. },
  6595. "funding": [
  6596. {
  6597. "url": "https://www.paypal.me/moelleken",
  6598. "type": "custom"
  6599. },
  6600. {
  6601. "url": "https://github.com/voku",
  6602. "type": "github"
  6603. },
  6604. {
  6605. "url": "https://opencollective.com/anti-xss",
  6606. "type": "open_collective"
  6607. },
  6608. {
  6609. "url": "https://www.patreon.com/voku",
  6610. "type": "patreon"
  6611. },
  6612. {
  6613. "url": "https://tidelift.com/funding/github/packagist/voku/anti-xss",
  6614. "type": "tidelift"
  6615. }
  6616. ],
  6617. "time": "2023-07-03T14:40:46+00:00"
  6618. },
  6619. {
  6620. "name": "voku/portable-ascii",
  6621. "version": "2.0.1",
  6622. "source": {
  6623. "type": "git",
  6624. "url": "https://github.com/voku/portable-ascii.git",
  6625. "reference": "b56450eed252f6801410d810c8e1727224ae0743"
  6626. },
  6627. "dist": {
  6628. "type": "zip",
  6629. "url": "https://api.github.com/repos/voku/portable-ascii/zipball/b56450eed252f6801410d810c8e1727224ae0743",
  6630. "reference": "b56450eed252f6801410d810c8e1727224ae0743",
  6631. "shasum": ""
  6632. },
  6633. "require": {
  6634. "php": ">=7.0.0"
  6635. },
  6636. "require-dev": {
  6637. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0"
  6638. },
  6639. "suggest": {
  6640. "ext-intl": "Use Intl for transliterator_transliterate() support"
  6641. },
  6642. "type": "library",
  6643. "autoload": {
  6644. "psr-4": {
  6645. "voku\\": "src/voku/"
  6646. }
  6647. },
  6648. "notification-url": "https://packagist.org/downloads/",
  6649. "license": [
  6650. "MIT"
  6651. ],
  6652. "authors": [
  6653. {
  6654. "name": "Lars Moelleken",
  6655. "homepage": "http://www.moelleken.org/"
  6656. }
  6657. ],
  6658. "description": "Portable ASCII library - performance optimized (ascii) string functions for php.",
  6659. "homepage": "https://github.com/voku/portable-ascii",
  6660. "keywords": [
  6661. "ascii",
  6662. "clean",
  6663. "php"
  6664. ],
  6665. "support": {
  6666. "issues": "https://github.com/voku/portable-ascii/issues",
  6667. "source": "https://github.com/voku/portable-ascii/tree/2.0.1"
  6668. },
  6669. "funding": [
  6670. {
  6671. "url": "https://www.paypal.me/moelleken",
  6672. "type": "custom"
  6673. },
  6674. {
  6675. "url": "https://github.com/voku",
  6676. "type": "github"
  6677. },
  6678. {
  6679. "url": "https://opencollective.com/portable-ascii",
  6680. "type": "open_collective"
  6681. },
  6682. {
  6683. "url": "https://www.patreon.com/voku",
  6684. "type": "patreon"
  6685. },
  6686. {
  6687. "url": "https://tidelift.com/funding/github/packagist/voku/portable-ascii",
  6688. "type": "tidelift"
  6689. }
  6690. ],
  6691. "time": "2022-03-08T17:03:00+00:00"
  6692. },
  6693. {
  6694. "name": "voku/portable-utf8",
  6695. "version": "6.0.13",
  6696. "source": {
  6697. "type": "git",
  6698. "url": "https://github.com/voku/portable-utf8.git",
  6699. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f"
  6700. },
  6701. "dist": {
  6702. "type": "zip",
  6703. "url": "https://api.github.com/repos/voku/portable-utf8/zipball/b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6704. "reference": "b8ce36bf26593e5c2e81b1850ef0ffb299d2043f",
  6705. "shasum": ""
  6706. },
  6707. "require": {
  6708. "php": ">=7.0.0",
  6709. "symfony/polyfill-iconv": "~1.0",
  6710. "symfony/polyfill-intl-grapheme": "~1.0",
  6711. "symfony/polyfill-intl-normalizer": "~1.0",
  6712. "symfony/polyfill-mbstring": "~1.0",
  6713. "symfony/polyfill-php72": "~1.0",
  6714. "voku/portable-ascii": "~2.0.0"
  6715. },
  6716. "require-dev": {
  6717. "phpstan/phpstan": "1.9.*@dev",
  6718. "phpstan/phpstan-strict-rules": "1.4.*@dev",
  6719. "phpunit/phpunit": "~6.0 || ~7.0 || ~9.0",
  6720. "thecodingmachine/phpstan-strict-rules": "1.0.*@dev",
  6721. "voku/phpstan-rules": "3.1.*@dev"
  6722. },
  6723. "suggest": {
  6724. "ext-ctype": "Use Ctype for e.g. hexadecimal digit detection",
  6725. "ext-fileinfo": "Use Fileinfo for better binary file detection",
  6726. "ext-iconv": "Use iconv for best performance",
  6727. "ext-intl": "Use Intl for best performance",
  6728. "ext-json": "Use JSON for string detection",
  6729. "ext-mbstring": "Use Mbstring for best performance"
  6730. },
  6731. "type": "library",
  6732. "autoload": {
  6733. "files": [
  6734. "bootstrap.php"
  6735. ],
  6736. "psr-4": {
  6737. "voku\\": "src/voku/"
  6738. }
  6739. },
  6740. "notification-url": "https://packagist.org/downloads/",
  6741. "license": [
  6742. "(Apache-2.0 or GPL-2.0)"
  6743. ],
  6744. "authors": [
  6745. {
  6746. "name": "Nicolas Grekas",
  6747. "email": "[email protected]"
  6748. },
  6749. {
  6750. "name": "Hamid Sarfraz",
  6751. "homepage": "http://pageconfig.com/"
  6752. },
  6753. {
  6754. "name": "Lars Moelleken",
  6755. "homepage": "http://www.moelleken.org/"
  6756. }
  6757. ],
  6758. "description": "Portable UTF-8 library - performance optimized (unicode) string functions for php.",
  6759. "homepage": "https://github.com/voku/portable-utf8",
  6760. "keywords": [
  6761. "UTF",
  6762. "clean",
  6763. "php",
  6764. "unicode",
  6765. "utf-8",
  6766. "utf8"
  6767. ],
  6768. "support": {
  6769. "issues": "https://github.com/voku/portable-utf8/issues",
  6770. "source": "https://github.com/voku/portable-utf8/tree/6.0.13"
  6771. },
  6772. "funding": [
  6773. {
  6774. "url": "https://www.paypal.me/moelleken",
  6775. "type": "custom"
  6776. },
  6777. {
  6778. "url": "https://github.com/voku",
  6779. "type": "github"
  6780. },
  6781. {
  6782. "url": "https://opencollective.com/portable-utf8",
  6783. "type": "open_collective"
  6784. },
  6785. {
  6786. "url": "https://www.patreon.com/voku",
  6787. "type": "patreon"
  6788. },
  6789. {
  6790. "url": "https://tidelift.com/funding/github/packagist/voku/portable-utf8",
  6791. "type": "tidelift"
  6792. }
  6793. ],
  6794. "time": "2023-03-08T08:35:38+00:00"
  6795. },
  6796. {
  6797. "name": "webmozart/assert",
  6798. "version": "1.11.0",
  6799. "source": {
  6800. "type": "git",
  6801. "url": "https://github.com/webmozarts/assert.git",
  6802. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  6803. },
  6804. "dist": {
  6805. "type": "zip",
  6806. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6807. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  6808. "shasum": ""
  6809. },
  6810. "require": {
  6811. "ext-ctype": "*",
  6812. "php": "^7.2 || ^8.0"
  6813. },
  6814. "conflict": {
  6815. "phpstan/phpstan": "<0.12.20",
  6816. "vimeo/psalm": "<4.6.1 || 4.6.2"
  6817. },
  6818. "require-dev": {
  6819. "phpunit/phpunit": "^8.5.13"
  6820. },
  6821. "type": "library",
  6822. "extra": {
  6823. "branch-alias": {
  6824. "dev-master": "1.10-dev"
  6825. }
  6826. },
  6827. "autoload": {
  6828. "psr-4": {
  6829. "Webmozart\\Assert\\": "src/"
  6830. }
  6831. },
  6832. "notification-url": "https://packagist.org/downloads/",
  6833. "license": [
  6834. "MIT"
  6835. ],
  6836. "authors": [
  6837. {
  6838. "name": "Bernhard Schussek",
  6839. "email": "[email protected]"
  6840. }
  6841. ],
  6842. "description": "Assertions to validate method input/output with nice error messages.",
  6843. "keywords": [
  6844. "assert",
  6845. "check",
  6846. "validate"
  6847. ],
  6848. "support": {
  6849. "issues": "https://github.com/webmozarts/assert/issues",
  6850. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  6851. },
  6852. "time": "2022-06-03T18:03:27+00:00"
  6853. }
  6854. ],
  6855. "packages-dev": [
  6856. {
  6857. "name": "cmgmyr/phploc",
  6858. "version": "8.0.3",
  6859. "source": {
  6860. "type": "git",
  6861. "url": "https://github.com/cmgmyr/phploc.git",
  6862. "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f"
  6863. },
  6864. "dist": {
  6865. "type": "zip",
  6866. "url": "https://api.github.com/repos/cmgmyr/phploc/zipball/e61d4729df46c5920ab61973bfa3f70f81a70b5f",
  6867. "reference": "e61d4729df46c5920ab61973bfa3f70f81a70b5f",
  6868. "shasum": ""
  6869. },
  6870. "require": {
  6871. "ext-dom": "*",
  6872. "ext-json": "*",
  6873. "php": "^7.4 || ^8.0",
  6874. "phpunit/php-file-iterator": "^3.0|^4.0",
  6875. "sebastian/cli-parser": "^1.0|^2.0"
  6876. },
  6877. "require-dev": {
  6878. "friendsofphp/php-cs-fixer": "^3.2",
  6879. "phpunit/phpunit": "^9.0|^10.0",
  6880. "vimeo/psalm": "^5.7"
  6881. },
  6882. "bin": [
  6883. "phploc"
  6884. ],
  6885. "type": "library",
  6886. "extra": {
  6887. "branch-alias": {
  6888. "dev-main": "8.0-dev"
  6889. }
  6890. },
  6891. "autoload": {
  6892. "classmap": [
  6893. "src/"
  6894. ]
  6895. },
  6896. "notification-url": "https://packagist.org/downloads/",
  6897. "license": [
  6898. "BSD-3-Clause"
  6899. ],
  6900. "authors": [
  6901. {
  6902. "name": "Chris Gmyr",
  6903. "email": "[email protected]",
  6904. "role": "lead"
  6905. }
  6906. ],
  6907. "description": "A tool for quickly measuring the size of a PHP project.",
  6908. "homepage": "https://github.com/cmgmyr/phploc",
  6909. "support": {
  6910. "issues": "https://github.com/cmgmyr/phploc/issues",
  6911. "source": "https://github.com/cmgmyr/phploc/tree/8.0.3"
  6912. },
  6913. "funding": [
  6914. {
  6915. "url": "https://github.com/cmgmyr",
  6916. "type": "github"
  6917. }
  6918. ],
  6919. "time": "2023-08-05T16:49:39+00:00"
  6920. },
  6921. {
  6922. "name": "composer/pcre",
  6923. "version": "3.1.3",
  6924. "source": {
  6925. "type": "git",
  6926. "url": "https://github.com/composer/pcre.git",
  6927. "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8"
  6928. },
  6929. "dist": {
  6930. "type": "zip",
  6931. "url": "https://api.github.com/repos/composer/pcre/zipball/5b16e25a5355f1f3afdfc2f954a0a80aec4826a8",
  6932. "reference": "5b16e25a5355f1f3afdfc2f954a0a80aec4826a8",
  6933. "shasum": ""
  6934. },
  6935. "require": {
  6936. "php": "^7.4 || ^8.0"
  6937. },
  6938. "require-dev": {
  6939. "phpstan/phpstan": "^1.3",
  6940. "phpstan/phpstan-strict-rules": "^1.1",
  6941. "symfony/phpunit-bridge": "^5"
  6942. },
  6943. "type": "library",
  6944. "extra": {
  6945. "branch-alias": {
  6946. "dev-main": "3.x-dev"
  6947. }
  6948. },
  6949. "autoload": {
  6950. "psr-4": {
  6951. "Composer\\Pcre\\": "src"
  6952. }
  6953. },
  6954. "notification-url": "https://packagist.org/downloads/",
  6955. "license": [
  6956. "MIT"
  6957. ],
  6958. "authors": [
  6959. {
  6960. "name": "Jordi Boggiano",
  6961. "email": "[email protected]",
  6962. "homepage": "http://seld.be"
  6963. }
  6964. ],
  6965. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  6966. "keywords": [
  6967. "PCRE",
  6968. "preg",
  6969. "regex",
  6970. "regular expression"
  6971. ],
  6972. "support": {
  6973. "issues": "https://github.com/composer/pcre/issues",
  6974. "source": "https://github.com/composer/pcre/tree/3.1.3"
  6975. },
  6976. "funding": [
  6977. {
  6978. "url": "https://packagist.com",
  6979. "type": "custom"
  6980. },
  6981. {
  6982. "url": "https://github.com/composer",
  6983. "type": "github"
  6984. },
  6985. {
  6986. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  6987. "type": "tidelift"
  6988. }
  6989. ],
  6990. "time": "2024-03-19T10:26:25+00:00"
  6991. },
  6992. {
  6993. "name": "composer/semver",
  6994. "version": "3.4.0",
  6995. "source": {
  6996. "type": "git",
  6997. "url": "https://github.com/composer/semver.git",
  6998. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32"
  6999. },
  7000. "dist": {
  7001. "type": "zip",
  7002. "url": "https://api.github.com/repos/composer/semver/zipball/35e8d0af4486141bc745f23a29cc2091eb624a32",
  7003. "reference": "35e8d0af4486141bc745f23a29cc2091eb624a32",
  7004. "shasum": ""
  7005. },
  7006. "require": {
  7007. "php": "^5.3.2 || ^7.0 || ^8.0"
  7008. },
  7009. "require-dev": {
  7010. "phpstan/phpstan": "^1.4",
  7011. "symfony/phpunit-bridge": "^4.2 || ^5"
  7012. },
  7013. "type": "library",
  7014. "extra": {
  7015. "branch-alias": {
  7016. "dev-main": "3.x-dev"
  7017. }
  7018. },
  7019. "autoload": {
  7020. "psr-4": {
  7021. "Composer\\Semver\\": "src"
  7022. }
  7023. },
  7024. "notification-url": "https://packagist.org/downloads/",
  7025. "license": [
  7026. "MIT"
  7027. ],
  7028. "authors": [
  7029. {
  7030. "name": "Nils Adermann",
  7031. "email": "[email protected]",
  7032. "homepage": "http://www.naderman.de"
  7033. },
  7034. {
  7035. "name": "Jordi Boggiano",
  7036. "email": "[email protected]",
  7037. "homepage": "http://seld.be"
  7038. },
  7039. {
  7040. "name": "Rob Bast",
  7041. "email": "[email protected]",
  7042. "homepage": "http://robbast.nl"
  7043. }
  7044. ],
  7045. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  7046. "keywords": [
  7047. "semantic",
  7048. "semver",
  7049. "validation",
  7050. "versioning"
  7051. ],
  7052. "support": {
  7053. "irc": "ircs://irc.libera.chat:6697/composer",
  7054. "issues": "https://github.com/composer/semver/issues",
  7055. "source": "https://github.com/composer/semver/tree/3.4.0"
  7056. },
  7057. "funding": [
  7058. {
  7059. "url": "https://packagist.com",
  7060. "type": "custom"
  7061. },
  7062. {
  7063. "url": "https://github.com/composer",
  7064. "type": "github"
  7065. },
  7066. {
  7067. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7068. "type": "tidelift"
  7069. }
  7070. ],
  7071. "time": "2023-08-31T09:50:34+00:00"
  7072. },
  7073. {
  7074. "name": "composer/xdebug-handler",
  7075. "version": "3.0.4",
  7076. "source": {
  7077. "type": "git",
  7078. "url": "https://github.com/composer/xdebug-handler.git",
  7079. "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255"
  7080. },
  7081. "dist": {
  7082. "type": "zip",
  7083. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/4f988f8fdf580d53bdb2d1278fe93d1ed5462255",
  7084. "reference": "4f988f8fdf580d53bdb2d1278fe93d1ed5462255",
  7085. "shasum": ""
  7086. },
  7087. "require": {
  7088. "composer/pcre": "^1 || ^2 || ^3",
  7089. "php": "^7.2.5 || ^8.0",
  7090. "psr/log": "^1 || ^2 || ^3"
  7091. },
  7092. "require-dev": {
  7093. "phpstan/phpstan": "^1.0",
  7094. "phpstan/phpstan-strict-rules": "^1.1",
  7095. "phpunit/phpunit": "^8.5 || ^9.6 || ^10.5"
  7096. },
  7097. "type": "library",
  7098. "autoload": {
  7099. "psr-4": {
  7100. "Composer\\XdebugHandler\\": "src"
  7101. }
  7102. },
  7103. "notification-url": "https://packagist.org/downloads/",
  7104. "license": [
  7105. "MIT"
  7106. ],
  7107. "authors": [
  7108. {
  7109. "name": "John Stevenson",
  7110. "email": "[email protected]"
  7111. }
  7112. ],
  7113. "description": "Restarts a process without Xdebug.",
  7114. "keywords": [
  7115. "Xdebug",
  7116. "performance"
  7117. ],
  7118. "support": {
  7119. "irc": "ircs://irc.libera.chat:6697/composer",
  7120. "issues": "https://github.com/composer/xdebug-handler/issues",
  7121. "source": "https://github.com/composer/xdebug-handler/tree/3.0.4"
  7122. },
  7123. "funding": [
  7124. {
  7125. "url": "https://packagist.com",
  7126. "type": "custom"
  7127. },
  7128. {
  7129. "url": "https://github.com/composer",
  7130. "type": "github"
  7131. },
  7132. {
  7133. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  7134. "type": "tidelift"
  7135. }
  7136. ],
  7137. "time": "2024-03-26T18:29:49+00:00"
  7138. },
  7139. {
  7140. "name": "dealerdirect/phpcodesniffer-composer-installer",
  7141. "version": "v1.0.0",
  7142. "source": {
  7143. "type": "git",
  7144. "url": "https://github.com/PHPCSStandards/composer-installer.git",
  7145. "reference": "4be43904336affa5c2f70744a348312336afd0da"
  7146. },
  7147. "dist": {
  7148. "type": "zip",
  7149. "url": "https://api.github.com/repos/PHPCSStandards/composer-installer/zipball/4be43904336affa5c2f70744a348312336afd0da",
  7150. "reference": "4be43904336affa5c2f70744a348312336afd0da",
  7151. "shasum": ""
  7152. },
  7153. "require": {
  7154. "composer-plugin-api": "^1.0 || ^2.0",
  7155. "php": ">=5.4",
  7156. "squizlabs/php_codesniffer": "^2.0 || ^3.1.0 || ^4.0"
  7157. },
  7158. "require-dev": {
  7159. "composer/composer": "*",
  7160. "ext-json": "*",
  7161. "ext-zip": "*",
  7162. "php-parallel-lint/php-parallel-lint": "^1.3.1",
  7163. "phpcompatibility/php-compatibility": "^9.0",
  7164. "yoast/phpunit-polyfills": "^1.0"
  7165. },
  7166. "type": "composer-plugin",
  7167. "extra": {
  7168. "class": "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\Plugin"
  7169. },
  7170. "autoload": {
  7171. "psr-4": {
  7172. "PHPCSStandards\\Composer\\Plugin\\Installers\\PHPCodeSniffer\\": "src/"
  7173. }
  7174. },
  7175. "notification-url": "https://packagist.org/downloads/",
  7176. "license": [
  7177. "MIT"
  7178. ],
  7179. "authors": [
  7180. {
  7181. "name": "Franck Nijhof",
  7182. "email": "[email protected]",
  7183. "homepage": "http://www.frenck.nl",
  7184. "role": "Developer / IT Manager"
  7185. },
  7186. {
  7187. "name": "Contributors",
  7188. "homepage": "https://github.com/PHPCSStandards/composer-installer/graphs/contributors"
  7189. }
  7190. ],
  7191. "description": "PHP_CodeSniffer Standards Composer Installer Plugin",
  7192. "homepage": "http://www.dealerdirect.com",
  7193. "keywords": [
  7194. "PHPCodeSniffer",
  7195. "PHP_CodeSniffer",
  7196. "code quality",
  7197. "codesniffer",
  7198. "composer",
  7199. "installer",
  7200. "phpcbf",
  7201. "phpcs",
  7202. "plugin",
  7203. "qa",
  7204. "quality",
  7205. "standard",
  7206. "standards",
  7207. "style guide",
  7208. "stylecheck",
  7209. "tests"
  7210. ],
  7211. "support": {
  7212. "issues": "https://github.com/PHPCSStandards/composer-installer/issues",
  7213. "source": "https://github.com/PHPCSStandards/composer-installer"
  7214. },
  7215. "time": "2023-01-05T11:28:13+00:00"
  7216. },
  7217. {
  7218. "name": "dg/bypass-finals",
  7219. "version": "v1.6.0",
  7220. "source": {
  7221. "type": "git",
  7222. "url": "https://github.com/dg/bypass-finals.git",
  7223. "reference": "efe2fe04bae9f0de271dd462afc049067889e6d1"
  7224. },
  7225. "dist": {
  7226. "type": "zip",
  7227. "url": "https://api.github.com/repos/dg/bypass-finals/zipball/efe2fe04bae9f0de271dd462afc049067889e6d1",
  7228. "reference": "efe2fe04bae9f0de271dd462afc049067889e6d1",
  7229. "shasum": ""
  7230. },
  7231. "require": {
  7232. "php": ">=7.1"
  7233. },
  7234. "require-dev": {
  7235. "nette/tester": "^2.3",
  7236. "phpstan/phpstan": "^0.12"
  7237. },
  7238. "type": "library",
  7239. "autoload": {
  7240. "classmap": [
  7241. "src/"
  7242. ]
  7243. },
  7244. "notification-url": "https://packagist.org/downloads/",
  7245. "license": [
  7246. "BSD-3-Clause",
  7247. "GPL-2.0",
  7248. "GPL-3.0"
  7249. ],
  7250. "authors": [
  7251. {
  7252. "name": "David Grudl",
  7253. "homepage": "https://davidgrudl.com"
  7254. }
  7255. ],
  7256. "description": "Removes final keyword from source code on-the-fly and allows mocking of final methods and classes",
  7257. "keywords": [
  7258. "finals",
  7259. "mocking",
  7260. "phpunit",
  7261. "testing",
  7262. "unit"
  7263. ],
  7264. "support": {
  7265. "issues": "https://github.com/dg/bypass-finals/issues",
  7266. "source": "https://github.com/dg/bypass-finals/tree/v1.6.0"
  7267. },
  7268. "time": "2023-11-19T22:19:30+00:00"
  7269. },
  7270. {
  7271. "name": "friendsofphp/php-cs-fixer",
  7272. "version": "v3.52.1",
  7273. "source": {
  7274. "type": "git",
  7275. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  7276. "reference": "6e77207f0d851862ceeb6da63e6e22c01b1587bc"
  7277. },
  7278. "dist": {
  7279. "type": "zip",
  7280. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/6e77207f0d851862ceeb6da63e6e22c01b1587bc",
  7281. "reference": "6e77207f0d851862ceeb6da63e6e22c01b1587bc",
  7282. "shasum": ""
  7283. },
  7284. "require": {
  7285. "composer/semver": "^3.4",
  7286. "composer/xdebug-handler": "^3.0.3",
  7287. "ext-filter": "*",
  7288. "ext-json": "*",
  7289. "ext-tokenizer": "*",
  7290. "php": "^7.4 || ^8.0",
  7291. "sebastian/diff": "^4.0 || ^5.0 || ^6.0",
  7292. "symfony/console": "^5.4 || ^6.0 || ^7.0",
  7293. "symfony/event-dispatcher": "^5.4 || ^6.0 || ^7.0",
  7294. "symfony/filesystem": "^5.4 || ^6.0 || ^7.0",
  7295. "symfony/finder": "^5.4 || ^6.0 || ^7.0",
  7296. "symfony/options-resolver": "^5.4 || ^6.0 || ^7.0",
  7297. "symfony/polyfill-mbstring": "^1.28",
  7298. "symfony/polyfill-php80": "^1.28",
  7299. "symfony/polyfill-php81": "^1.28",
  7300. "symfony/process": "^5.4 || ^6.0 || ^7.0",
  7301. "symfony/stopwatch": "^5.4 || ^6.0 || ^7.0"
  7302. },
  7303. "require-dev": {
  7304. "facile-it/paraunit": "^1.3 || ^2.0",
  7305. "justinrainbow/json-schema": "^5.2",
  7306. "keradus/cli-executor": "^2.1",
  7307. "mikey179/vfsstream": "^1.6.11",
  7308. "php-coveralls/php-coveralls": "^2.7",
  7309. "php-cs-fixer/accessible-object": "^1.1",
  7310. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.4",
  7311. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.4",
  7312. "phpunit/phpunit": "^9.6 || ^10.5.5 || ^11.0.2",
  7313. "symfony/var-dumper": "^5.4 || ^6.0 || ^7.0",
  7314. "symfony/yaml": "^5.4 || ^6.0 || ^7.0"
  7315. },
  7316. "suggest": {
  7317. "ext-dom": "For handling output formats in XML",
  7318. "ext-mbstring": "For handling non-UTF8 characters."
  7319. },
  7320. "bin": [
  7321. "php-cs-fixer"
  7322. ],
  7323. "type": "application",
  7324. "autoload": {
  7325. "psr-4": {
  7326. "PhpCsFixer\\": "src/"
  7327. }
  7328. },
  7329. "notification-url": "https://packagist.org/downloads/",
  7330. "license": [
  7331. "MIT"
  7332. ],
  7333. "authors": [
  7334. {
  7335. "name": "Fabien Potencier",
  7336. "email": "[email protected]"
  7337. },
  7338. {
  7339. "name": "Dariusz Rumiński",
  7340. "email": "[email protected]"
  7341. }
  7342. ],
  7343. "description": "A tool to automatically fix PHP code style",
  7344. "keywords": [
  7345. "Static code analysis",
  7346. "fixer",
  7347. "standards",
  7348. "static analysis"
  7349. ],
  7350. "support": {
  7351. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  7352. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.52.1"
  7353. },
  7354. "funding": [
  7355. {
  7356. "url": "https://github.com/keradus",
  7357. "type": "github"
  7358. }
  7359. ],
  7360. "time": "2024-03-19T21:02:43+00:00"
  7361. },
  7362. {
  7363. "name": "justinrainbow/json-schema",
  7364. "version": "v5.2.13",
  7365. "source": {
  7366. "type": "git",
  7367. "url": "https://github.com/justinrainbow/json-schema.git",
  7368. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793"
  7369. },
  7370. "dist": {
  7371. "type": "zip",
  7372. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/fbbe7e5d79f618997bc3332a6f49246036c45793",
  7373. "reference": "fbbe7e5d79f618997bc3332a6f49246036c45793",
  7374. "shasum": ""
  7375. },
  7376. "require": {
  7377. "php": ">=5.3.3"
  7378. },
  7379. "require-dev": {
  7380. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  7381. "json-schema/json-schema-test-suite": "1.2.0",
  7382. "phpunit/phpunit": "^4.8.35"
  7383. },
  7384. "bin": [
  7385. "bin/validate-json"
  7386. ],
  7387. "type": "library",
  7388. "extra": {
  7389. "branch-alias": {
  7390. "dev-master": "5.0.x-dev"
  7391. }
  7392. },
  7393. "autoload": {
  7394. "psr-4": {
  7395. "JsonSchema\\": "src/JsonSchema/"
  7396. }
  7397. },
  7398. "notification-url": "https://packagist.org/downloads/",
  7399. "license": [
  7400. "MIT"
  7401. ],
  7402. "authors": [
  7403. {
  7404. "name": "Bruno Prieto Reis",
  7405. "email": "[email protected]"
  7406. },
  7407. {
  7408. "name": "Justin Rainbow",
  7409. "email": "[email protected]"
  7410. },
  7411. {
  7412. "name": "Igor Wiedler",
  7413. "email": "[email protected]"
  7414. },
  7415. {
  7416. "name": "Robert Schönthal",
  7417. "email": "[email protected]"
  7418. }
  7419. ],
  7420. "description": "A library to validate a json schema.",
  7421. "homepage": "https://github.com/justinrainbow/json-schema",
  7422. "keywords": [
  7423. "json",
  7424. "schema"
  7425. ],
  7426. "support": {
  7427. "issues": "https://github.com/justinrainbow/json-schema/issues",
  7428. "source": "https://github.com/justinrainbow/json-schema/tree/v5.2.13"
  7429. },
  7430. "time": "2023-09-26T02:20:38+00:00"
  7431. },
  7432. {
  7433. "name": "league/container",
  7434. "version": "4.2.2",
  7435. "source": {
  7436. "type": "git",
  7437. "url": "https://github.com/thephpleague/container.git",
  7438. "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88"
  7439. },
  7440. "dist": {
  7441. "type": "zip",
  7442. "url": "https://api.github.com/repos/thephpleague/container/zipball/ff346319ca1ff0e78277dc2311a42107cc1aab88",
  7443. "reference": "ff346319ca1ff0e78277dc2311a42107cc1aab88",
  7444. "shasum": ""
  7445. },
  7446. "require": {
  7447. "php": "^7.2 || ^8.0",
  7448. "psr/container": "^1.1 || ^2.0"
  7449. },
  7450. "provide": {
  7451. "psr/container-implementation": "^1.0"
  7452. },
  7453. "replace": {
  7454. "orno/di": "~2.0"
  7455. },
  7456. "require-dev": {
  7457. "nette/php-generator": "^3.4",
  7458. "nikic/php-parser": "^4.10",
  7459. "phpstan/phpstan": "^0.12.47",
  7460. "phpunit/phpunit": "^8.5.17",
  7461. "roave/security-advisories": "dev-latest",
  7462. "scrutinizer/ocular": "^1.8",
  7463. "squizlabs/php_codesniffer": "^3.6"
  7464. },
  7465. "type": "library",
  7466. "extra": {
  7467. "branch-alias": {
  7468. "dev-master": "4.x-dev",
  7469. "dev-4.x": "4.x-dev",
  7470. "dev-3.x": "3.x-dev",
  7471. "dev-2.x": "2.x-dev",
  7472. "dev-1.x": "1.x-dev"
  7473. }
  7474. },
  7475. "autoload": {
  7476. "psr-4": {
  7477. "League\\Container\\": "src"
  7478. }
  7479. },
  7480. "notification-url": "https://packagist.org/downloads/",
  7481. "license": [
  7482. "MIT"
  7483. ],
  7484. "authors": [
  7485. {
  7486. "name": "Phil Bennett",
  7487. "email": "[email protected]",
  7488. "role": "Developer"
  7489. }
  7490. ],
  7491. "description": "A fast and intuitive dependency injection container.",
  7492. "homepage": "https://github.com/thephpleague/container",
  7493. "keywords": [
  7494. "container",
  7495. "dependency",
  7496. "di",
  7497. "injection",
  7498. "league",
  7499. "provider",
  7500. "service"
  7501. ],
  7502. "support": {
  7503. "issues": "https://github.com/thephpleague/container/issues",
  7504. "source": "https://github.com/thephpleague/container/tree/4.2.2"
  7505. },
  7506. "funding": [
  7507. {
  7508. "url": "https://github.com/philipobenito",
  7509. "type": "github"
  7510. }
  7511. ],
  7512. "time": "2024-03-13T13:12:53+00:00"
  7513. },
  7514. {
  7515. "name": "myclabs/deep-copy",
  7516. "version": "1.11.1",
  7517. "source": {
  7518. "type": "git",
  7519. "url": "https://github.com/myclabs/DeepCopy.git",
  7520. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  7521. },
  7522. "dist": {
  7523. "type": "zip",
  7524. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7525. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  7526. "shasum": ""
  7527. },
  7528. "require": {
  7529. "php": "^7.1 || ^8.0"
  7530. },
  7531. "conflict": {
  7532. "doctrine/collections": "<1.6.8",
  7533. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  7534. },
  7535. "require-dev": {
  7536. "doctrine/collections": "^1.6.8",
  7537. "doctrine/common": "^2.13.3 || ^3.2.2",
  7538. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  7539. },
  7540. "type": "library",
  7541. "autoload": {
  7542. "files": [
  7543. "src/DeepCopy/deep_copy.php"
  7544. ],
  7545. "psr-4": {
  7546. "DeepCopy\\": "src/DeepCopy/"
  7547. }
  7548. },
  7549. "notification-url": "https://packagist.org/downloads/",
  7550. "license": [
  7551. "MIT"
  7552. ],
  7553. "description": "Create deep copies (clones) of your objects",
  7554. "keywords": [
  7555. "clone",
  7556. "copy",
  7557. "duplicate",
  7558. "object",
  7559. "object graph"
  7560. ],
  7561. "support": {
  7562. "issues": "https://github.com/myclabs/DeepCopy/issues",
  7563. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  7564. },
  7565. "funding": [
  7566. {
  7567. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  7568. "type": "tidelift"
  7569. }
  7570. ],
  7571. "time": "2023-03-08T13:26:56+00:00"
  7572. },
  7573. {
  7574. "name": "nikic/php-parser",
  7575. "version": "v5.0.2",
  7576. "source": {
  7577. "type": "git",
  7578. "url": "https://github.com/nikic/PHP-Parser.git",
  7579. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13"
  7580. },
  7581. "dist": {
  7582. "type": "zip",
  7583. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/139676794dc1e9231bf7bcd123cfc0c99182cb13",
  7584. "reference": "139676794dc1e9231bf7bcd123cfc0c99182cb13",
  7585. "shasum": ""
  7586. },
  7587. "require": {
  7588. "ext-ctype": "*",
  7589. "ext-json": "*",
  7590. "ext-tokenizer": "*",
  7591. "php": ">=7.4"
  7592. },
  7593. "require-dev": {
  7594. "ircmaxell/php-yacc": "^0.0.7",
  7595. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  7596. },
  7597. "bin": [
  7598. "bin/php-parse"
  7599. ],
  7600. "type": "library",
  7601. "extra": {
  7602. "branch-alias": {
  7603. "dev-master": "5.0-dev"
  7604. }
  7605. },
  7606. "autoload": {
  7607. "psr-4": {
  7608. "PhpParser\\": "lib/PhpParser"
  7609. }
  7610. },
  7611. "notification-url": "https://packagist.org/downloads/",
  7612. "license": [
  7613. "BSD-3-Clause"
  7614. ],
  7615. "authors": [
  7616. {
  7617. "name": "Nikita Popov"
  7618. }
  7619. ],
  7620. "description": "A PHP parser written in PHP",
  7621. "keywords": [
  7622. "parser",
  7623. "php"
  7624. ],
  7625. "support": {
  7626. "issues": "https://github.com/nikic/PHP-Parser/issues",
  7627. "source": "https://github.com/nikic/PHP-Parser/tree/v5.0.2"
  7628. },
  7629. "time": "2024-03-05T20:51:40+00:00"
  7630. },
  7631. {
  7632. "name": "nunomaduro/phpinsights",
  7633. "version": "v2.11.0",
  7634. "source": {
  7635. "type": "git",
  7636. "url": "https://github.com/nunomaduro/phpinsights.git",
  7637. "reference": "f476219759a61aad988641476259465c77203383"
  7638. },
  7639. "dist": {
  7640. "type": "zip",
  7641. "url": "https://api.github.com/repos/nunomaduro/phpinsights/zipball/f476219759a61aad988641476259465c77203383",
  7642. "reference": "f476219759a61aad988641476259465c77203383",
  7643. "shasum": ""
  7644. },
  7645. "require": {
  7646. "cmgmyr/phploc": "^8.0.3",
  7647. "composer/semver": "^3.4",
  7648. "ext-iconv": "*",
  7649. "ext-json": "*",
  7650. "ext-mbstring": "*",
  7651. "ext-tokenizer": "*",
  7652. "friendsofphp/php-cs-fixer": "^3.40.0",
  7653. "justinrainbow/json-schema": "^5.2.13",
  7654. "league/container": "^3.2|^4.2",
  7655. "php": "^7.4|^8.0",
  7656. "php-parallel-lint/php-parallel-lint": "^1.3.2",
  7657. "psr/container": "^1.0|^2.0.2",
  7658. "psr/simple-cache": "^1.0|^2.0|^3.0",
  7659. "sebastian/diff": "^4.0|^5.0.3",
  7660. "slevomat/coding-standard": "^8.14.1",
  7661. "squizlabs/php_codesniffer": "^3.7.2",
  7662. "symfony/cache": "^5.4|^6.0|^7.0",
  7663. "symfony/console": "^5.4|^6.4|^7.0",
  7664. "symfony/finder": "^5.4|^6.0|^7.0",
  7665. "symfony/http-client": "^5.4|^6.0|^7.0",
  7666. "symfony/process": "^5.4|^6.4|^7.0"
  7667. },
  7668. "require-dev": {
  7669. "ergebnis/phpstan-rules": "^0.15.3",
  7670. "illuminate/console": "^5.8|^6.0|^7.0|^8.0|^9.20|^10.0",
  7671. "illuminate/support": "^5.8|^6.0|^7.0|^8.0|^9.52.16|^10.0",
  7672. "mockery/mockery": "^1.6.6",
  7673. "phpstan/phpstan-strict-rules": "^0.12.11",
  7674. "phpunit/phpunit": "^8.0|^9.0|^10.4.2",
  7675. "rector/rector": "0.11.56",
  7676. "symfony/var-dumper": "^5.4|^6.0|^7.0",
  7677. "thecodingmachine/phpstan-strict-rules": "^0.12.2"
  7678. },
  7679. "suggest": {
  7680. "ext-simplexml": "It is needed for the checkstyle formatter"
  7681. },
  7682. "bin": [
  7683. "bin/phpinsights"
  7684. ],
  7685. "type": "library",
  7686. "extra": {
  7687. "laravel": {
  7688. "providers": [
  7689. "NunoMaduro\\PhpInsights\\Application\\Adapters\\Laravel\\InsightsServiceProvider"
  7690. ]
  7691. }
  7692. },
  7693. "autoload": {
  7694. "psr-4": {
  7695. "NunoMaduro\\PhpInsights\\": "src"
  7696. }
  7697. },
  7698. "notification-url": "https://packagist.org/downloads/",
  7699. "license": [
  7700. "MIT"
  7701. ],
  7702. "authors": [
  7703. {
  7704. "name": "Nuno Maduro",
  7705. "email": "[email protected]"
  7706. }
  7707. ],
  7708. "description": "Instant PHP quality checks from your console.",
  7709. "keywords": [
  7710. "Insights",
  7711. "code",
  7712. "console",
  7713. "php",
  7714. "quality",
  7715. "source"
  7716. ],
  7717. "support": {
  7718. "issues": "https://github.com/nunomaduro/phpinsights/issues",
  7719. "source": "https://github.com/nunomaduro/phpinsights/tree/v2.11.0"
  7720. },
  7721. "funding": [
  7722. {
  7723. "url": "https://github.com/JustSteveKing",
  7724. "type": "github"
  7725. },
  7726. {
  7727. "url": "https://github.com/cmgmyr",
  7728. "type": "github"
  7729. },
  7730. {
  7731. "url": "https://github.com/nunomaduro",
  7732. "type": "github"
  7733. }
  7734. ],
  7735. "time": "2023-11-30T10:54:50+00:00"
  7736. },
  7737. {
  7738. "name": "phar-io/manifest",
  7739. "version": "2.0.4",
  7740. "source": {
  7741. "type": "git",
  7742. "url": "https://github.com/phar-io/manifest.git",
  7743. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  7744. },
  7745. "dist": {
  7746. "type": "zip",
  7747. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  7748. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  7749. "shasum": ""
  7750. },
  7751. "require": {
  7752. "ext-dom": "*",
  7753. "ext-libxml": "*",
  7754. "ext-phar": "*",
  7755. "ext-xmlwriter": "*",
  7756. "phar-io/version": "^3.0.1",
  7757. "php": "^7.2 || ^8.0"
  7758. },
  7759. "type": "library",
  7760. "extra": {
  7761. "branch-alias": {
  7762. "dev-master": "2.0.x-dev"
  7763. }
  7764. },
  7765. "autoload": {
  7766. "classmap": [
  7767. "src/"
  7768. ]
  7769. },
  7770. "notification-url": "https://packagist.org/downloads/",
  7771. "license": [
  7772. "BSD-3-Clause"
  7773. ],
  7774. "authors": [
  7775. {
  7776. "name": "Arne Blankerts",
  7777. "email": "[email protected]",
  7778. "role": "Developer"
  7779. },
  7780. {
  7781. "name": "Sebastian Heuer",
  7782. "email": "[email protected]",
  7783. "role": "Developer"
  7784. },
  7785. {
  7786. "name": "Sebastian Bergmann",
  7787. "email": "[email protected]",
  7788. "role": "Developer"
  7789. }
  7790. ],
  7791. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  7792. "support": {
  7793. "issues": "https://github.com/phar-io/manifest/issues",
  7794. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  7795. },
  7796. "funding": [
  7797. {
  7798. "url": "https://github.com/theseer",
  7799. "type": "github"
  7800. }
  7801. ],
  7802. "time": "2024-03-03T12:33:53+00:00"
  7803. },
  7804. {
  7805. "name": "phar-io/version",
  7806. "version": "3.2.1",
  7807. "source": {
  7808. "type": "git",
  7809. "url": "https://github.com/phar-io/version.git",
  7810. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  7811. },
  7812. "dist": {
  7813. "type": "zip",
  7814. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7815. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  7816. "shasum": ""
  7817. },
  7818. "require": {
  7819. "php": "^7.2 || ^8.0"
  7820. },
  7821. "type": "library",
  7822. "autoload": {
  7823. "classmap": [
  7824. "src/"
  7825. ]
  7826. },
  7827. "notification-url": "https://packagist.org/downloads/",
  7828. "license": [
  7829. "BSD-3-Clause"
  7830. ],
  7831. "authors": [
  7832. {
  7833. "name": "Arne Blankerts",
  7834. "email": "[email protected]",
  7835. "role": "Developer"
  7836. },
  7837. {
  7838. "name": "Sebastian Heuer",
  7839. "email": "[email protected]",
  7840. "role": "Developer"
  7841. },
  7842. {
  7843. "name": "Sebastian Bergmann",
  7844. "email": "[email protected]",
  7845. "role": "Developer"
  7846. }
  7847. ],
  7848. "description": "Library for handling version information and constraints",
  7849. "support": {
  7850. "issues": "https://github.com/phar-io/version/issues",
  7851. "source": "https://github.com/phar-io/version/tree/3.2.1"
  7852. },
  7853. "time": "2022-02-21T01:04:05+00:00"
  7854. },
  7855. {
  7856. "name": "php-parallel-lint/php-parallel-lint",
  7857. "version": "v1.4.0",
  7858. "source": {
  7859. "type": "git",
  7860. "url": "https://github.com/php-parallel-lint/PHP-Parallel-Lint.git",
  7861. "reference": "6db563514f27e19595a19f45a4bf757b6401194e"
  7862. },
  7863. "dist": {
  7864. "type": "zip",
  7865. "url": "https://api.github.com/repos/php-parallel-lint/PHP-Parallel-Lint/zipball/6db563514f27e19595a19f45a4bf757b6401194e",
  7866. "reference": "6db563514f27e19595a19f45a4bf757b6401194e",
  7867. "shasum": ""
  7868. },
  7869. "require": {
  7870. "ext-json": "*",
  7871. "php": ">=5.3.0"
  7872. },
  7873. "replace": {
  7874. "grogy/php-parallel-lint": "*",
  7875. "jakub-onderka/php-parallel-lint": "*"
  7876. },
  7877. "require-dev": {
  7878. "nette/tester": "^1.3 || ^2.0",
  7879. "php-parallel-lint/php-console-highlighter": "0.* || ^1.0",
  7880. "squizlabs/php_codesniffer": "^3.6"
  7881. },
  7882. "suggest": {
  7883. "php-parallel-lint/php-console-highlighter": "Highlight syntax in code snippet"
  7884. },
  7885. "bin": [
  7886. "parallel-lint"
  7887. ],
  7888. "type": "library",
  7889. "autoload": {
  7890. "classmap": [
  7891. "./src/"
  7892. ]
  7893. },
  7894. "notification-url": "https://packagist.org/downloads/",
  7895. "license": [
  7896. "BSD-2-Clause"
  7897. ],
  7898. "authors": [
  7899. {
  7900. "name": "Jakub Onderka",
  7901. "email": "[email protected]"
  7902. }
  7903. ],
  7904. "description": "This tool checks the syntax of PHP files about 20x faster than serial check.",
  7905. "homepage": "https://github.com/php-parallel-lint/PHP-Parallel-Lint",
  7906. "keywords": [
  7907. "lint",
  7908. "static analysis"
  7909. ],
  7910. "support": {
  7911. "issues": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/issues",
  7912. "source": "https://github.com/php-parallel-lint/PHP-Parallel-Lint/tree/v1.4.0"
  7913. },
  7914. "time": "2024-03-27T12:14:49+00:00"
  7915. },
  7916. {
  7917. "name": "phpstan/phpdoc-parser",
  7918. "version": "1.27.0",
  7919. "source": {
  7920. "type": "git",
  7921. "url": "https://github.com/phpstan/phpdoc-parser.git",
  7922. "reference": "86e4d5a4b036f8f0be1464522f4c6b584c452757"
  7923. },
  7924. "dist": {
  7925. "type": "zip",
  7926. "url": "https://api.github.com/repos/phpstan/phpdoc-parser/zipball/86e4d5a4b036f8f0be1464522f4c6b584c452757",
  7927. "reference": "86e4d5a4b036f8f0be1464522f4c6b584c452757",
  7928. "shasum": ""
  7929. },
  7930. "require": {
  7931. "php": "^7.2 || ^8.0"
  7932. },
  7933. "require-dev": {
  7934. "doctrine/annotations": "^2.0",
  7935. "nikic/php-parser": "^4.15",
  7936. "php-parallel-lint/php-parallel-lint": "^1.2",
  7937. "phpstan/extension-installer": "^1.0",
  7938. "phpstan/phpstan": "^1.5",
  7939. "phpstan/phpstan-phpunit": "^1.1",
  7940. "phpstan/phpstan-strict-rules": "^1.0",
  7941. "phpunit/phpunit": "^9.5",
  7942. "symfony/process": "^5.2"
  7943. },
  7944. "type": "library",
  7945. "autoload": {
  7946. "psr-4": {
  7947. "PHPStan\\PhpDocParser\\": [
  7948. "src/"
  7949. ]
  7950. }
  7951. },
  7952. "notification-url": "https://packagist.org/downloads/",
  7953. "license": [
  7954. "MIT"
  7955. ],
  7956. "description": "PHPDoc parser with support for nullable, intersection and generic types",
  7957. "support": {
  7958. "issues": "https://github.com/phpstan/phpdoc-parser/issues",
  7959. "source": "https://github.com/phpstan/phpdoc-parser/tree/1.27.0"
  7960. },
  7961. "time": "2024-03-21T13:14:53+00:00"
  7962. },
  7963. {
  7964. "name": "phpunit/php-code-coverage",
  7965. "version": "10.1.14",
  7966. "source": {
  7967. "type": "git",
  7968. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  7969. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b"
  7970. },
  7971. "dist": {
  7972. "type": "zip",
  7973. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7974. "reference": "e3f51450ebffe8e0efdf7346ae966a656f7d5e5b",
  7975. "shasum": ""
  7976. },
  7977. "require": {
  7978. "ext-dom": "*",
  7979. "ext-libxml": "*",
  7980. "ext-xmlwriter": "*",
  7981. "nikic/php-parser": "^4.18 || ^5.0",
  7982. "php": ">=8.1",
  7983. "phpunit/php-file-iterator": "^4.0",
  7984. "phpunit/php-text-template": "^3.0",
  7985. "sebastian/code-unit-reverse-lookup": "^3.0",
  7986. "sebastian/complexity": "^3.0",
  7987. "sebastian/environment": "^6.0",
  7988. "sebastian/lines-of-code": "^2.0",
  7989. "sebastian/version": "^4.0",
  7990. "theseer/tokenizer": "^1.2.0"
  7991. },
  7992. "require-dev": {
  7993. "phpunit/phpunit": "^10.1"
  7994. },
  7995. "suggest": {
  7996. "ext-pcov": "PHP extension that provides line coverage",
  7997. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  7998. },
  7999. "type": "library",
  8000. "extra": {
  8001. "branch-alias": {
  8002. "dev-main": "10.1-dev"
  8003. }
  8004. },
  8005. "autoload": {
  8006. "classmap": [
  8007. "src/"
  8008. ]
  8009. },
  8010. "notification-url": "https://packagist.org/downloads/",
  8011. "license": [
  8012. "BSD-3-Clause"
  8013. ],
  8014. "authors": [
  8015. {
  8016. "name": "Sebastian Bergmann",
  8017. "email": "[email protected]",
  8018. "role": "lead"
  8019. }
  8020. ],
  8021. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8022. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8023. "keywords": [
  8024. "coverage",
  8025. "testing",
  8026. "xunit"
  8027. ],
  8028. "support": {
  8029. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  8030. "security": "https://github.com/sebastianbergmann/php-code-coverage/security/policy",
  8031. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/10.1.14"
  8032. },
  8033. "funding": [
  8034. {
  8035. "url": "https://github.com/sebastianbergmann",
  8036. "type": "github"
  8037. }
  8038. ],
  8039. "time": "2024-03-12T15:33:41+00:00"
  8040. },
  8041. {
  8042. "name": "phpunit/php-file-iterator",
  8043. "version": "4.1.0",
  8044. "source": {
  8045. "type": "git",
  8046. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8047. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c"
  8048. },
  8049. "dist": {
  8050. "type": "zip",
  8051. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8052. "reference": "a95037b6d9e608ba092da1b23931e537cadc3c3c",
  8053. "shasum": ""
  8054. },
  8055. "require": {
  8056. "php": ">=8.1"
  8057. },
  8058. "require-dev": {
  8059. "phpunit/phpunit": "^10.0"
  8060. },
  8061. "type": "library",
  8062. "extra": {
  8063. "branch-alias": {
  8064. "dev-main": "4.0-dev"
  8065. }
  8066. },
  8067. "autoload": {
  8068. "classmap": [
  8069. "src/"
  8070. ]
  8071. },
  8072. "notification-url": "https://packagist.org/downloads/",
  8073. "license": [
  8074. "BSD-3-Clause"
  8075. ],
  8076. "authors": [
  8077. {
  8078. "name": "Sebastian Bergmann",
  8079. "email": "[email protected]",
  8080. "role": "lead"
  8081. }
  8082. ],
  8083. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8084. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8085. "keywords": [
  8086. "filesystem",
  8087. "iterator"
  8088. ],
  8089. "support": {
  8090. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  8091. "security": "https://github.com/sebastianbergmann/php-file-iterator/security/policy",
  8092. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/4.1.0"
  8093. },
  8094. "funding": [
  8095. {
  8096. "url": "https://github.com/sebastianbergmann",
  8097. "type": "github"
  8098. }
  8099. ],
  8100. "time": "2023-08-31T06:24:48+00:00"
  8101. },
  8102. {
  8103. "name": "phpunit/php-invoker",
  8104. "version": "4.0.0",
  8105. "source": {
  8106. "type": "git",
  8107. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  8108. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7"
  8109. },
  8110. "dist": {
  8111. "type": "zip",
  8112. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8113. "reference": "f5e568ba02fa5ba0ddd0f618391d5a9ea50b06d7",
  8114. "shasum": ""
  8115. },
  8116. "require": {
  8117. "php": ">=8.1"
  8118. },
  8119. "require-dev": {
  8120. "ext-pcntl": "*",
  8121. "phpunit/phpunit": "^10.0"
  8122. },
  8123. "suggest": {
  8124. "ext-pcntl": "*"
  8125. },
  8126. "type": "library",
  8127. "extra": {
  8128. "branch-alias": {
  8129. "dev-main": "4.0-dev"
  8130. }
  8131. },
  8132. "autoload": {
  8133. "classmap": [
  8134. "src/"
  8135. ]
  8136. },
  8137. "notification-url": "https://packagist.org/downloads/",
  8138. "license": [
  8139. "BSD-3-Clause"
  8140. ],
  8141. "authors": [
  8142. {
  8143. "name": "Sebastian Bergmann",
  8144. "email": "[email protected]",
  8145. "role": "lead"
  8146. }
  8147. ],
  8148. "description": "Invoke callables with a timeout",
  8149. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  8150. "keywords": [
  8151. "process"
  8152. ],
  8153. "support": {
  8154. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  8155. "source": "https://github.com/sebastianbergmann/php-invoker/tree/4.0.0"
  8156. },
  8157. "funding": [
  8158. {
  8159. "url": "https://github.com/sebastianbergmann",
  8160. "type": "github"
  8161. }
  8162. ],
  8163. "time": "2023-02-03T06:56:09+00:00"
  8164. },
  8165. {
  8166. "name": "phpunit/php-text-template",
  8167. "version": "3.0.1",
  8168. "source": {
  8169. "type": "git",
  8170. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8171. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748"
  8172. },
  8173. "dist": {
  8174. "type": "zip",
  8175. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8176. "reference": "0c7b06ff49e3d5072f057eb1fa59258bf287a748",
  8177. "shasum": ""
  8178. },
  8179. "require": {
  8180. "php": ">=8.1"
  8181. },
  8182. "require-dev": {
  8183. "phpunit/phpunit": "^10.0"
  8184. },
  8185. "type": "library",
  8186. "extra": {
  8187. "branch-alias": {
  8188. "dev-main": "3.0-dev"
  8189. }
  8190. },
  8191. "autoload": {
  8192. "classmap": [
  8193. "src/"
  8194. ]
  8195. },
  8196. "notification-url": "https://packagist.org/downloads/",
  8197. "license": [
  8198. "BSD-3-Clause"
  8199. ],
  8200. "authors": [
  8201. {
  8202. "name": "Sebastian Bergmann",
  8203. "email": "[email protected]",
  8204. "role": "lead"
  8205. }
  8206. ],
  8207. "description": "Simple template engine.",
  8208. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8209. "keywords": [
  8210. "template"
  8211. ],
  8212. "support": {
  8213. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  8214. "security": "https://github.com/sebastianbergmann/php-text-template/security/policy",
  8215. "source": "https://github.com/sebastianbergmann/php-text-template/tree/3.0.1"
  8216. },
  8217. "funding": [
  8218. {
  8219. "url": "https://github.com/sebastianbergmann",
  8220. "type": "github"
  8221. }
  8222. ],
  8223. "time": "2023-08-31T14:07:24+00:00"
  8224. },
  8225. {
  8226. "name": "phpunit/php-timer",
  8227. "version": "6.0.0",
  8228. "source": {
  8229. "type": "git",
  8230. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8231. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d"
  8232. },
  8233. "dist": {
  8234. "type": "zip",
  8235. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8236. "reference": "e2a2d67966e740530f4a3343fe2e030ffdc1161d",
  8237. "shasum": ""
  8238. },
  8239. "require": {
  8240. "php": ">=8.1"
  8241. },
  8242. "require-dev": {
  8243. "phpunit/phpunit": "^10.0"
  8244. },
  8245. "type": "library",
  8246. "extra": {
  8247. "branch-alias": {
  8248. "dev-main": "6.0-dev"
  8249. }
  8250. },
  8251. "autoload": {
  8252. "classmap": [
  8253. "src/"
  8254. ]
  8255. },
  8256. "notification-url": "https://packagist.org/downloads/",
  8257. "license": [
  8258. "BSD-3-Clause"
  8259. ],
  8260. "authors": [
  8261. {
  8262. "name": "Sebastian Bergmann",
  8263. "email": "[email protected]",
  8264. "role": "lead"
  8265. }
  8266. ],
  8267. "description": "Utility class for timing",
  8268. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  8269. "keywords": [
  8270. "timer"
  8271. ],
  8272. "support": {
  8273. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  8274. "source": "https://github.com/sebastianbergmann/php-timer/tree/6.0.0"
  8275. },
  8276. "funding": [
  8277. {
  8278. "url": "https://github.com/sebastianbergmann",
  8279. "type": "github"
  8280. }
  8281. ],
  8282. "time": "2023-02-03T06:57:52+00:00"
  8283. },
  8284. {
  8285. "name": "phpunit/phpunit",
  8286. "version": "10.5.16",
  8287. "source": {
  8288. "type": "git",
  8289. "url": "https://github.com/sebastianbergmann/phpunit.git",
  8290. "reference": "18f8d4a5f52b61fdd9370aaae3167daa0eeb69cd"
  8291. },
  8292. "dist": {
  8293. "type": "zip",
  8294. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/18f8d4a5f52b61fdd9370aaae3167daa0eeb69cd",
  8295. "reference": "18f8d4a5f52b61fdd9370aaae3167daa0eeb69cd",
  8296. "shasum": ""
  8297. },
  8298. "require": {
  8299. "ext-dom": "*",
  8300. "ext-json": "*",
  8301. "ext-libxml": "*",
  8302. "ext-mbstring": "*",
  8303. "ext-xml": "*",
  8304. "ext-xmlwriter": "*",
  8305. "myclabs/deep-copy": "^1.10.1",
  8306. "phar-io/manifest": "^2.0.3",
  8307. "phar-io/version": "^3.0.2",
  8308. "php": ">=8.1",
  8309. "phpunit/php-code-coverage": "^10.1.5",
  8310. "phpunit/php-file-iterator": "^4.0",
  8311. "phpunit/php-invoker": "^4.0",
  8312. "phpunit/php-text-template": "^3.0",
  8313. "phpunit/php-timer": "^6.0",
  8314. "sebastian/cli-parser": "^2.0",
  8315. "sebastian/code-unit": "^2.0",
  8316. "sebastian/comparator": "^5.0",
  8317. "sebastian/diff": "^5.0",
  8318. "sebastian/environment": "^6.0",
  8319. "sebastian/exporter": "^5.1",
  8320. "sebastian/global-state": "^6.0.1",
  8321. "sebastian/object-enumerator": "^5.0",
  8322. "sebastian/recursion-context": "^5.0",
  8323. "sebastian/type": "^4.0",
  8324. "sebastian/version": "^4.0"
  8325. },
  8326. "suggest": {
  8327. "ext-soap": "To be able to generate mocks based on WSDL files"
  8328. },
  8329. "bin": [
  8330. "phpunit"
  8331. ],
  8332. "type": "library",
  8333. "extra": {
  8334. "branch-alias": {
  8335. "dev-main": "10.5-dev"
  8336. }
  8337. },
  8338. "autoload": {
  8339. "files": [
  8340. "src/Framework/Assert/Functions.php"
  8341. ],
  8342. "classmap": [
  8343. "src/"
  8344. ]
  8345. },
  8346. "notification-url": "https://packagist.org/downloads/",
  8347. "license": [
  8348. "BSD-3-Clause"
  8349. ],
  8350. "authors": [
  8351. {
  8352. "name": "Sebastian Bergmann",
  8353. "email": "[email protected]",
  8354. "role": "lead"
  8355. }
  8356. ],
  8357. "description": "The PHP Unit Testing framework.",
  8358. "homepage": "https://phpunit.de/",
  8359. "keywords": [
  8360. "phpunit",
  8361. "testing",
  8362. "xunit"
  8363. ],
  8364. "support": {
  8365. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  8366. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  8367. "source": "https://github.com/sebastianbergmann/phpunit/tree/10.5.16"
  8368. },
  8369. "funding": [
  8370. {
  8371. "url": "https://phpunit.de/sponsors.html",
  8372. "type": "custom"
  8373. },
  8374. {
  8375. "url": "https://github.com/sebastianbergmann",
  8376. "type": "github"
  8377. },
  8378. {
  8379. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  8380. "type": "tidelift"
  8381. }
  8382. ],
  8383. "time": "2024-03-28T10:08:10+00:00"
  8384. },
  8385. {
  8386. "name": "psr/cache",
  8387. "version": "3.0.0",
  8388. "source": {
  8389. "type": "git",
  8390. "url": "https://github.com/php-fig/cache.git",
  8391. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  8392. },
  8393. "dist": {
  8394. "type": "zip",
  8395. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8396. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  8397. "shasum": ""
  8398. },
  8399. "require": {
  8400. "php": ">=8.0.0"
  8401. },
  8402. "type": "library",
  8403. "extra": {
  8404. "branch-alias": {
  8405. "dev-master": "1.0.x-dev"
  8406. }
  8407. },
  8408. "autoload": {
  8409. "psr-4": {
  8410. "Psr\\Cache\\": "src/"
  8411. }
  8412. },
  8413. "notification-url": "https://packagist.org/downloads/",
  8414. "license": [
  8415. "MIT"
  8416. ],
  8417. "authors": [
  8418. {
  8419. "name": "PHP-FIG",
  8420. "homepage": "https://www.php-fig.org/"
  8421. }
  8422. ],
  8423. "description": "Common interface for caching libraries",
  8424. "keywords": [
  8425. "cache",
  8426. "psr",
  8427. "psr-6"
  8428. ],
  8429. "support": {
  8430. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  8431. },
  8432. "time": "2021-02-03T23:26:27+00:00"
  8433. },
  8434. {
  8435. "name": "sebastian/cli-parser",
  8436. "version": "2.0.1",
  8437. "source": {
  8438. "type": "git",
  8439. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  8440. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084"
  8441. },
  8442. "dist": {
  8443. "type": "zip",
  8444. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8445. "reference": "c34583b87e7b7a8055bf6c450c2c77ce32a24084",
  8446. "shasum": ""
  8447. },
  8448. "require": {
  8449. "php": ">=8.1"
  8450. },
  8451. "require-dev": {
  8452. "phpunit/phpunit": "^10.0"
  8453. },
  8454. "type": "library",
  8455. "extra": {
  8456. "branch-alias": {
  8457. "dev-main": "2.0-dev"
  8458. }
  8459. },
  8460. "autoload": {
  8461. "classmap": [
  8462. "src/"
  8463. ]
  8464. },
  8465. "notification-url": "https://packagist.org/downloads/",
  8466. "license": [
  8467. "BSD-3-Clause"
  8468. ],
  8469. "authors": [
  8470. {
  8471. "name": "Sebastian Bergmann",
  8472. "email": "[email protected]",
  8473. "role": "lead"
  8474. }
  8475. ],
  8476. "description": "Library for parsing CLI options",
  8477. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  8478. "support": {
  8479. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  8480. "security": "https://github.com/sebastianbergmann/cli-parser/security/policy",
  8481. "source": "https://github.com/sebastianbergmann/cli-parser/tree/2.0.1"
  8482. },
  8483. "funding": [
  8484. {
  8485. "url": "https://github.com/sebastianbergmann",
  8486. "type": "github"
  8487. }
  8488. ],
  8489. "time": "2024-03-02T07:12:49+00:00"
  8490. },
  8491. {
  8492. "name": "sebastian/code-unit",
  8493. "version": "2.0.0",
  8494. "source": {
  8495. "type": "git",
  8496. "url": "https://github.com/sebastianbergmann/code-unit.git",
  8497. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503"
  8498. },
  8499. "dist": {
  8500. "type": "zip",
  8501. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/a81fee9eef0b7a76af11d121767abc44c104e503",
  8502. "reference": "a81fee9eef0b7a76af11d121767abc44c104e503",
  8503. "shasum": ""
  8504. },
  8505. "require": {
  8506. "php": ">=8.1"
  8507. },
  8508. "require-dev": {
  8509. "phpunit/phpunit": "^10.0"
  8510. },
  8511. "type": "library",
  8512. "extra": {
  8513. "branch-alias": {
  8514. "dev-main": "2.0-dev"
  8515. }
  8516. },
  8517. "autoload": {
  8518. "classmap": [
  8519. "src/"
  8520. ]
  8521. },
  8522. "notification-url": "https://packagist.org/downloads/",
  8523. "license": [
  8524. "BSD-3-Clause"
  8525. ],
  8526. "authors": [
  8527. {
  8528. "name": "Sebastian Bergmann",
  8529. "email": "[email protected]",
  8530. "role": "lead"
  8531. }
  8532. ],
  8533. "description": "Collection of value objects that represent the PHP code units",
  8534. "homepage": "https://github.com/sebastianbergmann/code-unit",
  8535. "support": {
  8536. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  8537. "source": "https://github.com/sebastianbergmann/code-unit/tree/2.0.0"
  8538. },
  8539. "funding": [
  8540. {
  8541. "url": "https://github.com/sebastianbergmann",
  8542. "type": "github"
  8543. }
  8544. ],
  8545. "time": "2023-02-03T06:58:43+00:00"
  8546. },
  8547. {
  8548. "name": "sebastian/code-unit-reverse-lookup",
  8549. "version": "3.0.0",
  8550. "source": {
  8551. "type": "git",
  8552. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  8553. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d"
  8554. },
  8555. "dist": {
  8556. "type": "zip",
  8557. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8558. "reference": "5e3a687f7d8ae33fb362c5c0743794bbb2420a1d",
  8559. "shasum": ""
  8560. },
  8561. "require": {
  8562. "php": ">=8.1"
  8563. },
  8564. "require-dev": {
  8565. "phpunit/phpunit": "^10.0"
  8566. },
  8567. "type": "library",
  8568. "extra": {
  8569. "branch-alias": {
  8570. "dev-main": "3.0-dev"
  8571. }
  8572. },
  8573. "autoload": {
  8574. "classmap": [
  8575. "src/"
  8576. ]
  8577. },
  8578. "notification-url": "https://packagist.org/downloads/",
  8579. "license": [
  8580. "BSD-3-Clause"
  8581. ],
  8582. "authors": [
  8583. {
  8584. "name": "Sebastian Bergmann",
  8585. "email": "[email protected]"
  8586. }
  8587. ],
  8588. "description": "Looks up which function or method a line of code belongs to",
  8589. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  8590. "support": {
  8591. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  8592. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/3.0.0"
  8593. },
  8594. "funding": [
  8595. {
  8596. "url": "https://github.com/sebastianbergmann",
  8597. "type": "github"
  8598. }
  8599. ],
  8600. "time": "2023-02-03T06:59:15+00:00"
  8601. },
  8602. {
  8603. "name": "sebastian/comparator",
  8604. "version": "5.0.1",
  8605. "source": {
  8606. "type": "git",
  8607. "url": "https://github.com/sebastianbergmann/comparator.git",
  8608. "reference": "2db5010a484d53ebf536087a70b4a5423c102372"
  8609. },
  8610. "dist": {
  8611. "type": "zip",
  8612. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/2db5010a484d53ebf536087a70b4a5423c102372",
  8613. "reference": "2db5010a484d53ebf536087a70b4a5423c102372",
  8614. "shasum": ""
  8615. },
  8616. "require": {
  8617. "ext-dom": "*",
  8618. "ext-mbstring": "*",
  8619. "php": ">=8.1",
  8620. "sebastian/diff": "^5.0",
  8621. "sebastian/exporter": "^5.0"
  8622. },
  8623. "require-dev": {
  8624. "phpunit/phpunit": "^10.3"
  8625. },
  8626. "type": "library",
  8627. "extra": {
  8628. "branch-alias": {
  8629. "dev-main": "5.0-dev"
  8630. }
  8631. },
  8632. "autoload": {
  8633. "classmap": [
  8634. "src/"
  8635. ]
  8636. },
  8637. "notification-url": "https://packagist.org/downloads/",
  8638. "license": [
  8639. "BSD-3-Clause"
  8640. ],
  8641. "authors": [
  8642. {
  8643. "name": "Sebastian Bergmann",
  8644. "email": "[email protected]"
  8645. },
  8646. {
  8647. "name": "Jeff Welch",
  8648. "email": "[email protected]"
  8649. },
  8650. {
  8651. "name": "Volker Dusch",
  8652. "email": "[email protected]"
  8653. },
  8654. {
  8655. "name": "Bernhard Schussek",
  8656. "email": "[email protected]"
  8657. }
  8658. ],
  8659. "description": "Provides the functionality to compare PHP values for equality",
  8660. "homepage": "https://github.com/sebastianbergmann/comparator",
  8661. "keywords": [
  8662. "comparator",
  8663. "compare",
  8664. "equality"
  8665. ],
  8666. "support": {
  8667. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  8668. "security": "https://github.com/sebastianbergmann/comparator/security/policy",
  8669. "source": "https://github.com/sebastianbergmann/comparator/tree/5.0.1"
  8670. },
  8671. "funding": [
  8672. {
  8673. "url": "https://github.com/sebastianbergmann",
  8674. "type": "github"
  8675. }
  8676. ],
  8677. "time": "2023-08-14T13:18:12+00:00"
  8678. },
  8679. {
  8680. "name": "sebastian/complexity",
  8681. "version": "3.2.0",
  8682. "source": {
  8683. "type": "git",
  8684. "url": "https://github.com/sebastianbergmann/complexity.git",
  8685. "reference": "68ff824baeae169ec9f2137158ee529584553799"
  8686. },
  8687. "dist": {
  8688. "type": "zip",
  8689. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/68ff824baeae169ec9f2137158ee529584553799",
  8690. "reference": "68ff824baeae169ec9f2137158ee529584553799",
  8691. "shasum": ""
  8692. },
  8693. "require": {
  8694. "nikic/php-parser": "^4.18 || ^5.0",
  8695. "php": ">=8.1"
  8696. },
  8697. "require-dev": {
  8698. "phpunit/phpunit": "^10.0"
  8699. },
  8700. "type": "library",
  8701. "extra": {
  8702. "branch-alias": {
  8703. "dev-main": "3.2-dev"
  8704. }
  8705. },
  8706. "autoload": {
  8707. "classmap": [
  8708. "src/"
  8709. ]
  8710. },
  8711. "notification-url": "https://packagist.org/downloads/",
  8712. "license": [
  8713. "BSD-3-Clause"
  8714. ],
  8715. "authors": [
  8716. {
  8717. "name": "Sebastian Bergmann",
  8718. "email": "[email protected]",
  8719. "role": "lead"
  8720. }
  8721. ],
  8722. "description": "Library for calculating the complexity of PHP code units",
  8723. "homepage": "https://github.com/sebastianbergmann/complexity",
  8724. "support": {
  8725. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  8726. "security": "https://github.com/sebastianbergmann/complexity/security/policy",
  8727. "source": "https://github.com/sebastianbergmann/complexity/tree/3.2.0"
  8728. },
  8729. "funding": [
  8730. {
  8731. "url": "https://github.com/sebastianbergmann",
  8732. "type": "github"
  8733. }
  8734. ],
  8735. "time": "2023-12-21T08:37:17+00:00"
  8736. },
  8737. {
  8738. "name": "sebastian/diff",
  8739. "version": "5.1.1",
  8740. "source": {
  8741. "type": "git",
  8742. "url": "https://github.com/sebastianbergmann/diff.git",
  8743. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e"
  8744. },
  8745. "dist": {
  8746. "type": "zip",
  8747. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8748. "reference": "c41e007b4b62af48218231d6c2275e4c9b975b2e",
  8749. "shasum": ""
  8750. },
  8751. "require": {
  8752. "php": ">=8.1"
  8753. },
  8754. "require-dev": {
  8755. "phpunit/phpunit": "^10.0",
  8756. "symfony/process": "^6.4"
  8757. },
  8758. "type": "library",
  8759. "extra": {
  8760. "branch-alias": {
  8761. "dev-main": "5.1-dev"
  8762. }
  8763. },
  8764. "autoload": {
  8765. "classmap": [
  8766. "src/"
  8767. ]
  8768. },
  8769. "notification-url": "https://packagist.org/downloads/",
  8770. "license": [
  8771. "BSD-3-Clause"
  8772. ],
  8773. "authors": [
  8774. {
  8775. "name": "Sebastian Bergmann",
  8776. "email": "[email protected]"
  8777. },
  8778. {
  8779. "name": "Kore Nordmann",
  8780. "email": "[email protected]"
  8781. }
  8782. ],
  8783. "description": "Diff implementation",
  8784. "homepage": "https://github.com/sebastianbergmann/diff",
  8785. "keywords": [
  8786. "diff",
  8787. "udiff",
  8788. "unidiff",
  8789. "unified diff"
  8790. ],
  8791. "support": {
  8792. "issues": "https://github.com/sebastianbergmann/diff/issues",
  8793. "security": "https://github.com/sebastianbergmann/diff/security/policy",
  8794. "source": "https://github.com/sebastianbergmann/diff/tree/5.1.1"
  8795. },
  8796. "funding": [
  8797. {
  8798. "url": "https://github.com/sebastianbergmann",
  8799. "type": "github"
  8800. }
  8801. ],
  8802. "time": "2024-03-02T07:15:17+00:00"
  8803. },
  8804. {
  8805. "name": "sebastian/environment",
  8806. "version": "6.1.0",
  8807. "source": {
  8808. "type": "git",
  8809. "url": "https://github.com/sebastianbergmann/environment.git",
  8810. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984"
  8811. },
  8812. "dist": {
  8813. "type": "zip",
  8814. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/8074dbcd93529b357029f5cc5058fd3e43666984",
  8815. "reference": "8074dbcd93529b357029f5cc5058fd3e43666984",
  8816. "shasum": ""
  8817. },
  8818. "require": {
  8819. "php": ">=8.1"
  8820. },
  8821. "require-dev": {
  8822. "phpunit/phpunit": "^10.0"
  8823. },
  8824. "suggest": {
  8825. "ext-posix": "*"
  8826. },
  8827. "type": "library",
  8828. "extra": {
  8829. "branch-alias": {
  8830. "dev-main": "6.1-dev"
  8831. }
  8832. },
  8833. "autoload": {
  8834. "classmap": [
  8835. "src/"
  8836. ]
  8837. },
  8838. "notification-url": "https://packagist.org/downloads/",
  8839. "license": [
  8840. "BSD-3-Clause"
  8841. ],
  8842. "authors": [
  8843. {
  8844. "name": "Sebastian Bergmann",
  8845. "email": "[email protected]"
  8846. }
  8847. ],
  8848. "description": "Provides functionality to handle HHVM/PHP environments",
  8849. "homepage": "https://github.com/sebastianbergmann/environment",
  8850. "keywords": [
  8851. "Xdebug",
  8852. "environment",
  8853. "hhvm"
  8854. ],
  8855. "support": {
  8856. "issues": "https://github.com/sebastianbergmann/environment/issues",
  8857. "security": "https://github.com/sebastianbergmann/environment/security/policy",
  8858. "source": "https://github.com/sebastianbergmann/environment/tree/6.1.0"
  8859. },
  8860. "funding": [
  8861. {
  8862. "url": "https://github.com/sebastianbergmann",
  8863. "type": "github"
  8864. }
  8865. ],
  8866. "time": "2024-03-23T08:47:14+00:00"
  8867. },
  8868. {
  8869. "name": "sebastian/exporter",
  8870. "version": "5.1.2",
  8871. "source": {
  8872. "type": "git",
  8873. "url": "https://github.com/sebastianbergmann/exporter.git",
  8874. "reference": "955288482d97c19a372d3f31006ab3f37da47adf"
  8875. },
  8876. "dist": {
  8877. "type": "zip",
  8878. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/955288482d97c19a372d3f31006ab3f37da47adf",
  8879. "reference": "955288482d97c19a372d3f31006ab3f37da47adf",
  8880. "shasum": ""
  8881. },
  8882. "require": {
  8883. "ext-mbstring": "*",
  8884. "php": ">=8.1",
  8885. "sebastian/recursion-context": "^5.0"
  8886. },
  8887. "require-dev": {
  8888. "phpunit/phpunit": "^10.0"
  8889. },
  8890. "type": "library",
  8891. "extra": {
  8892. "branch-alias": {
  8893. "dev-main": "5.1-dev"
  8894. }
  8895. },
  8896. "autoload": {
  8897. "classmap": [
  8898. "src/"
  8899. ]
  8900. },
  8901. "notification-url": "https://packagist.org/downloads/",
  8902. "license": [
  8903. "BSD-3-Clause"
  8904. ],
  8905. "authors": [
  8906. {
  8907. "name": "Sebastian Bergmann",
  8908. "email": "[email protected]"
  8909. },
  8910. {
  8911. "name": "Jeff Welch",
  8912. "email": "[email protected]"
  8913. },
  8914. {
  8915. "name": "Volker Dusch",
  8916. "email": "[email protected]"
  8917. },
  8918. {
  8919. "name": "Adam Harvey",
  8920. "email": "[email protected]"
  8921. },
  8922. {
  8923. "name": "Bernhard Schussek",
  8924. "email": "[email protected]"
  8925. }
  8926. ],
  8927. "description": "Provides the functionality to export PHP variables for visualization",
  8928. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  8929. "keywords": [
  8930. "export",
  8931. "exporter"
  8932. ],
  8933. "support": {
  8934. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  8935. "security": "https://github.com/sebastianbergmann/exporter/security/policy",
  8936. "source": "https://github.com/sebastianbergmann/exporter/tree/5.1.2"
  8937. },
  8938. "funding": [
  8939. {
  8940. "url": "https://github.com/sebastianbergmann",
  8941. "type": "github"
  8942. }
  8943. ],
  8944. "time": "2024-03-02T07:17:12+00:00"
  8945. },
  8946. {
  8947. "name": "sebastian/global-state",
  8948. "version": "6.0.2",
  8949. "source": {
  8950. "type": "git",
  8951. "url": "https://github.com/sebastianbergmann/global-state.git",
  8952. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9"
  8953. },
  8954. "dist": {
  8955. "type": "zip",
  8956. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  8957. "reference": "987bafff24ecc4c9ac418cab1145b96dd6e9cbd9",
  8958. "shasum": ""
  8959. },
  8960. "require": {
  8961. "php": ">=8.1",
  8962. "sebastian/object-reflector": "^3.0",
  8963. "sebastian/recursion-context": "^5.0"
  8964. },
  8965. "require-dev": {
  8966. "ext-dom": "*",
  8967. "phpunit/phpunit": "^10.0"
  8968. },
  8969. "type": "library",
  8970. "extra": {
  8971. "branch-alias": {
  8972. "dev-main": "6.0-dev"
  8973. }
  8974. },
  8975. "autoload": {
  8976. "classmap": [
  8977. "src/"
  8978. ]
  8979. },
  8980. "notification-url": "https://packagist.org/downloads/",
  8981. "license": [
  8982. "BSD-3-Clause"
  8983. ],
  8984. "authors": [
  8985. {
  8986. "name": "Sebastian Bergmann",
  8987. "email": "[email protected]"
  8988. }
  8989. ],
  8990. "description": "Snapshotting of global state",
  8991. "homepage": "https://www.github.com/sebastianbergmann/global-state",
  8992. "keywords": [
  8993. "global state"
  8994. ],
  8995. "support": {
  8996. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  8997. "security": "https://github.com/sebastianbergmann/global-state/security/policy",
  8998. "source": "https://github.com/sebastianbergmann/global-state/tree/6.0.2"
  8999. },
  9000. "funding": [
  9001. {
  9002. "url": "https://github.com/sebastianbergmann",
  9003. "type": "github"
  9004. }
  9005. ],
  9006. "time": "2024-03-02T07:19:19+00:00"
  9007. },
  9008. {
  9009. "name": "sebastian/lines-of-code",
  9010. "version": "2.0.2",
  9011. "source": {
  9012. "type": "git",
  9013. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  9014. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0"
  9015. },
  9016. "dist": {
  9017. "type": "zip",
  9018. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9019. "reference": "856e7f6a75a84e339195d48c556f23be2ebf75d0",
  9020. "shasum": ""
  9021. },
  9022. "require": {
  9023. "nikic/php-parser": "^4.18 || ^5.0",
  9024. "php": ">=8.1"
  9025. },
  9026. "require-dev": {
  9027. "phpunit/phpunit": "^10.0"
  9028. },
  9029. "type": "library",
  9030. "extra": {
  9031. "branch-alias": {
  9032. "dev-main": "2.0-dev"
  9033. }
  9034. },
  9035. "autoload": {
  9036. "classmap": [
  9037. "src/"
  9038. ]
  9039. },
  9040. "notification-url": "https://packagist.org/downloads/",
  9041. "license": [
  9042. "BSD-3-Clause"
  9043. ],
  9044. "authors": [
  9045. {
  9046. "name": "Sebastian Bergmann",
  9047. "email": "[email protected]",
  9048. "role": "lead"
  9049. }
  9050. ],
  9051. "description": "Library for counting the lines of code in PHP source code",
  9052. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  9053. "support": {
  9054. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  9055. "security": "https://github.com/sebastianbergmann/lines-of-code/security/policy",
  9056. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/2.0.2"
  9057. },
  9058. "funding": [
  9059. {
  9060. "url": "https://github.com/sebastianbergmann",
  9061. "type": "github"
  9062. }
  9063. ],
  9064. "time": "2023-12-21T08:38:20+00:00"
  9065. },
  9066. {
  9067. "name": "sebastian/object-enumerator",
  9068. "version": "5.0.0",
  9069. "source": {
  9070. "type": "git",
  9071. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9072. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906"
  9073. },
  9074. "dist": {
  9075. "type": "zip",
  9076. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/202d0e344a580d7f7d04b3fafce6933e59dae906",
  9077. "reference": "202d0e344a580d7f7d04b3fafce6933e59dae906",
  9078. "shasum": ""
  9079. },
  9080. "require": {
  9081. "php": ">=8.1",
  9082. "sebastian/object-reflector": "^3.0",
  9083. "sebastian/recursion-context": "^5.0"
  9084. },
  9085. "require-dev": {
  9086. "phpunit/phpunit": "^10.0"
  9087. },
  9088. "type": "library",
  9089. "extra": {
  9090. "branch-alias": {
  9091. "dev-main": "5.0-dev"
  9092. }
  9093. },
  9094. "autoload": {
  9095. "classmap": [
  9096. "src/"
  9097. ]
  9098. },
  9099. "notification-url": "https://packagist.org/downloads/",
  9100. "license": [
  9101. "BSD-3-Clause"
  9102. ],
  9103. "authors": [
  9104. {
  9105. "name": "Sebastian Bergmann",
  9106. "email": "[email protected]"
  9107. }
  9108. ],
  9109. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9110. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9111. "support": {
  9112. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  9113. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/5.0.0"
  9114. },
  9115. "funding": [
  9116. {
  9117. "url": "https://github.com/sebastianbergmann",
  9118. "type": "github"
  9119. }
  9120. ],
  9121. "time": "2023-02-03T07:08:32+00:00"
  9122. },
  9123. {
  9124. "name": "sebastian/object-reflector",
  9125. "version": "3.0.0",
  9126. "source": {
  9127. "type": "git",
  9128. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9129. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957"
  9130. },
  9131. "dist": {
  9132. "type": "zip",
  9133. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/24ed13d98130f0e7122df55d06c5c4942a577957",
  9134. "reference": "24ed13d98130f0e7122df55d06c5c4942a577957",
  9135. "shasum": ""
  9136. },
  9137. "require": {
  9138. "php": ">=8.1"
  9139. },
  9140. "require-dev": {
  9141. "phpunit/phpunit": "^10.0"
  9142. },
  9143. "type": "library",
  9144. "extra": {
  9145. "branch-alias": {
  9146. "dev-main": "3.0-dev"
  9147. }
  9148. },
  9149. "autoload": {
  9150. "classmap": [
  9151. "src/"
  9152. ]
  9153. },
  9154. "notification-url": "https://packagist.org/downloads/",
  9155. "license": [
  9156. "BSD-3-Clause"
  9157. ],
  9158. "authors": [
  9159. {
  9160. "name": "Sebastian Bergmann",
  9161. "email": "[email protected]"
  9162. }
  9163. ],
  9164. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9165. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9166. "support": {
  9167. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  9168. "source": "https://github.com/sebastianbergmann/object-reflector/tree/3.0.0"
  9169. },
  9170. "funding": [
  9171. {
  9172. "url": "https://github.com/sebastianbergmann",
  9173. "type": "github"
  9174. }
  9175. ],
  9176. "time": "2023-02-03T07:06:18+00:00"
  9177. },
  9178. {
  9179. "name": "sebastian/recursion-context",
  9180. "version": "5.0.0",
  9181. "source": {
  9182. "type": "git",
  9183. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9184. "reference": "05909fb5bc7df4c52992396d0116aed689f93712"
  9185. },
  9186. "dist": {
  9187. "type": "zip",
  9188. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/05909fb5bc7df4c52992396d0116aed689f93712",
  9189. "reference": "05909fb5bc7df4c52992396d0116aed689f93712",
  9190. "shasum": ""
  9191. },
  9192. "require": {
  9193. "php": ">=8.1"
  9194. },
  9195. "require-dev": {
  9196. "phpunit/phpunit": "^10.0"
  9197. },
  9198. "type": "library",
  9199. "extra": {
  9200. "branch-alias": {
  9201. "dev-main": "5.0-dev"
  9202. }
  9203. },
  9204. "autoload": {
  9205. "classmap": [
  9206. "src/"
  9207. ]
  9208. },
  9209. "notification-url": "https://packagist.org/downloads/",
  9210. "license": [
  9211. "BSD-3-Clause"
  9212. ],
  9213. "authors": [
  9214. {
  9215. "name": "Sebastian Bergmann",
  9216. "email": "[email protected]"
  9217. },
  9218. {
  9219. "name": "Jeff Welch",
  9220. "email": "[email protected]"
  9221. },
  9222. {
  9223. "name": "Adam Harvey",
  9224. "email": "[email protected]"
  9225. }
  9226. ],
  9227. "description": "Provides functionality to recursively process PHP variables",
  9228. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  9229. "support": {
  9230. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  9231. "source": "https://github.com/sebastianbergmann/recursion-context/tree/5.0.0"
  9232. },
  9233. "funding": [
  9234. {
  9235. "url": "https://github.com/sebastianbergmann",
  9236. "type": "github"
  9237. }
  9238. ],
  9239. "time": "2023-02-03T07:05:40+00:00"
  9240. },
  9241. {
  9242. "name": "sebastian/type",
  9243. "version": "4.0.0",
  9244. "source": {
  9245. "type": "git",
  9246. "url": "https://github.com/sebastianbergmann/type.git",
  9247. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf"
  9248. },
  9249. "dist": {
  9250. "type": "zip",
  9251. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/462699a16464c3944eefc02ebdd77882bd3925bf",
  9252. "reference": "462699a16464c3944eefc02ebdd77882bd3925bf",
  9253. "shasum": ""
  9254. },
  9255. "require": {
  9256. "php": ">=8.1"
  9257. },
  9258. "require-dev": {
  9259. "phpunit/phpunit": "^10.0"
  9260. },
  9261. "type": "library",
  9262. "extra": {
  9263. "branch-alias": {
  9264. "dev-main": "4.0-dev"
  9265. }
  9266. },
  9267. "autoload": {
  9268. "classmap": [
  9269. "src/"
  9270. ]
  9271. },
  9272. "notification-url": "https://packagist.org/downloads/",
  9273. "license": [
  9274. "BSD-3-Clause"
  9275. ],
  9276. "authors": [
  9277. {
  9278. "name": "Sebastian Bergmann",
  9279. "email": "[email protected]",
  9280. "role": "lead"
  9281. }
  9282. ],
  9283. "description": "Collection of value objects that represent the types of the PHP type system",
  9284. "homepage": "https://github.com/sebastianbergmann/type",
  9285. "support": {
  9286. "issues": "https://github.com/sebastianbergmann/type/issues",
  9287. "source": "https://github.com/sebastianbergmann/type/tree/4.0.0"
  9288. },
  9289. "funding": [
  9290. {
  9291. "url": "https://github.com/sebastianbergmann",
  9292. "type": "github"
  9293. }
  9294. ],
  9295. "time": "2023-02-03T07:10:45+00:00"
  9296. },
  9297. {
  9298. "name": "sebastian/version",
  9299. "version": "4.0.1",
  9300. "source": {
  9301. "type": "git",
  9302. "url": "https://github.com/sebastianbergmann/version.git",
  9303. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17"
  9304. },
  9305. "dist": {
  9306. "type": "zip",
  9307. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9308. "reference": "c51fa83a5d8f43f1402e3f32a005e6262244ef17",
  9309. "shasum": ""
  9310. },
  9311. "require": {
  9312. "php": ">=8.1"
  9313. },
  9314. "type": "library",
  9315. "extra": {
  9316. "branch-alias": {
  9317. "dev-main": "4.0-dev"
  9318. }
  9319. },
  9320. "autoload": {
  9321. "classmap": [
  9322. "src/"
  9323. ]
  9324. },
  9325. "notification-url": "https://packagist.org/downloads/",
  9326. "license": [
  9327. "BSD-3-Clause"
  9328. ],
  9329. "authors": [
  9330. {
  9331. "name": "Sebastian Bergmann",
  9332. "email": "[email protected]",
  9333. "role": "lead"
  9334. }
  9335. ],
  9336. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9337. "homepage": "https://github.com/sebastianbergmann/version",
  9338. "support": {
  9339. "issues": "https://github.com/sebastianbergmann/version/issues",
  9340. "source": "https://github.com/sebastianbergmann/version/tree/4.0.1"
  9341. },
  9342. "funding": [
  9343. {
  9344. "url": "https://github.com/sebastianbergmann",
  9345. "type": "github"
  9346. }
  9347. ],
  9348. "time": "2023-02-07T11:34:05+00:00"
  9349. },
  9350. {
  9351. "name": "slevomat/coding-standard",
  9352. "version": "8.15.0",
  9353. "source": {
  9354. "type": "git",
  9355. "url": "https://github.com/slevomat/coding-standard.git",
  9356. "reference": "7d1d957421618a3803b593ec31ace470177d7817"
  9357. },
  9358. "dist": {
  9359. "type": "zip",
  9360. "url": "https://api.github.com/repos/slevomat/coding-standard/zipball/7d1d957421618a3803b593ec31ace470177d7817",
  9361. "reference": "7d1d957421618a3803b593ec31ace470177d7817",
  9362. "shasum": ""
  9363. },
  9364. "require": {
  9365. "dealerdirect/phpcodesniffer-composer-installer": "^0.6.2 || ^0.7 || ^1.0",
  9366. "php": "^7.2 || ^8.0",
  9367. "phpstan/phpdoc-parser": "^1.23.1",
  9368. "squizlabs/php_codesniffer": "^3.9.0"
  9369. },
  9370. "require-dev": {
  9371. "phing/phing": "2.17.4",
  9372. "php-parallel-lint/php-parallel-lint": "1.3.2",
  9373. "phpstan/phpstan": "1.10.60",
  9374. "phpstan/phpstan-deprecation-rules": "1.1.4",
  9375. "phpstan/phpstan-phpunit": "1.3.16",
  9376. "phpstan/phpstan-strict-rules": "1.5.2",
  9377. "phpunit/phpunit": "8.5.21|9.6.8|10.5.11"
  9378. },
  9379. "type": "phpcodesniffer-standard",
  9380. "extra": {
  9381. "branch-alias": {
  9382. "dev-master": "8.x-dev"
  9383. }
  9384. },
  9385. "autoload": {
  9386. "psr-4": {
  9387. "SlevomatCodingStandard\\": "SlevomatCodingStandard/"
  9388. }
  9389. },
  9390. "notification-url": "https://packagist.org/downloads/",
  9391. "license": [
  9392. "MIT"
  9393. ],
  9394. "description": "Slevomat Coding Standard for PHP_CodeSniffer complements Consistence Coding Standard by providing sniffs with additional checks.",
  9395. "keywords": [
  9396. "dev",
  9397. "phpcs"
  9398. ],
  9399. "support": {
  9400. "issues": "https://github.com/slevomat/coding-standard/issues",
  9401. "source": "https://github.com/slevomat/coding-standard/tree/8.15.0"
  9402. },
  9403. "funding": [
  9404. {
  9405. "url": "https://github.com/kukulich",
  9406. "type": "github"
  9407. },
  9408. {
  9409. "url": "https://tidelift.com/funding/github/packagist/slevomat/coding-standard",
  9410. "type": "tidelift"
  9411. }
  9412. ],
  9413. "time": "2024-03-09T15:20:58+00:00"
  9414. },
  9415. {
  9416. "name": "squizlabs/php_codesniffer",
  9417. "version": "3.9.1",
  9418. "source": {
  9419. "type": "git",
  9420. "url": "https://github.com/PHPCSStandards/PHP_CodeSniffer.git",
  9421. "reference": "267a4405fff1d9c847134db3a3c92f1ab7f77909"
  9422. },
  9423. "dist": {
  9424. "type": "zip",
  9425. "url": "https://api.github.com/repos/PHPCSStandards/PHP_CodeSniffer/zipball/267a4405fff1d9c847134db3a3c92f1ab7f77909",
  9426. "reference": "267a4405fff1d9c847134db3a3c92f1ab7f77909",
  9427. "shasum": ""
  9428. },
  9429. "require": {
  9430. "ext-simplexml": "*",
  9431. "ext-tokenizer": "*",
  9432. "ext-xmlwriter": "*",
  9433. "php": ">=5.4.0"
  9434. },
  9435. "require-dev": {
  9436. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.3.4"
  9437. },
  9438. "bin": [
  9439. "bin/phpcbf",
  9440. "bin/phpcs"
  9441. ],
  9442. "type": "library",
  9443. "extra": {
  9444. "branch-alias": {
  9445. "dev-master": "3.x-dev"
  9446. }
  9447. },
  9448. "notification-url": "https://packagist.org/downloads/",
  9449. "license": [
  9450. "BSD-3-Clause"
  9451. ],
  9452. "authors": [
  9453. {
  9454. "name": "Greg Sherwood",
  9455. "role": "Former lead"
  9456. },
  9457. {
  9458. "name": "Juliette Reinders Folmer",
  9459. "role": "Current lead"
  9460. },
  9461. {
  9462. "name": "Contributors",
  9463. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer/graphs/contributors"
  9464. }
  9465. ],
  9466. "description": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.",
  9467. "homepage": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  9468. "keywords": [
  9469. "phpcs",
  9470. "standards",
  9471. "static analysis"
  9472. ],
  9473. "support": {
  9474. "issues": "https://github.com/PHPCSStandards/PHP_CodeSniffer/issues",
  9475. "security": "https://github.com/PHPCSStandards/PHP_CodeSniffer/security/policy",
  9476. "source": "https://github.com/PHPCSStandards/PHP_CodeSniffer",
  9477. "wiki": "https://github.com/PHPCSStandards/PHP_CodeSniffer/wiki"
  9478. },
  9479. "funding": [
  9480. {
  9481. "url": "https://github.com/PHPCSStandards",
  9482. "type": "github"
  9483. },
  9484. {
  9485. "url": "https://github.com/jrfnl",
  9486. "type": "github"
  9487. },
  9488. {
  9489. "url": "https://opencollective.com/php_codesniffer",
  9490. "type": "open_collective"
  9491. }
  9492. ],
  9493. "time": "2024-03-31T21:03:09+00:00"
  9494. },
  9495. {
  9496. "name": "symfony/cache",
  9497. "version": "v7.0.4",
  9498. "source": {
  9499. "type": "git",
  9500. "url": "https://github.com/symfony/cache.git",
  9501. "reference": "fc822951dd360a593224bb2cef90a087d0dff60f"
  9502. },
  9503. "dist": {
  9504. "type": "zip",
  9505. "url": "https://api.github.com/repos/symfony/cache/zipball/fc822951dd360a593224bb2cef90a087d0dff60f",
  9506. "reference": "fc822951dd360a593224bb2cef90a087d0dff60f",
  9507. "shasum": ""
  9508. },
  9509. "require": {
  9510. "php": ">=8.2",
  9511. "psr/cache": "^2.0|^3.0",
  9512. "psr/log": "^1.1|^2|^3",
  9513. "symfony/cache-contracts": "^2.5|^3",
  9514. "symfony/service-contracts": "^2.5|^3",
  9515. "symfony/var-exporter": "^6.4|^7.0"
  9516. },
  9517. "conflict": {
  9518. "doctrine/dbal": "<3.6",
  9519. "symfony/dependency-injection": "<6.4",
  9520. "symfony/http-kernel": "<6.4",
  9521. "symfony/var-dumper": "<6.4"
  9522. },
  9523. "provide": {
  9524. "psr/cache-implementation": "2.0|3.0",
  9525. "psr/simple-cache-implementation": "1.0|2.0|3.0",
  9526. "symfony/cache-implementation": "1.1|2.0|3.0"
  9527. },
  9528. "require-dev": {
  9529. "cache/integration-tests": "dev-master",
  9530. "doctrine/dbal": "^3.6|^4",
  9531. "predis/predis": "^1.1|^2.0",
  9532. "psr/simple-cache": "^1.0|^2.0|^3.0",
  9533. "symfony/config": "^6.4|^7.0",
  9534. "symfony/dependency-injection": "^6.4|^7.0",
  9535. "symfony/filesystem": "^6.4|^7.0",
  9536. "symfony/http-kernel": "^6.4|^7.0",
  9537. "symfony/messenger": "^6.4|^7.0",
  9538. "symfony/var-dumper": "^6.4|^7.0"
  9539. },
  9540. "type": "library",
  9541. "autoload": {
  9542. "psr-4": {
  9543. "Symfony\\Component\\Cache\\": ""
  9544. },
  9545. "classmap": [
  9546. "Traits/ValueWrapper.php"
  9547. ],
  9548. "exclude-from-classmap": [
  9549. "/Tests/"
  9550. ]
  9551. },
  9552. "notification-url": "https://packagist.org/downloads/",
  9553. "license": [
  9554. "MIT"
  9555. ],
  9556. "authors": [
  9557. {
  9558. "name": "Nicolas Grekas",
  9559. "email": "[email protected]"
  9560. },
  9561. {
  9562. "name": "Symfony Community",
  9563. "homepage": "https://symfony.com/contributors"
  9564. }
  9565. ],
  9566. "description": "Provides extended PSR-6, PSR-16 (and tags) implementations",
  9567. "homepage": "https://symfony.com",
  9568. "keywords": [
  9569. "caching",
  9570. "psr6"
  9571. ],
  9572. "support": {
  9573. "source": "https://github.com/symfony/cache/tree/v7.0.4"
  9574. },
  9575. "funding": [
  9576. {
  9577. "url": "https://symfony.com/sponsor",
  9578. "type": "custom"
  9579. },
  9580. {
  9581. "url": "https://github.com/fabpot",
  9582. "type": "github"
  9583. },
  9584. {
  9585. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9586. "type": "tidelift"
  9587. }
  9588. ],
  9589. "time": "2024-02-22T20:27:20+00:00"
  9590. },
  9591. {
  9592. "name": "symfony/cache-contracts",
  9593. "version": "v3.4.0",
  9594. "source": {
  9595. "type": "git",
  9596. "url": "https://github.com/symfony/cache-contracts.git",
  9597. "reference": "1d74b127da04ffa87aa940abe15446fa89653778"
  9598. },
  9599. "dist": {
  9600. "type": "zip",
  9601. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/1d74b127da04ffa87aa940abe15446fa89653778",
  9602. "reference": "1d74b127da04ffa87aa940abe15446fa89653778",
  9603. "shasum": ""
  9604. },
  9605. "require": {
  9606. "php": ">=8.1",
  9607. "psr/cache": "^3.0"
  9608. },
  9609. "type": "library",
  9610. "extra": {
  9611. "branch-alias": {
  9612. "dev-main": "3.4-dev"
  9613. },
  9614. "thanks": {
  9615. "name": "symfony/contracts",
  9616. "url": "https://github.com/symfony/contracts"
  9617. }
  9618. },
  9619. "autoload": {
  9620. "psr-4": {
  9621. "Symfony\\Contracts\\Cache\\": ""
  9622. }
  9623. },
  9624. "notification-url": "https://packagist.org/downloads/",
  9625. "license": [
  9626. "MIT"
  9627. ],
  9628. "authors": [
  9629. {
  9630. "name": "Nicolas Grekas",
  9631. "email": "[email protected]"
  9632. },
  9633. {
  9634. "name": "Symfony Community",
  9635. "homepage": "https://symfony.com/contributors"
  9636. }
  9637. ],
  9638. "description": "Generic abstractions related to caching",
  9639. "homepage": "https://symfony.com",
  9640. "keywords": [
  9641. "abstractions",
  9642. "contracts",
  9643. "decoupling",
  9644. "interfaces",
  9645. "interoperability",
  9646. "standards"
  9647. ],
  9648. "support": {
  9649. "source": "https://github.com/symfony/cache-contracts/tree/v3.4.0"
  9650. },
  9651. "funding": [
  9652. {
  9653. "url": "https://symfony.com/sponsor",
  9654. "type": "custom"
  9655. },
  9656. {
  9657. "url": "https://github.com/fabpot",
  9658. "type": "github"
  9659. },
  9660. {
  9661. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9662. "type": "tidelift"
  9663. }
  9664. ],
  9665. "time": "2023-09-25T12:52:38+00:00"
  9666. },
  9667. {
  9668. "name": "symfony/console",
  9669. "version": "v7.0.4",
  9670. "source": {
  9671. "type": "git",
  9672. "url": "https://github.com/symfony/console.git",
  9673. "reference": "6b099f3306f7c9c2d2786ed736d0026b2903205f"
  9674. },
  9675. "dist": {
  9676. "type": "zip",
  9677. "url": "https://api.github.com/repos/symfony/console/zipball/6b099f3306f7c9c2d2786ed736d0026b2903205f",
  9678. "reference": "6b099f3306f7c9c2d2786ed736d0026b2903205f",
  9679. "shasum": ""
  9680. },
  9681. "require": {
  9682. "php": ">=8.2",
  9683. "symfony/polyfill-mbstring": "~1.0",
  9684. "symfony/service-contracts": "^2.5|^3",
  9685. "symfony/string": "^6.4|^7.0"
  9686. },
  9687. "conflict": {
  9688. "symfony/dependency-injection": "<6.4",
  9689. "symfony/dotenv": "<6.4",
  9690. "symfony/event-dispatcher": "<6.4",
  9691. "symfony/lock": "<6.4",
  9692. "symfony/process": "<6.4"
  9693. },
  9694. "provide": {
  9695. "psr/log-implementation": "1.0|2.0|3.0"
  9696. },
  9697. "require-dev": {
  9698. "psr/log": "^1|^2|^3",
  9699. "symfony/config": "^6.4|^7.0",
  9700. "symfony/dependency-injection": "^6.4|^7.0",
  9701. "symfony/event-dispatcher": "^6.4|^7.0",
  9702. "symfony/http-foundation": "^6.4|^7.0",
  9703. "symfony/http-kernel": "^6.4|^7.0",
  9704. "symfony/lock": "^6.4|^7.0",
  9705. "symfony/messenger": "^6.4|^7.0",
  9706. "symfony/process": "^6.4|^7.0",
  9707. "symfony/stopwatch": "^6.4|^7.0",
  9708. "symfony/var-dumper": "^6.4|^7.0"
  9709. },
  9710. "type": "library",
  9711. "autoload": {
  9712. "psr-4": {
  9713. "Symfony\\Component\\Console\\": ""
  9714. },
  9715. "exclude-from-classmap": [
  9716. "/Tests/"
  9717. ]
  9718. },
  9719. "notification-url": "https://packagist.org/downloads/",
  9720. "license": [
  9721. "MIT"
  9722. ],
  9723. "authors": [
  9724. {
  9725. "name": "Fabien Potencier",
  9726. "email": "[email protected]"
  9727. },
  9728. {
  9729. "name": "Symfony Community",
  9730. "homepage": "https://symfony.com/contributors"
  9731. }
  9732. ],
  9733. "description": "Eases the creation of beautiful and testable command line interfaces",
  9734. "homepage": "https://symfony.com",
  9735. "keywords": [
  9736. "cli",
  9737. "command-line",
  9738. "console",
  9739. "terminal"
  9740. ],
  9741. "support": {
  9742. "source": "https://github.com/symfony/console/tree/v7.0.4"
  9743. },
  9744. "funding": [
  9745. {
  9746. "url": "https://symfony.com/sponsor",
  9747. "type": "custom"
  9748. },
  9749. {
  9750. "url": "https://github.com/fabpot",
  9751. "type": "github"
  9752. },
  9753. {
  9754. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9755. "type": "tidelift"
  9756. }
  9757. ],
  9758. "time": "2024-02-22T20:27:20+00:00"
  9759. },
  9760. {
  9761. "name": "symfony/event-dispatcher",
  9762. "version": "v7.0.3",
  9763. "source": {
  9764. "type": "git",
  9765. "url": "https://github.com/symfony/event-dispatcher.git",
  9766. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e"
  9767. },
  9768. "dist": {
  9769. "type": "zip",
  9770. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/834c28d533dd0636f910909d01b9ff45cc094b5e",
  9771. "reference": "834c28d533dd0636f910909d01b9ff45cc094b5e",
  9772. "shasum": ""
  9773. },
  9774. "require": {
  9775. "php": ">=8.2",
  9776. "symfony/event-dispatcher-contracts": "^2.5|^3"
  9777. },
  9778. "conflict": {
  9779. "symfony/dependency-injection": "<6.4",
  9780. "symfony/service-contracts": "<2.5"
  9781. },
  9782. "provide": {
  9783. "psr/event-dispatcher-implementation": "1.0",
  9784. "symfony/event-dispatcher-implementation": "2.0|3.0"
  9785. },
  9786. "require-dev": {
  9787. "psr/log": "^1|^2|^3",
  9788. "symfony/config": "^6.4|^7.0",
  9789. "symfony/dependency-injection": "^6.4|^7.0",
  9790. "symfony/error-handler": "^6.4|^7.0",
  9791. "symfony/expression-language": "^6.4|^7.0",
  9792. "symfony/http-foundation": "^6.4|^7.0",
  9793. "symfony/service-contracts": "^2.5|^3",
  9794. "symfony/stopwatch": "^6.4|^7.0"
  9795. },
  9796. "type": "library",
  9797. "autoload": {
  9798. "psr-4": {
  9799. "Symfony\\Component\\EventDispatcher\\": ""
  9800. },
  9801. "exclude-from-classmap": [
  9802. "/Tests/"
  9803. ]
  9804. },
  9805. "notification-url": "https://packagist.org/downloads/",
  9806. "license": [
  9807. "MIT"
  9808. ],
  9809. "authors": [
  9810. {
  9811. "name": "Fabien Potencier",
  9812. "email": "[email protected]"
  9813. },
  9814. {
  9815. "name": "Symfony Community",
  9816. "homepage": "https://symfony.com/contributors"
  9817. }
  9818. ],
  9819. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  9820. "homepage": "https://symfony.com",
  9821. "support": {
  9822. "source": "https://github.com/symfony/event-dispatcher/tree/v7.0.3"
  9823. },
  9824. "funding": [
  9825. {
  9826. "url": "https://symfony.com/sponsor",
  9827. "type": "custom"
  9828. },
  9829. {
  9830. "url": "https://github.com/fabpot",
  9831. "type": "github"
  9832. },
  9833. {
  9834. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9835. "type": "tidelift"
  9836. }
  9837. ],
  9838. "time": "2024-01-23T15:02:46+00:00"
  9839. },
  9840. {
  9841. "name": "symfony/event-dispatcher-contracts",
  9842. "version": "v3.4.0",
  9843. "source": {
  9844. "type": "git",
  9845. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  9846. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df"
  9847. },
  9848. "dist": {
  9849. "type": "zip",
  9850. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/a76aed96a42d2b521153fb382d418e30d18b59df",
  9851. "reference": "a76aed96a42d2b521153fb382d418e30d18b59df",
  9852. "shasum": ""
  9853. },
  9854. "require": {
  9855. "php": ">=8.1",
  9856. "psr/event-dispatcher": "^1"
  9857. },
  9858. "type": "library",
  9859. "extra": {
  9860. "branch-alias": {
  9861. "dev-main": "3.4-dev"
  9862. },
  9863. "thanks": {
  9864. "name": "symfony/contracts",
  9865. "url": "https://github.com/symfony/contracts"
  9866. }
  9867. },
  9868. "autoload": {
  9869. "psr-4": {
  9870. "Symfony\\Contracts\\EventDispatcher\\": ""
  9871. }
  9872. },
  9873. "notification-url": "https://packagist.org/downloads/",
  9874. "license": [
  9875. "MIT"
  9876. ],
  9877. "authors": [
  9878. {
  9879. "name": "Nicolas Grekas",
  9880. "email": "[email protected]"
  9881. },
  9882. {
  9883. "name": "Symfony Community",
  9884. "homepage": "https://symfony.com/contributors"
  9885. }
  9886. ],
  9887. "description": "Generic abstractions related to dispatching event",
  9888. "homepage": "https://symfony.com",
  9889. "keywords": [
  9890. "abstractions",
  9891. "contracts",
  9892. "decoupling",
  9893. "interfaces",
  9894. "interoperability",
  9895. "standards"
  9896. ],
  9897. "support": {
  9898. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.4.0"
  9899. },
  9900. "funding": [
  9901. {
  9902. "url": "https://symfony.com/sponsor",
  9903. "type": "custom"
  9904. },
  9905. {
  9906. "url": "https://github.com/fabpot",
  9907. "type": "github"
  9908. },
  9909. {
  9910. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9911. "type": "tidelift"
  9912. }
  9913. ],
  9914. "time": "2023-05-23T14:45:45+00:00"
  9915. },
  9916. {
  9917. "name": "symfony/filesystem",
  9918. "version": "v7.0.3",
  9919. "source": {
  9920. "type": "git",
  9921. "url": "https://github.com/symfony/filesystem.git",
  9922. "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12"
  9923. },
  9924. "dist": {
  9925. "type": "zip",
  9926. "url": "https://api.github.com/repos/symfony/filesystem/zipball/2890e3a825bc0c0558526c04499c13f83e1b6b12",
  9927. "reference": "2890e3a825bc0c0558526c04499c13f83e1b6b12",
  9928. "shasum": ""
  9929. },
  9930. "require": {
  9931. "php": ">=8.2",
  9932. "symfony/polyfill-ctype": "~1.8",
  9933. "symfony/polyfill-mbstring": "~1.8"
  9934. },
  9935. "type": "library",
  9936. "autoload": {
  9937. "psr-4": {
  9938. "Symfony\\Component\\Filesystem\\": ""
  9939. },
  9940. "exclude-from-classmap": [
  9941. "/Tests/"
  9942. ]
  9943. },
  9944. "notification-url": "https://packagist.org/downloads/",
  9945. "license": [
  9946. "MIT"
  9947. ],
  9948. "authors": [
  9949. {
  9950. "name": "Fabien Potencier",
  9951. "email": "[email protected]"
  9952. },
  9953. {
  9954. "name": "Symfony Community",
  9955. "homepage": "https://symfony.com/contributors"
  9956. }
  9957. ],
  9958. "description": "Provides basic utilities for the filesystem",
  9959. "homepage": "https://symfony.com",
  9960. "support": {
  9961. "source": "https://github.com/symfony/filesystem/tree/v7.0.3"
  9962. },
  9963. "funding": [
  9964. {
  9965. "url": "https://symfony.com/sponsor",
  9966. "type": "custom"
  9967. },
  9968. {
  9969. "url": "https://github.com/fabpot",
  9970. "type": "github"
  9971. },
  9972. {
  9973. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  9974. "type": "tidelift"
  9975. }
  9976. ],
  9977. "time": "2024-01-23T15:02:46+00:00"
  9978. },
  9979. {
  9980. "name": "symfony/finder",
  9981. "version": "v7.0.0",
  9982. "source": {
  9983. "type": "git",
  9984. "url": "https://github.com/symfony/finder.git",
  9985. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56"
  9986. },
  9987. "dist": {
  9988. "type": "zip",
  9989. "url": "https://api.github.com/repos/symfony/finder/zipball/6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  9990. "reference": "6e5688d69f7cfc4ed4a511e96007e06c2d34ce56",
  9991. "shasum": ""
  9992. },
  9993. "require": {
  9994. "php": ">=8.2"
  9995. },
  9996. "require-dev": {
  9997. "symfony/filesystem": "^6.4|^7.0"
  9998. },
  9999. "type": "library",
  10000. "autoload": {
  10001. "psr-4": {
  10002. "Symfony\\Component\\Finder\\": ""
  10003. },
  10004. "exclude-from-classmap": [
  10005. "/Tests/"
  10006. ]
  10007. },
  10008. "notification-url": "https://packagist.org/downloads/",
  10009. "license": [
  10010. "MIT"
  10011. ],
  10012. "authors": [
  10013. {
  10014. "name": "Fabien Potencier",
  10015. "email": "[email protected]"
  10016. },
  10017. {
  10018. "name": "Symfony Community",
  10019. "homepage": "https://symfony.com/contributors"
  10020. }
  10021. ],
  10022. "description": "Finds files and directories via an intuitive fluent interface",
  10023. "homepage": "https://symfony.com",
  10024. "support": {
  10025. "source": "https://github.com/symfony/finder/tree/v7.0.0"
  10026. },
  10027. "funding": [
  10028. {
  10029. "url": "https://symfony.com/sponsor",
  10030. "type": "custom"
  10031. },
  10032. {
  10033. "url": "https://github.com/fabpot",
  10034. "type": "github"
  10035. },
  10036. {
  10037. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10038. "type": "tidelift"
  10039. }
  10040. ],
  10041. "time": "2023-10-31T17:59:56+00:00"
  10042. },
  10043. {
  10044. "name": "symfony/polyfill-php81",
  10045. "version": "v1.29.0",
  10046. "source": {
  10047. "type": "git",
  10048. "url": "https://github.com/symfony/polyfill-php81.git",
  10049. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d"
  10050. },
  10051. "dist": {
  10052. "type": "zip",
  10053. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/c565ad1e63f30e7477fc40738343c62b40bc672d",
  10054. "reference": "c565ad1e63f30e7477fc40738343c62b40bc672d",
  10055. "shasum": ""
  10056. },
  10057. "require": {
  10058. "php": ">=7.1"
  10059. },
  10060. "type": "library",
  10061. "extra": {
  10062. "thanks": {
  10063. "name": "symfony/polyfill",
  10064. "url": "https://github.com/symfony/polyfill"
  10065. }
  10066. },
  10067. "autoload": {
  10068. "files": [
  10069. "bootstrap.php"
  10070. ],
  10071. "psr-4": {
  10072. "Symfony\\Polyfill\\Php81\\": ""
  10073. },
  10074. "classmap": [
  10075. "Resources/stubs"
  10076. ]
  10077. },
  10078. "notification-url": "https://packagist.org/downloads/",
  10079. "license": [
  10080. "MIT"
  10081. ],
  10082. "authors": [
  10083. {
  10084. "name": "Nicolas Grekas",
  10085. "email": "[email protected]"
  10086. },
  10087. {
  10088. "name": "Symfony Community",
  10089. "homepage": "https://symfony.com/contributors"
  10090. }
  10091. ],
  10092. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  10093. "homepage": "https://symfony.com",
  10094. "keywords": [
  10095. "compatibility",
  10096. "polyfill",
  10097. "portable",
  10098. "shim"
  10099. ],
  10100. "support": {
  10101. "source": "https://github.com/symfony/polyfill-php81/tree/v1.29.0"
  10102. },
  10103. "funding": [
  10104. {
  10105. "url": "https://symfony.com/sponsor",
  10106. "type": "custom"
  10107. },
  10108. {
  10109. "url": "https://github.com/fabpot",
  10110. "type": "github"
  10111. },
  10112. {
  10113. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10114. "type": "tidelift"
  10115. }
  10116. ],
  10117. "time": "2024-01-29T20:11:03+00:00"
  10118. },
  10119. {
  10120. "name": "symfony/process",
  10121. "version": "v7.0.4",
  10122. "source": {
  10123. "type": "git",
  10124. "url": "https://github.com/symfony/process.git",
  10125. "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9"
  10126. },
  10127. "dist": {
  10128. "type": "zip",
  10129. "url": "https://api.github.com/repos/symfony/process/zipball/0e7727191c3b71ebec6d529fa0e50a01ca5679e9",
  10130. "reference": "0e7727191c3b71ebec6d529fa0e50a01ca5679e9",
  10131. "shasum": ""
  10132. },
  10133. "require": {
  10134. "php": ">=8.2"
  10135. },
  10136. "type": "library",
  10137. "autoload": {
  10138. "psr-4": {
  10139. "Symfony\\Component\\Process\\": ""
  10140. },
  10141. "exclude-from-classmap": [
  10142. "/Tests/"
  10143. ]
  10144. },
  10145. "notification-url": "https://packagist.org/downloads/",
  10146. "license": [
  10147. "MIT"
  10148. ],
  10149. "authors": [
  10150. {
  10151. "name": "Fabien Potencier",
  10152. "email": "[email protected]"
  10153. },
  10154. {
  10155. "name": "Symfony Community",
  10156. "homepage": "https://symfony.com/contributors"
  10157. }
  10158. ],
  10159. "description": "Executes commands in sub-processes",
  10160. "homepage": "https://symfony.com",
  10161. "support": {
  10162. "source": "https://github.com/symfony/process/tree/v7.0.4"
  10163. },
  10164. "funding": [
  10165. {
  10166. "url": "https://symfony.com/sponsor",
  10167. "type": "custom"
  10168. },
  10169. {
  10170. "url": "https://github.com/fabpot",
  10171. "type": "github"
  10172. },
  10173. {
  10174. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10175. "type": "tidelift"
  10176. }
  10177. ],
  10178. "time": "2024-02-22T20:27:20+00:00"
  10179. },
  10180. {
  10181. "name": "symfony/stopwatch",
  10182. "version": "v7.0.3",
  10183. "source": {
  10184. "type": "git",
  10185. "url": "https://github.com/symfony/stopwatch.git",
  10186. "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112"
  10187. },
  10188. "dist": {
  10189. "type": "zip",
  10190. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/983900d6fddf2b0cbaacacbbad07610854bd8112",
  10191. "reference": "983900d6fddf2b0cbaacacbbad07610854bd8112",
  10192. "shasum": ""
  10193. },
  10194. "require": {
  10195. "php": ">=8.2",
  10196. "symfony/service-contracts": "^2.5|^3"
  10197. },
  10198. "type": "library",
  10199. "autoload": {
  10200. "psr-4": {
  10201. "Symfony\\Component\\Stopwatch\\": ""
  10202. },
  10203. "exclude-from-classmap": [
  10204. "/Tests/"
  10205. ]
  10206. },
  10207. "notification-url": "https://packagist.org/downloads/",
  10208. "license": [
  10209. "MIT"
  10210. ],
  10211. "authors": [
  10212. {
  10213. "name": "Fabien Potencier",
  10214. "email": "[email protected]"
  10215. },
  10216. {
  10217. "name": "Symfony Community",
  10218. "homepage": "https://symfony.com/contributors"
  10219. }
  10220. ],
  10221. "description": "Provides a way to profile code",
  10222. "homepage": "https://symfony.com",
  10223. "support": {
  10224. "source": "https://github.com/symfony/stopwatch/tree/v7.0.3"
  10225. },
  10226. "funding": [
  10227. {
  10228. "url": "https://symfony.com/sponsor",
  10229. "type": "custom"
  10230. },
  10231. {
  10232. "url": "https://github.com/fabpot",
  10233. "type": "github"
  10234. },
  10235. {
  10236. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10237. "type": "tidelift"
  10238. }
  10239. ],
  10240. "time": "2024-01-23T15:02:46+00:00"
  10241. },
  10242. {
  10243. "name": "symfony/string",
  10244. "version": "v7.0.4",
  10245. "source": {
  10246. "type": "git",
  10247. "url": "https://github.com/symfony/string.git",
  10248. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b"
  10249. },
  10250. "dist": {
  10251. "type": "zip",
  10252. "url": "https://api.github.com/repos/symfony/string/zipball/f5832521b998b0bec40bee688ad5de98d4cf111b",
  10253. "reference": "f5832521b998b0bec40bee688ad5de98d4cf111b",
  10254. "shasum": ""
  10255. },
  10256. "require": {
  10257. "php": ">=8.2",
  10258. "symfony/polyfill-ctype": "~1.8",
  10259. "symfony/polyfill-intl-grapheme": "~1.0",
  10260. "symfony/polyfill-intl-normalizer": "~1.0",
  10261. "symfony/polyfill-mbstring": "~1.0"
  10262. },
  10263. "conflict": {
  10264. "symfony/translation-contracts": "<2.5"
  10265. },
  10266. "require-dev": {
  10267. "symfony/error-handler": "^6.4|^7.0",
  10268. "symfony/http-client": "^6.4|^7.0",
  10269. "symfony/intl": "^6.4|^7.0",
  10270. "symfony/translation-contracts": "^2.5|^3.0",
  10271. "symfony/var-exporter": "^6.4|^7.0"
  10272. },
  10273. "type": "library",
  10274. "autoload": {
  10275. "files": [
  10276. "Resources/functions.php"
  10277. ],
  10278. "psr-4": {
  10279. "Symfony\\Component\\String\\": ""
  10280. },
  10281. "exclude-from-classmap": [
  10282. "/Tests/"
  10283. ]
  10284. },
  10285. "notification-url": "https://packagist.org/downloads/",
  10286. "license": [
  10287. "MIT"
  10288. ],
  10289. "authors": [
  10290. {
  10291. "name": "Nicolas Grekas",
  10292. "email": "[email protected]"
  10293. },
  10294. {
  10295. "name": "Symfony Community",
  10296. "homepage": "https://symfony.com/contributors"
  10297. }
  10298. ],
  10299. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  10300. "homepage": "https://symfony.com",
  10301. "keywords": [
  10302. "grapheme",
  10303. "i18n",
  10304. "string",
  10305. "unicode",
  10306. "utf-8",
  10307. "utf8"
  10308. ],
  10309. "support": {
  10310. "source": "https://github.com/symfony/string/tree/v7.0.4"
  10311. },
  10312. "funding": [
  10313. {
  10314. "url": "https://symfony.com/sponsor",
  10315. "type": "custom"
  10316. },
  10317. {
  10318. "url": "https://github.com/fabpot",
  10319. "type": "github"
  10320. },
  10321. {
  10322. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10323. "type": "tidelift"
  10324. }
  10325. ],
  10326. "time": "2024-02-01T13:17:36+00:00"
  10327. },
  10328. {
  10329. "name": "symfony/var-exporter",
  10330. "version": "v7.0.4",
  10331. "source": {
  10332. "type": "git",
  10333. "url": "https://github.com/symfony/var-exporter.git",
  10334. "reference": "dfb0acb6803eb714f05d97dd4c5abe6d5fa9fe41"
  10335. },
  10336. "dist": {
  10337. "type": "zip",
  10338. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/dfb0acb6803eb714f05d97dd4c5abe6d5fa9fe41",
  10339. "reference": "dfb0acb6803eb714f05d97dd4c5abe6d5fa9fe41",
  10340. "shasum": ""
  10341. },
  10342. "require": {
  10343. "php": ">=8.2"
  10344. },
  10345. "require-dev": {
  10346. "symfony/var-dumper": "^6.4|^7.0"
  10347. },
  10348. "type": "library",
  10349. "autoload": {
  10350. "psr-4": {
  10351. "Symfony\\Component\\VarExporter\\": ""
  10352. },
  10353. "exclude-from-classmap": [
  10354. "/Tests/"
  10355. ]
  10356. },
  10357. "notification-url": "https://packagist.org/downloads/",
  10358. "license": [
  10359. "MIT"
  10360. ],
  10361. "authors": [
  10362. {
  10363. "name": "Nicolas Grekas",
  10364. "email": "[email protected]"
  10365. },
  10366. {
  10367. "name": "Symfony Community",
  10368. "homepage": "https://symfony.com/contributors"
  10369. }
  10370. ],
  10371. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  10372. "homepage": "https://symfony.com",
  10373. "keywords": [
  10374. "clone",
  10375. "construct",
  10376. "export",
  10377. "hydrate",
  10378. "instantiate",
  10379. "lazy-loading",
  10380. "proxy",
  10381. "serialize"
  10382. ],
  10383. "support": {
  10384. "source": "https://github.com/symfony/var-exporter/tree/v7.0.4"
  10385. },
  10386. "funding": [
  10387. {
  10388. "url": "https://symfony.com/sponsor",
  10389. "type": "custom"
  10390. },
  10391. {
  10392. "url": "https://github.com/fabpot",
  10393. "type": "github"
  10394. },
  10395. {
  10396. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  10397. "type": "tidelift"
  10398. }
  10399. ],
  10400. "time": "2024-02-26T10:35:24+00:00"
  10401. },
  10402. {
  10403. "name": "theseer/tokenizer",
  10404. "version": "1.2.3",
  10405. "source": {
  10406. "type": "git",
  10407. "url": "https://github.com/theseer/tokenizer.git",
  10408. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2"
  10409. },
  10410. "dist": {
  10411. "type": "zip",
  10412. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10413. "reference": "737eda637ed5e28c3413cb1ebe8bb52cbf1ca7a2",
  10414. "shasum": ""
  10415. },
  10416. "require": {
  10417. "ext-dom": "*",
  10418. "ext-tokenizer": "*",
  10419. "ext-xmlwriter": "*",
  10420. "php": "^7.2 || ^8.0"
  10421. },
  10422. "type": "library",
  10423. "autoload": {
  10424. "classmap": [
  10425. "src/"
  10426. ]
  10427. },
  10428. "notification-url": "https://packagist.org/downloads/",
  10429. "license": [
  10430. "BSD-3-Clause"
  10431. ],
  10432. "authors": [
  10433. {
  10434. "name": "Arne Blankerts",
  10435. "email": "[email protected]",
  10436. "role": "Developer"
  10437. }
  10438. ],
  10439. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  10440. "support": {
  10441. "issues": "https://github.com/theseer/tokenizer/issues",
  10442. "source": "https://github.com/theseer/tokenizer/tree/1.2.3"
  10443. },
  10444. "funding": [
  10445. {
  10446. "url": "https://github.com/theseer",
  10447. "type": "github"
  10448. }
  10449. ],
  10450. "time": "2024-03-03T12:36:25+00:00"
  10451. }
  10452. ],
  10453. "aliases": [],
  10454. "minimum-stability": "stable",
  10455. "stability-flags": {
  10456. "alipaysdk/openapi": 20
  10457. },
  10458. "prefer-stable": false,
  10459. "prefer-lowest": false,
  10460. "platform": {
  10461. "php": "^8.2",
  10462. "ext-bcmath": "*",
  10463. "ext-curl": "*",
  10464. "ext-fileinfo": "*",
  10465. "ext-json": "*",
  10466. "ext-mbstring": "*",
  10467. "ext-mysqli": "*",
  10468. "ext-openssl": "*",
  10469. "ext-pdo": "*",
  10470. "ext-posix": "*",
  10471. "ext-redis": "*",
  10472. "ext-xml": "*",
  10473. "ext-yaml": "*",
  10474. "ext-zip": "*"
  10475. },
  10476. "platform-dev": [],
  10477. "plugin-api-version": "2.6.0"
  10478. }