composer.lock 263 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333
  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": "71ef4bfb7af1f6d0c9f1f0a0fd75aaee",
  8. "packages": [
  9. {
  10. "name": "beste/clock",
  11. "version": "2.3.1",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/beste/clock.git",
  15. "reference": "cf2cc16e6670a16fd2defc6d383313de829fa291"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/beste/clock/zipball/cf2cc16e6670a16fd2defc6d383313de829fa291",
  20. "reference": "cf2cc16e6670a16fd2defc6d383313de829fa291",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "php": "^8.0",
  25. "stella-maris/clock": "^0.1.6"
  26. },
  27. "provide": {
  28. "psr/clock-implementation": "1.0"
  29. },
  30. "require-dev": {
  31. "phpstan/extension-installer": "^1.2",
  32. "phpstan/phpstan": "^1.9.1",
  33. "phpstan/phpstan-phpunit": "^1.2.2",
  34. "phpstan/phpstan-strict-rules": "^1.4.4",
  35. "phpunit/phpunit": "^9.5.26",
  36. "psalm/plugin-phpunit": "^0.16.1",
  37. "vimeo/psalm": "^4.29"
  38. },
  39. "type": "library",
  40. "autoload": {
  41. "files": [
  42. "src/Clock.php"
  43. ],
  44. "psr-4": {
  45. "Beste\\Clock\\": "src/Clock"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "MIT"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Jérôme Gamez",
  55. "email": "jerome@gamez.name"
  56. }
  57. ],
  58. "description": "A collection of Clock implementations",
  59. "keywords": [
  60. "clock",
  61. "clock-interface",
  62. "psr-20",
  63. "psr20"
  64. ],
  65. "support": {
  66. "issues": "https://github.com/beste/clock/issues",
  67. "source": "https://github.com/beste/clock/tree/2.3.1"
  68. },
  69. "funding": [
  70. {
  71. "url": "https://github.com/jeromegamez",
  72. "type": "github"
  73. }
  74. ],
  75. "time": "2022-11-25T18:24:28+00:00"
  76. },
  77. {
  78. "name": "beste/json",
  79. "version": "1.7.0",
  80. "source": {
  81. "type": "git",
  82. "url": "https://github.com/beste/json.git",
  83. "reference": "976525f1ce2323a4e044364269d60b402603e216"
  84. },
  85. "dist": {
  86. "type": "zip",
  87. "url": "https://api.github.com/repos/beste/json/zipball/976525f1ce2323a4e044364269d60b402603e216",
  88. "reference": "976525f1ce2323a4e044364269d60b402603e216",
  89. "shasum": ""
  90. },
  91. "require": {
  92. "ext-json": "*",
  93. "php": "~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  94. },
  95. "require-dev": {
  96. "phpstan/extension-installer": "^1.3",
  97. "phpstan/phpstan": "^2.0.4",
  98. "phpstan/phpstan-phpunit": "^2.0.2",
  99. "phpstan/phpstan-strict-rules": "^2.0.1",
  100. "phpunit/phpunit": "^10.4.2",
  101. "rector/rector": "^2.0.3"
  102. },
  103. "type": "library",
  104. "autoload": {
  105. "files": [
  106. "src/Json.php"
  107. ]
  108. },
  109. "notification-url": "https://packagist.org/downloads/",
  110. "license": [
  111. "MIT"
  112. ],
  113. "authors": [
  114. {
  115. "name": "Jérôme Gamez",
  116. "email": "jerome@gamez.name"
  117. }
  118. ],
  119. "description": "A simple JSON helper to decode and encode JSON",
  120. "keywords": [
  121. "helper",
  122. "json"
  123. ],
  124. "support": {
  125. "issues": "https://github.com/beste/json/issues",
  126. "source": "https://github.com/beste/json/tree/1.7.0"
  127. },
  128. "funding": [
  129. {
  130. "url": "https://github.com/jeromegamez",
  131. "type": "github"
  132. },
  133. {
  134. "url": "https://tidelift.com/funding/github/packagist/beste/json",
  135. "type": "tidelift"
  136. }
  137. ],
  138. "time": "2025-09-11T23:36:19+00:00"
  139. },
  140. {
  141. "name": "bower-asset/inputmask",
  142. "version": "5.0.9",
  143. "source": {
  144. "type": "git",
  145. "url": "https://github.com/RobinHerbots/Inputmask.git",
  146. "reference": "310a33557e2944daf86d5946a5e8c82b9118f8f7"
  147. },
  148. "dist": {
  149. "type": "zip",
  150. "url": "https://api.github.com/repos/RobinHerbots/Inputmask/zipball/310a33557e2944daf86d5946a5e8c82b9118f8f7",
  151. "reference": "310a33557e2944daf86d5946a5e8c82b9118f8f7"
  152. },
  153. "require": {
  154. "bower-asset/jquery": ">=1.7"
  155. },
  156. "type": "bower-asset",
  157. "license": [
  158. "http://opensource.org/licenses/mit-license.php"
  159. ]
  160. },
  161. {
  162. "name": "bower-asset/jquery",
  163. "version": "3.7.1",
  164. "source": {
  165. "type": "git",
  166. "url": "git@github.com:jquery/jquery-dist.git",
  167. "reference": "fde1f76e2799dd877c176abde0ec836553246991"
  168. },
  169. "dist": {
  170. "type": "zip",
  171. "url": "https://api.github.com/repos/jquery/jquery-dist/zipball/fde1f76e2799dd877c176abde0ec836553246991",
  172. "reference": "fde1f76e2799dd877c176abde0ec836553246991"
  173. },
  174. "type": "bower-asset",
  175. "license": [
  176. "MIT"
  177. ]
  178. },
  179. {
  180. "name": "bower-asset/punycode",
  181. "version": "v2.3.1",
  182. "source": {
  183. "type": "git",
  184. "url": "git@github.com:bestiejs/punycode.js.git",
  185. "reference": "9e1b2cda98d215d3a73fcbfe93c62e021f4ba768"
  186. },
  187. "dist": {
  188. "type": "zip",
  189. "url": "https://api.github.com/repos/bestiejs/punycode.js/zipball/9e1b2cda98d215d3a73fcbfe93c62e021f4ba768",
  190. "reference": "9e1b2cda98d215d3a73fcbfe93c62e021f4ba768"
  191. },
  192. "type": "bower-asset"
  193. },
  194. {
  195. "name": "bower-asset/yii2-pjax",
  196. "version": "2.0.9",
  197. "source": {
  198. "type": "git",
  199. "url": "https://github.com/yiisoft/jquery-pjax.git",
  200. "reference": "452b56b7124326487fd0d3be6b205fcaa66598a0"
  201. },
  202. "dist": {
  203. "type": "zip",
  204. "url": "https://api.github.com/repos/yiisoft/jquery-pjax/zipball/452b56b7124326487fd0d3be6b205fcaa66598a0",
  205. "reference": "452b56b7124326487fd0d3be6b205fcaa66598a0"
  206. },
  207. "require": {
  208. "bower-asset/jquery": ">=1.8"
  209. },
  210. "type": "bower-asset",
  211. "license": [
  212. "MIT"
  213. ]
  214. },
  215. {
  216. "name": "brick/math",
  217. "version": "0.14.8",
  218. "source": {
  219. "type": "git",
  220. "url": "https://github.com/brick/math.git",
  221. "reference": "63422359a44b7f06cae63c3b429b59e8efcc0629"
  222. },
  223. "dist": {
  224. "type": "zip",
  225. "url": "https://api.github.com/repos/brick/math/zipball/63422359a44b7f06cae63c3b429b59e8efcc0629",
  226. "reference": "63422359a44b7f06cae63c3b429b59e8efcc0629",
  227. "shasum": ""
  228. },
  229. "require": {
  230. "php": "^8.2"
  231. },
  232. "require-dev": {
  233. "php-coveralls/php-coveralls": "^2.2",
  234. "phpstan/phpstan": "2.1.22",
  235. "phpunit/phpunit": "^11.5"
  236. },
  237. "type": "library",
  238. "autoload": {
  239. "psr-4": {
  240. "Brick\\Math\\": "src/"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "MIT"
  246. ],
  247. "description": "Arbitrary-precision arithmetic library",
  248. "keywords": [
  249. "Arbitrary-precision",
  250. "BigInteger",
  251. "BigRational",
  252. "arithmetic",
  253. "bigdecimal",
  254. "bignum",
  255. "bignumber",
  256. "brick",
  257. "decimal",
  258. "integer",
  259. "math",
  260. "mathematics",
  261. "rational"
  262. ],
  263. "support": {
  264. "issues": "https://github.com/brick/math/issues",
  265. "source": "https://github.com/brick/math/tree/0.14.8"
  266. },
  267. "funding": [
  268. {
  269. "url": "https://github.com/BenMorel",
  270. "type": "github"
  271. }
  272. ],
  273. "time": "2026-02-10T14:33:43+00:00"
  274. },
  275. {
  276. "name": "cebe/markdown",
  277. "version": "1.2.1",
  278. "source": {
  279. "type": "git",
  280. "url": "https://github.com/cebe/markdown.git",
  281. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86"
  282. },
  283. "dist": {
  284. "type": "zip",
  285. "url": "https://api.github.com/repos/cebe/markdown/zipball/9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  286. "reference": "9bac5e971dd391e2802dca5400bbeacbaea9eb86",
  287. "shasum": ""
  288. },
  289. "require": {
  290. "lib-pcre": "*",
  291. "php": ">=5.4.0"
  292. },
  293. "require-dev": {
  294. "cebe/indent": "*",
  295. "facebook/xhprof": "*@dev",
  296. "phpunit/phpunit": "4.1.*"
  297. },
  298. "bin": [
  299. "bin/markdown"
  300. ],
  301. "type": "library",
  302. "extra": {
  303. "branch-alias": {
  304. "dev-master": "1.2.x-dev"
  305. }
  306. },
  307. "autoload": {
  308. "psr-4": {
  309. "cebe\\markdown\\": ""
  310. }
  311. },
  312. "notification-url": "https://packagist.org/downloads/",
  313. "license": [
  314. "MIT"
  315. ],
  316. "authors": [
  317. {
  318. "name": "Carsten Brandt",
  319. "email": "mail@cebe.cc",
  320. "homepage": "http://cebe.cc/",
  321. "role": "Creator"
  322. }
  323. ],
  324. "description": "A super fast, highly extensible markdown parser for PHP",
  325. "homepage": "https://github.com/cebe/markdown#readme",
  326. "keywords": [
  327. "extensible",
  328. "fast",
  329. "gfm",
  330. "markdown",
  331. "markdown-extra"
  332. ],
  333. "support": {
  334. "issues": "https://github.com/cebe/markdown/issues",
  335. "source": "https://github.com/cebe/markdown"
  336. },
  337. "time": "2018-03-26T11:24:36+00:00"
  338. },
  339. {
  340. "name": "doctrine/deprecations",
  341. "version": "1.1.6",
  342. "source": {
  343. "type": "git",
  344. "url": "https://github.com/doctrine/deprecations.git",
  345. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca"
  346. },
  347. "dist": {
  348. "type": "zip",
  349. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  350. "reference": "d4fe3e6fd9bb9e72557a19674f44d8ac7db4c6ca",
  351. "shasum": ""
  352. },
  353. "require": {
  354. "php": "^7.1 || ^8.0"
  355. },
  356. "conflict": {
  357. "phpunit/phpunit": "<=7.5 || >=14"
  358. },
  359. "require-dev": {
  360. "doctrine/coding-standard": "^9 || ^12 || ^14",
  361. "phpstan/phpstan": "1.4.10 || 2.1.30",
  362. "phpstan/phpstan-phpunit": "^1.0 || ^2",
  363. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6 || ^10.5 || ^11.5 || ^12.4 || ^13.0",
  364. "psr/log": "^1 || ^2 || ^3"
  365. },
  366. "suggest": {
  367. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  368. },
  369. "type": "library",
  370. "autoload": {
  371. "psr-4": {
  372. "Doctrine\\Deprecations\\": "src"
  373. }
  374. },
  375. "notification-url": "https://packagist.org/downloads/",
  376. "license": [
  377. "MIT"
  378. ],
  379. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  380. "homepage": "https://www.doctrine-project.org/",
  381. "support": {
  382. "issues": "https://github.com/doctrine/deprecations/issues",
  383. "source": "https://github.com/doctrine/deprecations/tree/1.1.6"
  384. },
  385. "time": "2026-02-07T07:09:04+00:00"
  386. },
  387. {
  388. "name": "doctrine/lexer",
  389. "version": "2.1.1",
  390. "source": {
  391. "type": "git",
  392. "url": "https://github.com/doctrine/lexer.git",
  393. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6"
  394. },
  395. "dist": {
  396. "type": "zip",
  397. "url": "https://api.github.com/repos/doctrine/lexer/zipball/861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  398. "reference": "861c870e8b75f7c8f69c146c7f89cc1c0f1b49b6",
  399. "shasum": ""
  400. },
  401. "require": {
  402. "doctrine/deprecations": "^1.0",
  403. "php": "^7.1 || ^8.0"
  404. },
  405. "require-dev": {
  406. "doctrine/coding-standard": "^9 || ^12",
  407. "phpstan/phpstan": "^1.3",
  408. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.6",
  409. "psalm/plugin-phpunit": "^0.18.3",
  410. "vimeo/psalm": "^4.11 || ^5.21"
  411. },
  412. "type": "library",
  413. "autoload": {
  414. "psr-4": {
  415. "Doctrine\\Common\\Lexer\\": "src"
  416. }
  417. },
  418. "notification-url": "https://packagist.org/downloads/",
  419. "license": [
  420. "MIT"
  421. ],
  422. "authors": [
  423. {
  424. "name": "Guilherme Blanco",
  425. "email": "guilhermeblanco@gmail.com"
  426. },
  427. {
  428. "name": "Roman Borschel",
  429. "email": "roman@code-factory.org"
  430. },
  431. {
  432. "name": "Johannes Schmitt",
  433. "email": "schmittjoh@gmail.com"
  434. }
  435. ],
  436. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  437. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  438. "keywords": [
  439. "annotations",
  440. "docblock",
  441. "lexer",
  442. "parser",
  443. "php"
  444. ],
  445. "support": {
  446. "issues": "https://github.com/doctrine/lexer/issues",
  447. "source": "https://github.com/doctrine/lexer/tree/2.1.1"
  448. },
  449. "funding": [
  450. {
  451. "url": "https://www.doctrine-project.org/sponsorship.html",
  452. "type": "custom"
  453. },
  454. {
  455. "url": "https://www.patreon.com/phpdoctrine",
  456. "type": "patreon"
  457. },
  458. {
  459. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  460. "type": "tidelift"
  461. }
  462. ],
  463. "time": "2024-02-05T11:35:39+00:00"
  464. },
  465. {
  466. "name": "egulias/email-validator",
  467. "version": "3.2.6",
  468. "source": {
  469. "type": "git",
  470. "url": "https://github.com/egulias/EmailValidator.git",
  471. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7"
  472. },
  473. "dist": {
  474. "type": "zip",
  475. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  476. "reference": "e5997fa97e8790cdae03a9cbd5e78e45e3c7bda7",
  477. "shasum": ""
  478. },
  479. "require": {
  480. "doctrine/lexer": "^1.2|^2",
  481. "php": ">=7.2",
  482. "symfony/polyfill-intl-idn": "^1.15"
  483. },
  484. "require-dev": {
  485. "phpunit/phpunit": "^8.5.8|^9.3.3",
  486. "vimeo/psalm": "^4"
  487. },
  488. "suggest": {
  489. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  490. },
  491. "type": "library",
  492. "extra": {
  493. "branch-alias": {
  494. "dev-master": "3.0.x-dev"
  495. }
  496. },
  497. "autoload": {
  498. "psr-4": {
  499. "Egulias\\EmailValidator\\": "src"
  500. }
  501. },
  502. "notification-url": "https://packagist.org/downloads/",
  503. "license": [
  504. "MIT"
  505. ],
  506. "authors": [
  507. {
  508. "name": "Eduardo Gulias Davis"
  509. }
  510. ],
  511. "description": "A library for validating emails against several RFCs",
  512. "homepage": "https://github.com/egulias/EmailValidator",
  513. "keywords": [
  514. "email",
  515. "emailvalidation",
  516. "emailvalidator",
  517. "validation",
  518. "validator"
  519. ],
  520. "support": {
  521. "issues": "https://github.com/egulias/EmailValidator/issues",
  522. "source": "https://github.com/egulias/EmailValidator/tree/3.2.6"
  523. },
  524. "funding": [
  525. {
  526. "url": "https://github.com/egulias",
  527. "type": "github"
  528. }
  529. ],
  530. "time": "2023-06-01T07:04:22+00:00"
  531. },
  532. {
  533. "name": "ezyang/htmlpurifier",
  534. "version": "v4.19.0",
  535. "source": {
  536. "type": "git",
  537. "url": "https://github.com/ezyang/htmlpurifier.git",
  538. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf"
  539. },
  540. "dist": {
  541. "type": "zip",
  542. "url": "https://api.github.com/repos/ezyang/htmlpurifier/zipball/b287d2a16aceffbf6e0295559b39662612b77fcf",
  543. "reference": "b287d2a16aceffbf6e0295559b39662612b77fcf",
  544. "shasum": ""
  545. },
  546. "require": {
  547. "php": "~5.6.0 || ~7.0.0 || ~7.1.0 || ~7.2.0 || ~7.3.0 || ~7.4.0 || ~8.0.0 || ~8.1.0 || ~8.2.0 || ~8.3.0 || ~8.4.0 || ~8.5.0"
  548. },
  549. "require-dev": {
  550. "cerdic/css-tidy": "^1.7 || ^2.0",
  551. "simpletest/simpletest": "dev-master"
  552. },
  553. "suggest": {
  554. "cerdic/css-tidy": "If you want to use the filter 'Filter.ExtractStyleBlocks'.",
  555. "ext-bcmath": "Used for unit conversion and imagecrash protection",
  556. "ext-iconv": "Converts text to and from non-UTF-8 encodings",
  557. "ext-tidy": "Used for pretty-printing HTML"
  558. },
  559. "type": "library",
  560. "autoload": {
  561. "files": [
  562. "library/HTMLPurifier.composer.php"
  563. ],
  564. "psr-0": {
  565. "HTMLPurifier": "library/"
  566. },
  567. "exclude-from-classmap": [
  568. "/library/HTMLPurifier/Language/"
  569. ]
  570. },
  571. "notification-url": "https://packagist.org/downloads/",
  572. "license": [
  573. "LGPL-2.1-or-later"
  574. ],
  575. "authors": [
  576. {
  577. "name": "Edward Z. Yang",
  578. "email": "admin@htmlpurifier.org",
  579. "homepage": "http://ezyang.com"
  580. }
  581. ],
  582. "description": "Standards compliant HTML filter written in PHP",
  583. "homepage": "http://htmlpurifier.org/",
  584. "keywords": [
  585. "html"
  586. ],
  587. "support": {
  588. "issues": "https://github.com/ezyang/htmlpurifier/issues",
  589. "source": "https://github.com/ezyang/htmlpurifier/tree/v4.19.0"
  590. },
  591. "time": "2025-10-17T16:34:55+00:00"
  592. },
  593. {
  594. "name": "fig/http-message-util",
  595. "version": "1.1.5",
  596. "source": {
  597. "type": "git",
  598. "url": "https://github.com/php-fig/http-message-util.git",
  599. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  600. },
  601. "dist": {
  602. "type": "zip",
  603. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  604. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  605. "shasum": ""
  606. },
  607. "require": {
  608. "php": "^5.3 || ^7.0 || ^8.0"
  609. },
  610. "suggest": {
  611. "psr/http-message": "The package containing the PSR-7 interfaces"
  612. },
  613. "type": "library",
  614. "extra": {
  615. "branch-alias": {
  616. "dev-master": "1.1.x-dev"
  617. }
  618. },
  619. "autoload": {
  620. "psr-4": {
  621. "Fig\\Http\\Message\\": "src/"
  622. }
  623. },
  624. "notification-url": "https://packagist.org/downloads/",
  625. "license": [
  626. "MIT"
  627. ],
  628. "authors": [
  629. {
  630. "name": "PHP-FIG",
  631. "homepage": "https://www.php-fig.org/"
  632. }
  633. ],
  634. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  635. "keywords": [
  636. "http",
  637. "http-message",
  638. "psr",
  639. "psr-7",
  640. "request",
  641. "response"
  642. ],
  643. "support": {
  644. "issues": "https://github.com/php-fig/http-message-util/issues",
  645. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  646. },
  647. "time": "2020-11-24T22:02:12+00:00"
  648. },
  649. {
  650. "name": "firebase/php-jwt",
  651. "version": "v5.5.1",
  652. "source": {
  653. "type": "git",
  654. "url": "https://github.com/firebase/php-jwt.git",
  655. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6"
  656. },
  657. "dist": {
  658. "type": "zip",
  659. "url": "https://api.github.com/repos/firebase/php-jwt/zipball/83b609028194aa042ea33b5af2d41a7427de80e6",
  660. "reference": "83b609028194aa042ea33b5af2d41a7427de80e6",
  661. "shasum": ""
  662. },
  663. "require": {
  664. "php": ">=5.3.0"
  665. },
  666. "require-dev": {
  667. "phpunit/phpunit": ">=4.8 <=9"
  668. },
  669. "suggest": {
  670. "paragonie/sodium_compat": "Support EdDSA (Ed25519) signatures when libsodium is not present"
  671. },
  672. "type": "library",
  673. "autoload": {
  674. "psr-4": {
  675. "Firebase\\JWT\\": "src"
  676. }
  677. },
  678. "notification-url": "https://packagist.org/downloads/",
  679. "license": [
  680. "BSD-3-Clause"
  681. ],
  682. "authors": [
  683. {
  684. "name": "Neuman Vong",
  685. "email": "neuman+pear@twilio.com",
  686. "role": "Developer"
  687. },
  688. {
  689. "name": "Anant Narayanan",
  690. "email": "anant@php.net",
  691. "role": "Developer"
  692. }
  693. ],
  694. "description": "A simple library to encode and decode JSON Web Tokens (JWT) in PHP. Should conform to the current spec.",
  695. "homepage": "https://github.com/firebase/php-jwt",
  696. "keywords": [
  697. "jwt",
  698. "php"
  699. ],
  700. "support": {
  701. "issues": "https://github.com/firebase/php-jwt/issues",
  702. "source": "https://github.com/firebase/php-jwt/tree/v5.5.1"
  703. },
  704. "time": "2021-11-08T20:18:51+00:00"
  705. },
  706. {
  707. "name": "google/auth",
  708. "version": "v1.26.0",
  709. "source": {
  710. "type": "git",
  711. "url": "https://github.com/googleapis/google-auth-library-php.git",
  712. "reference": "f1f0d0319e2e7750ebfaa523c78819792a9ed9f7"
  713. },
  714. "dist": {
  715. "type": "zip",
  716. "url": "https://api.github.com/repos/googleapis/google-auth-library-php/zipball/f1f0d0319e2e7750ebfaa523c78819792a9ed9f7",
  717. "reference": "f1f0d0319e2e7750ebfaa523c78819792a9ed9f7",
  718. "shasum": ""
  719. },
  720. "require": {
  721. "firebase/php-jwt": "^5.5||^6.0",
  722. "guzzlehttp/guzzle": "^6.2.1|^7.0",
  723. "guzzlehttp/psr7": "^1.7|^2.0",
  724. "php": "^7.1||^8.0",
  725. "psr/cache": "^1.0|^2.0|^3.0",
  726. "psr/http-message": "^1.0"
  727. },
  728. "require-dev": {
  729. "guzzlehttp/promises": "0.1.1|^1.3",
  730. "kelvinmo/simplejwt": "0.7.0",
  731. "phpseclib/phpseclib": "^2.0.31||^3.0",
  732. "phpspec/prophecy-phpunit": "^1.1||^2.0",
  733. "phpunit/phpunit": "^7.5||^9.0.0",
  734. "sebastian/comparator": ">=1.2.3",
  735. "squizlabs/php_codesniffer": "^3.5"
  736. },
  737. "suggest": {
  738. "phpseclib/phpseclib": "May be used in place of OpenSSL for signing strings or for token management. Please require version ^2."
  739. },
  740. "type": "library",
  741. "autoload": {
  742. "psr-4": {
  743. "Google\\Auth\\": "src"
  744. }
  745. },
  746. "notification-url": "https://packagist.org/downloads/",
  747. "license": [
  748. "Apache-2.0"
  749. ],
  750. "description": "Google Auth Library for PHP",
  751. "homepage": "http://github.com/google/google-auth-library-php",
  752. "keywords": [
  753. "Authentication",
  754. "google",
  755. "oauth2"
  756. ],
  757. "support": {
  758. "docs": "https://googleapis.github.io/google-auth-library-php/main/",
  759. "issues": "https://github.com/googleapis/google-auth-library-php/issues",
  760. "source": "https://github.com/googleapis/google-auth-library-php/tree/v1.26.0"
  761. },
  762. "time": "2023-04-05T15:11:57+00:00"
  763. },
  764. {
  765. "name": "google/cloud-core",
  766. "version": "v1.52.10",
  767. "source": {
  768. "type": "git",
  769. "url": "https://github.com/googleapis/google-cloud-php-core.git",
  770. "reference": "5e34556498ecadee2161402fd1024bec7ce33186"
  771. },
  772. "dist": {
  773. "type": "zip",
  774. "url": "https://api.github.com/repos/googleapis/google-cloud-php-core/zipball/5e34556498ecadee2161402fd1024bec7ce33186",
  775. "reference": "5e34556498ecadee2161402fd1024bec7ce33186",
  776. "shasum": ""
  777. },
  778. "require": {
  779. "google/auth": "^1.18",
  780. "guzzlehttp/guzzle": "^6.5.8|^7.4.4",
  781. "guzzlehttp/promises": "^1.4||^2.0",
  782. "guzzlehttp/psr7": "^1.7|^2.0",
  783. "monolog/monolog": "^1.1|^2.0|^3.0",
  784. "php": ">=7.4",
  785. "psr/http-message": "^1.0|^2.0",
  786. "rize/uri-template": "~0.3"
  787. },
  788. "require-dev": {
  789. "erusev/parsedown": "^1.6",
  790. "google/cloud-common-protos": "^0.4",
  791. "google/gax": "^1.24.0",
  792. "opis/closure": "^3",
  793. "phpdocumentor/reflection": "^5.0",
  794. "phpspec/prophecy-phpunit": "^2.0",
  795. "phpunit/phpunit": "^9.0",
  796. "squizlabs/php_codesniffer": "2.*"
  797. },
  798. "suggest": {
  799. "opis/closure": "May be used to serialize closures to process jobs in the batch daemon. Please require version ^3.",
  800. "symfony/lock": "Required for the Spanner cached based session pool. Please require the following commit: 3.3.x-dev#1ba6ac9"
  801. },
  802. "bin": [
  803. "bin/google-cloud-batch"
  804. ],
  805. "type": "library",
  806. "extra": {
  807. "component": {
  808. "id": "cloud-core",
  809. "path": "Core",
  810. "entry": "src/ServiceBuilder.php",
  811. "target": "googleapis/google-cloud-php-core.git"
  812. }
  813. },
  814. "autoload": {
  815. "psr-4": {
  816. "Google\\Cloud\\Core\\": "src"
  817. }
  818. },
  819. "notification-url": "https://packagist.org/downloads/",
  820. "license": [
  821. "Apache-2.0"
  822. ],
  823. "description": "Google Cloud PHP shared dependency, providing functionality useful to all components.",
  824. "support": {
  825. "source": "https://github.com/googleapis/google-cloud-php-core/tree/v1.52.10"
  826. },
  827. "time": "2023-12-08T22:36:35+00:00"
  828. },
  829. {
  830. "name": "google/cloud-firestore",
  831. "version": "v1.39.0",
  832. "source": {
  833. "type": "git",
  834. "url": "https://github.com/googleapis/google-cloud-php-firestore.git",
  835. "reference": "527717e603b01db57663c366a08771a7c35cee1c"
  836. },
  837. "dist": {
  838. "type": "zip",
  839. "url": "https://api.github.com/repos/googleapis/google-cloud-php-firestore/zipball/527717e603b01db57663c366a08771a7c35cee1c",
  840. "reference": "527717e603b01db57663c366a08771a7c35cee1c",
  841. "shasum": ""
  842. },
  843. "require": {
  844. "ext-grpc": "*",
  845. "google/cloud-core": "^1.52.7",
  846. "google/gax": "^1.24.0",
  847. "php": ">=7.4",
  848. "ramsey/uuid": "^3.0|^4.0"
  849. },
  850. "require-dev": {
  851. "erusev/parsedown": "^1.6",
  852. "phpdocumentor/reflection": "^5.0",
  853. "phpspec/prophecy-phpunit": "^2.0",
  854. "phpunit/phpunit": "^9.0",
  855. "squizlabs/php_codesniffer": "2.*"
  856. },
  857. "suggest": {
  858. "ext-protobuf": "Provides a significant increase in throughput over the pure PHP protobuf implementation. See https://cloud.google.com/php/grpc for installation instructions."
  859. },
  860. "type": "library",
  861. "extra": {
  862. "component": {
  863. "id": "cloud-firestore",
  864. "path": "Firestore",
  865. "entry": "src/FirestoreClient.php",
  866. "target": "googleapis/google-cloud-php-firestore.git"
  867. }
  868. },
  869. "autoload": {
  870. "psr-4": {
  871. "Google\\Cloud\\Firestore\\": "src",
  872. "GPBMetadata\\Google\\Firestore\\": "metadata"
  873. }
  874. },
  875. "notification-url": "https://packagist.org/downloads/",
  876. "license": [
  877. "Apache-2.0"
  878. ],
  879. "description": "Cloud Firestore Client for PHP",
  880. "support": {
  881. "source": "https://github.com/googleapis/google-cloud-php-firestore/tree/v1.39.0"
  882. },
  883. "time": "2023-12-08T22:36:35+00:00"
  884. },
  885. {
  886. "name": "google/cloud-storage",
  887. "version": "v1.36.1",
  888. "source": {
  889. "type": "git",
  890. "url": "https://github.com/googleapis/google-cloud-php-storage.git",
  891. "reference": "6b65c334b8b887cd771bb745ba0a5513ff9191b7"
  892. },
  893. "dist": {
  894. "type": "zip",
  895. "url": "https://api.github.com/repos/googleapis/google-cloud-php-storage/zipball/6b65c334b8b887cd771bb745ba0a5513ff9191b7",
  896. "reference": "6b65c334b8b887cd771bb745ba0a5513ff9191b7",
  897. "shasum": ""
  898. },
  899. "require": {
  900. "google/cloud-core": "^1.52.7",
  901. "php": ">=7.4",
  902. "ramsey/uuid": "^4.2.3"
  903. },
  904. "require-dev": {
  905. "erusev/parsedown": "^1.6",
  906. "google/cloud-pubsub": "^1.0",
  907. "phpdocumentor/reflection": "^5.0",
  908. "phpseclib/phpseclib": "^2.0||^3.0",
  909. "phpspec/prophecy-phpunit": "^2.0",
  910. "phpunit/phpunit": "^9.0",
  911. "squizlabs/php_codesniffer": "2.*"
  912. },
  913. "suggest": {
  914. "google/cloud-pubsub": "May be used to register a topic to receive bucket notifications.",
  915. "phpseclib/phpseclib": "May be used in place of OpenSSL for creating signed Cloud Storage URLs. Please require version ^2."
  916. },
  917. "type": "library",
  918. "extra": {
  919. "component": {
  920. "id": "cloud-storage",
  921. "path": "Storage",
  922. "entry": "src/StorageClient.php",
  923. "target": "googleapis/google-cloud-php-storage.git"
  924. }
  925. },
  926. "autoload": {
  927. "psr-4": {
  928. "Google\\Cloud\\Storage\\": "src"
  929. }
  930. },
  931. "notification-url": "https://packagist.org/downloads/",
  932. "license": [
  933. "Apache-2.0"
  934. ],
  935. "description": "Cloud Storage Client for PHP",
  936. "support": {
  937. "source": "https://github.com/googleapis/google-cloud-php-storage/tree/v1.36.1"
  938. },
  939. "time": "2024-01-05T17:34:35+00:00"
  940. },
  941. {
  942. "name": "google/common-protos",
  943. "version": "4.12.2",
  944. "source": {
  945. "type": "git",
  946. "url": "https://github.com/googleapis/common-protos-php.git",
  947. "reference": "0a399e6f39576e39ae9b66d3c704ae294afab1dc"
  948. },
  949. "dist": {
  950. "type": "zip",
  951. "url": "https://api.github.com/repos/googleapis/common-protos-php/zipball/0a399e6f39576e39ae9b66d3c704ae294afab1dc",
  952. "reference": "0a399e6f39576e39ae9b66d3c704ae294afab1dc",
  953. "shasum": ""
  954. },
  955. "require": {
  956. "google/protobuf": "^v3.25.3||^4.26.1",
  957. "php": "^8.1"
  958. },
  959. "require-dev": {
  960. "phpunit/phpunit": "^9.6"
  961. },
  962. "type": "library",
  963. "extra": {
  964. "component": {
  965. "id": "common-protos",
  966. "path": "CommonProtos",
  967. "entry": "README.md",
  968. "target": "googleapis/common-protos-php.git"
  969. }
  970. },
  971. "autoload": {
  972. "psr-4": {
  973. "Google\\Api\\": "src/Api",
  974. "Google\\Iam\\": "src/Iam",
  975. "Google\\Rpc\\": "src/Rpc",
  976. "Google\\Type\\": "src/Type",
  977. "Google\\Cloud\\": "src/Cloud",
  978. "GPBMetadata\\Google\\Api\\": "metadata/Api",
  979. "GPBMetadata\\Google\\Iam\\": "metadata/Iam",
  980. "GPBMetadata\\Google\\Rpc\\": "metadata/Rpc",
  981. "GPBMetadata\\Google\\Type\\": "metadata/Type",
  982. "GPBMetadata\\Google\\Cloud\\": "metadata/Cloud",
  983. "GPBMetadata\\Google\\Logging\\": "metadata/Logging"
  984. }
  985. },
  986. "notification-url": "https://packagist.org/downloads/",
  987. "license": [
  988. "Apache-2.0"
  989. ],
  990. "description": "Google API Common Protos for PHP",
  991. "homepage": "https://github.com/googleapis/common-protos-php",
  992. "keywords": [
  993. "google"
  994. ],
  995. "support": {
  996. "source": "https://github.com/googleapis/common-protos-php/tree/v4.12.2"
  997. },
  998. "time": "2025-07-18T20:06:03+00:00"
  999. },
  1000. {
  1001. "name": "google/gax",
  1002. "version": "v1.25.0",
  1003. "source": {
  1004. "type": "git",
  1005. "url": "https://github.com/googleapis/gax-php.git",
  1006. "reference": "8f07f56f8d14e784777020cd73cfde518bd7dd33"
  1007. },
  1008. "dist": {
  1009. "type": "zip",
  1010. "url": "https://api.github.com/repos/googleapis/gax-php/zipball/8f07f56f8d14e784777020cd73cfde518bd7dd33",
  1011. "reference": "8f07f56f8d14e784777020cd73cfde518bd7dd33",
  1012. "shasum": ""
  1013. },
  1014. "require": {
  1015. "google/auth": "^1.25.0",
  1016. "google/common-protos": "^3.0||^4.0",
  1017. "google/grpc-gcp": "^0.2||^0.3",
  1018. "google/longrunning": "^0.2",
  1019. "google/protobuf": "^3.21.4",
  1020. "grpc/grpc": "^1.13",
  1021. "guzzlehttp/promises": "^1.4||^2.0",
  1022. "guzzlehttp/psr7": "^2.0",
  1023. "php": ">=7.4"
  1024. },
  1025. "conflict": {
  1026. "ext-protobuf": "<3.7.0"
  1027. },
  1028. "require-dev": {
  1029. "phpspec/prophecy-phpunit": "^2.0",
  1030. "phpunit/phpunit": "^9.0",
  1031. "squizlabs/php_codesniffer": "3.*"
  1032. },
  1033. "type": "library",
  1034. "autoload": {
  1035. "psr-4": {
  1036. "Google\\ApiCore\\": "src",
  1037. "GPBMetadata\\ApiCore\\": "metadata/ApiCore"
  1038. }
  1039. },
  1040. "notification-url": "https://packagist.org/downloads/",
  1041. "license": [
  1042. "BSD-3-Clause"
  1043. ],
  1044. "description": "Google API Core for PHP",
  1045. "homepage": "https://github.com/googleapis/gax-php",
  1046. "keywords": [
  1047. "google"
  1048. ],
  1049. "support": {
  1050. "issues": "https://github.com/googleapis/gax-php/issues",
  1051. "source": "https://github.com/googleapis/gax-php/tree/v1.25.0"
  1052. },
  1053. "time": "2023-11-02T22:05:32+00:00"
  1054. },
  1055. {
  1056. "name": "google/grpc-gcp",
  1057. "version": "v0.3.0",
  1058. "source": {
  1059. "type": "git",
  1060. "url": "https://github.com/GoogleCloudPlatform/grpc-gcp-php.git",
  1061. "reference": "4d8b455a45a89f57e1552cadc41a43bc34c40456"
  1062. },
  1063. "dist": {
  1064. "type": "zip",
  1065. "url": "https://api.github.com/repos/GoogleCloudPlatform/grpc-gcp-php/zipball/4d8b455a45a89f57e1552cadc41a43bc34c40456",
  1066. "reference": "4d8b455a45a89f57e1552cadc41a43bc34c40456",
  1067. "shasum": ""
  1068. },
  1069. "require": {
  1070. "google/auth": "^1.3",
  1071. "google/protobuf": "^v3.3.0",
  1072. "grpc/grpc": "^v1.13.0",
  1073. "php": "^7.4||^8.0",
  1074. "psr/cache": "^1.0.1||^2.0.0||^3.0.0"
  1075. },
  1076. "require-dev": {
  1077. "google/cloud-spanner": "^1.7",
  1078. "phpunit/phpunit": "^9.0"
  1079. },
  1080. "type": "library",
  1081. "autoload": {
  1082. "psr-4": {
  1083. "Grpc\\Gcp\\": "src/"
  1084. },
  1085. "classmap": [
  1086. "src/generated/"
  1087. ]
  1088. },
  1089. "notification-url": "https://packagist.org/downloads/",
  1090. "license": [
  1091. "Apache-2.0"
  1092. ],
  1093. "description": "gRPC GCP library for channel management",
  1094. "support": {
  1095. "issues": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/issues",
  1096. "source": "https://github.com/GoogleCloudPlatform/grpc-gcp-php/tree/v0.3.0"
  1097. },
  1098. "time": "2023-04-24T14:37:29+00:00"
  1099. },
  1100. {
  1101. "name": "google/longrunning",
  1102. "version": "v0.2.6",
  1103. "source": {
  1104. "type": "git",
  1105. "url": "https://github.com/googleapis/php-longrunning.git",
  1106. "reference": "9689b4db54cf4cf8186118d9d59aa9ba35bb5842"
  1107. },
  1108. "dist": {
  1109. "type": "zip",
  1110. "url": "https://api.github.com/repos/googleapis/php-longrunning/zipball/9689b4db54cf4cf8186118d9d59aa9ba35bb5842",
  1111. "reference": "9689b4db54cf4cf8186118d9d59aa9ba35bb5842",
  1112. "shasum": ""
  1113. },
  1114. "require-dev": {
  1115. "google/gax": "^1.13.0",
  1116. "phpunit/phpunit": "^9.0"
  1117. },
  1118. "type": "library",
  1119. "extra": {
  1120. "component": {
  1121. "id": "longrunning",
  1122. "path": "LongRunning",
  1123. "entry": null,
  1124. "target": "googleapis/php-longrunning"
  1125. }
  1126. },
  1127. "autoload": {
  1128. "psr-4": {
  1129. "Google\\LongRunning\\": "src/LongRunning",
  1130. "Google\\ApiCore\\LongRunning\\": "src/ApiCore/LongRunning",
  1131. "GPBMetadata\\Google\\Longrunning\\": "metadata/Longrunning"
  1132. }
  1133. },
  1134. "notification-url": "https://packagist.org/downloads/",
  1135. "license": [
  1136. "Apache-2.0"
  1137. ],
  1138. "description": "Google LongRunning Client for PHP",
  1139. "support": {
  1140. "source": "https://github.com/googleapis/php-longrunning/tree/v0.2.6"
  1141. },
  1142. "time": "2023-04-21T14:12:59+00:00"
  1143. },
  1144. {
  1145. "name": "google/protobuf",
  1146. "version": "v3.25.8",
  1147. "source": {
  1148. "type": "git",
  1149. "url": "https://github.com/protocolbuffers/protobuf-php.git",
  1150. "reference": "57d440fc54a00fda5b8781e8d9bf0140ea6d8e52"
  1151. },
  1152. "dist": {
  1153. "type": "zip",
  1154. "url": "https://api.github.com/repos/protocolbuffers/protobuf-php/zipball/57d440fc54a00fda5b8781e8d9bf0140ea6d8e52",
  1155. "reference": "57d440fc54a00fda5b8781e8d9bf0140ea6d8e52",
  1156. "shasum": ""
  1157. },
  1158. "require": {
  1159. "php": ">=7.0.0"
  1160. },
  1161. "require-dev": {
  1162. "phpunit/phpunit": ">=5.0.0"
  1163. },
  1164. "suggest": {
  1165. "ext-bcmath": "Need to support JSON deserialization"
  1166. },
  1167. "type": "library",
  1168. "autoload": {
  1169. "psr-4": {
  1170. "Google\\Protobuf\\": "src/Google/Protobuf",
  1171. "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
  1172. }
  1173. },
  1174. "notification-url": "https://packagist.org/downloads/",
  1175. "license": [
  1176. "BSD-3-Clause"
  1177. ],
  1178. "description": "proto library for PHP",
  1179. "homepage": "https://developers.google.com/protocol-buffers/",
  1180. "keywords": [
  1181. "proto"
  1182. ],
  1183. "support": {
  1184. "source": "https://github.com/protocolbuffers/protobuf-php/tree/v3.25.8"
  1185. },
  1186. "time": "2025-05-27T21:04:40+00:00"
  1187. },
  1188. {
  1189. "name": "grpc/grpc",
  1190. "version": "1.74.0",
  1191. "source": {
  1192. "type": "git",
  1193. "url": "https://github.com/grpc/grpc-php.git",
  1194. "reference": "32bf4dba256d60d395582fb6e4e8d3936bcdb713"
  1195. },
  1196. "dist": {
  1197. "type": "zip",
  1198. "url": "https://api.github.com/repos/grpc/grpc-php/zipball/32bf4dba256d60d395582fb6e4e8d3936bcdb713",
  1199. "reference": "32bf4dba256d60d395582fb6e4e8d3936bcdb713",
  1200. "shasum": ""
  1201. },
  1202. "require": {
  1203. "php": ">=7.0.0"
  1204. },
  1205. "require-dev": {
  1206. "google/auth": "^v1.3.0"
  1207. },
  1208. "suggest": {
  1209. "ext-protobuf": "For better performance, install the protobuf C extension.",
  1210. "google/protobuf": "To get started using grpc quickly, install the native protobuf library."
  1211. },
  1212. "type": "library",
  1213. "autoload": {
  1214. "psr-4": {
  1215. "Grpc\\": "src/lib/"
  1216. }
  1217. },
  1218. "notification-url": "https://packagist.org/downloads/",
  1219. "license": [
  1220. "Apache-2.0"
  1221. ],
  1222. "description": "gRPC library for PHP",
  1223. "homepage": "https://grpc.io",
  1224. "keywords": [
  1225. "rpc"
  1226. ],
  1227. "support": {
  1228. "source": "https://github.com/grpc/grpc-php/tree/v1.74.0"
  1229. },
  1230. "time": "2025-07-24T20:02:16+00:00"
  1231. },
  1232. {
  1233. "name": "guzzlehttp/guzzle",
  1234. "version": "7.10.0",
  1235. "source": {
  1236. "type": "git",
  1237. "url": "https://github.com/guzzle/guzzle.git",
  1238. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4"
  1239. },
  1240. "dist": {
  1241. "type": "zip",
  1242. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1243. "reference": "b51ac707cfa420b7bfd4e4d5e510ba8008e822b4",
  1244. "shasum": ""
  1245. },
  1246. "require": {
  1247. "ext-json": "*",
  1248. "guzzlehttp/promises": "^2.3",
  1249. "guzzlehttp/psr7": "^2.8",
  1250. "php": "^7.2.5 || ^8.0",
  1251. "psr/http-client": "^1.0",
  1252. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  1253. },
  1254. "provide": {
  1255. "psr/http-client-implementation": "1.0"
  1256. },
  1257. "require-dev": {
  1258. "bamarni/composer-bin-plugin": "^1.8.2",
  1259. "ext-curl": "*",
  1260. "guzzle/client-integration-tests": "3.0.2",
  1261. "php-http/message-factory": "^1.1",
  1262. "phpunit/phpunit": "^8.5.39 || ^9.6.20",
  1263. "psr/log": "^1.1 || ^2.0 || ^3.0"
  1264. },
  1265. "suggest": {
  1266. "ext-curl": "Required for CURL handler support",
  1267. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  1268. "psr/log": "Required for using the Log middleware"
  1269. },
  1270. "type": "library",
  1271. "extra": {
  1272. "bamarni-bin": {
  1273. "bin-links": true,
  1274. "forward-command": false
  1275. }
  1276. },
  1277. "autoload": {
  1278. "files": [
  1279. "src/functions_include.php"
  1280. ],
  1281. "psr-4": {
  1282. "GuzzleHttp\\": "src/"
  1283. }
  1284. },
  1285. "notification-url": "https://packagist.org/downloads/",
  1286. "license": [
  1287. "MIT"
  1288. ],
  1289. "authors": [
  1290. {
  1291. "name": "Graham Campbell",
  1292. "email": "hello@gjcampbell.co.uk",
  1293. "homepage": "https://github.com/GrahamCampbell"
  1294. },
  1295. {
  1296. "name": "Michael Dowling",
  1297. "email": "mtdowling@gmail.com",
  1298. "homepage": "https://github.com/mtdowling"
  1299. },
  1300. {
  1301. "name": "Jeremy Lindblom",
  1302. "email": "jeremeamia@gmail.com",
  1303. "homepage": "https://github.com/jeremeamia"
  1304. },
  1305. {
  1306. "name": "George Mponos",
  1307. "email": "gmponos@gmail.com",
  1308. "homepage": "https://github.com/gmponos"
  1309. },
  1310. {
  1311. "name": "Tobias Nyholm",
  1312. "email": "tobias.nyholm@gmail.com",
  1313. "homepage": "https://github.com/Nyholm"
  1314. },
  1315. {
  1316. "name": "Márk Sági-Kazár",
  1317. "email": "mark.sagikazar@gmail.com",
  1318. "homepage": "https://github.com/sagikazarmark"
  1319. },
  1320. {
  1321. "name": "Tobias Schultze",
  1322. "email": "webmaster@tubo-world.de",
  1323. "homepage": "https://github.com/Tobion"
  1324. }
  1325. ],
  1326. "description": "Guzzle is a PHP HTTP client library",
  1327. "keywords": [
  1328. "client",
  1329. "curl",
  1330. "framework",
  1331. "http",
  1332. "http client",
  1333. "psr-18",
  1334. "psr-7",
  1335. "rest",
  1336. "web service"
  1337. ],
  1338. "support": {
  1339. "issues": "https://github.com/guzzle/guzzle/issues",
  1340. "source": "https://github.com/guzzle/guzzle/tree/7.10.0"
  1341. },
  1342. "funding": [
  1343. {
  1344. "url": "https://github.com/GrahamCampbell",
  1345. "type": "github"
  1346. },
  1347. {
  1348. "url": "https://github.com/Nyholm",
  1349. "type": "github"
  1350. },
  1351. {
  1352. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  1353. "type": "tidelift"
  1354. }
  1355. ],
  1356. "time": "2025-08-23T22:36:01+00:00"
  1357. },
  1358. {
  1359. "name": "guzzlehttp/promises",
  1360. "version": "2.3.0",
  1361. "source": {
  1362. "type": "git",
  1363. "url": "https://github.com/guzzle/promises.git",
  1364. "reference": "481557b130ef3790cf82b713667b43030dc9c957"
  1365. },
  1366. "dist": {
  1367. "type": "zip",
  1368. "url": "https://api.github.com/repos/guzzle/promises/zipball/481557b130ef3790cf82b713667b43030dc9c957",
  1369. "reference": "481557b130ef3790cf82b713667b43030dc9c957",
  1370. "shasum": ""
  1371. },
  1372. "require": {
  1373. "php": "^7.2.5 || ^8.0"
  1374. },
  1375. "require-dev": {
  1376. "bamarni/composer-bin-plugin": "^1.8.2",
  1377. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1378. },
  1379. "type": "library",
  1380. "extra": {
  1381. "bamarni-bin": {
  1382. "bin-links": true,
  1383. "forward-command": false
  1384. }
  1385. },
  1386. "autoload": {
  1387. "psr-4": {
  1388. "GuzzleHttp\\Promise\\": "src/"
  1389. }
  1390. },
  1391. "notification-url": "https://packagist.org/downloads/",
  1392. "license": [
  1393. "MIT"
  1394. ],
  1395. "authors": [
  1396. {
  1397. "name": "Graham Campbell",
  1398. "email": "hello@gjcampbell.co.uk",
  1399. "homepage": "https://github.com/GrahamCampbell"
  1400. },
  1401. {
  1402. "name": "Michael Dowling",
  1403. "email": "mtdowling@gmail.com",
  1404. "homepage": "https://github.com/mtdowling"
  1405. },
  1406. {
  1407. "name": "Tobias Nyholm",
  1408. "email": "tobias.nyholm@gmail.com",
  1409. "homepage": "https://github.com/Nyholm"
  1410. },
  1411. {
  1412. "name": "Tobias Schultze",
  1413. "email": "webmaster@tubo-world.de",
  1414. "homepage": "https://github.com/Tobion"
  1415. }
  1416. ],
  1417. "description": "Guzzle promises library",
  1418. "keywords": [
  1419. "promise"
  1420. ],
  1421. "support": {
  1422. "issues": "https://github.com/guzzle/promises/issues",
  1423. "source": "https://github.com/guzzle/promises/tree/2.3.0"
  1424. },
  1425. "funding": [
  1426. {
  1427. "url": "https://github.com/GrahamCampbell",
  1428. "type": "github"
  1429. },
  1430. {
  1431. "url": "https://github.com/Nyholm",
  1432. "type": "github"
  1433. },
  1434. {
  1435. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  1436. "type": "tidelift"
  1437. }
  1438. ],
  1439. "time": "2025-08-22T14:34:08+00:00"
  1440. },
  1441. {
  1442. "name": "guzzlehttp/psr7",
  1443. "version": "2.9.0",
  1444. "source": {
  1445. "type": "git",
  1446. "url": "https://github.com/guzzle/psr7.git",
  1447. "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884"
  1448. },
  1449. "dist": {
  1450. "type": "zip",
  1451. "url": "https://api.github.com/repos/guzzle/psr7/zipball/7d0ed42f28e42d61352a7a79de682e5e67fec884",
  1452. "reference": "7d0ed42f28e42d61352a7a79de682e5e67fec884",
  1453. "shasum": ""
  1454. },
  1455. "require": {
  1456. "php": "^7.2.5 || ^8.0",
  1457. "psr/http-factory": "^1.0",
  1458. "psr/http-message": "^1.1 || ^2.0",
  1459. "ralouphie/getallheaders": "^3.0"
  1460. },
  1461. "provide": {
  1462. "psr/http-factory-implementation": "1.0",
  1463. "psr/http-message-implementation": "1.0"
  1464. },
  1465. "require-dev": {
  1466. "bamarni/composer-bin-plugin": "^1.8.2",
  1467. "http-interop/http-factory-tests": "0.9.0",
  1468. "jshttp/mime-db": "1.54.0.1",
  1469. "phpunit/phpunit": "^8.5.44 || ^9.6.25"
  1470. },
  1471. "suggest": {
  1472. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1473. },
  1474. "type": "library",
  1475. "extra": {
  1476. "bamarni-bin": {
  1477. "bin-links": true,
  1478. "forward-command": false
  1479. }
  1480. },
  1481. "autoload": {
  1482. "psr-4": {
  1483. "GuzzleHttp\\Psr7\\": "src/"
  1484. }
  1485. },
  1486. "notification-url": "https://packagist.org/downloads/",
  1487. "license": [
  1488. "MIT"
  1489. ],
  1490. "authors": [
  1491. {
  1492. "name": "Graham Campbell",
  1493. "email": "hello@gjcampbell.co.uk",
  1494. "homepage": "https://github.com/GrahamCampbell"
  1495. },
  1496. {
  1497. "name": "Michael Dowling",
  1498. "email": "mtdowling@gmail.com",
  1499. "homepage": "https://github.com/mtdowling"
  1500. },
  1501. {
  1502. "name": "George Mponos",
  1503. "email": "gmponos@gmail.com",
  1504. "homepage": "https://github.com/gmponos"
  1505. },
  1506. {
  1507. "name": "Tobias Nyholm",
  1508. "email": "tobias.nyholm@gmail.com",
  1509. "homepage": "https://github.com/Nyholm"
  1510. },
  1511. {
  1512. "name": "Márk Sági-Kazár",
  1513. "email": "mark.sagikazar@gmail.com",
  1514. "homepage": "https://github.com/sagikazarmark"
  1515. },
  1516. {
  1517. "name": "Tobias Schultze",
  1518. "email": "webmaster@tubo-world.de",
  1519. "homepage": "https://github.com/Tobion"
  1520. },
  1521. {
  1522. "name": "Márk Sági-Kazár",
  1523. "email": "mark.sagikazar@gmail.com",
  1524. "homepage": "https://sagikazarmark.hu"
  1525. }
  1526. ],
  1527. "description": "PSR-7 message implementation that also provides common utility methods",
  1528. "keywords": [
  1529. "http",
  1530. "message",
  1531. "psr-7",
  1532. "request",
  1533. "response",
  1534. "stream",
  1535. "uri",
  1536. "url"
  1537. ],
  1538. "support": {
  1539. "issues": "https://github.com/guzzle/psr7/issues",
  1540. "source": "https://github.com/guzzle/psr7/tree/2.9.0"
  1541. },
  1542. "funding": [
  1543. {
  1544. "url": "https://github.com/GrahamCampbell",
  1545. "type": "github"
  1546. },
  1547. {
  1548. "url": "https://github.com/Nyholm",
  1549. "type": "github"
  1550. },
  1551. {
  1552. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  1553. "type": "tidelift"
  1554. }
  1555. ],
  1556. "time": "2026-03-10T16:41:02+00:00"
  1557. },
  1558. {
  1559. "name": "kreait/firebase-php",
  1560. "version": "6.9.6",
  1561. "source": {
  1562. "type": "git",
  1563. "url": "https://github.com/beste/firebase-php.git",
  1564. "reference": "d6592be9b27a7c0b13f484f5af494e278901e441"
  1565. },
  1566. "dist": {
  1567. "type": "zip",
  1568. "url": "https://api.github.com/repos/beste/firebase-php/zipball/d6592be9b27a7c0b13f484f5af494e278901e441",
  1569. "reference": "d6592be9b27a7c0b13f484f5af494e278901e441",
  1570. "shasum": ""
  1571. },
  1572. "require": {
  1573. "beste/clock": "^2.1",
  1574. "beste/json": "^1.0",
  1575. "ext-ctype": "*",
  1576. "ext-json": "*",
  1577. "ext-mbstring": "*",
  1578. "ext-openssl": "*",
  1579. "fig/http-message-util": "^1.1",
  1580. "google/auth": "^1.21",
  1581. "google/cloud-core": "^1.44.2",
  1582. "google/cloud-storage": "^1.26.2",
  1583. "guzzlehttp/guzzle": "^7.4.5",
  1584. "kreait/firebase-tokens": "^3.0",
  1585. "lcobucci/jwt": "^4.1",
  1586. "mtdowling/jmespath.php": "^2.6.1",
  1587. "php": "^7.4|^8.0",
  1588. "psr/cache": "^1.0.1|^2.0|^3.0",
  1589. "psr/log": "^1.1|^2.0|^3.0",
  1590. "riverline/multipart-parser": "^2.0.8",
  1591. "symfony/polyfill-php80": "^1.23",
  1592. "symfony/polyfill-php81": "^1.23"
  1593. },
  1594. "require-dev": {
  1595. "google/cloud-firestore": "^1.25.1",
  1596. "phpstan/extension-installer": "^1.1",
  1597. "phpstan/phpstan": "^1.8.2",
  1598. "phpstan/phpstan-phpunit": "^1.1.1",
  1599. "phpunit/phpunit": "^9.5.22",
  1600. "symfony/var-dumper": "^5.4|^6.1.3"
  1601. },
  1602. "suggest": {
  1603. "google/cloud-firestore": "^1.0 to use the Firestore component"
  1604. },
  1605. "type": "library",
  1606. "extra": {
  1607. "branch-alias": {
  1608. "dev-4.x": "4.x-dev",
  1609. "dev-5.x": "5.x-dev",
  1610. "dev-6.x": "6.x-dev",
  1611. "dev-7.x": "7.x-dev"
  1612. }
  1613. },
  1614. "autoload": {
  1615. "psr-4": {
  1616. "Kreait\\Firebase\\": "src/Firebase"
  1617. }
  1618. },
  1619. "notification-url": "https://packagist.org/downloads/",
  1620. "license": [
  1621. "MIT"
  1622. ],
  1623. "authors": [
  1624. {
  1625. "name": "Jérôme Gamez",
  1626. "homepage": "https://github.com/jeromegamez"
  1627. }
  1628. ],
  1629. "description": "Firebase Admin SDK",
  1630. "homepage": "https://github.com/kreait/firebase-php",
  1631. "keywords": [
  1632. "api",
  1633. "database",
  1634. "firebase",
  1635. "google",
  1636. "sdk"
  1637. ],
  1638. "support": {
  1639. "docs": "https://firebase-php.readthedocs.io",
  1640. "issues": "https://github.com/kreait/firebase-php/issues",
  1641. "source": "https://github.com/kreait/firebase-php"
  1642. },
  1643. "funding": [
  1644. {
  1645. "url": "https://github.com/sponsors/jeromegamez",
  1646. "type": "github"
  1647. }
  1648. ],
  1649. "time": "2023-06-10T06:44:56+00:00"
  1650. },
  1651. {
  1652. "name": "kreait/firebase-tokens",
  1653. "version": "3.0.3",
  1654. "source": {
  1655. "type": "git",
  1656. "url": "https://github.com/beste/firebase-tokens-php.git",
  1657. "reference": "3f732ae04f6548f5130709daf06fcc1ca0561002"
  1658. },
  1659. "dist": {
  1660. "type": "zip",
  1661. "url": "https://api.github.com/repos/beste/firebase-tokens-php/zipball/3f732ae04f6548f5130709daf06fcc1ca0561002",
  1662. "reference": "3f732ae04f6548f5130709daf06fcc1ca0561002",
  1663. "shasum": ""
  1664. },
  1665. "require": {
  1666. "beste/clock": "^2.0",
  1667. "ext-json": "*",
  1668. "ext-openssl": "*",
  1669. "fig/http-message-util": "^1.1.5",
  1670. "guzzlehttp/guzzle": "^7.4.5",
  1671. "lcobucci/jwt": "^4.1.5",
  1672. "php": "^7.4|^8.0",
  1673. "psr/cache": "^1.0|^2.0|^3.0"
  1674. },
  1675. "require-dev": {
  1676. "friendsofphp/php-cs-fixer": "^3.4",
  1677. "phpstan/extension-installer": "^1.1",
  1678. "phpstan/phpstan": "^1.2",
  1679. "phpstan/phpstan-phpunit": "^1.0",
  1680. "phpunit/phpunit": "^9.5.10",
  1681. "rector/rector": "^0.12.9",
  1682. "symfony/cache": "^5.4|^6.0",
  1683. "symfony/var-dumper": "^5.3|^6.0"
  1684. },
  1685. "suggest": {
  1686. "psr/cache-implementation": "to cache fetched remote public keys"
  1687. },
  1688. "type": "library",
  1689. "autoload": {
  1690. "psr-4": {
  1691. "Kreait\\Firebase\\JWT\\": "src/JWT"
  1692. }
  1693. },
  1694. "notification-url": "https://packagist.org/downloads/",
  1695. "license": [
  1696. "MIT"
  1697. ],
  1698. "authors": [
  1699. {
  1700. "name": "Jérôme Gamez",
  1701. "homepage": "https://github.com/jeromegamez"
  1702. }
  1703. ],
  1704. "description": "A library to work with Firebase tokens",
  1705. "homepage": "https://github.com/kreait/firebase-token-php",
  1706. "keywords": [
  1707. "Authentication",
  1708. "auth",
  1709. "firebase",
  1710. "google",
  1711. "token"
  1712. ],
  1713. "support": {
  1714. "issues": "https://github.com/beste/firebase-tokens-php/issues",
  1715. "source": "https://github.com/beste/firebase-tokens-php/tree/3.0.3"
  1716. },
  1717. "funding": [
  1718. {
  1719. "url": "https://github.com/sponsors/jeromegamez",
  1720. "type": "github"
  1721. }
  1722. ],
  1723. "time": "2022-08-22T21:40:00+00:00"
  1724. },
  1725. {
  1726. "name": "lcobucci/clock",
  1727. "version": "3.5.0",
  1728. "source": {
  1729. "type": "git",
  1730. "url": "https://github.com/lcobucci/clock.git",
  1731. "reference": "a3139d9e97d47826f27e6a17bb63f13621f86058"
  1732. },
  1733. "dist": {
  1734. "type": "zip",
  1735. "url": "https://api.github.com/repos/lcobucci/clock/zipball/a3139d9e97d47826f27e6a17bb63f13621f86058",
  1736. "reference": "a3139d9e97d47826f27e6a17bb63f13621f86058",
  1737. "shasum": ""
  1738. },
  1739. "require": {
  1740. "php": "~8.3.0 || ~8.4.0 || ~8.5.0",
  1741. "psr/clock": "^1.0"
  1742. },
  1743. "provide": {
  1744. "psr/clock-implementation": "1.0"
  1745. },
  1746. "require-dev": {
  1747. "infection/infection": "^0.31",
  1748. "lcobucci/coding-standard": "^11.2.0",
  1749. "phpstan/extension-installer": "^1.3.1",
  1750. "phpstan/phpstan": "^2.0.0",
  1751. "phpstan/phpstan-deprecation-rules": "^2.0.0",
  1752. "phpstan/phpstan-phpunit": "^2.0.0",
  1753. "phpstan/phpstan-strict-rules": "^2.0.0",
  1754. "phpunit/phpunit": "^12.0.0"
  1755. },
  1756. "type": "library",
  1757. "autoload": {
  1758. "psr-4": {
  1759. "Lcobucci\\Clock\\": "src"
  1760. }
  1761. },
  1762. "notification-url": "https://packagist.org/downloads/",
  1763. "license": [
  1764. "MIT"
  1765. ],
  1766. "authors": [
  1767. {
  1768. "name": "Luís Cobucci",
  1769. "email": "lcobucci@gmail.com"
  1770. }
  1771. ],
  1772. "description": "Yet another clock abstraction",
  1773. "support": {
  1774. "issues": "https://github.com/lcobucci/clock/issues",
  1775. "source": "https://github.com/lcobucci/clock/tree/3.5.0"
  1776. },
  1777. "funding": [
  1778. {
  1779. "url": "https://github.com/lcobucci",
  1780. "type": "github"
  1781. },
  1782. {
  1783. "url": "https://www.patreon.com/lcobucci",
  1784. "type": "patreon"
  1785. }
  1786. ],
  1787. "time": "2025-10-27T09:03:17+00:00"
  1788. },
  1789. {
  1790. "name": "lcobucci/jwt",
  1791. "version": "4.3.0",
  1792. "source": {
  1793. "type": "git",
  1794. "url": "https://github.com/lcobucci/jwt.git",
  1795. "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4"
  1796. },
  1797. "dist": {
  1798. "type": "zip",
  1799. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/4d7de2fe0d51a96418c0d04004986e410e87f6b4",
  1800. "reference": "4d7de2fe0d51a96418c0d04004986e410e87f6b4",
  1801. "shasum": ""
  1802. },
  1803. "require": {
  1804. "ext-hash": "*",
  1805. "ext-json": "*",
  1806. "ext-mbstring": "*",
  1807. "ext-openssl": "*",
  1808. "ext-sodium": "*",
  1809. "lcobucci/clock": "^2.0 || ^3.0",
  1810. "php": "^7.4 || ^8.0"
  1811. },
  1812. "require-dev": {
  1813. "infection/infection": "^0.21",
  1814. "lcobucci/coding-standard": "^6.0",
  1815. "mikey179/vfsstream": "^1.6.7",
  1816. "phpbench/phpbench": "^1.2",
  1817. "phpstan/extension-installer": "^1.0",
  1818. "phpstan/phpstan": "^1.4",
  1819. "phpstan/phpstan-deprecation-rules": "^1.0",
  1820. "phpstan/phpstan-phpunit": "^1.0",
  1821. "phpstan/phpstan-strict-rules": "^1.0",
  1822. "phpunit/php-invoker": "^3.1",
  1823. "phpunit/phpunit": "^9.5"
  1824. },
  1825. "type": "library",
  1826. "autoload": {
  1827. "psr-4": {
  1828. "Lcobucci\\JWT\\": "src"
  1829. }
  1830. },
  1831. "notification-url": "https://packagist.org/downloads/",
  1832. "license": [
  1833. "BSD-3-Clause"
  1834. ],
  1835. "authors": [
  1836. {
  1837. "name": "Luís Cobucci",
  1838. "email": "lcobucci@gmail.com",
  1839. "role": "Developer"
  1840. }
  1841. ],
  1842. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  1843. "keywords": [
  1844. "JWS",
  1845. "jwt"
  1846. ],
  1847. "support": {
  1848. "issues": "https://github.com/lcobucci/jwt/issues",
  1849. "source": "https://github.com/lcobucci/jwt/tree/4.3.0"
  1850. },
  1851. "funding": [
  1852. {
  1853. "url": "https://github.com/lcobucci",
  1854. "type": "github"
  1855. },
  1856. {
  1857. "url": "https://www.patreon.com/lcobucci",
  1858. "type": "patreon"
  1859. }
  1860. ],
  1861. "time": "2023-01-02T13:28:00+00:00"
  1862. },
  1863. {
  1864. "name": "monolog/monolog",
  1865. "version": "3.10.0",
  1866. "source": {
  1867. "type": "git",
  1868. "url": "https://github.com/Seldaek/monolog.git",
  1869. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0"
  1870. },
  1871. "dist": {
  1872. "type": "zip",
  1873. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/b321dd6749f0bf7189444158a3ce785cc16d69b0",
  1874. "reference": "b321dd6749f0bf7189444158a3ce785cc16d69b0",
  1875. "shasum": ""
  1876. },
  1877. "require": {
  1878. "php": ">=8.1",
  1879. "psr/log": "^2.0 || ^3.0"
  1880. },
  1881. "provide": {
  1882. "psr/log-implementation": "3.0.0"
  1883. },
  1884. "require-dev": {
  1885. "aws/aws-sdk-php": "^3.0",
  1886. "doctrine/couchdb": "~1.0@dev",
  1887. "elasticsearch/elasticsearch": "^7 || ^8",
  1888. "ext-json": "*",
  1889. "graylog2/gelf-php": "^1.4.2 || ^2.0",
  1890. "guzzlehttp/guzzle": "^7.4.5",
  1891. "guzzlehttp/psr7": "^2.2",
  1892. "mongodb/mongodb": "^1.8 || ^2.0",
  1893. "php-amqplib/php-amqplib": "~2.4 || ^3",
  1894. "php-console/php-console": "^3.1.8",
  1895. "phpstan/phpstan": "^2",
  1896. "phpstan/phpstan-deprecation-rules": "^2",
  1897. "phpstan/phpstan-strict-rules": "^2",
  1898. "phpunit/phpunit": "^10.5.17 || ^11.0.7",
  1899. "predis/predis": "^1.1 || ^2",
  1900. "rollbar/rollbar": "^4.0",
  1901. "ruflin/elastica": "^7 || ^8",
  1902. "symfony/mailer": "^5.4 || ^6",
  1903. "symfony/mime": "^5.4 || ^6"
  1904. },
  1905. "suggest": {
  1906. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  1907. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  1908. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  1909. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  1910. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  1911. "ext-mbstring": "Allow to work properly with unicode symbols",
  1912. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  1913. "ext-openssl": "Required to send log messages using SSL",
  1914. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  1915. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  1916. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  1917. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  1918. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  1919. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  1920. },
  1921. "type": "library",
  1922. "extra": {
  1923. "branch-alias": {
  1924. "dev-main": "3.x-dev"
  1925. }
  1926. },
  1927. "autoload": {
  1928. "psr-4": {
  1929. "Monolog\\": "src/Monolog"
  1930. }
  1931. },
  1932. "notification-url": "https://packagist.org/downloads/",
  1933. "license": [
  1934. "MIT"
  1935. ],
  1936. "authors": [
  1937. {
  1938. "name": "Jordi Boggiano",
  1939. "email": "j.boggiano@seld.be",
  1940. "homepage": "https://seld.be"
  1941. }
  1942. ],
  1943. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  1944. "homepage": "https://github.com/Seldaek/monolog",
  1945. "keywords": [
  1946. "log",
  1947. "logging",
  1948. "psr-3"
  1949. ],
  1950. "support": {
  1951. "issues": "https://github.com/Seldaek/monolog/issues",
  1952. "source": "https://github.com/Seldaek/monolog/tree/3.10.0"
  1953. },
  1954. "funding": [
  1955. {
  1956. "url": "https://github.com/Seldaek",
  1957. "type": "github"
  1958. },
  1959. {
  1960. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  1961. "type": "tidelift"
  1962. }
  1963. ],
  1964. "time": "2026-01-02T08:56:05+00:00"
  1965. },
  1966. {
  1967. "name": "mtdowling/jmespath.php",
  1968. "version": "2.8.0",
  1969. "source": {
  1970. "type": "git",
  1971. "url": "https://github.com/jmespath/jmespath.php.git",
  1972. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc"
  1973. },
  1974. "dist": {
  1975. "type": "zip",
  1976. "url": "https://api.github.com/repos/jmespath/jmespath.php/zipball/a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  1977. "reference": "a2a865e05d5f420b50cc2f85bb78d565db12a6bc",
  1978. "shasum": ""
  1979. },
  1980. "require": {
  1981. "php": "^7.2.5 || ^8.0",
  1982. "symfony/polyfill-mbstring": "^1.17"
  1983. },
  1984. "require-dev": {
  1985. "composer/xdebug-handler": "^3.0.3",
  1986. "phpunit/phpunit": "^8.5.33"
  1987. },
  1988. "bin": [
  1989. "bin/jp.php"
  1990. ],
  1991. "type": "library",
  1992. "extra": {
  1993. "branch-alias": {
  1994. "dev-master": "2.8-dev"
  1995. }
  1996. },
  1997. "autoload": {
  1998. "files": [
  1999. "src/JmesPath.php"
  2000. ],
  2001. "psr-4": {
  2002. "JmesPath\\": "src/"
  2003. }
  2004. },
  2005. "notification-url": "https://packagist.org/downloads/",
  2006. "license": [
  2007. "MIT"
  2008. ],
  2009. "authors": [
  2010. {
  2011. "name": "Graham Campbell",
  2012. "email": "hello@gjcampbell.co.uk",
  2013. "homepage": "https://github.com/GrahamCampbell"
  2014. },
  2015. {
  2016. "name": "Michael Dowling",
  2017. "email": "mtdowling@gmail.com",
  2018. "homepage": "https://github.com/mtdowling"
  2019. }
  2020. ],
  2021. "description": "Declaratively specify how to extract elements from a JSON document",
  2022. "keywords": [
  2023. "json",
  2024. "jsonpath"
  2025. ],
  2026. "support": {
  2027. "issues": "https://github.com/jmespath/jmespath.php/issues",
  2028. "source": "https://github.com/jmespath/jmespath.php/tree/2.8.0"
  2029. },
  2030. "time": "2024-09-04T18:46:31+00:00"
  2031. },
  2032. {
  2033. "name": "npm-asset/bootstrap",
  2034. "version": "4.6.2",
  2035. "dist": {
  2036. "type": "tar",
  2037. "url": "https://registry.npmjs.org/bootstrap/-/bootstrap-4.6.2.tgz"
  2038. },
  2039. "type": "npm-asset",
  2040. "license": [
  2041. "MIT"
  2042. ]
  2043. },
  2044. {
  2045. "name": "psr/cache",
  2046. "version": "3.0.0",
  2047. "source": {
  2048. "type": "git",
  2049. "url": "https://github.com/php-fig/cache.git",
  2050. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf"
  2051. },
  2052. "dist": {
  2053. "type": "zip",
  2054. "url": "https://api.github.com/repos/php-fig/cache/zipball/aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2055. "reference": "aa5030cfa5405eccfdcb1083ce040c2cb8d253bf",
  2056. "shasum": ""
  2057. },
  2058. "require": {
  2059. "php": ">=8.0.0"
  2060. },
  2061. "type": "library",
  2062. "extra": {
  2063. "branch-alias": {
  2064. "dev-master": "1.0.x-dev"
  2065. }
  2066. },
  2067. "autoload": {
  2068. "psr-4": {
  2069. "Psr\\Cache\\": "src/"
  2070. }
  2071. },
  2072. "notification-url": "https://packagist.org/downloads/",
  2073. "license": [
  2074. "MIT"
  2075. ],
  2076. "authors": [
  2077. {
  2078. "name": "PHP-FIG",
  2079. "homepage": "https://www.php-fig.org/"
  2080. }
  2081. ],
  2082. "description": "Common interface for caching libraries",
  2083. "keywords": [
  2084. "cache",
  2085. "psr",
  2086. "psr-6"
  2087. ],
  2088. "support": {
  2089. "source": "https://github.com/php-fig/cache/tree/3.0.0"
  2090. },
  2091. "time": "2021-02-03T23:26:27+00:00"
  2092. },
  2093. {
  2094. "name": "psr/clock",
  2095. "version": "1.0.0",
  2096. "source": {
  2097. "type": "git",
  2098. "url": "https://github.com/php-fig/clock.git",
  2099. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d"
  2100. },
  2101. "dist": {
  2102. "type": "zip",
  2103. "url": "https://api.github.com/repos/php-fig/clock/zipball/e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2104. "reference": "e41a24703d4560fd0acb709162f73b8adfc3aa0d",
  2105. "shasum": ""
  2106. },
  2107. "require": {
  2108. "php": "^7.0 || ^8.0"
  2109. },
  2110. "type": "library",
  2111. "autoload": {
  2112. "psr-4": {
  2113. "Psr\\Clock\\": "src/"
  2114. }
  2115. },
  2116. "notification-url": "https://packagist.org/downloads/",
  2117. "license": [
  2118. "MIT"
  2119. ],
  2120. "authors": [
  2121. {
  2122. "name": "PHP-FIG",
  2123. "homepage": "https://www.php-fig.org/"
  2124. }
  2125. ],
  2126. "description": "Common interface for reading the clock.",
  2127. "homepage": "https://github.com/php-fig/clock",
  2128. "keywords": [
  2129. "clock",
  2130. "now",
  2131. "psr",
  2132. "psr-20",
  2133. "time"
  2134. ],
  2135. "support": {
  2136. "issues": "https://github.com/php-fig/clock/issues",
  2137. "source": "https://github.com/php-fig/clock/tree/1.0.0"
  2138. },
  2139. "time": "2022-11-25T14:36:26+00:00"
  2140. },
  2141. {
  2142. "name": "psr/http-client",
  2143. "version": "1.0.3",
  2144. "source": {
  2145. "type": "git",
  2146. "url": "https://github.com/php-fig/http-client.git",
  2147. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90"
  2148. },
  2149. "dist": {
  2150. "type": "zip",
  2151. "url": "https://api.github.com/repos/php-fig/http-client/zipball/bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2152. "reference": "bb5906edc1c324c9a05aa0873d40117941e5fa90",
  2153. "shasum": ""
  2154. },
  2155. "require": {
  2156. "php": "^7.0 || ^8.0",
  2157. "psr/http-message": "^1.0 || ^2.0"
  2158. },
  2159. "type": "library",
  2160. "extra": {
  2161. "branch-alias": {
  2162. "dev-master": "1.0.x-dev"
  2163. }
  2164. },
  2165. "autoload": {
  2166. "psr-4": {
  2167. "Psr\\Http\\Client\\": "src/"
  2168. }
  2169. },
  2170. "notification-url": "https://packagist.org/downloads/",
  2171. "license": [
  2172. "MIT"
  2173. ],
  2174. "authors": [
  2175. {
  2176. "name": "PHP-FIG",
  2177. "homepage": "https://www.php-fig.org/"
  2178. }
  2179. ],
  2180. "description": "Common interface for HTTP clients",
  2181. "homepage": "https://github.com/php-fig/http-client",
  2182. "keywords": [
  2183. "http",
  2184. "http-client",
  2185. "psr",
  2186. "psr-18"
  2187. ],
  2188. "support": {
  2189. "source": "https://github.com/php-fig/http-client"
  2190. },
  2191. "time": "2023-09-23T14:17:50+00:00"
  2192. },
  2193. {
  2194. "name": "psr/http-factory",
  2195. "version": "1.1.0",
  2196. "source": {
  2197. "type": "git",
  2198. "url": "https://github.com/php-fig/http-factory.git",
  2199. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a"
  2200. },
  2201. "dist": {
  2202. "type": "zip",
  2203. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2204. "reference": "2b4765fddfe3b508ac62f829e852b1501d3f6e8a",
  2205. "shasum": ""
  2206. },
  2207. "require": {
  2208. "php": ">=7.1",
  2209. "psr/http-message": "^1.0 || ^2.0"
  2210. },
  2211. "type": "library",
  2212. "extra": {
  2213. "branch-alias": {
  2214. "dev-master": "1.0.x-dev"
  2215. }
  2216. },
  2217. "autoload": {
  2218. "psr-4": {
  2219. "Psr\\Http\\Message\\": "src/"
  2220. }
  2221. },
  2222. "notification-url": "https://packagist.org/downloads/",
  2223. "license": [
  2224. "MIT"
  2225. ],
  2226. "authors": [
  2227. {
  2228. "name": "PHP-FIG",
  2229. "homepage": "https://www.php-fig.org/"
  2230. }
  2231. ],
  2232. "description": "PSR-17: Common interfaces for PSR-7 HTTP message factories",
  2233. "keywords": [
  2234. "factory",
  2235. "http",
  2236. "message",
  2237. "psr",
  2238. "psr-17",
  2239. "psr-7",
  2240. "request",
  2241. "response"
  2242. ],
  2243. "support": {
  2244. "source": "https://github.com/php-fig/http-factory"
  2245. },
  2246. "time": "2024-04-15T12:06:14+00:00"
  2247. },
  2248. {
  2249. "name": "psr/http-message",
  2250. "version": "1.1",
  2251. "source": {
  2252. "type": "git",
  2253. "url": "https://github.com/php-fig/http-message.git",
  2254. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  2255. },
  2256. "dist": {
  2257. "type": "zip",
  2258. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2259. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  2260. "shasum": ""
  2261. },
  2262. "require": {
  2263. "php": "^7.2 || ^8.0"
  2264. },
  2265. "type": "library",
  2266. "extra": {
  2267. "branch-alias": {
  2268. "dev-master": "1.1.x-dev"
  2269. }
  2270. },
  2271. "autoload": {
  2272. "psr-4": {
  2273. "Psr\\Http\\Message\\": "src/"
  2274. }
  2275. },
  2276. "notification-url": "https://packagist.org/downloads/",
  2277. "license": [
  2278. "MIT"
  2279. ],
  2280. "authors": [
  2281. {
  2282. "name": "PHP-FIG",
  2283. "homepage": "http://www.php-fig.org/"
  2284. }
  2285. ],
  2286. "description": "Common interface for HTTP messages",
  2287. "homepage": "https://github.com/php-fig/http-message",
  2288. "keywords": [
  2289. "http",
  2290. "http-message",
  2291. "psr",
  2292. "psr-7",
  2293. "request",
  2294. "response"
  2295. ],
  2296. "support": {
  2297. "source": "https://github.com/php-fig/http-message/tree/1.1"
  2298. },
  2299. "time": "2023-04-04T09:50:52+00:00"
  2300. },
  2301. {
  2302. "name": "psr/log",
  2303. "version": "3.0.2",
  2304. "source": {
  2305. "type": "git",
  2306. "url": "https://github.com/php-fig/log.git",
  2307. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3"
  2308. },
  2309. "dist": {
  2310. "type": "zip",
  2311. "url": "https://api.github.com/repos/php-fig/log/zipball/f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2312. "reference": "f16e1d5863e37f8d8c2a01719f5b34baa2b714d3",
  2313. "shasum": ""
  2314. },
  2315. "require": {
  2316. "php": ">=8.0.0"
  2317. },
  2318. "type": "library",
  2319. "extra": {
  2320. "branch-alias": {
  2321. "dev-master": "3.x-dev"
  2322. }
  2323. },
  2324. "autoload": {
  2325. "psr-4": {
  2326. "Psr\\Log\\": "src"
  2327. }
  2328. },
  2329. "notification-url": "https://packagist.org/downloads/",
  2330. "license": [
  2331. "MIT"
  2332. ],
  2333. "authors": [
  2334. {
  2335. "name": "PHP-FIG",
  2336. "homepage": "https://www.php-fig.org/"
  2337. }
  2338. ],
  2339. "description": "Common interface for logging libraries",
  2340. "homepage": "https://github.com/php-fig/log",
  2341. "keywords": [
  2342. "log",
  2343. "psr",
  2344. "psr-3"
  2345. ],
  2346. "support": {
  2347. "source": "https://github.com/php-fig/log/tree/3.0.2"
  2348. },
  2349. "time": "2024-09-11T13:17:53+00:00"
  2350. },
  2351. {
  2352. "name": "ralouphie/getallheaders",
  2353. "version": "3.0.3",
  2354. "source": {
  2355. "type": "git",
  2356. "url": "https://github.com/ralouphie/getallheaders.git",
  2357. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  2358. },
  2359. "dist": {
  2360. "type": "zip",
  2361. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  2362. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  2363. "shasum": ""
  2364. },
  2365. "require": {
  2366. "php": ">=5.6"
  2367. },
  2368. "require-dev": {
  2369. "php-coveralls/php-coveralls": "^2.1",
  2370. "phpunit/phpunit": "^5 || ^6.5"
  2371. },
  2372. "type": "library",
  2373. "autoload": {
  2374. "files": [
  2375. "src/getallheaders.php"
  2376. ]
  2377. },
  2378. "notification-url": "https://packagist.org/downloads/",
  2379. "license": [
  2380. "MIT"
  2381. ],
  2382. "authors": [
  2383. {
  2384. "name": "Ralph Khattar",
  2385. "email": "ralph.khattar@gmail.com"
  2386. }
  2387. ],
  2388. "description": "A polyfill for getallheaders.",
  2389. "support": {
  2390. "issues": "https://github.com/ralouphie/getallheaders/issues",
  2391. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  2392. },
  2393. "time": "2019-03-08T08:55:37+00:00"
  2394. },
  2395. {
  2396. "name": "ramsey/collection",
  2397. "version": "2.1.1",
  2398. "source": {
  2399. "type": "git",
  2400. "url": "https://github.com/ramsey/collection.git",
  2401. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2"
  2402. },
  2403. "dist": {
  2404. "type": "zip",
  2405. "url": "https://api.github.com/repos/ramsey/collection/zipball/344572933ad0181accbf4ba763e85a0306a8c5e2",
  2406. "reference": "344572933ad0181accbf4ba763e85a0306a8c5e2",
  2407. "shasum": ""
  2408. },
  2409. "require": {
  2410. "php": "^8.1"
  2411. },
  2412. "require-dev": {
  2413. "captainhook/plugin-composer": "^5.3",
  2414. "ergebnis/composer-normalize": "^2.45",
  2415. "fakerphp/faker": "^1.24",
  2416. "hamcrest/hamcrest-php": "^2.0",
  2417. "jangregor/phpstan-prophecy": "^2.1",
  2418. "mockery/mockery": "^1.6",
  2419. "php-parallel-lint/php-console-highlighter": "^1.0",
  2420. "php-parallel-lint/php-parallel-lint": "^1.4",
  2421. "phpspec/prophecy-phpunit": "^2.3",
  2422. "phpstan/extension-installer": "^1.4",
  2423. "phpstan/phpstan": "^2.1",
  2424. "phpstan/phpstan-mockery": "^2.0",
  2425. "phpstan/phpstan-phpunit": "^2.0",
  2426. "phpunit/phpunit": "^10.5",
  2427. "ramsey/coding-standard": "^2.3",
  2428. "ramsey/conventional-commits": "^1.6",
  2429. "roave/security-advisories": "dev-latest"
  2430. },
  2431. "type": "library",
  2432. "extra": {
  2433. "captainhook": {
  2434. "force-install": true
  2435. },
  2436. "ramsey/conventional-commits": {
  2437. "configFile": "conventional-commits.json"
  2438. }
  2439. },
  2440. "autoload": {
  2441. "psr-4": {
  2442. "Ramsey\\Collection\\": "src/"
  2443. }
  2444. },
  2445. "notification-url": "https://packagist.org/downloads/",
  2446. "license": [
  2447. "MIT"
  2448. ],
  2449. "authors": [
  2450. {
  2451. "name": "Ben Ramsey",
  2452. "email": "ben@benramsey.com",
  2453. "homepage": "https://benramsey.com"
  2454. }
  2455. ],
  2456. "description": "A PHP library for representing and manipulating collections.",
  2457. "keywords": [
  2458. "array",
  2459. "collection",
  2460. "hash",
  2461. "map",
  2462. "queue",
  2463. "set"
  2464. ],
  2465. "support": {
  2466. "issues": "https://github.com/ramsey/collection/issues",
  2467. "source": "https://github.com/ramsey/collection/tree/2.1.1"
  2468. },
  2469. "time": "2025-03-22T05:38:12+00:00"
  2470. },
  2471. {
  2472. "name": "ramsey/uuid",
  2473. "version": "4.9.2",
  2474. "source": {
  2475. "type": "git",
  2476. "url": "https://github.com/ramsey/uuid.git",
  2477. "reference": "8429c78ca35a09f27565311b98101e2826affde0"
  2478. },
  2479. "dist": {
  2480. "type": "zip",
  2481. "url": "https://api.github.com/repos/ramsey/uuid/zipball/8429c78ca35a09f27565311b98101e2826affde0",
  2482. "reference": "8429c78ca35a09f27565311b98101e2826affde0",
  2483. "shasum": ""
  2484. },
  2485. "require": {
  2486. "brick/math": "^0.8.16 || ^0.9 || ^0.10 || ^0.11 || ^0.12 || ^0.13 || ^0.14",
  2487. "php": "^8.0",
  2488. "ramsey/collection": "^1.2 || ^2.0"
  2489. },
  2490. "replace": {
  2491. "rhumsaa/uuid": "self.version"
  2492. },
  2493. "require-dev": {
  2494. "captainhook/captainhook": "^5.25",
  2495. "captainhook/plugin-composer": "^5.3",
  2496. "dealerdirect/phpcodesniffer-composer-installer": "^1.0",
  2497. "ergebnis/composer-normalize": "^2.47",
  2498. "mockery/mockery": "^1.6",
  2499. "paragonie/random-lib": "^2",
  2500. "php-mock/php-mock": "^2.6",
  2501. "php-mock/php-mock-mockery": "^1.5",
  2502. "php-parallel-lint/php-parallel-lint": "^1.4.0",
  2503. "phpbench/phpbench": "^1.2.14",
  2504. "phpstan/extension-installer": "^1.4",
  2505. "phpstan/phpstan": "^2.1",
  2506. "phpstan/phpstan-mockery": "^2.0",
  2507. "phpstan/phpstan-phpunit": "^2.0",
  2508. "phpunit/phpunit": "^9.6",
  2509. "slevomat/coding-standard": "^8.18",
  2510. "squizlabs/php_codesniffer": "^3.13"
  2511. },
  2512. "suggest": {
  2513. "ext-bcmath": "Enables faster math with arbitrary-precision integers using BCMath.",
  2514. "ext-gmp": "Enables faster math with arbitrary-precision integers using GMP.",
  2515. "ext-uuid": "Enables the use of PeclUuidTimeGenerator and PeclUuidRandomGenerator.",
  2516. "paragonie/random-lib": "Provides RandomLib for use with the RandomLibAdapter",
  2517. "ramsey/uuid-doctrine": "Allows the use of Ramsey\\Uuid\\Uuid as Doctrine field type."
  2518. },
  2519. "type": "library",
  2520. "extra": {
  2521. "captainhook": {
  2522. "force-install": true
  2523. }
  2524. },
  2525. "autoload": {
  2526. "files": [
  2527. "src/functions.php"
  2528. ],
  2529. "psr-4": {
  2530. "Ramsey\\Uuid\\": "src/"
  2531. }
  2532. },
  2533. "notification-url": "https://packagist.org/downloads/",
  2534. "license": [
  2535. "MIT"
  2536. ],
  2537. "description": "A PHP library for generating and working with universally unique identifiers (UUIDs).",
  2538. "keywords": [
  2539. "guid",
  2540. "identifier",
  2541. "uuid"
  2542. ],
  2543. "support": {
  2544. "issues": "https://github.com/ramsey/uuid/issues",
  2545. "source": "https://github.com/ramsey/uuid/tree/4.9.2"
  2546. },
  2547. "time": "2025-12-14T04:43:48+00:00"
  2548. },
  2549. {
  2550. "name": "riverline/multipart-parser",
  2551. "version": "2.2.2",
  2552. "source": {
  2553. "type": "git",
  2554. "url": "https://github.com/Riverline/multipart-parser.git",
  2555. "reference": "fadbb1c1f8e66f96eaa36ab8ed13cbc451c6ded7"
  2556. },
  2557. "dist": {
  2558. "type": "zip",
  2559. "url": "https://api.github.com/repos/Riverline/multipart-parser/zipball/fadbb1c1f8e66f96eaa36ab8ed13cbc451c6ded7",
  2560. "reference": "fadbb1c1f8e66f96eaa36ab8ed13cbc451c6ded7",
  2561. "shasum": ""
  2562. },
  2563. "require": {
  2564. "ext-mbstring": "*",
  2565. "php": ">=7.0"
  2566. },
  2567. "require-dev": {
  2568. "laminas/laminas-diactoros": "*",
  2569. "phpunit/phpunit": "*",
  2570. "psr/http-message": "*",
  2571. "symfony/psr-http-message-bridge": "*"
  2572. },
  2573. "type": "library",
  2574. "autoload": {
  2575. "psr-4": {
  2576. "Riverline\\MultiPartParser\\": "src/"
  2577. }
  2578. },
  2579. "notification-url": "https://packagist.org/downloads/",
  2580. "license": [
  2581. "MIT"
  2582. ],
  2583. "authors": [
  2584. {
  2585. "name": "Romain Cambien",
  2586. "email": "romain@cambien.net"
  2587. },
  2588. {
  2589. "name": "Riverline",
  2590. "homepage": "http://www.riverline.fr"
  2591. }
  2592. ],
  2593. "description": "One class library to parse multipart content with encoding and charset support.",
  2594. "keywords": [
  2595. "http",
  2596. "multipart",
  2597. "parser"
  2598. ],
  2599. "support": {
  2600. "issues": "https://github.com/Riverline/multipart-parser/issues",
  2601. "source": "https://github.com/Riverline/multipart-parser/tree/2.2.2"
  2602. },
  2603. "time": "2026-01-15T11:08:16+00:00"
  2604. },
  2605. {
  2606. "name": "rize/uri-template",
  2607. "version": "0.4.1",
  2608. "source": {
  2609. "type": "git",
  2610. "url": "https://github.com/rize/UriTemplate.git",
  2611. "reference": "abb53c8b73a5b6c24e11f49036ab842f560cad33"
  2612. },
  2613. "dist": {
  2614. "type": "zip",
  2615. "url": "https://api.github.com/repos/rize/UriTemplate/zipball/abb53c8b73a5b6c24e11f49036ab842f560cad33",
  2616. "reference": "abb53c8b73a5b6c24e11f49036ab842f560cad33",
  2617. "shasum": ""
  2618. },
  2619. "require": {
  2620. "php": ">=8.1"
  2621. },
  2622. "require-dev": {
  2623. "friendsofphp/php-cs-fixer": "^3.63",
  2624. "phpstan/phpstan": "^1.12",
  2625. "phpunit/phpunit": "~10.0"
  2626. },
  2627. "type": "library",
  2628. "autoload": {
  2629. "psr-4": {
  2630. "Rize\\": "src/Rize"
  2631. }
  2632. },
  2633. "notification-url": "https://packagist.org/downloads/",
  2634. "license": [
  2635. "MIT"
  2636. ],
  2637. "authors": [
  2638. {
  2639. "name": "Marut K",
  2640. "homepage": "http://twitter.com/rezigned"
  2641. }
  2642. ],
  2643. "description": "PHP URI Template (RFC 6570) supports both expansion & extraction",
  2644. "keywords": [
  2645. "RFC 6570",
  2646. "template",
  2647. "uri"
  2648. ],
  2649. "support": {
  2650. "issues": "https://github.com/rize/UriTemplate/issues",
  2651. "source": "https://github.com/rize/UriTemplate/tree/0.4.1"
  2652. },
  2653. "funding": [
  2654. {
  2655. "url": "https://www.paypal.me/rezigned",
  2656. "type": "custom"
  2657. },
  2658. {
  2659. "url": "https://github.com/rezigned",
  2660. "type": "github"
  2661. },
  2662. {
  2663. "url": "https://opencollective.com/rize-uri-template",
  2664. "type": "open_collective"
  2665. }
  2666. ],
  2667. "time": "2025-12-02T15:19:04+00:00"
  2668. },
  2669. {
  2670. "name": "stella-maris/clock",
  2671. "version": "0.1.7",
  2672. "source": {
  2673. "type": "git",
  2674. "url": "https://github.com/stella-maris-solutions/clock.git",
  2675. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8"
  2676. },
  2677. "dist": {
  2678. "type": "zip",
  2679. "url": "https://api.github.com/repos/stella-maris-solutions/clock/zipball/fa23ce16019289a18bb3446fdecd45befcdd94f8",
  2680. "reference": "fa23ce16019289a18bb3446fdecd45befcdd94f8",
  2681. "shasum": ""
  2682. },
  2683. "require": {
  2684. "php": "^7.0|^8.0",
  2685. "psr/clock": "^1.0"
  2686. },
  2687. "type": "library",
  2688. "autoload": {
  2689. "psr-4": {
  2690. "StellaMaris\\Clock\\": "src"
  2691. }
  2692. },
  2693. "notification-url": "https://packagist.org/downloads/",
  2694. "license": [
  2695. "MIT"
  2696. ],
  2697. "authors": [
  2698. {
  2699. "name": "Andreas Heigl",
  2700. "role": "Maintainer"
  2701. }
  2702. ],
  2703. "description": "A pre-release of the proposed PSR-20 Clock-Interface",
  2704. "homepage": "https://gitlab.com/stella-maris/clock",
  2705. "keywords": [
  2706. "clock",
  2707. "datetime",
  2708. "point in time",
  2709. "psr20"
  2710. ],
  2711. "support": {
  2712. "source": "https://github.com/stella-maris-solutions/clock/tree/0.1.7"
  2713. },
  2714. "time": "2022-11-25T16:15:06+00:00"
  2715. },
  2716. {
  2717. "name": "swiftmailer/swiftmailer",
  2718. "version": "v6.3.0",
  2719. "source": {
  2720. "type": "git",
  2721. "url": "https://github.com/swiftmailer/swiftmailer.git",
  2722. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c"
  2723. },
  2724. "dist": {
  2725. "type": "zip",
  2726. "url": "https://api.github.com/repos/swiftmailer/swiftmailer/zipball/8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2727. "reference": "8a5d5072dca8f48460fce2f4131fcc495eec654c",
  2728. "shasum": ""
  2729. },
  2730. "require": {
  2731. "egulias/email-validator": "^2.0|^3.1",
  2732. "php": ">=7.0.0",
  2733. "symfony/polyfill-iconv": "^1.0",
  2734. "symfony/polyfill-intl-idn": "^1.10",
  2735. "symfony/polyfill-mbstring": "^1.0"
  2736. },
  2737. "require-dev": {
  2738. "mockery/mockery": "^1.0",
  2739. "symfony/phpunit-bridge": "^4.4|^5.4"
  2740. },
  2741. "suggest": {
  2742. "ext-intl": "Needed to support internationalized email addresses"
  2743. },
  2744. "type": "library",
  2745. "extra": {
  2746. "branch-alias": {
  2747. "dev-master": "6.2-dev"
  2748. }
  2749. },
  2750. "autoload": {
  2751. "files": [
  2752. "lib/swift_required.php"
  2753. ]
  2754. },
  2755. "notification-url": "https://packagist.org/downloads/",
  2756. "license": [
  2757. "MIT"
  2758. ],
  2759. "authors": [
  2760. {
  2761. "name": "Chris Corbyn"
  2762. },
  2763. {
  2764. "name": "Fabien Potencier",
  2765. "email": "fabien@symfony.com"
  2766. }
  2767. ],
  2768. "description": "Swiftmailer, free feature-rich PHP mailer",
  2769. "homepage": "https://swiftmailer.symfony.com",
  2770. "keywords": [
  2771. "email",
  2772. "mail",
  2773. "mailer"
  2774. ],
  2775. "support": {
  2776. "issues": "https://github.com/swiftmailer/swiftmailer/issues",
  2777. "source": "https://github.com/swiftmailer/swiftmailer/tree/v6.3.0"
  2778. },
  2779. "funding": [
  2780. {
  2781. "url": "https://github.com/fabpot",
  2782. "type": "github"
  2783. },
  2784. {
  2785. "url": "https://tidelift.com/funding/github/packagist/swiftmailer/swiftmailer",
  2786. "type": "tidelift"
  2787. }
  2788. ],
  2789. "abandoned": "symfony/mailer",
  2790. "time": "2021-10-18T15:26:12+00:00"
  2791. },
  2792. {
  2793. "name": "symfony/deprecation-contracts",
  2794. "version": "v3.6.0",
  2795. "source": {
  2796. "type": "git",
  2797. "url": "https://github.com/symfony/deprecation-contracts.git",
  2798. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62"
  2799. },
  2800. "dist": {
  2801. "type": "zip",
  2802. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2803. "reference": "63afe740e99a13ba87ec199bb07bbdee937a5b62",
  2804. "shasum": ""
  2805. },
  2806. "require": {
  2807. "php": ">=8.1"
  2808. },
  2809. "type": "library",
  2810. "extra": {
  2811. "thanks": {
  2812. "url": "https://github.com/symfony/contracts",
  2813. "name": "symfony/contracts"
  2814. },
  2815. "branch-alias": {
  2816. "dev-main": "3.6-dev"
  2817. }
  2818. },
  2819. "autoload": {
  2820. "files": [
  2821. "function.php"
  2822. ]
  2823. },
  2824. "notification-url": "https://packagist.org/downloads/",
  2825. "license": [
  2826. "MIT"
  2827. ],
  2828. "authors": [
  2829. {
  2830. "name": "Nicolas Grekas",
  2831. "email": "p@tchwork.com"
  2832. },
  2833. {
  2834. "name": "Symfony Community",
  2835. "homepage": "https://symfony.com/contributors"
  2836. }
  2837. ],
  2838. "description": "A generic function and convention to trigger deprecation notices",
  2839. "homepage": "https://symfony.com",
  2840. "support": {
  2841. "source": "https://github.com/symfony/deprecation-contracts/tree/v3.6.0"
  2842. },
  2843. "funding": [
  2844. {
  2845. "url": "https://symfony.com/sponsor",
  2846. "type": "custom"
  2847. },
  2848. {
  2849. "url": "https://github.com/fabpot",
  2850. "type": "github"
  2851. },
  2852. {
  2853. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2854. "type": "tidelift"
  2855. }
  2856. ],
  2857. "time": "2024-09-25T14:21:43+00:00"
  2858. },
  2859. {
  2860. "name": "symfony/polyfill-iconv",
  2861. "version": "v1.33.0",
  2862. "source": {
  2863. "type": "git",
  2864. "url": "https://github.com/symfony/polyfill-iconv.git",
  2865. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa"
  2866. },
  2867. "dist": {
  2868. "type": "zip",
  2869. "url": "https://api.github.com/repos/symfony/polyfill-iconv/zipball/5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  2870. "reference": "5f3b930437ae03ae5dff61269024d8ea1b3774aa",
  2871. "shasum": ""
  2872. },
  2873. "require": {
  2874. "php": ">=7.2"
  2875. },
  2876. "provide": {
  2877. "ext-iconv": "*"
  2878. },
  2879. "suggest": {
  2880. "ext-iconv": "For best performance"
  2881. },
  2882. "type": "library",
  2883. "extra": {
  2884. "thanks": {
  2885. "url": "https://github.com/symfony/polyfill",
  2886. "name": "symfony/polyfill"
  2887. }
  2888. },
  2889. "autoload": {
  2890. "files": [
  2891. "bootstrap.php"
  2892. ],
  2893. "psr-4": {
  2894. "Symfony\\Polyfill\\Iconv\\": ""
  2895. }
  2896. },
  2897. "notification-url": "https://packagist.org/downloads/",
  2898. "license": [
  2899. "MIT"
  2900. ],
  2901. "authors": [
  2902. {
  2903. "name": "Nicolas Grekas",
  2904. "email": "p@tchwork.com"
  2905. },
  2906. {
  2907. "name": "Symfony Community",
  2908. "homepage": "https://symfony.com/contributors"
  2909. }
  2910. ],
  2911. "description": "Symfony polyfill for the Iconv extension",
  2912. "homepage": "https://symfony.com",
  2913. "keywords": [
  2914. "compatibility",
  2915. "iconv",
  2916. "polyfill",
  2917. "portable",
  2918. "shim"
  2919. ],
  2920. "support": {
  2921. "source": "https://github.com/symfony/polyfill-iconv/tree/v1.33.0"
  2922. },
  2923. "funding": [
  2924. {
  2925. "url": "https://symfony.com/sponsor",
  2926. "type": "custom"
  2927. },
  2928. {
  2929. "url": "https://github.com/fabpot",
  2930. "type": "github"
  2931. },
  2932. {
  2933. "url": "https://github.com/nicolas-grekas",
  2934. "type": "github"
  2935. },
  2936. {
  2937. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  2938. "type": "tidelift"
  2939. }
  2940. ],
  2941. "time": "2024-09-17T14:58:18+00:00"
  2942. },
  2943. {
  2944. "name": "symfony/polyfill-intl-idn",
  2945. "version": "v1.33.0",
  2946. "source": {
  2947. "type": "git",
  2948. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  2949. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3"
  2950. },
  2951. "dist": {
  2952. "type": "zip",
  2953. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  2954. "reference": "9614ac4d8061dc257ecc64cba1b140873dce8ad3",
  2955. "shasum": ""
  2956. },
  2957. "require": {
  2958. "php": ">=7.2",
  2959. "symfony/polyfill-intl-normalizer": "^1.10"
  2960. },
  2961. "suggest": {
  2962. "ext-intl": "For best performance"
  2963. },
  2964. "type": "library",
  2965. "extra": {
  2966. "thanks": {
  2967. "url": "https://github.com/symfony/polyfill",
  2968. "name": "symfony/polyfill"
  2969. }
  2970. },
  2971. "autoload": {
  2972. "files": [
  2973. "bootstrap.php"
  2974. ],
  2975. "psr-4": {
  2976. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  2977. }
  2978. },
  2979. "notification-url": "https://packagist.org/downloads/",
  2980. "license": [
  2981. "MIT"
  2982. ],
  2983. "authors": [
  2984. {
  2985. "name": "Laurent Bassin",
  2986. "email": "laurent@bassin.info"
  2987. },
  2988. {
  2989. "name": "Trevor Rowbotham",
  2990. "email": "trevor.rowbotham@pm.me"
  2991. },
  2992. {
  2993. "name": "Symfony Community",
  2994. "homepage": "https://symfony.com/contributors"
  2995. }
  2996. ],
  2997. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  2998. "homepage": "https://symfony.com",
  2999. "keywords": [
  3000. "compatibility",
  3001. "idn",
  3002. "intl",
  3003. "polyfill",
  3004. "portable",
  3005. "shim"
  3006. ],
  3007. "support": {
  3008. "source": "https://github.com/symfony/polyfill-intl-idn/tree/v1.33.0"
  3009. },
  3010. "funding": [
  3011. {
  3012. "url": "https://symfony.com/sponsor",
  3013. "type": "custom"
  3014. },
  3015. {
  3016. "url": "https://github.com/fabpot",
  3017. "type": "github"
  3018. },
  3019. {
  3020. "url": "https://github.com/nicolas-grekas",
  3021. "type": "github"
  3022. },
  3023. {
  3024. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3025. "type": "tidelift"
  3026. }
  3027. ],
  3028. "time": "2024-09-10T14:38:51+00:00"
  3029. },
  3030. {
  3031. "name": "symfony/polyfill-intl-normalizer",
  3032. "version": "v1.33.0",
  3033. "source": {
  3034. "type": "git",
  3035. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  3036. "reference": "3833d7255cc303546435cb650316bff708a1c75c"
  3037. },
  3038. "dist": {
  3039. "type": "zip",
  3040. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/3833d7255cc303546435cb650316bff708a1c75c",
  3041. "reference": "3833d7255cc303546435cb650316bff708a1c75c",
  3042. "shasum": ""
  3043. },
  3044. "require": {
  3045. "php": ">=7.2"
  3046. },
  3047. "suggest": {
  3048. "ext-intl": "For best performance"
  3049. },
  3050. "type": "library",
  3051. "extra": {
  3052. "thanks": {
  3053. "url": "https://github.com/symfony/polyfill",
  3054. "name": "symfony/polyfill"
  3055. }
  3056. },
  3057. "autoload": {
  3058. "files": [
  3059. "bootstrap.php"
  3060. ],
  3061. "psr-4": {
  3062. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  3063. },
  3064. "classmap": [
  3065. "Resources/stubs"
  3066. ]
  3067. },
  3068. "notification-url": "https://packagist.org/downloads/",
  3069. "license": [
  3070. "MIT"
  3071. ],
  3072. "authors": [
  3073. {
  3074. "name": "Nicolas Grekas",
  3075. "email": "p@tchwork.com"
  3076. },
  3077. {
  3078. "name": "Symfony Community",
  3079. "homepage": "https://symfony.com/contributors"
  3080. }
  3081. ],
  3082. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  3083. "homepage": "https://symfony.com",
  3084. "keywords": [
  3085. "compatibility",
  3086. "intl",
  3087. "normalizer",
  3088. "polyfill",
  3089. "portable",
  3090. "shim"
  3091. ],
  3092. "support": {
  3093. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.33.0"
  3094. },
  3095. "funding": [
  3096. {
  3097. "url": "https://symfony.com/sponsor",
  3098. "type": "custom"
  3099. },
  3100. {
  3101. "url": "https://github.com/fabpot",
  3102. "type": "github"
  3103. },
  3104. {
  3105. "url": "https://github.com/nicolas-grekas",
  3106. "type": "github"
  3107. },
  3108. {
  3109. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3110. "type": "tidelift"
  3111. }
  3112. ],
  3113. "time": "2024-09-09T11:45:10+00:00"
  3114. },
  3115. {
  3116. "name": "symfony/polyfill-mbstring",
  3117. "version": "v1.33.0",
  3118. "source": {
  3119. "type": "git",
  3120. "url": "https://github.com/symfony/polyfill-mbstring.git",
  3121. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493"
  3122. },
  3123. "dist": {
  3124. "type": "zip",
  3125. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/6d857f4d76bd4b343eac26d6b539585d2bc56493",
  3126. "reference": "6d857f4d76bd4b343eac26d6b539585d2bc56493",
  3127. "shasum": ""
  3128. },
  3129. "require": {
  3130. "ext-iconv": "*",
  3131. "php": ">=7.2"
  3132. },
  3133. "provide": {
  3134. "ext-mbstring": "*"
  3135. },
  3136. "suggest": {
  3137. "ext-mbstring": "For best performance"
  3138. },
  3139. "type": "library",
  3140. "extra": {
  3141. "thanks": {
  3142. "url": "https://github.com/symfony/polyfill",
  3143. "name": "symfony/polyfill"
  3144. }
  3145. },
  3146. "autoload": {
  3147. "files": [
  3148. "bootstrap.php"
  3149. ],
  3150. "psr-4": {
  3151. "Symfony\\Polyfill\\Mbstring\\": ""
  3152. }
  3153. },
  3154. "notification-url": "https://packagist.org/downloads/",
  3155. "license": [
  3156. "MIT"
  3157. ],
  3158. "authors": [
  3159. {
  3160. "name": "Nicolas Grekas",
  3161. "email": "p@tchwork.com"
  3162. },
  3163. {
  3164. "name": "Symfony Community",
  3165. "homepage": "https://symfony.com/contributors"
  3166. }
  3167. ],
  3168. "description": "Symfony polyfill for the Mbstring extension",
  3169. "homepage": "https://symfony.com",
  3170. "keywords": [
  3171. "compatibility",
  3172. "mbstring",
  3173. "polyfill",
  3174. "portable",
  3175. "shim"
  3176. ],
  3177. "support": {
  3178. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.33.0"
  3179. },
  3180. "funding": [
  3181. {
  3182. "url": "https://symfony.com/sponsor",
  3183. "type": "custom"
  3184. },
  3185. {
  3186. "url": "https://github.com/fabpot",
  3187. "type": "github"
  3188. },
  3189. {
  3190. "url": "https://github.com/nicolas-grekas",
  3191. "type": "github"
  3192. },
  3193. {
  3194. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3195. "type": "tidelift"
  3196. }
  3197. ],
  3198. "time": "2024-12-23T08:48:59+00:00"
  3199. },
  3200. {
  3201. "name": "symfony/polyfill-php80",
  3202. "version": "v1.33.0",
  3203. "source": {
  3204. "type": "git",
  3205. "url": "https://github.com/symfony/polyfill-php80.git",
  3206. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608"
  3207. },
  3208. "dist": {
  3209. "type": "zip",
  3210. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  3211. "reference": "0cc9dd0f17f61d8131e7df6b84bd344899fe2608",
  3212. "shasum": ""
  3213. },
  3214. "require": {
  3215. "php": ">=7.2"
  3216. },
  3217. "type": "library",
  3218. "extra": {
  3219. "thanks": {
  3220. "url": "https://github.com/symfony/polyfill",
  3221. "name": "symfony/polyfill"
  3222. }
  3223. },
  3224. "autoload": {
  3225. "files": [
  3226. "bootstrap.php"
  3227. ],
  3228. "psr-4": {
  3229. "Symfony\\Polyfill\\Php80\\": ""
  3230. },
  3231. "classmap": [
  3232. "Resources/stubs"
  3233. ]
  3234. },
  3235. "notification-url": "https://packagist.org/downloads/",
  3236. "license": [
  3237. "MIT"
  3238. ],
  3239. "authors": [
  3240. {
  3241. "name": "Ion Bazan",
  3242. "email": "ion.bazan@gmail.com"
  3243. },
  3244. {
  3245. "name": "Nicolas Grekas",
  3246. "email": "p@tchwork.com"
  3247. },
  3248. {
  3249. "name": "Symfony Community",
  3250. "homepage": "https://symfony.com/contributors"
  3251. }
  3252. ],
  3253. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  3254. "homepage": "https://symfony.com",
  3255. "keywords": [
  3256. "compatibility",
  3257. "polyfill",
  3258. "portable",
  3259. "shim"
  3260. ],
  3261. "support": {
  3262. "source": "https://github.com/symfony/polyfill-php80/tree/v1.33.0"
  3263. },
  3264. "funding": [
  3265. {
  3266. "url": "https://symfony.com/sponsor",
  3267. "type": "custom"
  3268. },
  3269. {
  3270. "url": "https://github.com/fabpot",
  3271. "type": "github"
  3272. },
  3273. {
  3274. "url": "https://github.com/nicolas-grekas",
  3275. "type": "github"
  3276. },
  3277. {
  3278. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3279. "type": "tidelift"
  3280. }
  3281. ],
  3282. "time": "2025-01-02T08:10:11+00:00"
  3283. },
  3284. {
  3285. "name": "symfony/polyfill-php81",
  3286. "version": "v1.33.0",
  3287. "source": {
  3288. "type": "git",
  3289. "url": "https://github.com/symfony/polyfill-php81.git",
  3290. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c"
  3291. },
  3292. "dist": {
  3293. "type": "zip",
  3294. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  3295. "reference": "4a4cfc2d253c21a5ad0e53071df248ed48c6ce5c",
  3296. "shasum": ""
  3297. },
  3298. "require": {
  3299. "php": ">=7.2"
  3300. },
  3301. "type": "library",
  3302. "extra": {
  3303. "thanks": {
  3304. "url": "https://github.com/symfony/polyfill",
  3305. "name": "symfony/polyfill"
  3306. }
  3307. },
  3308. "autoload": {
  3309. "files": [
  3310. "bootstrap.php"
  3311. ],
  3312. "psr-4": {
  3313. "Symfony\\Polyfill\\Php81\\": ""
  3314. },
  3315. "classmap": [
  3316. "Resources/stubs"
  3317. ]
  3318. },
  3319. "notification-url": "https://packagist.org/downloads/",
  3320. "license": [
  3321. "MIT"
  3322. ],
  3323. "authors": [
  3324. {
  3325. "name": "Nicolas Grekas",
  3326. "email": "p@tchwork.com"
  3327. },
  3328. {
  3329. "name": "Symfony Community",
  3330. "homepage": "https://symfony.com/contributors"
  3331. }
  3332. ],
  3333. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  3334. "homepage": "https://symfony.com",
  3335. "keywords": [
  3336. "compatibility",
  3337. "polyfill",
  3338. "portable",
  3339. "shim"
  3340. ],
  3341. "support": {
  3342. "source": "https://github.com/symfony/polyfill-php81/tree/v1.33.0"
  3343. },
  3344. "funding": [
  3345. {
  3346. "url": "https://symfony.com/sponsor",
  3347. "type": "custom"
  3348. },
  3349. {
  3350. "url": "https://github.com/fabpot",
  3351. "type": "github"
  3352. },
  3353. {
  3354. "url": "https://github.com/nicolas-grekas",
  3355. "type": "github"
  3356. },
  3357. {
  3358. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  3359. "type": "tidelift"
  3360. }
  3361. ],
  3362. "time": "2024-09-09T11:45:10+00:00"
  3363. },
  3364. {
  3365. "name": "yiisoft/yii2",
  3366. "version": "2.0.54",
  3367. "source": {
  3368. "type": "git",
  3369. "url": "https://github.com/yiisoft/yii2-framework.git",
  3370. "reference": "99daebf2de0b031d129706a5db6ce0802c70bac9"
  3371. },
  3372. "dist": {
  3373. "type": "zip",
  3374. "url": "https://api.github.com/repos/yiisoft/yii2-framework/zipball/99daebf2de0b031d129706a5db6ce0802c70bac9",
  3375. "reference": "99daebf2de0b031d129706a5db6ce0802c70bac9",
  3376. "shasum": ""
  3377. },
  3378. "require": {
  3379. "bower-asset/inputmask": "^5.0.8 ",
  3380. "bower-asset/jquery": "3.7.*@stable | 3.6.*@stable | 3.5.*@stable | 3.4.*@stable | 3.3.*@stable | 3.2.*@stable | 3.1.*@stable | 2.2.*@stable | 2.1.*@stable | 1.11.*@stable | 1.12.*@stable",
  3381. "bower-asset/punycode": "^2.2",
  3382. "bower-asset/yii2-pjax": "~2.0.1",
  3383. "cebe/markdown": "~1.0.0 | ~1.1.0 | ~1.2.0",
  3384. "ext-ctype": "*",
  3385. "ext-mbstring": "*",
  3386. "ezyang/htmlpurifier": "^4.17",
  3387. "lib-pcre": "*",
  3388. "php": ">=7.4.0",
  3389. "yiisoft/yii2-composer": "~2.0.4"
  3390. },
  3391. "bin": [
  3392. "yii"
  3393. ],
  3394. "type": "library",
  3395. "extra": {
  3396. "branch-alias": {
  3397. "dev-master": "2.0.x-dev"
  3398. }
  3399. },
  3400. "autoload": {
  3401. "psr-4": {
  3402. "yii\\": ""
  3403. }
  3404. },
  3405. "notification-url": "https://packagist.org/downloads/",
  3406. "license": [
  3407. "BSD-3-Clause"
  3408. ],
  3409. "authors": [
  3410. {
  3411. "name": "Qiang Xue",
  3412. "email": "qiang.xue@gmail.com",
  3413. "homepage": "https://www.yiiframework.com/",
  3414. "role": "Founder and project lead"
  3415. },
  3416. {
  3417. "name": "Alexander Makarov",
  3418. "email": "sam@rmcreative.ru",
  3419. "homepage": "https://rmcreative.ru/",
  3420. "role": "Core framework development"
  3421. },
  3422. {
  3423. "name": "Maurizio Domba",
  3424. "homepage": "http://mdomba.info/",
  3425. "role": "Core framework development"
  3426. },
  3427. {
  3428. "name": "Carsten Brandt",
  3429. "email": "mail@cebe.cc",
  3430. "homepage": "https://www.cebe.cc/",
  3431. "role": "Core framework development"
  3432. },
  3433. {
  3434. "name": "Timur Ruziev",
  3435. "email": "resurtm@gmail.com",
  3436. "homepage": "http://resurtm.com/",
  3437. "role": "Core framework development"
  3438. },
  3439. {
  3440. "name": "Paul Klimov",
  3441. "email": "klimov.paul@gmail.com",
  3442. "role": "Core framework development"
  3443. },
  3444. {
  3445. "name": "Dmitry Naumenko",
  3446. "email": "d.naumenko.a@gmail.com",
  3447. "role": "Core framework development"
  3448. },
  3449. {
  3450. "name": "Boudewijn Vahrmeijer",
  3451. "email": "info@dynasource.eu",
  3452. "homepage": "http://dynasource.eu",
  3453. "role": "Core framework development"
  3454. }
  3455. ],
  3456. "description": "Yii PHP Framework Version 2",
  3457. "homepage": "https://www.yiiframework.com/",
  3458. "keywords": [
  3459. "framework",
  3460. "yii2"
  3461. ],
  3462. "support": {
  3463. "forum": "https://forum.yiiframework.com/",
  3464. "irc": "ircs://irc.libera.chat:6697/yii",
  3465. "issues": "https://github.com/yiisoft/yii2/issues?state=open",
  3466. "source": "https://github.com/yiisoft/yii2",
  3467. "wiki": "https://www.yiiframework.com/wiki"
  3468. },
  3469. "funding": [
  3470. {
  3471. "url": "https://github.com/yiisoft",
  3472. "type": "github"
  3473. },
  3474. {
  3475. "url": "https://opencollective.com/yiisoft",
  3476. "type": "open_collective"
  3477. },
  3478. {
  3479. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2",
  3480. "type": "tidelift"
  3481. }
  3482. ],
  3483. "time": "2026-01-09T22:24:11+00:00"
  3484. },
  3485. {
  3486. "name": "yiisoft/yii2-bootstrap4",
  3487. "version": "2.0.12",
  3488. "source": {
  3489. "type": "git",
  3490. "url": "https://github.com/yiisoft/yii2-bootstrap4.git",
  3491. "reference": "49f9b70de3f5ab55ea1dc1ea57021a6bf91b3102"
  3492. },
  3493. "dist": {
  3494. "type": "zip",
  3495. "url": "https://api.github.com/repos/yiisoft/yii2-bootstrap4/zipball/49f9b70de3f5ab55ea1dc1ea57021a6bf91b3102",
  3496. "reference": "49f9b70de3f5ab55ea1dc1ea57021a6bf91b3102",
  3497. "shasum": ""
  3498. },
  3499. "require": {
  3500. "npm-asset/bootstrap": "^4.3",
  3501. "yiisoft/yii2": "^2.0.43"
  3502. },
  3503. "require-dev": {
  3504. "cweagans/composer-patches": "^1.7",
  3505. "phpunit/phpunit": "4.8.34",
  3506. "yiisoft/yii2-coding-standards": "~2.0"
  3507. },
  3508. "type": "yii2-extension",
  3509. "extra": {
  3510. "patches": {
  3511. "phpunit/phpunit": {
  3512. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  3513. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  3514. },
  3515. "phpunit/phpunit-mock-objects": {
  3516. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  3517. }
  3518. },
  3519. "branch-alias": {
  3520. "dev-master": "1.0.x-dev"
  3521. }
  3522. },
  3523. "autoload": {
  3524. "psr-4": {
  3525. "yii\\bootstrap4\\": "src"
  3526. }
  3527. },
  3528. "notification-url": "https://packagist.org/downloads/",
  3529. "license": [
  3530. "BSD-3-Clause"
  3531. ],
  3532. "authors": [
  3533. {
  3534. "name": "Qiang Xue",
  3535. "email": "qiang.xue@gmail.com",
  3536. "homepage": "https://www.yiiframework.com/"
  3537. },
  3538. {
  3539. "name": "Alexander Makarov",
  3540. "email": "sam@rmcreative.ru",
  3541. "homepage": "https://rmcreative.ru/"
  3542. },
  3543. {
  3544. "name": "Antonio Ramirez",
  3545. "email": "amigo.cobos@gmail.com"
  3546. },
  3547. {
  3548. "name": "Paul Klimov",
  3549. "email": "klimov.paul@gmail.com"
  3550. },
  3551. {
  3552. "name": "Simon Karlen",
  3553. "email": "simi.albi@outlook.com"
  3554. }
  3555. ],
  3556. "description": "The Twitter Bootstrap extension for the Yii framework",
  3557. "keywords": [
  3558. "bootstrap",
  3559. "bootstrap4",
  3560. "yii2"
  3561. ],
  3562. "support": {
  3563. "forum": "https://www.yiiframework.com/forum/",
  3564. "irc": "ircs://irc.libera.chat:6697/yii",
  3565. "issues": "https://github.com/yiisoft/yii2-bootstrap4/issues",
  3566. "source": "https://github.com/yiisoft/yii2-bootstrap4",
  3567. "wiki": "https://www.yiiframework.com/wiki/"
  3568. },
  3569. "funding": [
  3570. {
  3571. "url": "https://github.com/yiisoft",
  3572. "type": "github"
  3573. },
  3574. {
  3575. "url": "https://opencollective.com/yiisoft",
  3576. "type": "open_collective"
  3577. },
  3578. {
  3579. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-bootstrap4",
  3580. "type": "tidelift"
  3581. }
  3582. ],
  3583. "time": "2025-02-13T21:11:27+00:00"
  3584. },
  3585. {
  3586. "name": "yiisoft/yii2-composer",
  3587. "version": "2.0.11",
  3588. "source": {
  3589. "type": "git",
  3590. "url": "https://github.com/yiisoft/yii2-composer.git",
  3591. "reference": "b684b01ecb119c8287721def726a0e24fec2fef2"
  3592. },
  3593. "dist": {
  3594. "type": "zip",
  3595. "url": "https://api.github.com/repos/yiisoft/yii2-composer/zipball/b684b01ecb119c8287721def726a0e24fec2fef2",
  3596. "reference": "b684b01ecb119c8287721def726a0e24fec2fef2",
  3597. "shasum": ""
  3598. },
  3599. "require": {
  3600. "composer-plugin-api": "^1.0 | ^2.0"
  3601. },
  3602. "require-dev": {
  3603. "composer/composer": "^1.0 | ^2.0@dev",
  3604. "phpunit/phpunit": "<7"
  3605. },
  3606. "type": "composer-plugin",
  3607. "extra": {
  3608. "class": "yii\\composer\\Plugin",
  3609. "branch-alias": {
  3610. "dev-master": "2.0.x-dev"
  3611. }
  3612. },
  3613. "autoload": {
  3614. "psr-4": {
  3615. "yii\\composer\\": ""
  3616. }
  3617. },
  3618. "notification-url": "https://packagist.org/downloads/",
  3619. "license": [
  3620. "BSD-3-Clause"
  3621. ],
  3622. "authors": [
  3623. {
  3624. "name": "Qiang Xue",
  3625. "email": "qiang.xue@gmail.com"
  3626. },
  3627. {
  3628. "name": "Carsten Brandt",
  3629. "email": "mail@cebe.cc"
  3630. }
  3631. ],
  3632. "description": "The composer plugin for Yii extension installer",
  3633. "keywords": [
  3634. "composer",
  3635. "extension installer",
  3636. "yii2"
  3637. ],
  3638. "support": {
  3639. "forum": "https://www.yiiframework.com/forum/",
  3640. "irc": "ircs://irc.libera.chat:6697/yii",
  3641. "issues": "https://github.com/yiisoft/yii2-composer/issues",
  3642. "source": "https://github.com/yiisoft/yii2-composer",
  3643. "wiki": "https://www.yiiframework.com/wiki/"
  3644. },
  3645. "funding": [
  3646. {
  3647. "url": "https://github.com/yiisoft",
  3648. "type": "github"
  3649. },
  3650. {
  3651. "url": "https://opencollective.com/yiisoft",
  3652. "type": "open_collective"
  3653. },
  3654. {
  3655. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-composer",
  3656. "type": "tidelift"
  3657. }
  3658. ],
  3659. "time": "2025-02-13T20:59:36+00:00"
  3660. },
  3661. {
  3662. "name": "yiisoft/yii2-swiftmailer",
  3663. "version": "2.1.3",
  3664. "source": {
  3665. "type": "git",
  3666. "url": "https://github.com/yiisoft/yii2-swiftmailer.git",
  3667. "reference": "7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340"
  3668. },
  3669. "dist": {
  3670. "type": "zip",
  3671. "url": "https://api.github.com/repos/yiisoft/yii2-swiftmailer/zipball/7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340",
  3672. "reference": "7b7ec871b4a63c0abbcd10e1ee3fb5be22f8b340",
  3673. "shasum": ""
  3674. },
  3675. "require": {
  3676. "swiftmailer/swiftmailer": "~6.0",
  3677. "yiisoft/yii2": ">=2.0.4"
  3678. },
  3679. "require-dev": {
  3680. "cweagans/composer-patches": "^1.7",
  3681. "phpunit/phpunit": "4.8.34"
  3682. },
  3683. "type": "yii2-extension",
  3684. "extra": {
  3685. "patches": {
  3686. "phpunit/phpunit": {
  3687. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  3688. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  3689. },
  3690. "phpunit/phpunit-mock-objects": {
  3691. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  3692. }
  3693. },
  3694. "branch-alias": {
  3695. "dev-master": "2.1.x-dev"
  3696. },
  3697. "composer-exit-on-patch-failure": true
  3698. },
  3699. "autoload": {
  3700. "psr-4": {
  3701. "yii\\swiftmailer\\": "src"
  3702. }
  3703. },
  3704. "notification-url": "https://packagist.org/downloads/",
  3705. "license": [
  3706. "BSD-3-Clause"
  3707. ],
  3708. "authors": [
  3709. {
  3710. "name": "Paul Klimov",
  3711. "email": "klimov.paul@gmail.com"
  3712. }
  3713. ],
  3714. "description": "The SwiftMailer integration for the Yii framework",
  3715. "keywords": [
  3716. "email",
  3717. "mail",
  3718. "mailer",
  3719. "swift",
  3720. "swiftmailer",
  3721. "yii2"
  3722. ],
  3723. "support": {
  3724. "forum": "http://www.yiiframework.com/forum/",
  3725. "irc": "irc://irc.freenode.net/yii",
  3726. "issues": "https://github.com/yiisoft/yii2-swiftmailer/issues",
  3727. "source": "https://github.com/yiisoft/yii2-swiftmailer",
  3728. "wiki": "http://www.yiiframework.com/wiki/"
  3729. },
  3730. "funding": [
  3731. {
  3732. "url": "https://github.com/yiisoft",
  3733. "type": "github"
  3734. },
  3735. {
  3736. "url": "https://opencollective.com/yiisoft",
  3737. "type": "open_collective"
  3738. },
  3739. {
  3740. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-swiftmailer",
  3741. "type": "tidelift"
  3742. }
  3743. ],
  3744. "time": "2021-12-30T08:48:48+00:00"
  3745. }
  3746. ],
  3747. "packages-dev": [
  3748. {
  3749. "name": "behat/gherkin",
  3750. "version": "v4.16.1",
  3751. "source": {
  3752. "type": "git",
  3753. "url": "https://github.com/Behat/Gherkin.git",
  3754. "reference": "e26037937dfd48528746764dd870bc5d0836665f"
  3755. },
  3756. "dist": {
  3757. "type": "zip",
  3758. "url": "https://api.github.com/repos/Behat/Gherkin/zipball/e26037937dfd48528746764dd870bc5d0836665f",
  3759. "reference": "e26037937dfd48528746764dd870bc5d0836665f",
  3760. "shasum": ""
  3761. },
  3762. "require": {
  3763. "composer-runtime-api": "^2.2",
  3764. "php": ">=8.1 <8.6"
  3765. },
  3766. "require-dev": {
  3767. "cucumber/gherkin-monorepo": "dev-gherkin-v37.0.0",
  3768. "friendsofphp/php-cs-fixer": "^3.77",
  3769. "mikey179/vfsstream": "^1.6",
  3770. "phpstan/extension-installer": "^1",
  3771. "phpstan/phpstan": "^2",
  3772. "phpstan/phpstan-phpunit": "^2",
  3773. "phpunit/phpunit": "^10.5",
  3774. "symfony/yaml": "^5.4 || ^6.4 || ^7.0"
  3775. },
  3776. "suggest": {
  3777. "symfony/yaml": "If you want to parse features, represented in YAML files"
  3778. },
  3779. "type": "library",
  3780. "extra": {
  3781. "branch-alias": {
  3782. "dev-master": "4.x-dev"
  3783. }
  3784. },
  3785. "autoload": {
  3786. "psr-4": {
  3787. "Behat\\Gherkin\\": "src/"
  3788. }
  3789. },
  3790. "notification-url": "https://packagist.org/downloads/",
  3791. "license": [
  3792. "MIT"
  3793. ],
  3794. "authors": [
  3795. {
  3796. "name": "Konstantin Kudryashov",
  3797. "email": "ever.zet@gmail.com",
  3798. "homepage": "https://everzet.com"
  3799. }
  3800. ],
  3801. "description": "Gherkin DSL parser for PHP",
  3802. "homepage": "https://behat.org/",
  3803. "keywords": [
  3804. "BDD",
  3805. "Behat",
  3806. "Cucumber",
  3807. "DSL",
  3808. "gherkin",
  3809. "parser"
  3810. ],
  3811. "support": {
  3812. "issues": "https://github.com/Behat/Gherkin/issues",
  3813. "source": "https://github.com/Behat/Gherkin/tree/v4.16.1"
  3814. },
  3815. "funding": [
  3816. {
  3817. "url": "https://github.com/acoulton",
  3818. "type": "github"
  3819. },
  3820. {
  3821. "url": "https://github.com/carlos-granados",
  3822. "type": "github"
  3823. },
  3824. {
  3825. "url": "https://github.com/stof",
  3826. "type": "github"
  3827. }
  3828. ],
  3829. "time": "2025-12-08T16:12:58+00:00"
  3830. },
  3831. {
  3832. "name": "codeception/codeception",
  3833. "version": "4.2.2",
  3834. "source": {
  3835. "type": "git",
  3836. "url": "https://github.com/Codeception/Codeception.git",
  3837. "reference": "b88014f3348c93f3df99dc6d0967b0dbfa804474"
  3838. },
  3839. "dist": {
  3840. "type": "zip",
  3841. "url": "https://api.github.com/repos/Codeception/Codeception/zipball/b88014f3348c93f3df99dc6d0967b0dbfa804474",
  3842. "reference": "b88014f3348c93f3df99dc6d0967b0dbfa804474",
  3843. "shasum": ""
  3844. },
  3845. "require": {
  3846. "behat/gherkin": "^4.4.0",
  3847. "codeception/lib-asserts": "^1.0 | 2.0.*@dev",
  3848. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.1.1 | ^9.0",
  3849. "codeception/stub": "^2.0 | ^3.0 | ^4.0",
  3850. "ext-curl": "*",
  3851. "ext-json": "*",
  3852. "ext-mbstring": "*",
  3853. "guzzlehttp/psr7": "^1.4 | ^2.0",
  3854. "php": ">=5.6.0 <9.0",
  3855. "symfony/console": ">=2.7 <6.0",
  3856. "symfony/css-selector": ">=2.7 <6.0",
  3857. "symfony/event-dispatcher": ">=2.7 <6.0",
  3858. "symfony/finder": ">=2.7 <6.0",
  3859. "symfony/yaml": ">=2.7 <6.0"
  3860. },
  3861. "require-dev": {
  3862. "codeception/module-asserts": "^1.0 | 2.0.*@dev",
  3863. "codeception/module-cli": "^1.0 | 2.0.*@dev",
  3864. "codeception/module-db": "^1.0 | 2.0.*@dev",
  3865. "codeception/module-filesystem": "^1.0 | 2.0.*@dev",
  3866. "codeception/module-phpbrowser": "^1.0 | 2.0.*@dev",
  3867. "codeception/specify": "~0.3",
  3868. "codeception/util-universalframework": "*@dev",
  3869. "monolog/monolog": "~1.8",
  3870. "squizlabs/php_codesniffer": "~2.0",
  3871. "symfony/process": ">=2.7 <6.0",
  3872. "vlucas/phpdotenv": "^2.0 | ^3.0 | ^4.0 | ^5.0"
  3873. },
  3874. "suggest": {
  3875. "codeception/specify": "BDD-style code blocks",
  3876. "codeception/verify": "BDD-style assertions",
  3877. "hoa/console": "For interactive console functionality",
  3878. "stecman/symfony-console-completion": "For BASH autocompletion",
  3879. "symfony/phpunit-bridge": "For phpunit-bridge support"
  3880. },
  3881. "bin": [
  3882. "codecept"
  3883. ],
  3884. "type": "library",
  3885. "extra": {
  3886. "branch-alias": []
  3887. },
  3888. "autoload": {
  3889. "files": [
  3890. "functions.php"
  3891. ],
  3892. "psr-4": {
  3893. "Codeception\\": "src/Codeception",
  3894. "Codeception\\Extension\\": "ext"
  3895. }
  3896. },
  3897. "notification-url": "https://packagist.org/downloads/",
  3898. "license": [
  3899. "MIT"
  3900. ],
  3901. "authors": [
  3902. {
  3903. "name": "Michael Bodnarchuk",
  3904. "email": "davert@mail.ua",
  3905. "homepage": "https://codegyre.com"
  3906. }
  3907. ],
  3908. "description": "BDD-style testing framework",
  3909. "homepage": "https://codeception.com/",
  3910. "keywords": [
  3911. "BDD",
  3912. "TDD",
  3913. "acceptance testing",
  3914. "functional testing",
  3915. "unit testing"
  3916. ],
  3917. "support": {
  3918. "issues": "https://github.com/Codeception/Codeception/issues",
  3919. "source": "https://github.com/Codeception/Codeception/tree/4.2.2"
  3920. },
  3921. "funding": [
  3922. {
  3923. "url": "https://opencollective.com/codeception",
  3924. "type": "open_collective"
  3925. }
  3926. ],
  3927. "time": "2022-08-13T13:28:25+00:00"
  3928. },
  3929. {
  3930. "name": "codeception/lib-asserts",
  3931. "version": "1.13.2",
  3932. "source": {
  3933. "type": "git",
  3934. "url": "https://github.com/Codeception/lib-asserts.git",
  3935. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6"
  3936. },
  3937. "dist": {
  3938. "type": "zip",
  3939. "url": "https://api.github.com/repos/Codeception/lib-asserts/zipball/184231d5eab66bc69afd6b9429344d80c67a33b6",
  3940. "reference": "184231d5eab66bc69afd6b9429344d80c67a33b6",
  3941. "shasum": ""
  3942. },
  3943. "require": {
  3944. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.3 | ^9.0",
  3945. "ext-dom": "*",
  3946. "php": ">=5.6.0 <9.0"
  3947. },
  3948. "type": "library",
  3949. "autoload": {
  3950. "classmap": [
  3951. "src/"
  3952. ]
  3953. },
  3954. "notification-url": "https://packagist.org/downloads/",
  3955. "license": [
  3956. "MIT"
  3957. ],
  3958. "authors": [
  3959. {
  3960. "name": "Michael Bodnarchuk",
  3961. "email": "davert@mail.ua",
  3962. "homepage": "http://codegyre.com"
  3963. },
  3964. {
  3965. "name": "Gintautas Miselis"
  3966. },
  3967. {
  3968. "name": "Gustavo Nieves",
  3969. "homepage": "https://medium.com/@ganieves"
  3970. }
  3971. ],
  3972. "description": "Assertion methods used by Codeception core and Asserts module",
  3973. "homepage": "https://codeception.com/",
  3974. "keywords": [
  3975. "codeception"
  3976. ],
  3977. "support": {
  3978. "issues": "https://github.com/Codeception/lib-asserts/issues",
  3979. "source": "https://github.com/Codeception/lib-asserts/tree/1.13.2"
  3980. },
  3981. "time": "2020-10-21T16:26:20+00:00"
  3982. },
  3983. {
  3984. "name": "codeception/lib-innerbrowser",
  3985. "version": "1.5.1",
  3986. "source": {
  3987. "type": "git",
  3988. "url": "https://github.com/Codeception/lib-innerbrowser.git",
  3989. "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2"
  3990. },
  3991. "dist": {
  3992. "type": "zip",
  3993. "url": "https://api.github.com/repos/Codeception/lib-innerbrowser/zipball/31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2",
  3994. "reference": "31b4b56ad53c3464fcb2c0a14d55a51a201bd3c2",
  3995. "shasum": ""
  3996. },
  3997. "require": {
  3998. "codeception/codeception": "4.*@dev",
  3999. "ext-dom": "*",
  4000. "ext-json": "*",
  4001. "ext-mbstring": "*",
  4002. "php": ">=5.6.0 <9.0",
  4003. "symfony/browser-kit": ">=2.7 <6.0",
  4004. "symfony/dom-crawler": ">=2.7 <6.0"
  4005. },
  4006. "conflict": {
  4007. "codeception/codeception": "<4.0"
  4008. },
  4009. "require-dev": {
  4010. "codeception/util-universalframework": "dev-master"
  4011. },
  4012. "type": "library",
  4013. "autoload": {
  4014. "classmap": [
  4015. "src/"
  4016. ]
  4017. },
  4018. "notification-url": "https://packagist.org/downloads/",
  4019. "license": [
  4020. "MIT"
  4021. ],
  4022. "authors": [
  4023. {
  4024. "name": "Michael Bodnarchuk",
  4025. "email": "davert@mail.ua",
  4026. "homepage": "http://codegyre.com"
  4027. },
  4028. {
  4029. "name": "Gintautas Miselis"
  4030. }
  4031. ],
  4032. "description": "Parent library for all Codeception framework modules and PhpBrowser",
  4033. "homepage": "https://codeception.com/",
  4034. "keywords": [
  4035. "codeception"
  4036. ],
  4037. "support": {
  4038. "issues": "https://github.com/Codeception/lib-innerbrowser/issues",
  4039. "source": "https://github.com/Codeception/lib-innerbrowser/tree/1.5.1"
  4040. },
  4041. "time": "2021-08-30T15:21:42+00:00"
  4042. },
  4043. {
  4044. "name": "codeception/module-asserts",
  4045. "version": "1.3.1",
  4046. "source": {
  4047. "type": "git",
  4048. "url": "https://github.com/Codeception/module-asserts.git",
  4049. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de"
  4050. },
  4051. "dist": {
  4052. "type": "zip",
  4053. "url": "https://api.github.com/repos/Codeception/module-asserts/zipball/59374f2fef0cabb9e8ddb53277e85cdca74328de",
  4054. "reference": "59374f2fef0cabb9e8ddb53277e85cdca74328de",
  4055. "shasum": ""
  4056. },
  4057. "require": {
  4058. "codeception/codeception": "*@dev",
  4059. "codeception/lib-asserts": "^1.13.1",
  4060. "php": ">=5.6.0 <9.0"
  4061. },
  4062. "conflict": {
  4063. "codeception/codeception": "<4.0"
  4064. },
  4065. "type": "library",
  4066. "autoload": {
  4067. "classmap": [
  4068. "src/"
  4069. ]
  4070. },
  4071. "notification-url": "https://packagist.org/downloads/",
  4072. "license": [
  4073. "MIT"
  4074. ],
  4075. "authors": [
  4076. {
  4077. "name": "Michael Bodnarchuk"
  4078. },
  4079. {
  4080. "name": "Gintautas Miselis"
  4081. },
  4082. {
  4083. "name": "Gustavo Nieves",
  4084. "homepage": "https://medium.com/@ganieves"
  4085. }
  4086. ],
  4087. "description": "Codeception module containing various assertions",
  4088. "homepage": "https://codeception.com/",
  4089. "keywords": [
  4090. "assertions",
  4091. "asserts",
  4092. "codeception"
  4093. ],
  4094. "support": {
  4095. "issues": "https://github.com/Codeception/module-asserts/issues",
  4096. "source": "https://github.com/Codeception/module-asserts/tree/1.3.1"
  4097. },
  4098. "time": "2020-10-21T16:48:15+00:00"
  4099. },
  4100. {
  4101. "name": "codeception/module-filesystem",
  4102. "version": "1.0.3",
  4103. "source": {
  4104. "type": "git",
  4105. "url": "https://github.com/Codeception/module-filesystem.git",
  4106. "reference": "781be167fb1557bfc9b61e0a4eac60a32c534ec1"
  4107. },
  4108. "dist": {
  4109. "type": "zip",
  4110. "url": "https://api.github.com/repos/Codeception/module-filesystem/zipball/781be167fb1557bfc9b61e0a4eac60a32c534ec1",
  4111. "reference": "781be167fb1557bfc9b61e0a4eac60a32c534ec1",
  4112. "shasum": ""
  4113. },
  4114. "require": {
  4115. "codeception/codeception": "^4.0",
  4116. "php": ">=5.6.0 <9.0",
  4117. "symfony/finder": ">=2.7 <6.0"
  4118. },
  4119. "conflict": {
  4120. "codeception/codeception": "<4.0"
  4121. },
  4122. "type": "library",
  4123. "autoload": {
  4124. "classmap": [
  4125. "src/"
  4126. ]
  4127. },
  4128. "notification-url": "https://packagist.org/downloads/",
  4129. "license": [
  4130. "MIT"
  4131. ],
  4132. "authors": [
  4133. {
  4134. "name": "Michael Bodnarchuk"
  4135. },
  4136. {
  4137. "name": "Gintautas Miselis"
  4138. }
  4139. ],
  4140. "description": "Codeception module for testing local filesystem",
  4141. "homepage": "http://codeception.com/",
  4142. "keywords": [
  4143. "codeception",
  4144. "filesystem"
  4145. ],
  4146. "support": {
  4147. "issues": "https://github.com/Codeception/module-filesystem/issues",
  4148. "source": "https://github.com/Codeception/module-filesystem/tree/1.0.3"
  4149. },
  4150. "time": "2020-10-24T14:46:40+00:00"
  4151. },
  4152. {
  4153. "name": "codeception/module-yii2",
  4154. "version": "1.1.5",
  4155. "source": {
  4156. "type": "git",
  4157. "url": "https://github.com/Codeception/module-yii2.git",
  4158. "reference": "14269d059b8eaedf3d414a673907bd874cd4ed04"
  4159. },
  4160. "dist": {
  4161. "type": "zip",
  4162. "url": "https://api.github.com/repos/Codeception/module-yii2/zipball/14269d059b8eaedf3d414a673907bd874cd4ed04",
  4163. "reference": "14269d059b8eaedf3d414a673907bd874cd4ed04",
  4164. "shasum": ""
  4165. },
  4166. "require": {
  4167. "codeception/codeception": "^4.0",
  4168. "codeception/lib-innerbrowser": "^1.0",
  4169. "php": ">=5.6.0 <=8.1 | ~8.1.0"
  4170. },
  4171. "require-dev": {
  4172. "codeception/module-asserts": "^1.3",
  4173. "codeception/module-filesystem": "^1.0",
  4174. "codeception/verify": "<2",
  4175. "codemix/yii2-localeurls": "^1.7",
  4176. "yiisoft/yii2": "dev-master",
  4177. "yiisoft/yii2-app-advanced": "dev-master"
  4178. },
  4179. "type": "library",
  4180. "autoload": {
  4181. "classmap": [
  4182. "src/"
  4183. ]
  4184. },
  4185. "notification-url": "https://packagist.org/downloads/",
  4186. "license": [
  4187. "MIT"
  4188. ],
  4189. "authors": [
  4190. {
  4191. "name": "Alexander Makarov"
  4192. },
  4193. {
  4194. "name": "Sam Mouse"
  4195. },
  4196. {
  4197. "name": "Michael Bodnarchuk"
  4198. }
  4199. ],
  4200. "description": "Codeception module for Yii2 framework",
  4201. "homepage": "http://codeception.com/",
  4202. "keywords": [
  4203. "codeception",
  4204. "yii2"
  4205. ],
  4206. "support": {
  4207. "issues": "https://github.com/Codeception/module-yii2/issues",
  4208. "source": "https://github.com/Codeception/module-yii2/tree/1.1.5"
  4209. },
  4210. "time": "2021-12-30T09:16:01+00:00"
  4211. },
  4212. {
  4213. "name": "codeception/phpunit-wrapper",
  4214. "version": "8.1.6",
  4215. "source": {
  4216. "type": "git",
  4217. "url": "https://github.com/Codeception/phpunit-wrapper.git",
  4218. "reference": "7d3479bab7e2b6349044db8af11cd05d57809f9c"
  4219. },
  4220. "dist": {
  4221. "type": "zip",
  4222. "url": "https://api.github.com/repos/Codeception/phpunit-wrapper/zipball/7d3479bab7e2b6349044db8af11cd05d57809f9c",
  4223. "reference": "7d3479bab7e2b6349044db8af11cd05d57809f9c",
  4224. "shasum": ""
  4225. },
  4226. "require": {
  4227. "php": ">=7.2",
  4228. "phpunit/php-code-coverage": "^7.0",
  4229. "phpunit/phpunit": "^8.0",
  4230. "sebastian/comparator": "^3.0",
  4231. "sebastian/diff": "^3.0"
  4232. },
  4233. "require-dev": {
  4234. "codeception/specify": "*",
  4235. "vlucas/phpdotenv": "^3.0"
  4236. },
  4237. "type": "library",
  4238. "autoload": {
  4239. "psr-4": {
  4240. "Codeception\\PHPUnit\\": "src/"
  4241. }
  4242. },
  4243. "notification-url": "https://packagist.org/downloads/",
  4244. "license": [
  4245. "MIT"
  4246. ],
  4247. "authors": [
  4248. {
  4249. "name": "Davert",
  4250. "email": "davert.php@resend.cc"
  4251. }
  4252. ],
  4253. "description": "PHPUnit classes used by Codeception",
  4254. "support": {
  4255. "issues": "https://github.com/Codeception/phpunit-wrapper/issues",
  4256. "source": "https://github.com/Codeception/phpunit-wrapper/tree/8.1.6"
  4257. },
  4258. "abandoned": true,
  4259. "time": "2022-05-23T06:22:33+00:00"
  4260. },
  4261. {
  4262. "name": "codeception/specify",
  4263. "version": "0.4.6",
  4264. "source": {
  4265. "type": "git",
  4266. "url": "https://github.com/Codeception/Specify.git",
  4267. "reference": "21b586f503ca444aa519dd9cafb32f113a05f286"
  4268. },
  4269. "dist": {
  4270. "type": "zip",
  4271. "url": "https://api.github.com/repos/Codeception/Specify/zipball/21b586f503ca444aa519dd9cafb32f113a05f286",
  4272. "reference": "21b586f503ca444aa519dd9cafb32f113a05f286",
  4273. "shasum": ""
  4274. },
  4275. "require": {
  4276. "myclabs/deep-copy": "~1.1",
  4277. "php": ">=5.4.0"
  4278. },
  4279. "require-dev": {
  4280. "phpunit/phpunit": "~4.0"
  4281. },
  4282. "type": "library",
  4283. "autoload": {
  4284. "psr-0": {
  4285. "Codeception\\": "src/"
  4286. }
  4287. },
  4288. "notification-url": "https://packagist.org/downloads/",
  4289. "license": [
  4290. "MIT"
  4291. ],
  4292. "authors": [
  4293. {
  4294. "name": "Michael Bodnarchuk",
  4295. "email": "davert.php@mailican.com"
  4296. }
  4297. ],
  4298. "description": "BDD code blocks for PHPUnit and Codeception",
  4299. "support": {
  4300. "issues": "https://github.com/Codeception/Specify/issues",
  4301. "source": "https://github.com/Codeception/Specify/tree/master"
  4302. },
  4303. "time": "2016-10-21T09:42:00+00:00"
  4304. },
  4305. {
  4306. "name": "codeception/stub",
  4307. "version": "4.0.2",
  4308. "source": {
  4309. "type": "git",
  4310. "url": "https://github.com/Codeception/Stub.git",
  4311. "reference": "18a148dacd293fc7b044042f5aa63a82b08bff5d"
  4312. },
  4313. "dist": {
  4314. "type": "zip",
  4315. "url": "https://api.github.com/repos/Codeception/Stub/zipball/18a148dacd293fc7b044042f5aa63a82b08bff5d",
  4316. "reference": "18a148dacd293fc7b044042f5aa63a82b08bff5d",
  4317. "shasum": ""
  4318. },
  4319. "require": {
  4320. "php": "^7.4 | ^8.0",
  4321. "phpunit/phpunit": "^8.4 | ^9.0 | ^10.0 | 10.0.x-dev"
  4322. },
  4323. "require-dev": {
  4324. "consolidation/robo": "^3.0"
  4325. },
  4326. "type": "library",
  4327. "autoload": {
  4328. "psr-4": {
  4329. "Codeception\\": "src/"
  4330. }
  4331. },
  4332. "notification-url": "https://packagist.org/downloads/",
  4333. "license": [
  4334. "MIT"
  4335. ],
  4336. "description": "Flexible Stub wrapper for PHPUnit's Mock Builder",
  4337. "support": {
  4338. "issues": "https://github.com/Codeception/Stub/issues",
  4339. "source": "https://github.com/Codeception/Stub/tree/4.0.2"
  4340. },
  4341. "time": "2022-01-31T19:25:15+00:00"
  4342. },
  4343. {
  4344. "name": "codeception/verify",
  4345. "version": "1.1.0",
  4346. "source": {
  4347. "type": "git",
  4348. "url": "https://github.com/Codeception/Verify.git",
  4349. "reference": "fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3"
  4350. },
  4351. "dist": {
  4352. "type": "zip",
  4353. "url": "https://api.github.com/repos/Codeception/Verify/zipball/fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3",
  4354. "reference": "fa0bb946b6d61279f461bcc5a677ac0ed5eab9b3",
  4355. "shasum": ""
  4356. },
  4357. "require": {
  4358. "codeception/phpunit-wrapper": ">6.0.15 <6.1.0 | ^6.6.1 | ^7.7.1 | ^8.0.4",
  4359. "php": ">= 7.0",
  4360. "phpunit/phpunit": "> 6.0"
  4361. },
  4362. "type": "library",
  4363. "autoload": {
  4364. "files": [
  4365. "src/Codeception/function.php"
  4366. ],
  4367. "psr-4": {
  4368. "Codeception\\": "src\\Codeception"
  4369. }
  4370. },
  4371. "notification-url": "https://packagist.org/downloads/",
  4372. "license": [
  4373. "MIT"
  4374. ],
  4375. "authors": [
  4376. {
  4377. "name": "Michael Bodnarchuk",
  4378. "email": "davert@codeception.com"
  4379. }
  4380. ],
  4381. "description": "BDD assertion library for PHPUnit",
  4382. "support": {
  4383. "issues": "https://github.com/Codeception/Verify/issues",
  4384. "source": "https://github.com/Codeception/Verify/tree/master"
  4385. },
  4386. "time": "2019-07-30T18:21:46+00:00"
  4387. },
  4388. {
  4389. "name": "doctrine/instantiator",
  4390. "version": "1.5.0",
  4391. "source": {
  4392. "type": "git",
  4393. "url": "https://github.com/doctrine/instantiator.git",
  4394. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  4395. },
  4396. "dist": {
  4397. "type": "zip",
  4398. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  4399. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  4400. "shasum": ""
  4401. },
  4402. "require": {
  4403. "php": "^7.1 || ^8.0"
  4404. },
  4405. "require-dev": {
  4406. "doctrine/coding-standard": "^9 || ^11",
  4407. "ext-pdo": "*",
  4408. "ext-phar": "*",
  4409. "phpbench/phpbench": "^0.16 || ^1",
  4410. "phpstan/phpstan": "^1.4",
  4411. "phpstan/phpstan-phpunit": "^1",
  4412. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  4413. "vimeo/psalm": "^4.30 || ^5.4"
  4414. },
  4415. "type": "library",
  4416. "autoload": {
  4417. "psr-4": {
  4418. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  4419. }
  4420. },
  4421. "notification-url": "https://packagist.org/downloads/",
  4422. "license": [
  4423. "MIT"
  4424. ],
  4425. "authors": [
  4426. {
  4427. "name": "Marco Pivetta",
  4428. "email": "ocramius@gmail.com",
  4429. "homepage": "https://ocramius.github.io/"
  4430. }
  4431. ],
  4432. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  4433. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  4434. "keywords": [
  4435. "constructor",
  4436. "instantiate"
  4437. ],
  4438. "support": {
  4439. "issues": "https://github.com/doctrine/instantiator/issues",
  4440. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  4441. },
  4442. "funding": [
  4443. {
  4444. "url": "https://www.doctrine-project.org/sponsorship.html",
  4445. "type": "custom"
  4446. },
  4447. {
  4448. "url": "https://www.patreon.com/phpdoctrine",
  4449. "type": "patreon"
  4450. },
  4451. {
  4452. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  4453. "type": "tidelift"
  4454. }
  4455. ],
  4456. "time": "2022-12-30T00:15:36+00:00"
  4457. },
  4458. {
  4459. "name": "fakerphp/faker",
  4460. "version": "v1.24.1",
  4461. "source": {
  4462. "type": "git",
  4463. "url": "https://github.com/FakerPHP/Faker.git",
  4464. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5"
  4465. },
  4466. "dist": {
  4467. "type": "zip",
  4468. "url": "https://api.github.com/repos/FakerPHP/Faker/zipball/e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  4469. "reference": "e0ee18eb1e6dc3cda3ce9fd97e5a0689a88a64b5",
  4470. "shasum": ""
  4471. },
  4472. "require": {
  4473. "php": "^7.4 || ^8.0",
  4474. "psr/container": "^1.0 || ^2.0",
  4475. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  4476. },
  4477. "conflict": {
  4478. "fzaninotto/faker": "*"
  4479. },
  4480. "require-dev": {
  4481. "bamarni/composer-bin-plugin": "^1.4.1",
  4482. "doctrine/persistence": "^1.3 || ^2.0",
  4483. "ext-intl": "*",
  4484. "phpunit/phpunit": "^9.5.26",
  4485. "symfony/phpunit-bridge": "^5.4.16"
  4486. },
  4487. "suggest": {
  4488. "doctrine/orm": "Required to use Faker\\ORM\\Doctrine",
  4489. "ext-curl": "Required by Faker\\Provider\\Image to download images.",
  4490. "ext-dom": "Required by Faker\\Provider\\HtmlLorem for generating random HTML.",
  4491. "ext-iconv": "Required by Faker\\Provider\\ru_RU\\Text::realText() for generating real Russian text.",
  4492. "ext-mbstring": "Required for multibyte Unicode string functionality."
  4493. },
  4494. "type": "library",
  4495. "autoload": {
  4496. "psr-4": {
  4497. "Faker\\": "src/Faker/"
  4498. }
  4499. },
  4500. "notification-url": "https://packagist.org/downloads/",
  4501. "license": [
  4502. "MIT"
  4503. ],
  4504. "authors": [
  4505. {
  4506. "name": "François Zaninotto"
  4507. }
  4508. ],
  4509. "description": "Faker is a PHP library that generates fake data for you.",
  4510. "keywords": [
  4511. "data",
  4512. "faker",
  4513. "fixtures"
  4514. ],
  4515. "support": {
  4516. "issues": "https://github.com/FakerPHP/Faker/issues",
  4517. "source": "https://github.com/FakerPHP/Faker/tree/v1.24.1"
  4518. },
  4519. "time": "2024-11-21T13:46:39+00:00"
  4520. },
  4521. {
  4522. "name": "myclabs/deep-copy",
  4523. "version": "1.13.4",
  4524. "source": {
  4525. "type": "git",
  4526. "url": "https://github.com/myclabs/DeepCopy.git",
  4527. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a"
  4528. },
  4529. "dist": {
  4530. "type": "zip",
  4531. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  4532. "reference": "07d290f0c47959fd5eed98c95ee5602db07e0b6a",
  4533. "shasum": ""
  4534. },
  4535. "require": {
  4536. "php": "^7.1 || ^8.0"
  4537. },
  4538. "conflict": {
  4539. "doctrine/collections": "<1.6.8",
  4540. "doctrine/common": "<2.13.3 || >=3 <3.2.2"
  4541. },
  4542. "require-dev": {
  4543. "doctrine/collections": "^1.6.8",
  4544. "doctrine/common": "^2.13.3 || ^3.2.2",
  4545. "phpspec/prophecy": "^1.10",
  4546. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  4547. },
  4548. "type": "library",
  4549. "autoload": {
  4550. "files": [
  4551. "src/DeepCopy/deep_copy.php"
  4552. ],
  4553. "psr-4": {
  4554. "DeepCopy\\": "src/DeepCopy/"
  4555. }
  4556. },
  4557. "notification-url": "https://packagist.org/downloads/",
  4558. "license": [
  4559. "MIT"
  4560. ],
  4561. "description": "Create deep copies (clones) of your objects",
  4562. "keywords": [
  4563. "clone",
  4564. "copy",
  4565. "duplicate",
  4566. "object",
  4567. "object graph"
  4568. ],
  4569. "support": {
  4570. "issues": "https://github.com/myclabs/DeepCopy/issues",
  4571. "source": "https://github.com/myclabs/DeepCopy/tree/1.13.4"
  4572. },
  4573. "funding": [
  4574. {
  4575. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  4576. "type": "tidelift"
  4577. }
  4578. ],
  4579. "time": "2025-08-01T08:46:24+00:00"
  4580. },
  4581. {
  4582. "name": "phar-io/manifest",
  4583. "version": "2.0.4",
  4584. "source": {
  4585. "type": "git",
  4586. "url": "https://github.com/phar-io/manifest.git",
  4587. "reference": "54750ef60c58e43759730615a392c31c80e23176"
  4588. },
  4589. "dist": {
  4590. "type": "zip",
  4591. "url": "https://api.github.com/repos/phar-io/manifest/zipball/54750ef60c58e43759730615a392c31c80e23176",
  4592. "reference": "54750ef60c58e43759730615a392c31c80e23176",
  4593. "shasum": ""
  4594. },
  4595. "require": {
  4596. "ext-dom": "*",
  4597. "ext-libxml": "*",
  4598. "ext-phar": "*",
  4599. "ext-xmlwriter": "*",
  4600. "phar-io/version": "^3.0.1",
  4601. "php": "^7.2 || ^8.0"
  4602. },
  4603. "type": "library",
  4604. "extra": {
  4605. "branch-alias": {
  4606. "dev-master": "2.0.x-dev"
  4607. }
  4608. },
  4609. "autoload": {
  4610. "classmap": [
  4611. "src/"
  4612. ]
  4613. },
  4614. "notification-url": "https://packagist.org/downloads/",
  4615. "license": [
  4616. "BSD-3-Clause"
  4617. ],
  4618. "authors": [
  4619. {
  4620. "name": "Arne Blankerts",
  4621. "email": "arne@blankerts.de",
  4622. "role": "Developer"
  4623. },
  4624. {
  4625. "name": "Sebastian Heuer",
  4626. "email": "sebastian@phpeople.de",
  4627. "role": "Developer"
  4628. },
  4629. {
  4630. "name": "Sebastian Bergmann",
  4631. "email": "sebastian@phpunit.de",
  4632. "role": "Developer"
  4633. }
  4634. ],
  4635. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  4636. "support": {
  4637. "issues": "https://github.com/phar-io/manifest/issues",
  4638. "source": "https://github.com/phar-io/manifest/tree/2.0.4"
  4639. },
  4640. "funding": [
  4641. {
  4642. "url": "https://github.com/theseer",
  4643. "type": "github"
  4644. }
  4645. ],
  4646. "time": "2024-03-03T12:33:53+00:00"
  4647. },
  4648. {
  4649. "name": "phar-io/version",
  4650. "version": "3.2.1",
  4651. "source": {
  4652. "type": "git",
  4653. "url": "https://github.com/phar-io/version.git",
  4654. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  4655. },
  4656. "dist": {
  4657. "type": "zip",
  4658. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  4659. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  4660. "shasum": ""
  4661. },
  4662. "require": {
  4663. "php": "^7.2 || ^8.0"
  4664. },
  4665. "type": "library",
  4666. "autoload": {
  4667. "classmap": [
  4668. "src/"
  4669. ]
  4670. },
  4671. "notification-url": "https://packagist.org/downloads/",
  4672. "license": [
  4673. "BSD-3-Clause"
  4674. ],
  4675. "authors": [
  4676. {
  4677. "name": "Arne Blankerts",
  4678. "email": "arne@blankerts.de",
  4679. "role": "Developer"
  4680. },
  4681. {
  4682. "name": "Sebastian Heuer",
  4683. "email": "sebastian@phpeople.de",
  4684. "role": "Developer"
  4685. },
  4686. {
  4687. "name": "Sebastian Bergmann",
  4688. "email": "sebastian@phpunit.de",
  4689. "role": "Developer"
  4690. }
  4691. ],
  4692. "description": "Library for handling version information and constraints",
  4693. "support": {
  4694. "issues": "https://github.com/phar-io/version/issues",
  4695. "source": "https://github.com/phar-io/version/tree/3.2.1"
  4696. },
  4697. "time": "2022-02-21T01:04:05+00:00"
  4698. },
  4699. {
  4700. "name": "phpspec/php-diff",
  4701. "version": "v1.1.3",
  4702. "source": {
  4703. "type": "git",
  4704. "url": "https://github.com/phpspec/php-diff.git",
  4705. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9"
  4706. },
  4707. "dist": {
  4708. "type": "zip",
  4709. "url": "https://api.github.com/repos/phpspec/php-diff/zipball/fc1156187f9f6c8395886fe85ed88a0a245d72e9",
  4710. "reference": "fc1156187f9f6c8395886fe85ed88a0a245d72e9",
  4711. "shasum": ""
  4712. },
  4713. "type": "library",
  4714. "extra": {
  4715. "branch-alias": {
  4716. "dev-master": "1.0.x-dev"
  4717. }
  4718. },
  4719. "autoload": {
  4720. "psr-0": {
  4721. "Diff": "lib/"
  4722. }
  4723. },
  4724. "notification-url": "https://packagist.org/downloads/",
  4725. "license": [
  4726. "BSD-3-Clause"
  4727. ],
  4728. "authors": [
  4729. {
  4730. "name": "Chris Boulton",
  4731. "homepage": "http://github.com/chrisboulton"
  4732. }
  4733. ],
  4734. "description": "A comprehensive library for generating differences between two hashable objects (strings or arrays).",
  4735. "support": {
  4736. "source": "https://github.com/phpspec/php-diff/tree/v1.1.3"
  4737. },
  4738. "time": "2020-09-18T13:47:07+00:00"
  4739. },
  4740. {
  4741. "name": "phpunit/php-code-coverage",
  4742. "version": "7.0.17",
  4743. "source": {
  4744. "type": "git",
  4745. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  4746. "reference": "40a4ed114a4aea5afd6df8d0f0c9cd3033097f66"
  4747. },
  4748. "dist": {
  4749. "type": "zip",
  4750. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/40a4ed114a4aea5afd6df8d0f0c9cd3033097f66",
  4751. "reference": "40a4ed114a4aea5afd6df8d0f0c9cd3033097f66",
  4752. "shasum": ""
  4753. },
  4754. "require": {
  4755. "ext-dom": "*",
  4756. "ext-xmlwriter": "*",
  4757. "php": ">=7.2",
  4758. "phpunit/php-file-iterator": "^2.0.2",
  4759. "phpunit/php-text-template": "^1.2.1",
  4760. "phpunit/php-token-stream": "^3.1.3 || ^4.0",
  4761. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  4762. "sebastian/environment": "^4.2.2",
  4763. "sebastian/version": "^2.0.1",
  4764. "theseer/tokenizer": "^1.1.3"
  4765. },
  4766. "require-dev": {
  4767. "phpunit/phpunit": "^8.2.2"
  4768. },
  4769. "suggest": {
  4770. "ext-xdebug": "^2.7.2"
  4771. },
  4772. "type": "library",
  4773. "extra": {
  4774. "branch-alias": {
  4775. "dev-master": "7.0-dev"
  4776. }
  4777. },
  4778. "autoload": {
  4779. "classmap": [
  4780. "src/"
  4781. ]
  4782. },
  4783. "notification-url": "https://packagist.org/downloads/",
  4784. "license": [
  4785. "BSD-3-Clause"
  4786. ],
  4787. "authors": [
  4788. {
  4789. "name": "Sebastian Bergmann",
  4790. "email": "sebastian@phpunit.de",
  4791. "role": "lead"
  4792. }
  4793. ],
  4794. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  4795. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  4796. "keywords": [
  4797. "coverage",
  4798. "testing",
  4799. "xunit"
  4800. ],
  4801. "support": {
  4802. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  4803. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/7.0.17"
  4804. },
  4805. "funding": [
  4806. {
  4807. "url": "https://github.com/sebastianbergmann",
  4808. "type": "github"
  4809. }
  4810. ],
  4811. "time": "2024-03-02T06:09:37+00:00"
  4812. },
  4813. {
  4814. "name": "phpunit/php-file-iterator",
  4815. "version": "2.0.6",
  4816. "source": {
  4817. "type": "git",
  4818. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  4819. "reference": "69deeb8664f611f156a924154985fbd4911eb36b"
  4820. },
  4821. "dist": {
  4822. "type": "zip",
  4823. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/69deeb8664f611f156a924154985fbd4911eb36b",
  4824. "reference": "69deeb8664f611f156a924154985fbd4911eb36b",
  4825. "shasum": ""
  4826. },
  4827. "require": {
  4828. "php": ">=7.1"
  4829. },
  4830. "require-dev": {
  4831. "phpunit/phpunit": "^8.5"
  4832. },
  4833. "type": "library",
  4834. "extra": {
  4835. "branch-alias": {
  4836. "dev-master": "2.0.x-dev"
  4837. }
  4838. },
  4839. "autoload": {
  4840. "classmap": [
  4841. "src/"
  4842. ]
  4843. },
  4844. "notification-url": "https://packagist.org/downloads/",
  4845. "license": [
  4846. "BSD-3-Clause"
  4847. ],
  4848. "authors": [
  4849. {
  4850. "name": "Sebastian Bergmann",
  4851. "email": "sebastian@phpunit.de",
  4852. "role": "lead"
  4853. }
  4854. ],
  4855. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  4856. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  4857. "keywords": [
  4858. "filesystem",
  4859. "iterator"
  4860. ],
  4861. "support": {
  4862. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  4863. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/2.0.6"
  4864. },
  4865. "funding": [
  4866. {
  4867. "url": "https://github.com/sebastianbergmann",
  4868. "type": "github"
  4869. }
  4870. ],
  4871. "time": "2024-03-01T13:39:50+00:00"
  4872. },
  4873. {
  4874. "name": "phpunit/php-text-template",
  4875. "version": "1.2.1",
  4876. "source": {
  4877. "type": "git",
  4878. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  4879. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  4880. },
  4881. "dist": {
  4882. "type": "zip",
  4883. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4884. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  4885. "shasum": ""
  4886. },
  4887. "require": {
  4888. "php": ">=5.3.3"
  4889. },
  4890. "type": "library",
  4891. "autoload": {
  4892. "classmap": [
  4893. "src/"
  4894. ]
  4895. },
  4896. "notification-url": "https://packagist.org/downloads/",
  4897. "license": [
  4898. "BSD-3-Clause"
  4899. ],
  4900. "authors": [
  4901. {
  4902. "name": "Sebastian Bergmann",
  4903. "email": "sebastian@phpunit.de",
  4904. "role": "lead"
  4905. }
  4906. ],
  4907. "description": "Simple template engine.",
  4908. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  4909. "keywords": [
  4910. "template"
  4911. ],
  4912. "support": {
  4913. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  4914. "source": "https://github.com/sebastianbergmann/php-text-template/tree/1.2.1"
  4915. },
  4916. "time": "2015-06-21T13:50:34+00:00"
  4917. },
  4918. {
  4919. "name": "phpunit/php-timer",
  4920. "version": "2.1.4",
  4921. "source": {
  4922. "type": "git",
  4923. "url": "https://github.com/sebastianbergmann/php-timer.git",
  4924. "reference": "a691211e94ff39a34811abd521c31bd5b305b0bb"
  4925. },
  4926. "dist": {
  4927. "type": "zip",
  4928. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/a691211e94ff39a34811abd521c31bd5b305b0bb",
  4929. "reference": "a691211e94ff39a34811abd521c31bd5b305b0bb",
  4930. "shasum": ""
  4931. },
  4932. "require": {
  4933. "php": ">=7.1"
  4934. },
  4935. "require-dev": {
  4936. "phpunit/phpunit": "^8.5"
  4937. },
  4938. "type": "library",
  4939. "extra": {
  4940. "branch-alias": {
  4941. "dev-master": "2.1-dev"
  4942. }
  4943. },
  4944. "autoload": {
  4945. "classmap": [
  4946. "src/"
  4947. ]
  4948. },
  4949. "notification-url": "https://packagist.org/downloads/",
  4950. "license": [
  4951. "BSD-3-Clause"
  4952. ],
  4953. "authors": [
  4954. {
  4955. "name": "Sebastian Bergmann",
  4956. "email": "sebastian@phpunit.de",
  4957. "role": "lead"
  4958. }
  4959. ],
  4960. "description": "Utility class for timing",
  4961. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  4962. "keywords": [
  4963. "timer"
  4964. ],
  4965. "support": {
  4966. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  4967. "source": "https://github.com/sebastianbergmann/php-timer/tree/2.1.4"
  4968. },
  4969. "funding": [
  4970. {
  4971. "url": "https://github.com/sebastianbergmann",
  4972. "type": "github"
  4973. }
  4974. ],
  4975. "time": "2024-03-01T13:42:41+00:00"
  4976. },
  4977. {
  4978. "name": "phpunit/php-token-stream",
  4979. "version": "4.0.4",
  4980. "source": {
  4981. "type": "git",
  4982. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  4983. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  4984. },
  4985. "dist": {
  4986. "type": "zip",
  4987. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  4988. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  4989. "shasum": ""
  4990. },
  4991. "require": {
  4992. "ext-tokenizer": "*",
  4993. "php": "^7.3 || ^8.0"
  4994. },
  4995. "require-dev": {
  4996. "phpunit/phpunit": "^9.0"
  4997. },
  4998. "type": "library",
  4999. "extra": {
  5000. "branch-alias": {
  5001. "dev-master": "4.0-dev"
  5002. }
  5003. },
  5004. "autoload": {
  5005. "classmap": [
  5006. "src/"
  5007. ]
  5008. },
  5009. "notification-url": "https://packagist.org/downloads/",
  5010. "license": [
  5011. "BSD-3-Clause"
  5012. ],
  5013. "authors": [
  5014. {
  5015. "name": "Sebastian Bergmann",
  5016. "email": "sebastian@phpunit.de"
  5017. }
  5018. ],
  5019. "description": "Wrapper around PHP's tokenizer extension.",
  5020. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  5021. "keywords": [
  5022. "tokenizer"
  5023. ],
  5024. "support": {
  5025. "issues": "https://github.com/sebastianbergmann/php-token-stream/issues",
  5026. "source": "https://github.com/sebastianbergmann/php-token-stream/tree/master"
  5027. },
  5028. "funding": [
  5029. {
  5030. "url": "https://github.com/sebastianbergmann",
  5031. "type": "github"
  5032. }
  5033. ],
  5034. "abandoned": true,
  5035. "time": "2020-08-04T08:28:15+00:00"
  5036. },
  5037. {
  5038. "name": "phpunit/phpunit",
  5039. "version": "8.5.52",
  5040. "source": {
  5041. "type": "git",
  5042. "url": "https://github.com/sebastianbergmann/phpunit.git",
  5043. "reference": "1015741814413c156abb0f53d7db7bbd03c6e858"
  5044. },
  5045. "dist": {
  5046. "type": "zip",
  5047. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/1015741814413c156abb0f53d7db7bbd03c6e858",
  5048. "reference": "1015741814413c156abb0f53d7db7bbd03c6e858",
  5049. "shasum": ""
  5050. },
  5051. "require": {
  5052. "doctrine/instantiator": "^1.5.0",
  5053. "ext-dom": "*",
  5054. "ext-json": "*",
  5055. "ext-libxml": "*",
  5056. "ext-mbstring": "*",
  5057. "ext-xml": "*",
  5058. "ext-xmlwriter": "*",
  5059. "myclabs/deep-copy": "^1.13.4",
  5060. "phar-io/manifest": "^2.0.4",
  5061. "phar-io/version": "^3.2.1",
  5062. "php": ">=7.2",
  5063. "phpunit/php-code-coverage": "^7.0.17",
  5064. "phpunit/php-file-iterator": "^2.0.6",
  5065. "phpunit/php-text-template": "^1.2.1",
  5066. "phpunit/php-timer": "^2.1.4",
  5067. "sebastian/comparator": "^3.0.7",
  5068. "sebastian/diff": "^3.0.6",
  5069. "sebastian/environment": "^4.2.5",
  5070. "sebastian/exporter": "^3.1.8",
  5071. "sebastian/global-state": "^3.0.6",
  5072. "sebastian/object-enumerator": "^3.0.5",
  5073. "sebastian/resource-operations": "^2.0.3",
  5074. "sebastian/type": "^1.1.5",
  5075. "sebastian/version": "^2.0.1"
  5076. },
  5077. "suggest": {
  5078. "ext-soap": "To be able to generate mocks based on WSDL files",
  5079. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage",
  5080. "phpunit/php-invoker": "To allow enforcing time limits"
  5081. },
  5082. "bin": [
  5083. "phpunit"
  5084. ],
  5085. "type": "library",
  5086. "extra": {
  5087. "branch-alias": {
  5088. "dev-master": "8.5-dev"
  5089. }
  5090. },
  5091. "autoload": {
  5092. "classmap": [
  5093. "src/"
  5094. ]
  5095. },
  5096. "notification-url": "https://packagist.org/downloads/",
  5097. "license": [
  5098. "BSD-3-Clause"
  5099. ],
  5100. "authors": [
  5101. {
  5102. "name": "Sebastian Bergmann",
  5103. "email": "sebastian@phpunit.de",
  5104. "role": "lead"
  5105. }
  5106. ],
  5107. "description": "The PHP Unit Testing framework.",
  5108. "homepage": "https://phpunit.de/",
  5109. "keywords": [
  5110. "phpunit",
  5111. "testing",
  5112. "xunit"
  5113. ],
  5114. "support": {
  5115. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  5116. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  5117. "source": "https://github.com/sebastianbergmann/phpunit/tree/8.5.52"
  5118. },
  5119. "funding": [
  5120. {
  5121. "url": "https://phpunit.de/sponsors.html",
  5122. "type": "custom"
  5123. },
  5124. {
  5125. "url": "https://github.com/sebastianbergmann",
  5126. "type": "github"
  5127. },
  5128. {
  5129. "url": "https://liberapay.com/sebastianbergmann",
  5130. "type": "liberapay"
  5131. },
  5132. {
  5133. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  5134. "type": "thanks_dev"
  5135. },
  5136. {
  5137. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  5138. "type": "tidelift"
  5139. }
  5140. ],
  5141. "time": "2026-01-27T05:20:18+00:00"
  5142. },
  5143. {
  5144. "name": "psr/container",
  5145. "version": "2.0.2",
  5146. "source": {
  5147. "type": "git",
  5148. "url": "https://github.com/php-fig/container.git",
  5149. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  5150. },
  5151. "dist": {
  5152. "type": "zip",
  5153. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5154. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  5155. "shasum": ""
  5156. },
  5157. "require": {
  5158. "php": ">=7.4.0"
  5159. },
  5160. "type": "library",
  5161. "extra": {
  5162. "branch-alias": {
  5163. "dev-master": "2.0.x-dev"
  5164. }
  5165. },
  5166. "autoload": {
  5167. "psr-4": {
  5168. "Psr\\Container\\": "src/"
  5169. }
  5170. },
  5171. "notification-url": "https://packagist.org/downloads/",
  5172. "license": [
  5173. "MIT"
  5174. ],
  5175. "authors": [
  5176. {
  5177. "name": "PHP-FIG",
  5178. "homepage": "https://www.php-fig.org/"
  5179. }
  5180. ],
  5181. "description": "Common Container Interface (PHP FIG PSR-11)",
  5182. "homepage": "https://github.com/php-fig/container",
  5183. "keywords": [
  5184. "PSR-11",
  5185. "container",
  5186. "container-interface",
  5187. "container-interop",
  5188. "psr"
  5189. ],
  5190. "support": {
  5191. "issues": "https://github.com/php-fig/container/issues",
  5192. "source": "https://github.com/php-fig/container/tree/2.0.2"
  5193. },
  5194. "time": "2021-11-05T16:47:00+00:00"
  5195. },
  5196. {
  5197. "name": "psr/event-dispatcher",
  5198. "version": "1.0.0",
  5199. "source": {
  5200. "type": "git",
  5201. "url": "https://github.com/php-fig/event-dispatcher.git",
  5202. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  5203. },
  5204. "dist": {
  5205. "type": "zip",
  5206. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5207. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  5208. "shasum": ""
  5209. },
  5210. "require": {
  5211. "php": ">=7.2.0"
  5212. },
  5213. "type": "library",
  5214. "extra": {
  5215. "branch-alias": {
  5216. "dev-master": "1.0.x-dev"
  5217. }
  5218. },
  5219. "autoload": {
  5220. "psr-4": {
  5221. "Psr\\EventDispatcher\\": "src/"
  5222. }
  5223. },
  5224. "notification-url": "https://packagist.org/downloads/",
  5225. "license": [
  5226. "MIT"
  5227. ],
  5228. "authors": [
  5229. {
  5230. "name": "PHP-FIG",
  5231. "homepage": "http://www.php-fig.org/"
  5232. }
  5233. ],
  5234. "description": "Standard interfaces for event handling.",
  5235. "keywords": [
  5236. "events",
  5237. "psr",
  5238. "psr-14"
  5239. ],
  5240. "support": {
  5241. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  5242. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  5243. },
  5244. "time": "2019-01-08T18:20:26+00:00"
  5245. },
  5246. {
  5247. "name": "sebastian/code-unit-reverse-lookup",
  5248. "version": "1.0.3",
  5249. "source": {
  5250. "type": "git",
  5251. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  5252. "reference": "92a1a52e86d34cde6caa54f1b5ffa9fda18e5d54"
  5253. },
  5254. "dist": {
  5255. "type": "zip",
  5256. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/92a1a52e86d34cde6caa54f1b5ffa9fda18e5d54",
  5257. "reference": "92a1a52e86d34cde6caa54f1b5ffa9fda18e5d54",
  5258. "shasum": ""
  5259. },
  5260. "require": {
  5261. "php": ">=5.6"
  5262. },
  5263. "require-dev": {
  5264. "phpunit/phpunit": "^8.5"
  5265. },
  5266. "type": "library",
  5267. "extra": {
  5268. "branch-alias": {
  5269. "dev-master": "1.0.x-dev"
  5270. }
  5271. },
  5272. "autoload": {
  5273. "classmap": [
  5274. "src/"
  5275. ]
  5276. },
  5277. "notification-url": "https://packagist.org/downloads/",
  5278. "license": [
  5279. "BSD-3-Clause"
  5280. ],
  5281. "authors": [
  5282. {
  5283. "name": "Sebastian Bergmann",
  5284. "email": "sebastian@phpunit.de"
  5285. }
  5286. ],
  5287. "description": "Looks up which function or method a line of code belongs to",
  5288. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  5289. "support": {
  5290. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  5291. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/1.0.3"
  5292. },
  5293. "funding": [
  5294. {
  5295. "url": "https://github.com/sebastianbergmann",
  5296. "type": "github"
  5297. }
  5298. ],
  5299. "time": "2024-03-01T13:45:45+00:00"
  5300. },
  5301. {
  5302. "name": "sebastian/comparator",
  5303. "version": "3.0.7",
  5304. "source": {
  5305. "type": "git",
  5306. "url": "https://github.com/sebastianbergmann/comparator.git",
  5307. "reference": "bc7d8ac2fe1cce229bff9b5fd4efe65918a1ff52"
  5308. },
  5309. "dist": {
  5310. "type": "zip",
  5311. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/bc7d8ac2fe1cce229bff9b5fd4efe65918a1ff52",
  5312. "reference": "bc7d8ac2fe1cce229bff9b5fd4efe65918a1ff52",
  5313. "shasum": ""
  5314. },
  5315. "require": {
  5316. "php": ">=7.1",
  5317. "sebastian/diff": "^3.0",
  5318. "sebastian/exporter": "^3.1"
  5319. },
  5320. "require-dev": {
  5321. "phpunit/phpunit": "^8.5"
  5322. },
  5323. "type": "library",
  5324. "extra": {
  5325. "branch-alias": {
  5326. "dev-master": "3.0-dev"
  5327. }
  5328. },
  5329. "autoload": {
  5330. "classmap": [
  5331. "src/"
  5332. ]
  5333. },
  5334. "notification-url": "https://packagist.org/downloads/",
  5335. "license": [
  5336. "BSD-3-Clause"
  5337. ],
  5338. "authors": [
  5339. {
  5340. "name": "Sebastian Bergmann",
  5341. "email": "sebastian@phpunit.de"
  5342. },
  5343. {
  5344. "name": "Jeff Welch",
  5345. "email": "whatthejeff@gmail.com"
  5346. },
  5347. {
  5348. "name": "Volker Dusch",
  5349. "email": "github@wallbash.com"
  5350. },
  5351. {
  5352. "name": "Bernhard Schussek",
  5353. "email": "bschussek@2bepublished.at"
  5354. }
  5355. ],
  5356. "description": "Provides the functionality to compare PHP values for equality",
  5357. "homepage": "https://github.com/sebastianbergmann/comparator",
  5358. "keywords": [
  5359. "comparator",
  5360. "compare",
  5361. "equality"
  5362. ],
  5363. "support": {
  5364. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  5365. "source": "https://github.com/sebastianbergmann/comparator/tree/3.0.7"
  5366. },
  5367. "funding": [
  5368. {
  5369. "url": "https://github.com/sebastianbergmann",
  5370. "type": "github"
  5371. },
  5372. {
  5373. "url": "https://liberapay.com/sebastianbergmann",
  5374. "type": "liberapay"
  5375. },
  5376. {
  5377. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  5378. "type": "thanks_dev"
  5379. },
  5380. {
  5381. "url": "https://tidelift.com/funding/github/packagist/sebastian/comparator",
  5382. "type": "tidelift"
  5383. }
  5384. ],
  5385. "time": "2026-01-24T09:20:25+00:00"
  5386. },
  5387. {
  5388. "name": "sebastian/diff",
  5389. "version": "3.0.6",
  5390. "source": {
  5391. "type": "git",
  5392. "url": "https://github.com/sebastianbergmann/diff.git",
  5393. "reference": "98ff311ca519c3aa73ccd3de053bdb377171d7b6"
  5394. },
  5395. "dist": {
  5396. "type": "zip",
  5397. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/98ff311ca519c3aa73ccd3de053bdb377171d7b6",
  5398. "reference": "98ff311ca519c3aa73ccd3de053bdb377171d7b6",
  5399. "shasum": ""
  5400. },
  5401. "require": {
  5402. "php": ">=7.1"
  5403. },
  5404. "require-dev": {
  5405. "phpunit/phpunit": "^7.5 || ^8.0",
  5406. "symfony/process": "^2 || ^3.3 || ^4"
  5407. },
  5408. "type": "library",
  5409. "extra": {
  5410. "branch-alias": {
  5411. "dev-master": "3.0-dev"
  5412. }
  5413. },
  5414. "autoload": {
  5415. "classmap": [
  5416. "src/"
  5417. ]
  5418. },
  5419. "notification-url": "https://packagist.org/downloads/",
  5420. "license": [
  5421. "BSD-3-Clause"
  5422. ],
  5423. "authors": [
  5424. {
  5425. "name": "Sebastian Bergmann",
  5426. "email": "sebastian@phpunit.de"
  5427. },
  5428. {
  5429. "name": "Kore Nordmann",
  5430. "email": "mail@kore-nordmann.de"
  5431. }
  5432. ],
  5433. "description": "Diff implementation",
  5434. "homepage": "https://github.com/sebastianbergmann/diff",
  5435. "keywords": [
  5436. "diff",
  5437. "udiff",
  5438. "unidiff",
  5439. "unified diff"
  5440. ],
  5441. "support": {
  5442. "issues": "https://github.com/sebastianbergmann/diff/issues",
  5443. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.6"
  5444. },
  5445. "funding": [
  5446. {
  5447. "url": "https://github.com/sebastianbergmann",
  5448. "type": "github"
  5449. }
  5450. ],
  5451. "time": "2024-03-02T06:16:36+00:00"
  5452. },
  5453. {
  5454. "name": "sebastian/environment",
  5455. "version": "4.2.5",
  5456. "source": {
  5457. "type": "git",
  5458. "url": "https://github.com/sebastianbergmann/environment.git",
  5459. "reference": "56932f6049a0482853056ffd617c91ffcc754205"
  5460. },
  5461. "dist": {
  5462. "type": "zip",
  5463. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/56932f6049a0482853056ffd617c91ffcc754205",
  5464. "reference": "56932f6049a0482853056ffd617c91ffcc754205",
  5465. "shasum": ""
  5466. },
  5467. "require": {
  5468. "php": ">=7.1"
  5469. },
  5470. "require-dev": {
  5471. "phpunit/phpunit": "^7.5"
  5472. },
  5473. "suggest": {
  5474. "ext-posix": "*"
  5475. },
  5476. "type": "library",
  5477. "extra": {
  5478. "branch-alias": {
  5479. "dev-master": "4.2-dev"
  5480. }
  5481. },
  5482. "autoload": {
  5483. "classmap": [
  5484. "src/"
  5485. ]
  5486. },
  5487. "notification-url": "https://packagist.org/downloads/",
  5488. "license": [
  5489. "BSD-3-Clause"
  5490. ],
  5491. "authors": [
  5492. {
  5493. "name": "Sebastian Bergmann",
  5494. "email": "sebastian@phpunit.de"
  5495. }
  5496. ],
  5497. "description": "Provides functionality to handle HHVM/PHP environments",
  5498. "homepage": "http://www.github.com/sebastianbergmann/environment",
  5499. "keywords": [
  5500. "Xdebug",
  5501. "environment",
  5502. "hhvm"
  5503. ],
  5504. "support": {
  5505. "issues": "https://github.com/sebastianbergmann/environment/issues",
  5506. "source": "https://github.com/sebastianbergmann/environment/tree/4.2.5"
  5507. },
  5508. "funding": [
  5509. {
  5510. "url": "https://github.com/sebastianbergmann",
  5511. "type": "github"
  5512. }
  5513. ],
  5514. "time": "2024-03-01T13:49:59+00:00"
  5515. },
  5516. {
  5517. "name": "sebastian/exporter",
  5518. "version": "3.1.8",
  5519. "source": {
  5520. "type": "git",
  5521. "url": "https://github.com/sebastianbergmann/exporter.git",
  5522. "reference": "64cfeaa341951ceb2019d7b98232399d57bb2296"
  5523. },
  5524. "dist": {
  5525. "type": "zip",
  5526. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/64cfeaa341951ceb2019d7b98232399d57bb2296",
  5527. "reference": "64cfeaa341951ceb2019d7b98232399d57bb2296",
  5528. "shasum": ""
  5529. },
  5530. "require": {
  5531. "php": ">=7.2",
  5532. "sebastian/recursion-context": "^3.0"
  5533. },
  5534. "require-dev": {
  5535. "ext-mbstring": "*",
  5536. "phpunit/phpunit": "^8.5"
  5537. },
  5538. "type": "library",
  5539. "extra": {
  5540. "branch-alias": {
  5541. "dev-master": "3.1.x-dev"
  5542. }
  5543. },
  5544. "autoload": {
  5545. "classmap": [
  5546. "src/"
  5547. ]
  5548. },
  5549. "notification-url": "https://packagist.org/downloads/",
  5550. "license": [
  5551. "BSD-3-Clause"
  5552. ],
  5553. "authors": [
  5554. {
  5555. "name": "Sebastian Bergmann",
  5556. "email": "sebastian@phpunit.de"
  5557. },
  5558. {
  5559. "name": "Jeff Welch",
  5560. "email": "whatthejeff@gmail.com"
  5561. },
  5562. {
  5563. "name": "Volker Dusch",
  5564. "email": "github@wallbash.com"
  5565. },
  5566. {
  5567. "name": "Adam Harvey",
  5568. "email": "aharvey@php.net"
  5569. },
  5570. {
  5571. "name": "Bernhard Schussek",
  5572. "email": "bschussek@gmail.com"
  5573. }
  5574. ],
  5575. "description": "Provides the functionality to export PHP variables for visualization",
  5576. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  5577. "keywords": [
  5578. "export",
  5579. "exporter"
  5580. ],
  5581. "support": {
  5582. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  5583. "source": "https://github.com/sebastianbergmann/exporter/tree/3.1.8"
  5584. },
  5585. "funding": [
  5586. {
  5587. "url": "https://github.com/sebastianbergmann",
  5588. "type": "github"
  5589. },
  5590. {
  5591. "url": "https://liberapay.com/sebastianbergmann",
  5592. "type": "liberapay"
  5593. },
  5594. {
  5595. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  5596. "type": "thanks_dev"
  5597. },
  5598. {
  5599. "url": "https://tidelift.com/funding/github/packagist/sebastian/exporter",
  5600. "type": "tidelift"
  5601. }
  5602. ],
  5603. "time": "2025-09-24T05:55:14+00:00"
  5604. },
  5605. {
  5606. "name": "sebastian/global-state",
  5607. "version": "3.0.6",
  5608. "source": {
  5609. "type": "git",
  5610. "url": "https://github.com/sebastianbergmann/global-state.git",
  5611. "reference": "800689427e3e8cf57a8fe38fcd1d4344c9b2f046"
  5612. },
  5613. "dist": {
  5614. "type": "zip",
  5615. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/800689427e3e8cf57a8fe38fcd1d4344c9b2f046",
  5616. "reference": "800689427e3e8cf57a8fe38fcd1d4344c9b2f046",
  5617. "shasum": ""
  5618. },
  5619. "require": {
  5620. "php": ">=7.2",
  5621. "sebastian/object-reflector": "^1.1.1",
  5622. "sebastian/recursion-context": "^3.0"
  5623. },
  5624. "require-dev": {
  5625. "ext-dom": "*",
  5626. "phpunit/phpunit": "^8.0"
  5627. },
  5628. "suggest": {
  5629. "ext-uopz": "*"
  5630. },
  5631. "type": "library",
  5632. "extra": {
  5633. "branch-alias": {
  5634. "dev-master": "3.0-dev"
  5635. }
  5636. },
  5637. "autoload": {
  5638. "classmap": [
  5639. "src/"
  5640. ]
  5641. },
  5642. "notification-url": "https://packagist.org/downloads/",
  5643. "license": [
  5644. "BSD-3-Clause"
  5645. ],
  5646. "authors": [
  5647. {
  5648. "name": "Sebastian Bergmann",
  5649. "email": "sebastian@phpunit.de"
  5650. }
  5651. ],
  5652. "description": "Snapshotting of global state",
  5653. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  5654. "keywords": [
  5655. "global state"
  5656. ],
  5657. "support": {
  5658. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  5659. "source": "https://github.com/sebastianbergmann/global-state/tree/3.0.6"
  5660. },
  5661. "funding": [
  5662. {
  5663. "url": "https://github.com/sebastianbergmann",
  5664. "type": "github"
  5665. },
  5666. {
  5667. "url": "https://liberapay.com/sebastianbergmann",
  5668. "type": "liberapay"
  5669. },
  5670. {
  5671. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  5672. "type": "thanks_dev"
  5673. },
  5674. {
  5675. "url": "https://tidelift.com/funding/github/packagist/sebastian/global-state",
  5676. "type": "tidelift"
  5677. }
  5678. ],
  5679. "time": "2025-08-10T05:40:12+00:00"
  5680. },
  5681. {
  5682. "name": "sebastian/object-enumerator",
  5683. "version": "3.0.5",
  5684. "source": {
  5685. "type": "git",
  5686. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  5687. "reference": "ac5b293dba925751b808e02923399fb44ff0d541"
  5688. },
  5689. "dist": {
  5690. "type": "zip",
  5691. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/ac5b293dba925751b808e02923399fb44ff0d541",
  5692. "reference": "ac5b293dba925751b808e02923399fb44ff0d541",
  5693. "shasum": ""
  5694. },
  5695. "require": {
  5696. "php": ">=7.0",
  5697. "sebastian/object-reflector": "^1.1.1",
  5698. "sebastian/recursion-context": "^3.0"
  5699. },
  5700. "require-dev": {
  5701. "phpunit/phpunit": "^6.0"
  5702. },
  5703. "type": "library",
  5704. "extra": {
  5705. "branch-alias": {
  5706. "dev-master": "3.0.x-dev"
  5707. }
  5708. },
  5709. "autoload": {
  5710. "classmap": [
  5711. "src/"
  5712. ]
  5713. },
  5714. "notification-url": "https://packagist.org/downloads/",
  5715. "license": [
  5716. "BSD-3-Clause"
  5717. ],
  5718. "authors": [
  5719. {
  5720. "name": "Sebastian Bergmann",
  5721. "email": "sebastian@phpunit.de"
  5722. }
  5723. ],
  5724. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  5725. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  5726. "support": {
  5727. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  5728. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/3.0.5"
  5729. },
  5730. "funding": [
  5731. {
  5732. "url": "https://github.com/sebastianbergmann",
  5733. "type": "github"
  5734. }
  5735. ],
  5736. "time": "2024-03-01T13:54:02+00:00"
  5737. },
  5738. {
  5739. "name": "sebastian/object-reflector",
  5740. "version": "1.1.3",
  5741. "source": {
  5742. "type": "git",
  5743. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  5744. "reference": "1d439c229e61f244ff1f211e5c99737f90c67def"
  5745. },
  5746. "dist": {
  5747. "type": "zip",
  5748. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/1d439c229e61f244ff1f211e5c99737f90c67def",
  5749. "reference": "1d439c229e61f244ff1f211e5c99737f90c67def",
  5750. "shasum": ""
  5751. },
  5752. "require": {
  5753. "php": ">=7.0"
  5754. },
  5755. "require-dev": {
  5756. "phpunit/phpunit": "^6.0"
  5757. },
  5758. "type": "library",
  5759. "extra": {
  5760. "branch-alias": {
  5761. "dev-master": "1.1-dev"
  5762. }
  5763. },
  5764. "autoload": {
  5765. "classmap": [
  5766. "src/"
  5767. ]
  5768. },
  5769. "notification-url": "https://packagist.org/downloads/",
  5770. "license": [
  5771. "BSD-3-Clause"
  5772. ],
  5773. "authors": [
  5774. {
  5775. "name": "Sebastian Bergmann",
  5776. "email": "sebastian@phpunit.de"
  5777. }
  5778. ],
  5779. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  5780. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  5781. "support": {
  5782. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  5783. "source": "https://github.com/sebastianbergmann/object-reflector/tree/1.1.3"
  5784. },
  5785. "funding": [
  5786. {
  5787. "url": "https://github.com/sebastianbergmann",
  5788. "type": "github"
  5789. }
  5790. ],
  5791. "time": "2024-03-01T13:56:04+00:00"
  5792. },
  5793. {
  5794. "name": "sebastian/recursion-context",
  5795. "version": "3.0.3",
  5796. "source": {
  5797. "type": "git",
  5798. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  5799. "reference": "8fe7e75986a9d24b4cceae847314035df7703a5a"
  5800. },
  5801. "dist": {
  5802. "type": "zip",
  5803. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/8fe7e75986a9d24b4cceae847314035df7703a5a",
  5804. "reference": "8fe7e75986a9d24b4cceae847314035df7703a5a",
  5805. "shasum": ""
  5806. },
  5807. "require": {
  5808. "php": ">=7.0"
  5809. },
  5810. "require-dev": {
  5811. "phpunit/phpunit": "^6.0"
  5812. },
  5813. "type": "library",
  5814. "extra": {
  5815. "branch-alias": {
  5816. "dev-master": "3.0.x-dev"
  5817. }
  5818. },
  5819. "autoload": {
  5820. "classmap": [
  5821. "src/"
  5822. ]
  5823. },
  5824. "notification-url": "https://packagist.org/downloads/",
  5825. "license": [
  5826. "BSD-3-Clause"
  5827. ],
  5828. "authors": [
  5829. {
  5830. "name": "Sebastian Bergmann",
  5831. "email": "sebastian@phpunit.de"
  5832. },
  5833. {
  5834. "name": "Jeff Welch",
  5835. "email": "whatthejeff@gmail.com"
  5836. },
  5837. {
  5838. "name": "Adam Harvey",
  5839. "email": "aharvey@php.net"
  5840. }
  5841. ],
  5842. "description": "Provides functionality to recursively process PHP variables",
  5843. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  5844. "support": {
  5845. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  5846. "source": "https://github.com/sebastianbergmann/recursion-context/tree/3.0.3"
  5847. },
  5848. "funding": [
  5849. {
  5850. "url": "https://github.com/sebastianbergmann",
  5851. "type": "github"
  5852. },
  5853. {
  5854. "url": "https://liberapay.com/sebastianbergmann",
  5855. "type": "liberapay"
  5856. },
  5857. {
  5858. "url": "https://thanks.dev/u/gh/sebastianbergmann",
  5859. "type": "thanks_dev"
  5860. },
  5861. {
  5862. "url": "https://tidelift.com/funding/github/packagist/sebastian/recursion-context",
  5863. "type": "tidelift"
  5864. }
  5865. ],
  5866. "time": "2025-08-10T05:25:53+00:00"
  5867. },
  5868. {
  5869. "name": "sebastian/resource-operations",
  5870. "version": "2.0.3",
  5871. "source": {
  5872. "type": "git",
  5873. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  5874. "reference": "72a7f7674d053d548003b16ff5a106e7e0e06eee"
  5875. },
  5876. "dist": {
  5877. "type": "zip",
  5878. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/72a7f7674d053d548003b16ff5a106e7e0e06eee",
  5879. "reference": "72a7f7674d053d548003b16ff5a106e7e0e06eee",
  5880. "shasum": ""
  5881. },
  5882. "require": {
  5883. "php": ">=7.1"
  5884. },
  5885. "type": "library",
  5886. "extra": {
  5887. "branch-alias": {
  5888. "dev-master": "2.0-dev"
  5889. }
  5890. },
  5891. "autoload": {
  5892. "classmap": [
  5893. "src/"
  5894. ]
  5895. },
  5896. "notification-url": "https://packagist.org/downloads/",
  5897. "license": [
  5898. "BSD-3-Clause"
  5899. ],
  5900. "authors": [
  5901. {
  5902. "name": "Sebastian Bergmann",
  5903. "email": "sebastian@phpunit.de"
  5904. }
  5905. ],
  5906. "description": "Provides a list of PHP built-in functions that operate on resources",
  5907. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  5908. "support": {
  5909. "source": "https://github.com/sebastianbergmann/resource-operations/tree/2.0.3"
  5910. },
  5911. "funding": [
  5912. {
  5913. "url": "https://github.com/sebastianbergmann",
  5914. "type": "github"
  5915. }
  5916. ],
  5917. "time": "2024-03-01T13:59:09+00:00"
  5918. },
  5919. {
  5920. "name": "sebastian/type",
  5921. "version": "1.1.5",
  5922. "source": {
  5923. "type": "git",
  5924. "url": "https://github.com/sebastianbergmann/type.git",
  5925. "reference": "18f071c3a29892b037d35e6b20ddf3ea39b42874"
  5926. },
  5927. "dist": {
  5928. "type": "zip",
  5929. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/18f071c3a29892b037d35e6b20ddf3ea39b42874",
  5930. "reference": "18f071c3a29892b037d35e6b20ddf3ea39b42874",
  5931. "shasum": ""
  5932. },
  5933. "require": {
  5934. "php": ">=7.2"
  5935. },
  5936. "require-dev": {
  5937. "phpunit/phpunit": "^8.2"
  5938. },
  5939. "type": "library",
  5940. "extra": {
  5941. "branch-alias": {
  5942. "dev-master": "1.1-dev"
  5943. }
  5944. },
  5945. "autoload": {
  5946. "classmap": [
  5947. "src/"
  5948. ]
  5949. },
  5950. "notification-url": "https://packagist.org/downloads/",
  5951. "license": [
  5952. "BSD-3-Clause"
  5953. ],
  5954. "authors": [
  5955. {
  5956. "name": "Sebastian Bergmann",
  5957. "email": "sebastian@phpunit.de",
  5958. "role": "lead"
  5959. }
  5960. ],
  5961. "description": "Collection of value objects that represent the types of the PHP type system",
  5962. "homepage": "https://github.com/sebastianbergmann/type",
  5963. "support": {
  5964. "issues": "https://github.com/sebastianbergmann/type/issues",
  5965. "source": "https://github.com/sebastianbergmann/type/tree/1.1.5"
  5966. },
  5967. "funding": [
  5968. {
  5969. "url": "https://github.com/sebastianbergmann",
  5970. "type": "github"
  5971. }
  5972. ],
  5973. "time": "2024-03-01T14:04:07+00:00"
  5974. },
  5975. {
  5976. "name": "sebastian/version",
  5977. "version": "2.0.1",
  5978. "source": {
  5979. "type": "git",
  5980. "url": "https://github.com/sebastianbergmann/version.git",
  5981. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  5982. },
  5983. "dist": {
  5984. "type": "zip",
  5985. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  5986. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  5987. "shasum": ""
  5988. },
  5989. "require": {
  5990. "php": ">=5.6"
  5991. },
  5992. "type": "library",
  5993. "extra": {
  5994. "branch-alias": {
  5995. "dev-master": "2.0.x-dev"
  5996. }
  5997. },
  5998. "autoload": {
  5999. "classmap": [
  6000. "src/"
  6001. ]
  6002. },
  6003. "notification-url": "https://packagist.org/downloads/",
  6004. "license": [
  6005. "BSD-3-Clause"
  6006. ],
  6007. "authors": [
  6008. {
  6009. "name": "Sebastian Bergmann",
  6010. "email": "sebastian@phpunit.de",
  6011. "role": "lead"
  6012. }
  6013. ],
  6014. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  6015. "homepage": "https://github.com/sebastianbergmann/version",
  6016. "support": {
  6017. "issues": "https://github.com/sebastianbergmann/version/issues",
  6018. "source": "https://github.com/sebastianbergmann/version/tree/master"
  6019. },
  6020. "time": "2016-10-03T07:35:21+00:00"
  6021. },
  6022. {
  6023. "name": "symfony/browser-kit",
  6024. "version": "v4.2.4",
  6025. "source": {
  6026. "type": "git",
  6027. "url": "https://github.com/symfony/browser-kit.git",
  6028. "reference": "61d85c5af2fc058014c7c89504c3944e73a086f0"
  6029. },
  6030. "dist": {
  6031. "type": "zip",
  6032. "url": "https://api.github.com/repos/symfony/browser-kit/zipball/61d85c5af2fc058014c7c89504c3944e73a086f0",
  6033. "reference": "61d85c5af2fc058014c7c89504c3944e73a086f0",
  6034. "shasum": ""
  6035. },
  6036. "require": {
  6037. "php": "^7.1.3",
  6038. "symfony/dom-crawler": "~3.4|~4.0"
  6039. },
  6040. "require-dev": {
  6041. "symfony/css-selector": "~3.4|~4.0",
  6042. "symfony/process": "~3.4|~4.0"
  6043. },
  6044. "suggest": {
  6045. "symfony/process": ""
  6046. },
  6047. "type": "library",
  6048. "extra": {
  6049. "branch-alias": {
  6050. "dev-master": "4.2-dev"
  6051. }
  6052. },
  6053. "autoload": {
  6054. "psr-4": {
  6055. "Symfony\\Component\\BrowserKit\\": ""
  6056. },
  6057. "exclude-from-classmap": [
  6058. "/Tests/"
  6059. ]
  6060. },
  6061. "notification-url": "https://packagist.org/downloads/",
  6062. "license": [
  6063. "MIT"
  6064. ],
  6065. "authors": [
  6066. {
  6067. "name": "Fabien Potencier",
  6068. "email": "fabien@symfony.com"
  6069. },
  6070. {
  6071. "name": "Symfony Community",
  6072. "homepage": "https://symfony.com/contributors"
  6073. }
  6074. ],
  6075. "description": "Symfony BrowserKit Component",
  6076. "homepage": "https://symfony.com",
  6077. "support": {
  6078. "source": "https://github.com/symfony/browser-kit/tree/4.2"
  6079. },
  6080. "time": "2019-02-23T15:17:42+00:00"
  6081. },
  6082. {
  6083. "name": "symfony/console",
  6084. "version": "v5.2.11",
  6085. "source": {
  6086. "type": "git",
  6087. "url": "https://github.com/symfony/console.git",
  6088. "reference": "2f93c8c64295e029b7ff4d68b9a59c5ad8b7e24a"
  6089. },
  6090. "dist": {
  6091. "type": "zip",
  6092. "url": "https://api.github.com/repos/symfony/console/zipball/2f93c8c64295e029b7ff4d68b9a59c5ad8b7e24a",
  6093. "reference": "2f93c8c64295e029b7ff4d68b9a59c5ad8b7e24a",
  6094. "shasum": ""
  6095. },
  6096. "require": {
  6097. "php": ">=7.2.5",
  6098. "symfony/polyfill-mbstring": "~1.0",
  6099. "symfony/polyfill-php73": "^1.8",
  6100. "symfony/polyfill-php80": "^1.15",
  6101. "symfony/service-contracts": "^1.1|^2",
  6102. "symfony/string": "^5.1"
  6103. },
  6104. "conflict": {
  6105. "symfony/dependency-injection": "<4.4",
  6106. "symfony/dotenv": "<5.1",
  6107. "symfony/event-dispatcher": "<4.4",
  6108. "symfony/lock": "<4.4",
  6109. "symfony/process": "<4.4"
  6110. },
  6111. "provide": {
  6112. "psr/log-implementation": "1.0"
  6113. },
  6114. "require-dev": {
  6115. "psr/log": "~1.0",
  6116. "symfony/config": "^4.4|^5.0",
  6117. "symfony/dependency-injection": "^4.4|^5.0",
  6118. "symfony/event-dispatcher": "^4.4|^5.0",
  6119. "symfony/lock": "^4.4|^5.0",
  6120. "symfony/process": "^4.4|^5.0",
  6121. "symfony/var-dumper": "^4.4|^5.0"
  6122. },
  6123. "suggest": {
  6124. "psr/log": "For using the console logger",
  6125. "symfony/event-dispatcher": "",
  6126. "symfony/lock": "",
  6127. "symfony/process": ""
  6128. },
  6129. "type": "library",
  6130. "autoload": {
  6131. "psr-4": {
  6132. "Symfony\\Component\\Console\\": ""
  6133. },
  6134. "exclude-from-classmap": [
  6135. "/Tests/"
  6136. ]
  6137. },
  6138. "notification-url": "https://packagist.org/downloads/",
  6139. "license": [
  6140. "MIT"
  6141. ],
  6142. "authors": [
  6143. {
  6144. "name": "Fabien Potencier",
  6145. "email": "fabien@symfony.com"
  6146. },
  6147. {
  6148. "name": "Symfony Community",
  6149. "homepage": "https://symfony.com/contributors"
  6150. }
  6151. ],
  6152. "description": "Eases the creation of beautiful and testable command line interfaces",
  6153. "homepage": "https://symfony.com",
  6154. "keywords": [
  6155. "cli",
  6156. "command line",
  6157. "console",
  6158. "terminal"
  6159. ],
  6160. "support": {
  6161. "source": "https://github.com/symfony/console/tree/v5.2.11"
  6162. },
  6163. "funding": [
  6164. {
  6165. "url": "https://symfony.com/sponsor",
  6166. "type": "custom"
  6167. },
  6168. {
  6169. "url": "https://github.com/fabpot",
  6170. "type": "github"
  6171. },
  6172. {
  6173. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6174. "type": "tidelift"
  6175. }
  6176. ],
  6177. "time": "2021-06-06T09:50:27+00:00"
  6178. },
  6179. {
  6180. "name": "symfony/css-selector",
  6181. "version": "v5.4.45",
  6182. "source": {
  6183. "type": "git",
  6184. "url": "https://github.com/symfony/css-selector.git",
  6185. "reference": "4f7f3c35fba88146b56d0025d20ace3f3901f097"
  6186. },
  6187. "dist": {
  6188. "type": "zip",
  6189. "url": "https://api.github.com/repos/symfony/css-selector/zipball/4f7f3c35fba88146b56d0025d20ace3f3901f097",
  6190. "reference": "4f7f3c35fba88146b56d0025d20ace3f3901f097",
  6191. "shasum": ""
  6192. },
  6193. "require": {
  6194. "php": ">=7.2.5",
  6195. "symfony/polyfill-php80": "^1.16"
  6196. },
  6197. "type": "library",
  6198. "autoload": {
  6199. "psr-4": {
  6200. "Symfony\\Component\\CssSelector\\": ""
  6201. },
  6202. "exclude-from-classmap": [
  6203. "/Tests/"
  6204. ]
  6205. },
  6206. "notification-url": "https://packagist.org/downloads/",
  6207. "license": [
  6208. "MIT"
  6209. ],
  6210. "authors": [
  6211. {
  6212. "name": "Fabien Potencier",
  6213. "email": "fabien@symfony.com"
  6214. },
  6215. {
  6216. "name": "Jean-François Simon",
  6217. "email": "jeanfrancois.simon@sensiolabs.com"
  6218. },
  6219. {
  6220. "name": "Symfony Community",
  6221. "homepage": "https://symfony.com/contributors"
  6222. }
  6223. ],
  6224. "description": "Converts CSS selectors to XPath expressions",
  6225. "homepage": "https://symfony.com",
  6226. "support": {
  6227. "source": "https://github.com/symfony/css-selector/tree/v5.4.45"
  6228. },
  6229. "funding": [
  6230. {
  6231. "url": "https://symfony.com/sponsor",
  6232. "type": "custom"
  6233. },
  6234. {
  6235. "url": "https://github.com/fabpot",
  6236. "type": "github"
  6237. },
  6238. {
  6239. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6240. "type": "tidelift"
  6241. }
  6242. ],
  6243. "time": "2024-09-25T14:11:13+00:00"
  6244. },
  6245. {
  6246. "name": "symfony/dom-crawler",
  6247. "version": "v4.4.45",
  6248. "source": {
  6249. "type": "git",
  6250. "url": "https://github.com/symfony/dom-crawler.git",
  6251. "reference": "4b8daf6c56801e6d664224261cb100b73edc78a5"
  6252. },
  6253. "dist": {
  6254. "type": "zip",
  6255. "url": "https://api.github.com/repos/symfony/dom-crawler/zipball/4b8daf6c56801e6d664224261cb100b73edc78a5",
  6256. "reference": "4b8daf6c56801e6d664224261cb100b73edc78a5",
  6257. "shasum": ""
  6258. },
  6259. "require": {
  6260. "php": ">=7.1.3",
  6261. "symfony/polyfill-ctype": "~1.8",
  6262. "symfony/polyfill-mbstring": "~1.0",
  6263. "symfony/polyfill-php80": "^1.16"
  6264. },
  6265. "conflict": {
  6266. "masterminds/html5": "<2.6"
  6267. },
  6268. "require-dev": {
  6269. "masterminds/html5": "^2.6",
  6270. "symfony/css-selector": "^3.4|^4.0|^5.0"
  6271. },
  6272. "suggest": {
  6273. "symfony/css-selector": ""
  6274. },
  6275. "type": "library",
  6276. "autoload": {
  6277. "psr-4": {
  6278. "Symfony\\Component\\DomCrawler\\": ""
  6279. },
  6280. "exclude-from-classmap": [
  6281. "/Tests/"
  6282. ]
  6283. },
  6284. "notification-url": "https://packagist.org/downloads/",
  6285. "license": [
  6286. "MIT"
  6287. ],
  6288. "authors": [
  6289. {
  6290. "name": "Fabien Potencier",
  6291. "email": "fabien@symfony.com"
  6292. },
  6293. {
  6294. "name": "Symfony Community",
  6295. "homepage": "https://symfony.com/contributors"
  6296. }
  6297. ],
  6298. "description": "Eases DOM navigation for HTML and XML documents",
  6299. "homepage": "https://symfony.com",
  6300. "support": {
  6301. "source": "https://github.com/symfony/dom-crawler/tree/v4.4.45"
  6302. },
  6303. "funding": [
  6304. {
  6305. "url": "https://symfony.com/sponsor",
  6306. "type": "custom"
  6307. },
  6308. {
  6309. "url": "https://github.com/fabpot",
  6310. "type": "github"
  6311. },
  6312. {
  6313. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6314. "type": "tidelift"
  6315. }
  6316. ],
  6317. "time": "2022-08-03T12:57:57+00:00"
  6318. },
  6319. {
  6320. "name": "symfony/event-dispatcher",
  6321. "version": "v5.4.45",
  6322. "source": {
  6323. "type": "git",
  6324. "url": "https://github.com/symfony/event-dispatcher.git",
  6325. "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9"
  6326. },
  6327. "dist": {
  6328. "type": "zip",
  6329. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/72982eb416f61003e9bb6e91f8b3213600dcf9e9",
  6330. "reference": "72982eb416f61003e9bb6e91f8b3213600dcf9e9",
  6331. "shasum": ""
  6332. },
  6333. "require": {
  6334. "php": ">=7.2.5",
  6335. "symfony/deprecation-contracts": "^2.1|^3",
  6336. "symfony/event-dispatcher-contracts": "^2|^3",
  6337. "symfony/polyfill-php80": "^1.16"
  6338. },
  6339. "conflict": {
  6340. "symfony/dependency-injection": "<4.4"
  6341. },
  6342. "provide": {
  6343. "psr/event-dispatcher-implementation": "1.0",
  6344. "symfony/event-dispatcher-implementation": "2.0"
  6345. },
  6346. "require-dev": {
  6347. "psr/log": "^1|^2|^3",
  6348. "symfony/config": "^4.4|^5.0|^6.0",
  6349. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  6350. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6351. "symfony/expression-language": "^4.4|^5.0|^6.0",
  6352. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  6353. "symfony/service-contracts": "^1.1|^2|^3",
  6354. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  6355. },
  6356. "suggest": {
  6357. "symfony/dependency-injection": "",
  6358. "symfony/http-kernel": ""
  6359. },
  6360. "type": "library",
  6361. "autoload": {
  6362. "psr-4": {
  6363. "Symfony\\Component\\EventDispatcher\\": ""
  6364. },
  6365. "exclude-from-classmap": [
  6366. "/Tests/"
  6367. ]
  6368. },
  6369. "notification-url": "https://packagist.org/downloads/",
  6370. "license": [
  6371. "MIT"
  6372. ],
  6373. "authors": [
  6374. {
  6375. "name": "Fabien Potencier",
  6376. "email": "fabien@symfony.com"
  6377. },
  6378. {
  6379. "name": "Symfony Community",
  6380. "homepage": "https://symfony.com/contributors"
  6381. }
  6382. ],
  6383. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  6384. "homepage": "https://symfony.com",
  6385. "support": {
  6386. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.45"
  6387. },
  6388. "funding": [
  6389. {
  6390. "url": "https://symfony.com/sponsor",
  6391. "type": "custom"
  6392. },
  6393. {
  6394. "url": "https://github.com/fabpot",
  6395. "type": "github"
  6396. },
  6397. {
  6398. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6399. "type": "tidelift"
  6400. }
  6401. ],
  6402. "time": "2024-09-25T14:11:13+00:00"
  6403. },
  6404. {
  6405. "name": "symfony/event-dispatcher-contracts",
  6406. "version": "v3.6.0",
  6407. "source": {
  6408. "type": "git",
  6409. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  6410. "reference": "59eb412e93815df44f05f342958efa9f46b1e586"
  6411. },
  6412. "dist": {
  6413. "type": "zip",
  6414. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/59eb412e93815df44f05f342958efa9f46b1e586",
  6415. "reference": "59eb412e93815df44f05f342958efa9f46b1e586",
  6416. "shasum": ""
  6417. },
  6418. "require": {
  6419. "php": ">=8.1",
  6420. "psr/event-dispatcher": "^1"
  6421. },
  6422. "type": "library",
  6423. "extra": {
  6424. "thanks": {
  6425. "url": "https://github.com/symfony/contracts",
  6426. "name": "symfony/contracts"
  6427. },
  6428. "branch-alias": {
  6429. "dev-main": "3.6-dev"
  6430. }
  6431. },
  6432. "autoload": {
  6433. "psr-4": {
  6434. "Symfony\\Contracts\\EventDispatcher\\": ""
  6435. }
  6436. },
  6437. "notification-url": "https://packagist.org/downloads/",
  6438. "license": [
  6439. "MIT"
  6440. ],
  6441. "authors": [
  6442. {
  6443. "name": "Nicolas Grekas",
  6444. "email": "p@tchwork.com"
  6445. },
  6446. {
  6447. "name": "Symfony Community",
  6448. "homepage": "https://symfony.com/contributors"
  6449. }
  6450. ],
  6451. "description": "Generic abstractions related to dispatching event",
  6452. "homepage": "https://symfony.com",
  6453. "keywords": [
  6454. "abstractions",
  6455. "contracts",
  6456. "decoupling",
  6457. "interfaces",
  6458. "interoperability",
  6459. "standards"
  6460. ],
  6461. "support": {
  6462. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v3.6.0"
  6463. },
  6464. "funding": [
  6465. {
  6466. "url": "https://symfony.com/sponsor",
  6467. "type": "custom"
  6468. },
  6469. {
  6470. "url": "https://github.com/fabpot",
  6471. "type": "github"
  6472. },
  6473. {
  6474. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6475. "type": "tidelift"
  6476. }
  6477. ],
  6478. "time": "2024-09-25T14:21:43+00:00"
  6479. },
  6480. {
  6481. "name": "symfony/finder",
  6482. "version": "v5.4.45",
  6483. "source": {
  6484. "type": "git",
  6485. "url": "https://github.com/symfony/finder.git",
  6486. "reference": "63741784cd7b9967975eec610b256eed3ede022b"
  6487. },
  6488. "dist": {
  6489. "type": "zip",
  6490. "url": "https://api.github.com/repos/symfony/finder/zipball/63741784cd7b9967975eec610b256eed3ede022b",
  6491. "reference": "63741784cd7b9967975eec610b256eed3ede022b",
  6492. "shasum": ""
  6493. },
  6494. "require": {
  6495. "php": ">=7.2.5",
  6496. "symfony/deprecation-contracts": "^2.1|^3",
  6497. "symfony/polyfill-php80": "^1.16"
  6498. },
  6499. "type": "library",
  6500. "autoload": {
  6501. "psr-4": {
  6502. "Symfony\\Component\\Finder\\": ""
  6503. },
  6504. "exclude-from-classmap": [
  6505. "/Tests/"
  6506. ]
  6507. },
  6508. "notification-url": "https://packagist.org/downloads/",
  6509. "license": [
  6510. "MIT"
  6511. ],
  6512. "authors": [
  6513. {
  6514. "name": "Fabien Potencier",
  6515. "email": "fabien@symfony.com"
  6516. },
  6517. {
  6518. "name": "Symfony Community",
  6519. "homepage": "https://symfony.com/contributors"
  6520. }
  6521. ],
  6522. "description": "Finds files and directories via an intuitive fluent interface",
  6523. "homepage": "https://symfony.com",
  6524. "support": {
  6525. "source": "https://github.com/symfony/finder/tree/v5.4.45"
  6526. },
  6527. "funding": [
  6528. {
  6529. "url": "https://symfony.com/sponsor",
  6530. "type": "custom"
  6531. },
  6532. {
  6533. "url": "https://github.com/fabpot",
  6534. "type": "github"
  6535. },
  6536. {
  6537. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6538. "type": "tidelift"
  6539. }
  6540. ],
  6541. "time": "2024-09-28T13:32:08+00:00"
  6542. },
  6543. {
  6544. "name": "symfony/polyfill-ctype",
  6545. "version": "v1.33.0",
  6546. "source": {
  6547. "type": "git",
  6548. "url": "https://github.com/symfony/polyfill-ctype.git",
  6549. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638"
  6550. },
  6551. "dist": {
  6552. "type": "zip",
  6553. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/a3cc8b044a6ea513310cbd48ef7333b384945638",
  6554. "reference": "a3cc8b044a6ea513310cbd48ef7333b384945638",
  6555. "shasum": ""
  6556. },
  6557. "require": {
  6558. "php": ">=7.2"
  6559. },
  6560. "provide": {
  6561. "ext-ctype": "*"
  6562. },
  6563. "suggest": {
  6564. "ext-ctype": "For best performance"
  6565. },
  6566. "type": "library",
  6567. "extra": {
  6568. "thanks": {
  6569. "url": "https://github.com/symfony/polyfill",
  6570. "name": "symfony/polyfill"
  6571. }
  6572. },
  6573. "autoload": {
  6574. "files": [
  6575. "bootstrap.php"
  6576. ],
  6577. "psr-4": {
  6578. "Symfony\\Polyfill\\Ctype\\": ""
  6579. }
  6580. },
  6581. "notification-url": "https://packagist.org/downloads/",
  6582. "license": [
  6583. "MIT"
  6584. ],
  6585. "authors": [
  6586. {
  6587. "name": "Gert de Pagter",
  6588. "email": "BackEndTea@gmail.com"
  6589. },
  6590. {
  6591. "name": "Symfony Community",
  6592. "homepage": "https://symfony.com/contributors"
  6593. }
  6594. ],
  6595. "description": "Symfony polyfill for ctype functions",
  6596. "homepage": "https://symfony.com",
  6597. "keywords": [
  6598. "compatibility",
  6599. "ctype",
  6600. "polyfill",
  6601. "portable"
  6602. ],
  6603. "support": {
  6604. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.33.0"
  6605. },
  6606. "funding": [
  6607. {
  6608. "url": "https://symfony.com/sponsor",
  6609. "type": "custom"
  6610. },
  6611. {
  6612. "url": "https://github.com/fabpot",
  6613. "type": "github"
  6614. },
  6615. {
  6616. "url": "https://github.com/nicolas-grekas",
  6617. "type": "github"
  6618. },
  6619. {
  6620. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6621. "type": "tidelift"
  6622. }
  6623. ],
  6624. "time": "2024-09-09T11:45:10+00:00"
  6625. },
  6626. {
  6627. "name": "symfony/polyfill-intl-grapheme",
  6628. "version": "v1.33.0",
  6629. "source": {
  6630. "type": "git",
  6631. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6632. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70"
  6633. },
  6634. "dist": {
  6635. "type": "zip",
  6636. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6637. "reference": "380872130d3a5dd3ace2f4010d95125fde5d5c70",
  6638. "shasum": ""
  6639. },
  6640. "require": {
  6641. "php": ">=7.2"
  6642. },
  6643. "suggest": {
  6644. "ext-intl": "For best performance"
  6645. },
  6646. "type": "library",
  6647. "extra": {
  6648. "thanks": {
  6649. "url": "https://github.com/symfony/polyfill",
  6650. "name": "symfony/polyfill"
  6651. }
  6652. },
  6653. "autoload": {
  6654. "files": [
  6655. "bootstrap.php"
  6656. ],
  6657. "psr-4": {
  6658. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6659. }
  6660. },
  6661. "notification-url": "https://packagist.org/downloads/",
  6662. "license": [
  6663. "MIT"
  6664. ],
  6665. "authors": [
  6666. {
  6667. "name": "Nicolas Grekas",
  6668. "email": "p@tchwork.com"
  6669. },
  6670. {
  6671. "name": "Symfony Community",
  6672. "homepage": "https://symfony.com/contributors"
  6673. }
  6674. ],
  6675. "description": "Symfony polyfill for intl's grapheme_* functions",
  6676. "homepage": "https://symfony.com",
  6677. "keywords": [
  6678. "compatibility",
  6679. "grapheme",
  6680. "intl",
  6681. "polyfill",
  6682. "portable",
  6683. "shim"
  6684. ],
  6685. "support": {
  6686. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.33.0"
  6687. },
  6688. "funding": [
  6689. {
  6690. "url": "https://symfony.com/sponsor",
  6691. "type": "custom"
  6692. },
  6693. {
  6694. "url": "https://github.com/fabpot",
  6695. "type": "github"
  6696. },
  6697. {
  6698. "url": "https://github.com/nicolas-grekas",
  6699. "type": "github"
  6700. },
  6701. {
  6702. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6703. "type": "tidelift"
  6704. }
  6705. ],
  6706. "time": "2025-06-27T09:58:17+00:00"
  6707. },
  6708. {
  6709. "name": "symfony/polyfill-php73",
  6710. "version": "v1.33.0",
  6711. "source": {
  6712. "type": "git",
  6713. "url": "https://github.com/symfony/polyfill-php73.git",
  6714. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb"
  6715. },
  6716. "dist": {
  6717. "type": "zip",
  6718. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6719. "reference": "0f68c03565dcaaf25a890667542e8bd75fe7e5bb",
  6720. "shasum": ""
  6721. },
  6722. "require": {
  6723. "php": ">=7.2"
  6724. },
  6725. "type": "library",
  6726. "extra": {
  6727. "thanks": {
  6728. "url": "https://github.com/symfony/polyfill",
  6729. "name": "symfony/polyfill"
  6730. }
  6731. },
  6732. "autoload": {
  6733. "files": [
  6734. "bootstrap.php"
  6735. ],
  6736. "psr-4": {
  6737. "Symfony\\Polyfill\\Php73\\": ""
  6738. },
  6739. "classmap": [
  6740. "Resources/stubs"
  6741. ]
  6742. },
  6743. "notification-url": "https://packagist.org/downloads/",
  6744. "license": [
  6745. "MIT"
  6746. ],
  6747. "authors": [
  6748. {
  6749. "name": "Nicolas Grekas",
  6750. "email": "p@tchwork.com"
  6751. },
  6752. {
  6753. "name": "Symfony Community",
  6754. "homepage": "https://symfony.com/contributors"
  6755. }
  6756. ],
  6757. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  6758. "homepage": "https://symfony.com",
  6759. "keywords": [
  6760. "compatibility",
  6761. "polyfill",
  6762. "portable",
  6763. "shim"
  6764. ],
  6765. "support": {
  6766. "source": "https://github.com/symfony/polyfill-php73/tree/v1.33.0"
  6767. },
  6768. "funding": [
  6769. {
  6770. "url": "https://symfony.com/sponsor",
  6771. "type": "custom"
  6772. },
  6773. {
  6774. "url": "https://github.com/fabpot",
  6775. "type": "github"
  6776. },
  6777. {
  6778. "url": "https://github.com/nicolas-grekas",
  6779. "type": "github"
  6780. },
  6781. {
  6782. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6783. "type": "tidelift"
  6784. }
  6785. ],
  6786. "time": "2024-09-09T11:45:10+00:00"
  6787. },
  6788. {
  6789. "name": "symfony/service-contracts",
  6790. "version": "v1.1.2",
  6791. "source": {
  6792. "type": "git",
  6793. "url": "https://github.com/symfony/service-contracts.git",
  6794. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0"
  6795. },
  6796. "dist": {
  6797. "type": "zip",
  6798. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/191afdcb5804db960d26d8566b7e9a2843cab3a0",
  6799. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0",
  6800. "shasum": ""
  6801. },
  6802. "require": {
  6803. "php": "^7.1.3"
  6804. },
  6805. "suggest": {
  6806. "psr/container": "",
  6807. "symfony/service-implementation": ""
  6808. },
  6809. "type": "library",
  6810. "extra": {
  6811. "branch-alias": {
  6812. "dev-master": "1.1-dev"
  6813. }
  6814. },
  6815. "autoload": {
  6816. "psr-4": {
  6817. "Symfony\\Contracts\\Service\\": ""
  6818. }
  6819. },
  6820. "notification-url": "https://packagist.org/downloads/",
  6821. "license": [
  6822. "MIT"
  6823. ],
  6824. "authors": [
  6825. {
  6826. "name": "Nicolas Grekas",
  6827. "email": "p@tchwork.com"
  6828. },
  6829. {
  6830. "name": "Symfony Community",
  6831. "homepage": "https://symfony.com/contributors"
  6832. }
  6833. ],
  6834. "description": "Generic abstractions related to writing services",
  6835. "homepage": "https://symfony.com",
  6836. "keywords": [
  6837. "abstractions",
  6838. "contracts",
  6839. "decoupling",
  6840. "interfaces",
  6841. "interoperability",
  6842. "standards"
  6843. ],
  6844. "support": {
  6845. "source": "https://github.com/symfony/service-contracts/tree/v1.1.2"
  6846. },
  6847. "time": "2019-05-28T07:50:59+00:00"
  6848. },
  6849. {
  6850. "name": "symfony/string",
  6851. "version": "v5.4.47",
  6852. "source": {
  6853. "type": "git",
  6854. "url": "https://github.com/symfony/string.git",
  6855. "reference": "136ca7d72f72b599f2631aca474a4f8e26719799"
  6856. },
  6857. "dist": {
  6858. "type": "zip",
  6859. "url": "https://api.github.com/repos/symfony/string/zipball/136ca7d72f72b599f2631aca474a4f8e26719799",
  6860. "reference": "136ca7d72f72b599f2631aca474a4f8e26719799",
  6861. "shasum": ""
  6862. },
  6863. "require": {
  6864. "php": ">=7.2.5",
  6865. "symfony/polyfill-ctype": "~1.8",
  6866. "symfony/polyfill-intl-grapheme": "~1.0",
  6867. "symfony/polyfill-intl-normalizer": "~1.0",
  6868. "symfony/polyfill-mbstring": "~1.0",
  6869. "symfony/polyfill-php80": "~1.15"
  6870. },
  6871. "conflict": {
  6872. "symfony/translation-contracts": ">=3.0"
  6873. },
  6874. "require-dev": {
  6875. "symfony/error-handler": "^4.4|^5.0|^6.0",
  6876. "symfony/http-client": "^4.4|^5.0|^6.0",
  6877. "symfony/translation-contracts": "^1.1|^2",
  6878. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  6879. },
  6880. "type": "library",
  6881. "autoload": {
  6882. "files": [
  6883. "Resources/functions.php"
  6884. ],
  6885. "psr-4": {
  6886. "Symfony\\Component\\String\\": ""
  6887. },
  6888. "exclude-from-classmap": [
  6889. "/Tests/"
  6890. ]
  6891. },
  6892. "notification-url": "https://packagist.org/downloads/",
  6893. "license": [
  6894. "MIT"
  6895. ],
  6896. "authors": [
  6897. {
  6898. "name": "Nicolas Grekas",
  6899. "email": "p@tchwork.com"
  6900. },
  6901. {
  6902. "name": "Symfony Community",
  6903. "homepage": "https://symfony.com/contributors"
  6904. }
  6905. ],
  6906. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  6907. "homepage": "https://symfony.com",
  6908. "keywords": [
  6909. "grapheme",
  6910. "i18n",
  6911. "string",
  6912. "unicode",
  6913. "utf-8",
  6914. "utf8"
  6915. ],
  6916. "support": {
  6917. "source": "https://github.com/symfony/string/tree/v5.4.47"
  6918. },
  6919. "funding": [
  6920. {
  6921. "url": "https://symfony.com/sponsor",
  6922. "type": "custom"
  6923. },
  6924. {
  6925. "url": "https://github.com/fabpot",
  6926. "type": "github"
  6927. },
  6928. {
  6929. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6930. "type": "tidelift"
  6931. }
  6932. ],
  6933. "time": "2024-11-10T20:33:58+00:00"
  6934. },
  6935. {
  6936. "name": "symfony/yaml",
  6937. "version": "v5.0.11",
  6938. "source": {
  6939. "type": "git",
  6940. "url": "https://github.com/symfony/yaml.git",
  6941. "reference": "29b60e88ff11a45b708115004fdeacab1ee3dd5d"
  6942. },
  6943. "dist": {
  6944. "type": "zip",
  6945. "url": "https://api.github.com/repos/symfony/yaml/zipball/29b60e88ff11a45b708115004fdeacab1ee3dd5d",
  6946. "reference": "29b60e88ff11a45b708115004fdeacab1ee3dd5d",
  6947. "shasum": ""
  6948. },
  6949. "require": {
  6950. "php": ">=7.2.5",
  6951. "symfony/polyfill-ctype": "~1.8"
  6952. },
  6953. "conflict": {
  6954. "symfony/console": "<4.4"
  6955. },
  6956. "require-dev": {
  6957. "symfony/console": "^4.4|^5.0"
  6958. },
  6959. "suggest": {
  6960. "symfony/console": "For validating YAML files using the lint command"
  6961. },
  6962. "type": "library",
  6963. "extra": {
  6964. "branch-alias": {
  6965. "dev-master": "5.0-dev"
  6966. }
  6967. },
  6968. "autoload": {
  6969. "psr-4": {
  6970. "Symfony\\Component\\Yaml\\": ""
  6971. },
  6972. "exclude-from-classmap": [
  6973. "/Tests/"
  6974. ]
  6975. },
  6976. "notification-url": "https://packagist.org/downloads/",
  6977. "license": [
  6978. "MIT"
  6979. ],
  6980. "authors": [
  6981. {
  6982. "name": "Fabien Potencier",
  6983. "email": "fabien@symfony.com"
  6984. },
  6985. {
  6986. "name": "Symfony Community",
  6987. "homepage": "https://symfony.com/contributors"
  6988. }
  6989. ],
  6990. "description": "Symfony Yaml Component",
  6991. "homepage": "https://symfony.com",
  6992. "support": {
  6993. "source": "https://github.com/symfony/yaml/tree/5.0"
  6994. },
  6995. "funding": [
  6996. {
  6997. "url": "https://symfony.com/sponsor",
  6998. "type": "custom"
  6999. },
  7000. {
  7001. "url": "https://github.com/fabpot",
  7002. "type": "github"
  7003. },
  7004. {
  7005. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7006. "type": "tidelift"
  7007. }
  7008. ],
  7009. "time": "2020-05-20T17:38:26+00:00"
  7010. },
  7011. {
  7012. "name": "theseer/tokenizer",
  7013. "version": "1.3.1",
  7014. "source": {
  7015. "type": "git",
  7016. "url": "https://github.com/theseer/tokenizer.git",
  7017. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c"
  7018. },
  7019. "dist": {
  7020. "type": "zip",
  7021. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/b7489ce515e168639d17feec34b8847c326b0b3c",
  7022. "reference": "b7489ce515e168639d17feec34b8847c326b0b3c",
  7023. "shasum": ""
  7024. },
  7025. "require": {
  7026. "ext-dom": "*",
  7027. "ext-tokenizer": "*",
  7028. "ext-xmlwriter": "*",
  7029. "php": "^7.2 || ^8.0"
  7030. },
  7031. "type": "library",
  7032. "autoload": {
  7033. "classmap": [
  7034. "src/"
  7035. ]
  7036. },
  7037. "notification-url": "https://packagist.org/downloads/",
  7038. "license": [
  7039. "BSD-3-Clause"
  7040. ],
  7041. "authors": [
  7042. {
  7043. "name": "Arne Blankerts",
  7044. "email": "arne@blankerts.de",
  7045. "role": "Developer"
  7046. }
  7047. ],
  7048. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7049. "support": {
  7050. "issues": "https://github.com/theseer/tokenizer/issues",
  7051. "source": "https://github.com/theseer/tokenizer/tree/1.3.1"
  7052. },
  7053. "funding": [
  7054. {
  7055. "url": "https://github.com/theseer",
  7056. "type": "github"
  7057. }
  7058. ],
  7059. "time": "2025-11-17T20:03:58+00:00"
  7060. },
  7061. {
  7062. "name": "yiisoft/yii2-debug",
  7063. "version": "2.1.27",
  7064. "source": {
  7065. "type": "git",
  7066. "url": "https://github.com/yiisoft/yii2-debug.git",
  7067. "reference": "44e158914911ef81cd7111fd6d46b918f65fae7c"
  7068. },
  7069. "dist": {
  7070. "type": "zip",
  7071. "url": "https://api.github.com/repos/yiisoft/yii2-debug/zipball/44e158914911ef81cd7111fd6d46b918f65fae7c",
  7072. "reference": "44e158914911ef81cd7111fd6d46b918f65fae7c",
  7073. "shasum": ""
  7074. },
  7075. "require": {
  7076. "ext-mbstring": "*",
  7077. "php": ">=5.4",
  7078. "yiisoft/yii2": "~2.0.13"
  7079. },
  7080. "require-dev": {
  7081. "cweagans/composer-patches": "^1.7",
  7082. "phpunit/phpunit": "4.8.34",
  7083. "yiisoft/yii2-coding-standards": "~2.0",
  7084. "yiisoft/yii2-swiftmailer": "*"
  7085. },
  7086. "type": "yii2-extension",
  7087. "extra": {
  7088. "patches": {
  7089. "phpunit/phpunit": {
  7090. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  7091. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch",
  7092. "Fix PHP 8.1 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php81.patch"
  7093. },
  7094. "phpunit/phpunit-mock-objects": {
  7095. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  7096. }
  7097. },
  7098. "branch-alias": {
  7099. "dev-master": "2.0.x-dev"
  7100. },
  7101. "composer-exit-on-patch-failure": true
  7102. },
  7103. "autoload": {
  7104. "psr-4": {
  7105. "yii\\debug\\": "src"
  7106. }
  7107. },
  7108. "notification-url": "https://packagist.org/downloads/",
  7109. "license": [
  7110. "BSD-3-Clause"
  7111. ],
  7112. "authors": [
  7113. {
  7114. "name": "Qiang Xue",
  7115. "email": "qiang.xue@gmail.com"
  7116. },
  7117. {
  7118. "name": "Simon Karlen",
  7119. "email": "simi.albi@outlook.com"
  7120. }
  7121. ],
  7122. "description": "The debugger extension for the Yii framework",
  7123. "keywords": [
  7124. "debug",
  7125. "debugger",
  7126. "dev",
  7127. "yii2"
  7128. ],
  7129. "support": {
  7130. "forum": "https://www.yiiframework.com/forum/",
  7131. "irc": "ircs://irc.libera.chat:6697/yii",
  7132. "issues": "https://github.com/yiisoft/yii2-debug/issues",
  7133. "source": "https://github.com/yiisoft/yii2-debug",
  7134. "wiki": "https://www.yiiframework.com/wiki/"
  7135. },
  7136. "funding": [
  7137. {
  7138. "url": "https://github.com/yiisoft",
  7139. "type": "github"
  7140. },
  7141. {
  7142. "url": "https://opencollective.com/yiisoft",
  7143. "type": "open_collective"
  7144. },
  7145. {
  7146. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-debug",
  7147. "type": "tidelift"
  7148. }
  7149. ],
  7150. "time": "2025-06-08T13:32:11+00:00"
  7151. },
  7152. {
  7153. "name": "yiisoft/yii2-faker",
  7154. "version": "2.0.5",
  7155. "source": {
  7156. "type": "git",
  7157. "url": "https://github.com/yiisoft/yii2-faker.git",
  7158. "reference": "8c361657143bfaea58ff7dcc9bf51f1991a46f5d"
  7159. },
  7160. "dist": {
  7161. "type": "zip",
  7162. "url": "https://api.github.com/repos/yiisoft/yii2-faker/zipball/8c361657143bfaea58ff7dcc9bf51f1991a46f5d",
  7163. "reference": "8c361657143bfaea58ff7dcc9bf51f1991a46f5d",
  7164. "shasum": ""
  7165. },
  7166. "require": {
  7167. "fakerphp/faker": "~1.9|~1.10",
  7168. "yiisoft/yii2": "~2.0.0"
  7169. },
  7170. "require-dev": {
  7171. "cweagans/composer-patches": "^1.7",
  7172. "phpunit/phpunit": "4.8.34"
  7173. },
  7174. "type": "yii2-extension",
  7175. "extra": {
  7176. "patches": {
  7177. "phpunit/phpunit": {
  7178. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  7179. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch"
  7180. },
  7181. "phpunit/phpunit-mock-objects": {
  7182. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  7183. }
  7184. },
  7185. "branch-alias": {
  7186. "dev-master": "2.0.x-dev"
  7187. },
  7188. "composer-exit-on-patch-failure": true
  7189. },
  7190. "autoload": {
  7191. "psr-4": {
  7192. "yii\\faker\\": "src"
  7193. }
  7194. },
  7195. "notification-url": "https://packagist.org/downloads/",
  7196. "license": [
  7197. "BSD-3-Clause"
  7198. ],
  7199. "authors": [
  7200. {
  7201. "name": "Mark Jebri",
  7202. "email": "mark.github@yandex.ru"
  7203. }
  7204. ],
  7205. "description": "Fixture generator. The Faker integration for the Yii framework.",
  7206. "keywords": [
  7207. "Fixture",
  7208. "faker",
  7209. "yii2"
  7210. ],
  7211. "support": {
  7212. "forum": "http://www.yiiframework.com/forum/",
  7213. "irc": "irc://irc.freenode.net/yii",
  7214. "issues": "https://github.com/yiisoft/yii2-faker/issues",
  7215. "source": "https://github.com/yiisoft/yii2-faker",
  7216. "wiki": "http://www.yiiframework.com/wiki/"
  7217. },
  7218. "funding": [
  7219. {
  7220. "url": "https://github.com/yiisoft",
  7221. "type": "github"
  7222. },
  7223. {
  7224. "url": "https://opencollective.com/yiisoft",
  7225. "type": "open_collective"
  7226. },
  7227. {
  7228. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-faker",
  7229. "type": "tidelift"
  7230. }
  7231. ],
  7232. "time": "2020-11-10T12:27:35+00:00"
  7233. },
  7234. {
  7235. "name": "yiisoft/yii2-gii",
  7236. "version": "2.2.7",
  7237. "source": {
  7238. "type": "git",
  7239. "url": "https://github.com/yiisoft/yii2-gii.git",
  7240. "reference": "f17c7ef7ef3081213f612b37ad0ceaa8e8cd3d3b"
  7241. },
  7242. "dist": {
  7243. "type": "zip",
  7244. "url": "https://api.github.com/repos/yiisoft/yii2-gii/zipball/f17c7ef7ef3081213f612b37ad0ceaa8e8cd3d3b",
  7245. "reference": "f17c7ef7ef3081213f612b37ad0ceaa8e8cd3d3b",
  7246. "shasum": ""
  7247. },
  7248. "require": {
  7249. "phpspec/php-diff": "^1.1.0",
  7250. "yiisoft/yii2": "~2.0.46"
  7251. },
  7252. "require-dev": {
  7253. "cweagans/composer-patches": "^1.7",
  7254. "phpunit/phpunit": "4.8.34",
  7255. "yiisoft/yii2-coding-standards": "~2.0"
  7256. },
  7257. "type": "yii2-extension",
  7258. "extra": {
  7259. "patches": {
  7260. "phpunit/phpunit": {
  7261. "Fix PHP 7 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php7.patch",
  7262. "Fix PHP 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php8.patch",
  7263. "Fix PHP 8.1 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_php81.patch"
  7264. },
  7265. "phpunit/php-file-iterator": {
  7266. "Fix PHP 8.1 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_path_file_iterator.patch"
  7267. },
  7268. "phpunit/phpunit-mock-objects": {
  7269. "Fix PHP 7 and 8 compatibility": "https://yiisoft.github.io/phpunit-patches/phpunit_mock_objects.patch"
  7270. }
  7271. },
  7272. "branch-alias": {
  7273. "dev-master": "2.0.x-dev"
  7274. },
  7275. "composer-exit-on-patch-failure": true
  7276. },
  7277. "autoload": {
  7278. "psr-4": {
  7279. "yii\\gii\\": "src"
  7280. }
  7281. },
  7282. "notification-url": "https://packagist.org/downloads/",
  7283. "license": [
  7284. "BSD-3-Clause"
  7285. ],
  7286. "authors": [
  7287. {
  7288. "name": "Qiang Xue",
  7289. "email": "qiang.xue@gmail.com"
  7290. }
  7291. ],
  7292. "description": "The Gii extension for the Yii framework",
  7293. "keywords": [
  7294. "code generator",
  7295. "dev",
  7296. "gii",
  7297. "yii2"
  7298. ],
  7299. "support": {
  7300. "forum": "https://www.yiiframework.com/forum/",
  7301. "irc": "ircs://irc.libera.chat:6697/yii",
  7302. "issues": "https://github.com/yiisoft/yii2-gii/issues",
  7303. "source": "https://github.com/yiisoft/yii2-gii",
  7304. "wiki": "https://www.yiiframework.com/wiki/"
  7305. },
  7306. "funding": [
  7307. {
  7308. "url": "https://github.com/yiisoft",
  7309. "type": "github"
  7310. },
  7311. {
  7312. "url": "https://opencollective.com/yiisoft",
  7313. "type": "open_collective"
  7314. },
  7315. {
  7316. "url": "https://tidelift.com/funding/github/packagist/yiisoft/yii2-gii",
  7317. "type": "tidelift"
  7318. }
  7319. ],
  7320. "time": "2025-02-13T21:21:17+00:00"
  7321. }
  7322. ],
  7323. "aliases": [],
  7324. "minimum-stability": "stable",
  7325. "stability-flags": {},
  7326. "prefer-stable": false,
  7327. "prefer-lowest": false,
  7328. "platform": {
  7329. "php": ">=5.6.0"
  7330. },
  7331. "platform-dev": {},
  7332. "plugin-api-version": "2.6.0"
  7333. }