composer.lock 282 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978
  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": "12b354987bf556906b24f87dbf9c0556",
  8. "packages": [
  9. {
  10. "name": "comely-io/data-types",
  11. "version": "1.0.34",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/comely-io/data-types.git",
  15. "reference": "833ecf364a99aa5cd161e0ebd1191860921834c6"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/comely-io/data-types/zipball/833ecf364a99aa5cd161e0ebd1191860921834c6",
  20. "reference": "833ecf364a99aa5cd161e0ebd1191860921834c6",
  21. "shasum": ""
  22. },
  23. "require": {
  24. "ext-bcmath": "*",
  25. "ext-mbstring": "*",
  26. "php": "^7.2"
  27. },
  28. "type": "library",
  29. "autoload": {
  30. "psr-4": {
  31. "Comely\\DataTypes\\": [
  32. "src"
  33. ]
  34. }
  35. },
  36. "notification-url": "https://packagist.org/downloads/",
  37. "license": [
  38. "MIT"
  39. ],
  40. "authors": [
  41. {
  42. "name": "Furqan A. Siddiqui",
  43. "email": "hello@furqansiddiqui.com",
  44. "homepage": "https://www.furqansiddiqui.com",
  45. "role": "Author"
  46. }
  47. ],
  48. "description": "PHP data types",
  49. "homepage": "https://github.com/comely-io/data-types",
  50. "support": {
  51. "issues": "https://github.com/comely-io/data-types/issues",
  52. "source": "https://github.com/comely-io/data-types/tree/master"
  53. },
  54. "abandoned": true,
  55. "time": "2020-06-07T14:02:53+00:00"
  56. },
  57. {
  58. "name": "doctrine/annotations",
  59. "version": "1.14.3",
  60. "source": {
  61. "type": "git",
  62. "url": "https://github.com/doctrine/annotations.git",
  63. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af"
  64. },
  65. "dist": {
  66. "type": "zip",
  67. "url": "https://api.github.com/repos/doctrine/annotations/zipball/fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  68. "reference": "fb0d71a7393298a7b232cbf4c8b1f73f3ec3d5af",
  69. "shasum": ""
  70. },
  71. "require": {
  72. "doctrine/lexer": "^1 || ^2",
  73. "ext-tokenizer": "*",
  74. "php": "^7.1 || ^8.0",
  75. "psr/cache": "^1 || ^2 || ^3"
  76. },
  77. "require-dev": {
  78. "doctrine/cache": "^1.11 || ^2.0",
  79. "doctrine/coding-standard": "^9 || ^10",
  80. "phpstan/phpstan": "~1.4.10 || ^1.8.0",
  81. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  82. "symfony/cache": "^4.4 || ^5.4 || ^6",
  83. "vimeo/psalm": "^4.10"
  84. },
  85. "suggest": {
  86. "php": "PHP 8.0 or higher comes with attributes, a native replacement for annotations"
  87. },
  88. "type": "library",
  89. "autoload": {
  90. "psr-4": {
  91. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  92. }
  93. },
  94. "notification-url": "https://packagist.org/downloads/",
  95. "license": [
  96. "MIT"
  97. ],
  98. "authors": [
  99. {
  100. "name": "Guilherme Blanco",
  101. "email": "guilhermeblanco@gmail.com"
  102. },
  103. {
  104. "name": "Roman Borschel",
  105. "email": "roman@code-factory.org"
  106. },
  107. {
  108. "name": "Benjamin Eberlei",
  109. "email": "kontakt@beberlei.de"
  110. },
  111. {
  112. "name": "Jonathan Wage",
  113. "email": "jonwage@gmail.com"
  114. },
  115. {
  116. "name": "Johannes Schmitt",
  117. "email": "schmittjoh@gmail.com"
  118. }
  119. ],
  120. "description": "Docblock Annotations Parser",
  121. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  122. "keywords": [
  123. "annotations",
  124. "docblock",
  125. "parser"
  126. ],
  127. "support": {
  128. "issues": "https://github.com/doctrine/annotations/issues",
  129. "source": "https://github.com/doctrine/annotations/tree/1.14.3"
  130. },
  131. "time": "2023-02-01T09:20:38+00:00"
  132. },
  133. {
  134. "name": "doctrine/deprecations",
  135. "version": "v1.1.1",
  136. "source": {
  137. "type": "git",
  138. "url": "https://github.com/doctrine/deprecations.git",
  139. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3"
  140. },
  141. "dist": {
  142. "type": "zip",
  143. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  144. "reference": "612a3ee5ab0d5dd97b7cf3874a6efe24325efac3",
  145. "shasum": ""
  146. },
  147. "require": {
  148. "php": "^7.1 || ^8.0"
  149. },
  150. "require-dev": {
  151. "doctrine/coding-standard": "^9",
  152. "phpstan/phpstan": "1.4.10 || 1.10.15",
  153. "phpstan/phpstan-phpunit": "^1.0",
  154. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  155. "psalm/plugin-phpunit": "0.18.4",
  156. "psr/log": "^1 || ^2 || ^3",
  157. "vimeo/psalm": "4.30.0 || 5.12.0"
  158. },
  159. "suggest": {
  160. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  161. },
  162. "type": "library",
  163. "autoload": {
  164. "psr-4": {
  165. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  166. }
  167. },
  168. "notification-url": "https://packagist.org/downloads/",
  169. "license": [
  170. "MIT"
  171. ],
  172. "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.",
  173. "homepage": "https://www.doctrine-project.org/",
  174. "support": {
  175. "issues": "https://github.com/doctrine/deprecations/issues",
  176. "source": "https://github.com/doctrine/deprecations/tree/v1.1.1"
  177. },
  178. "time": "2023-06-03T09:27:29+00:00"
  179. },
  180. {
  181. "name": "doctrine/inflector",
  182. "version": "2.0.8",
  183. "source": {
  184. "type": "git",
  185. "url": "https://github.com/doctrine/inflector.git",
  186. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff"
  187. },
  188. "dist": {
  189. "type": "zip",
  190. "url": "https://api.github.com/repos/doctrine/inflector/zipball/f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  191. "reference": "f9301a5b2fb1216b2b08f02ba04dc45423db6bff",
  192. "shasum": ""
  193. },
  194. "require": {
  195. "php": "^7.2 || ^8.0"
  196. },
  197. "require-dev": {
  198. "doctrine/coding-standard": "^11.0",
  199. "phpstan/phpstan": "^1.8",
  200. "phpstan/phpstan-phpunit": "^1.1",
  201. "phpstan/phpstan-strict-rules": "^1.3",
  202. "phpunit/phpunit": "^8.5 || ^9.5",
  203. "vimeo/psalm": "^4.25 || ^5.4"
  204. },
  205. "type": "library",
  206. "autoload": {
  207. "psr-4": {
  208. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  209. }
  210. },
  211. "notification-url": "https://packagist.org/downloads/",
  212. "license": [
  213. "MIT"
  214. ],
  215. "authors": [
  216. {
  217. "name": "Guilherme Blanco",
  218. "email": "guilhermeblanco@gmail.com"
  219. },
  220. {
  221. "name": "Roman Borschel",
  222. "email": "roman@code-factory.org"
  223. },
  224. {
  225. "name": "Benjamin Eberlei",
  226. "email": "kontakt@beberlei.de"
  227. },
  228. {
  229. "name": "Jonathan Wage",
  230. "email": "jonwage@gmail.com"
  231. },
  232. {
  233. "name": "Johannes Schmitt",
  234. "email": "schmittjoh@gmail.com"
  235. }
  236. ],
  237. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  238. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  239. "keywords": [
  240. "inflection",
  241. "inflector",
  242. "lowercase",
  243. "manipulation",
  244. "php",
  245. "plural",
  246. "singular",
  247. "strings",
  248. "uppercase",
  249. "words"
  250. ],
  251. "support": {
  252. "issues": "https://github.com/doctrine/inflector/issues",
  253. "source": "https://github.com/doctrine/inflector/tree/2.0.8"
  254. },
  255. "funding": [
  256. {
  257. "url": "https://www.doctrine-project.org/sponsorship.html",
  258. "type": "custom"
  259. },
  260. {
  261. "url": "https://www.patreon.com/phpdoctrine",
  262. "type": "patreon"
  263. },
  264. {
  265. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finflector",
  266. "type": "tidelift"
  267. }
  268. ],
  269. "time": "2023-06-16T13:40:37+00:00"
  270. },
  271. {
  272. "name": "doctrine/instantiator",
  273. "version": "1.5.0",
  274. "source": {
  275. "type": "git",
  276. "url": "https://github.com/doctrine/instantiator.git",
  277. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b"
  278. },
  279. "dist": {
  280. "type": "zip",
  281. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/0a0fa9780f5d4e507415a065172d26a98d02047b",
  282. "reference": "0a0fa9780f5d4e507415a065172d26a98d02047b",
  283. "shasum": ""
  284. },
  285. "require": {
  286. "php": "^7.1 || ^8.0"
  287. },
  288. "require-dev": {
  289. "doctrine/coding-standard": "^9 || ^11",
  290. "ext-pdo": "*",
  291. "ext-phar": "*",
  292. "phpbench/phpbench": "^0.16 || ^1",
  293. "phpstan/phpstan": "^1.4",
  294. "phpstan/phpstan-phpunit": "^1",
  295. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  296. "vimeo/psalm": "^4.30 || ^5.4"
  297. },
  298. "type": "library",
  299. "autoload": {
  300. "psr-4": {
  301. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  302. }
  303. },
  304. "notification-url": "https://packagist.org/downloads/",
  305. "license": [
  306. "MIT"
  307. ],
  308. "authors": [
  309. {
  310. "name": "Marco Pivetta",
  311. "email": "ocramius@gmail.com",
  312. "homepage": "https://ocramius.github.io/"
  313. }
  314. ],
  315. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  316. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  317. "keywords": [
  318. "constructor",
  319. "instantiate"
  320. ],
  321. "support": {
  322. "issues": "https://github.com/doctrine/instantiator/issues",
  323. "source": "https://github.com/doctrine/instantiator/tree/1.5.0"
  324. },
  325. "funding": [
  326. {
  327. "url": "https://www.doctrine-project.org/sponsorship.html",
  328. "type": "custom"
  329. },
  330. {
  331. "url": "https://www.patreon.com/phpdoctrine",
  332. "type": "patreon"
  333. },
  334. {
  335. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Finstantiator",
  336. "type": "tidelift"
  337. }
  338. ],
  339. "time": "2022-12-30T00:15:36+00:00"
  340. },
  341. {
  342. "name": "doctrine/lexer",
  343. "version": "2.1.0",
  344. "source": {
  345. "type": "git",
  346. "url": "https://github.com/doctrine/lexer.git",
  347. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124"
  348. },
  349. "dist": {
  350. "type": "zip",
  351. "url": "https://api.github.com/repos/doctrine/lexer/zipball/39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  352. "reference": "39ab8fcf5a51ce4b85ca97c7a7d033eb12831124",
  353. "shasum": ""
  354. },
  355. "require": {
  356. "doctrine/deprecations": "^1.0",
  357. "php": "^7.1 || ^8.0"
  358. },
  359. "require-dev": {
  360. "doctrine/coding-standard": "^9 || ^10",
  361. "phpstan/phpstan": "^1.3",
  362. "phpunit/phpunit": "^7.5 || ^8.5 || ^9.5",
  363. "psalm/plugin-phpunit": "^0.18.3",
  364. "vimeo/psalm": "^4.11 || ^5.0"
  365. },
  366. "type": "library",
  367. "autoload": {
  368. "psr-4": {
  369. "Doctrine\\Common\\Lexer\\": "src"
  370. }
  371. },
  372. "notification-url": "https://packagist.org/downloads/",
  373. "license": [
  374. "MIT"
  375. ],
  376. "authors": [
  377. {
  378. "name": "Guilherme Blanco",
  379. "email": "guilhermeblanco@gmail.com"
  380. },
  381. {
  382. "name": "Roman Borschel",
  383. "email": "roman@code-factory.org"
  384. },
  385. {
  386. "name": "Johannes Schmitt",
  387. "email": "schmittjoh@gmail.com"
  388. }
  389. ],
  390. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  391. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  392. "keywords": [
  393. "annotations",
  394. "docblock",
  395. "lexer",
  396. "parser",
  397. "php"
  398. ],
  399. "support": {
  400. "issues": "https://github.com/doctrine/lexer/issues",
  401. "source": "https://github.com/doctrine/lexer/tree/2.1.0"
  402. },
  403. "funding": [
  404. {
  405. "url": "https://www.doctrine-project.org/sponsorship.html",
  406. "type": "custom"
  407. },
  408. {
  409. "url": "https://www.patreon.com/phpdoctrine",
  410. "type": "patreon"
  411. },
  412. {
  413. "url": "https://tidelift.com/funding/github/packagist/doctrine%2Flexer",
  414. "type": "tidelift"
  415. }
  416. ],
  417. "time": "2022-12-14T08:49:07+00:00"
  418. },
  419. {
  420. "name": "fgrosse/phpasn1",
  421. "version": "v2.5.0",
  422. "source": {
  423. "type": "git",
  424. "url": "https://github.com/fgrosse/PHPASN1.git",
  425. "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b"
  426. },
  427. "dist": {
  428. "type": "zip",
  429. "url": "https://api.github.com/repos/fgrosse/PHPASN1/zipball/42060ed45344789fb9f21f9f1864fc47b9e3507b",
  430. "reference": "42060ed45344789fb9f21f9f1864fc47b9e3507b",
  431. "shasum": ""
  432. },
  433. "require": {
  434. "php": "^7.1 || ^8.0"
  435. },
  436. "require-dev": {
  437. "php-coveralls/php-coveralls": "~2.0",
  438. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  439. },
  440. "suggest": {
  441. "ext-bcmath": "BCmath is the fallback extension for big integer calculations",
  442. "ext-curl": "For loading OID information from the web if they have not bee defined statically",
  443. "ext-gmp": "GMP is the preferred extension for big integer calculations",
  444. "phpseclib/bcmath_compat": "BCmath polyfill for servers where neither GMP nor BCmath is available"
  445. },
  446. "type": "library",
  447. "extra": {
  448. "branch-alias": {
  449. "dev-master": "2.0.x-dev"
  450. }
  451. },
  452. "autoload": {
  453. "psr-4": {
  454. "FG\\": "lib/"
  455. }
  456. },
  457. "notification-url": "https://packagist.org/downloads/",
  458. "license": [
  459. "MIT"
  460. ],
  461. "authors": [
  462. {
  463. "name": "Friedrich Große",
  464. "email": "friedrich.grosse@gmail.com",
  465. "homepage": "https://github.com/FGrosse",
  466. "role": "Author"
  467. },
  468. {
  469. "name": "All contributors",
  470. "homepage": "https://github.com/FGrosse/PHPASN1/contributors"
  471. }
  472. ],
  473. "description": "A PHP Framework that allows you to encode and decode arbitrary ASN.1 structures using the ITU-T X.690 Encoding Rules.",
  474. "homepage": "https://github.com/FGrosse/PHPASN1",
  475. "keywords": [
  476. "DER",
  477. "asn.1",
  478. "asn1",
  479. "ber",
  480. "binary",
  481. "decoding",
  482. "encoding",
  483. "x.509",
  484. "x.690",
  485. "x509",
  486. "x690"
  487. ],
  488. "support": {
  489. "issues": "https://github.com/fgrosse/PHPASN1/issues",
  490. "source": "https://github.com/fgrosse/PHPASN1/tree/v2.5.0"
  491. },
  492. "abandoned": true,
  493. "time": "2022-12-19T11:08:26+00:00"
  494. },
  495. {
  496. "name": "fig/http-message-util",
  497. "version": "1.1.5",
  498. "source": {
  499. "type": "git",
  500. "url": "https://github.com/php-fig/http-message-util.git",
  501. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765"
  502. },
  503. "dist": {
  504. "type": "zip",
  505. "url": "https://api.github.com/repos/php-fig/http-message-util/zipball/9d94dc0154230ac39e5bf89398b324a86f63f765",
  506. "reference": "9d94dc0154230ac39e5bf89398b324a86f63f765",
  507. "shasum": ""
  508. },
  509. "require": {
  510. "php": "^5.3 || ^7.0 || ^8.0"
  511. },
  512. "suggest": {
  513. "psr/http-message": "The package containing the PSR-7 interfaces"
  514. },
  515. "type": "library",
  516. "extra": {
  517. "branch-alias": {
  518. "dev-master": "1.1.x-dev"
  519. }
  520. },
  521. "autoload": {
  522. "psr-4": {
  523. "Fig\\Http\\Message\\": "src/"
  524. }
  525. },
  526. "notification-url": "https://packagist.org/downloads/",
  527. "license": [
  528. "MIT"
  529. ],
  530. "authors": [
  531. {
  532. "name": "PHP-FIG",
  533. "homepage": "https://www.php-fig.org/"
  534. }
  535. ],
  536. "description": "Utility classes and constants for use with PSR-7 (psr/http-message)",
  537. "keywords": [
  538. "http",
  539. "http-message",
  540. "psr",
  541. "psr-7",
  542. "request",
  543. "response"
  544. ],
  545. "support": {
  546. "issues": "https://github.com/php-fig/http-message-util/issues",
  547. "source": "https://github.com/php-fig/http-message-util/tree/1.1.5"
  548. },
  549. "time": "2020-11-24T22:02:12+00:00"
  550. },
  551. {
  552. "name": "graham-campbell/result-type",
  553. "version": "v1.1.1",
  554. "source": {
  555. "type": "git",
  556. "url": "https://github.com/GrahamCampbell/Result-Type.git",
  557. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831"
  558. },
  559. "dist": {
  560. "type": "zip",
  561. "url": "https://api.github.com/repos/GrahamCampbell/Result-Type/zipball/672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  562. "reference": "672eff8cf1d6fe1ef09ca0f89c4b287d6a3eb831",
  563. "shasum": ""
  564. },
  565. "require": {
  566. "php": "^7.2.5 || ^8.0",
  567. "phpoption/phpoption": "^1.9.1"
  568. },
  569. "require-dev": {
  570. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  571. },
  572. "type": "library",
  573. "autoload": {
  574. "psr-4": {
  575. "GrahamCampbell\\ResultType\\": "src/"
  576. }
  577. },
  578. "notification-url": "https://packagist.org/downloads/",
  579. "license": [
  580. "MIT"
  581. ],
  582. "authors": [
  583. {
  584. "name": "Graham Campbell",
  585. "email": "hello@gjcampbell.co.uk",
  586. "homepage": "https://github.com/GrahamCampbell"
  587. }
  588. ],
  589. "description": "An Implementation Of The Result Type",
  590. "keywords": [
  591. "Graham Campbell",
  592. "GrahamCampbell",
  593. "Result Type",
  594. "Result-Type",
  595. "result"
  596. ],
  597. "support": {
  598. "issues": "https://github.com/GrahamCampbell/Result-Type/issues",
  599. "source": "https://github.com/GrahamCampbell/Result-Type/tree/v1.1.1"
  600. },
  601. "funding": [
  602. {
  603. "url": "https://github.com/GrahamCampbell",
  604. "type": "github"
  605. },
  606. {
  607. "url": "https://tidelift.com/funding/github/packagist/graham-campbell/result-type",
  608. "type": "tidelift"
  609. }
  610. ],
  611. "time": "2023-02-25T20:23:15+00:00"
  612. },
  613. {
  614. "name": "guzzlehttp/guzzle",
  615. "version": "7.7.0",
  616. "source": {
  617. "type": "git",
  618. "url": "https://github.com/guzzle/guzzle.git",
  619. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5"
  620. },
  621. "dist": {
  622. "type": "zip",
  623. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/fb7566caccf22d74d1ab270de3551f72a58399f5",
  624. "reference": "fb7566caccf22d74d1ab270de3551f72a58399f5",
  625. "shasum": ""
  626. },
  627. "require": {
  628. "ext-json": "*",
  629. "guzzlehttp/promises": "^1.5.3 || ^2.0",
  630. "guzzlehttp/psr7": "^1.9.1 || ^2.4.5",
  631. "php": "^7.2.5 || ^8.0",
  632. "psr/http-client": "^1.0",
  633. "symfony/deprecation-contracts": "^2.2 || ^3.0"
  634. },
  635. "provide": {
  636. "psr/http-client-implementation": "1.0"
  637. },
  638. "require-dev": {
  639. "bamarni/composer-bin-plugin": "^1.8.1",
  640. "ext-curl": "*",
  641. "php-http/client-integration-tests": "dev-master#2c025848417c1135031fdf9c728ee53d0a7ceaee as 3.0.999",
  642. "php-http/message-factory": "^1.1",
  643. "phpunit/phpunit": "^8.5.29 || ^9.5.23",
  644. "psr/log": "^1.1 || ^2.0 || ^3.0"
  645. },
  646. "suggest": {
  647. "ext-curl": "Required for CURL handler support",
  648. "ext-intl": "Required for Internationalized Domain Name (IDN) support",
  649. "psr/log": "Required for using the Log middleware"
  650. },
  651. "type": "library",
  652. "extra": {
  653. "bamarni-bin": {
  654. "bin-links": true,
  655. "forward-command": false
  656. }
  657. },
  658. "autoload": {
  659. "files": [
  660. "src/functions_include.php"
  661. ],
  662. "psr-4": {
  663. "GuzzleHttp\\": "src/"
  664. }
  665. },
  666. "notification-url": "https://packagist.org/downloads/",
  667. "license": [
  668. "MIT"
  669. ],
  670. "authors": [
  671. {
  672. "name": "Graham Campbell",
  673. "email": "hello@gjcampbell.co.uk",
  674. "homepage": "https://github.com/GrahamCampbell"
  675. },
  676. {
  677. "name": "Michael Dowling",
  678. "email": "mtdowling@gmail.com",
  679. "homepage": "https://github.com/mtdowling"
  680. },
  681. {
  682. "name": "Jeremy Lindblom",
  683. "email": "jeremeamia@gmail.com",
  684. "homepage": "https://github.com/jeremeamia"
  685. },
  686. {
  687. "name": "George Mponos",
  688. "email": "gmponos@gmail.com",
  689. "homepage": "https://github.com/gmponos"
  690. },
  691. {
  692. "name": "Tobias Nyholm",
  693. "email": "tobias.nyholm@gmail.com",
  694. "homepage": "https://github.com/Nyholm"
  695. },
  696. {
  697. "name": "Márk Sági-Kazár",
  698. "email": "mark.sagikazar@gmail.com",
  699. "homepage": "https://github.com/sagikazarmark"
  700. },
  701. {
  702. "name": "Tobias Schultze",
  703. "email": "webmaster@tubo-world.de",
  704. "homepage": "https://github.com/Tobion"
  705. }
  706. ],
  707. "description": "Guzzle is a PHP HTTP client library",
  708. "keywords": [
  709. "client",
  710. "curl",
  711. "framework",
  712. "http",
  713. "http client",
  714. "psr-18",
  715. "psr-7",
  716. "rest",
  717. "web service"
  718. ],
  719. "support": {
  720. "issues": "https://github.com/guzzle/guzzle/issues",
  721. "source": "https://github.com/guzzle/guzzle/tree/7.7.0"
  722. },
  723. "funding": [
  724. {
  725. "url": "https://github.com/GrahamCampbell",
  726. "type": "github"
  727. },
  728. {
  729. "url": "https://github.com/Nyholm",
  730. "type": "github"
  731. },
  732. {
  733. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/guzzle",
  734. "type": "tidelift"
  735. }
  736. ],
  737. "time": "2023-05-21T14:04:53+00:00"
  738. },
  739. {
  740. "name": "guzzlehttp/promises",
  741. "version": "2.0.0",
  742. "source": {
  743. "type": "git",
  744. "url": "https://github.com/guzzle/promises.git",
  745. "reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6"
  746. },
  747. "dist": {
  748. "type": "zip",
  749. "url": "https://api.github.com/repos/guzzle/promises/zipball/3a494dc7dc1d7d12e511890177ae2d0e6c107da6",
  750. "reference": "3a494dc7dc1d7d12e511890177ae2d0e6c107da6",
  751. "shasum": ""
  752. },
  753. "require": {
  754. "php": "^7.2.5 || ^8.0"
  755. },
  756. "require-dev": {
  757. "bamarni/composer-bin-plugin": "^1.8.1",
  758. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  759. },
  760. "type": "library",
  761. "extra": {
  762. "bamarni-bin": {
  763. "bin-links": true,
  764. "forward-command": false
  765. }
  766. },
  767. "autoload": {
  768. "psr-4": {
  769. "GuzzleHttp\\Promise\\": "src/"
  770. }
  771. },
  772. "notification-url": "https://packagist.org/downloads/",
  773. "license": [
  774. "MIT"
  775. ],
  776. "authors": [
  777. {
  778. "name": "Graham Campbell",
  779. "email": "hello@gjcampbell.co.uk",
  780. "homepage": "https://github.com/GrahamCampbell"
  781. },
  782. {
  783. "name": "Michael Dowling",
  784. "email": "mtdowling@gmail.com",
  785. "homepage": "https://github.com/mtdowling"
  786. },
  787. {
  788. "name": "Tobias Nyholm",
  789. "email": "tobias.nyholm@gmail.com",
  790. "homepage": "https://github.com/Nyholm"
  791. },
  792. {
  793. "name": "Tobias Schultze",
  794. "email": "webmaster@tubo-world.de",
  795. "homepage": "https://github.com/Tobion"
  796. }
  797. ],
  798. "description": "Guzzle promises library",
  799. "keywords": [
  800. "promise"
  801. ],
  802. "support": {
  803. "issues": "https://github.com/guzzle/promises/issues",
  804. "source": "https://github.com/guzzle/promises/tree/2.0.0"
  805. },
  806. "funding": [
  807. {
  808. "url": "https://github.com/GrahamCampbell",
  809. "type": "github"
  810. },
  811. {
  812. "url": "https://github.com/Nyholm",
  813. "type": "github"
  814. },
  815. {
  816. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/promises",
  817. "type": "tidelift"
  818. }
  819. ],
  820. "time": "2023-05-21T13:50:22+00:00"
  821. },
  822. {
  823. "name": "guzzlehttp/psr7",
  824. "version": "2.5.0",
  825. "source": {
  826. "type": "git",
  827. "url": "https://github.com/guzzle/psr7.git",
  828. "reference": "b635f279edd83fc275f822a1188157ffea568ff6"
  829. },
  830. "dist": {
  831. "type": "zip",
  832. "url": "https://api.github.com/repos/guzzle/psr7/zipball/b635f279edd83fc275f822a1188157ffea568ff6",
  833. "reference": "b635f279edd83fc275f822a1188157ffea568ff6",
  834. "shasum": ""
  835. },
  836. "require": {
  837. "php": "^7.2.5 || ^8.0",
  838. "psr/http-factory": "^1.0",
  839. "psr/http-message": "^1.1 || ^2.0",
  840. "ralouphie/getallheaders": "^3.0"
  841. },
  842. "provide": {
  843. "psr/http-factory-implementation": "1.0",
  844. "psr/http-message-implementation": "1.0"
  845. },
  846. "require-dev": {
  847. "bamarni/composer-bin-plugin": "^1.8.1",
  848. "http-interop/http-factory-tests": "^0.9",
  849. "phpunit/phpunit": "^8.5.29 || ^9.5.23"
  850. },
  851. "suggest": {
  852. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  853. },
  854. "type": "library",
  855. "extra": {
  856. "bamarni-bin": {
  857. "bin-links": true,
  858. "forward-command": false
  859. }
  860. },
  861. "autoload": {
  862. "psr-4": {
  863. "GuzzleHttp\\Psr7\\": "src/"
  864. }
  865. },
  866. "notification-url": "https://packagist.org/downloads/",
  867. "license": [
  868. "MIT"
  869. ],
  870. "authors": [
  871. {
  872. "name": "Graham Campbell",
  873. "email": "hello@gjcampbell.co.uk",
  874. "homepage": "https://github.com/GrahamCampbell"
  875. },
  876. {
  877. "name": "Michael Dowling",
  878. "email": "mtdowling@gmail.com",
  879. "homepage": "https://github.com/mtdowling"
  880. },
  881. {
  882. "name": "George Mponos",
  883. "email": "gmponos@gmail.com",
  884. "homepage": "https://github.com/gmponos"
  885. },
  886. {
  887. "name": "Tobias Nyholm",
  888. "email": "tobias.nyholm@gmail.com",
  889. "homepage": "https://github.com/Nyholm"
  890. },
  891. {
  892. "name": "Márk Sági-Kazár",
  893. "email": "mark.sagikazar@gmail.com",
  894. "homepage": "https://github.com/sagikazarmark"
  895. },
  896. {
  897. "name": "Tobias Schultze",
  898. "email": "webmaster@tubo-world.de",
  899. "homepage": "https://github.com/Tobion"
  900. },
  901. {
  902. "name": "Márk Sági-Kazár",
  903. "email": "mark.sagikazar@gmail.com",
  904. "homepage": "https://sagikazarmark.hu"
  905. }
  906. ],
  907. "description": "PSR-7 message implementation that also provides common utility methods",
  908. "keywords": [
  909. "http",
  910. "message",
  911. "psr-7",
  912. "request",
  913. "response",
  914. "stream",
  915. "uri",
  916. "url"
  917. ],
  918. "support": {
  919. "issues": "https://github.com/guzzle/psr7/issues",
  920. "source": "https://github.com/guzzle/psr7/tree/2.5.0"
  921. },
  922. "funding": [
  923. {
  924. "url": "https://github.com/GrahamCampbell",
  925. "type": "github"
  926. },
  927. {
  928. "url": "https://github.com/Nyholm",
  929. "type": "github"
  930. },
  931. {
  932. "url": "https://tidelift.com/funding/github/packagist/guzzlehttp/psr7",
  933. "type": "tidelift"
  934. }
  935. ],
  936. "time": "2023-04-17T16:11:26+00:00"
  937. },
  938. {
  939. "name": "hyperf/cache",
  940. "version": "v2.2.40",
  941. "source": {
  942. "type": "git",
  943. "url": "https://github.com/hyperf/cache.git",
  944. "reference": "118ca172828d51f5eea6e3d654df6275705ddeef"
  945. },
  946. "dist": {
  947. "type": "zip",
  948. "url": "https://api.github.com/repos/hyperf/cache/zipball/118ca172828d51f5eea6e3d654df6275705ddeef",
  949. "reference": "118ca172828d51f5eea6e3d654df6275705ddeef",
  950. "shasum": ""
  951. },
  952. "require": {
  953. "hyperf/contract": "~2.2.0",
  954. "hyperf/utils": "~2.2.0",
  955. "php": ">=7.2",
  956. "psr/container": "^1.0|^2.0",
  957. "psr/simple-cache": "^1.0"
  958. },
  959. "suggest": {
  960. "hyperf/di": "Use cache annotations.",
  961. "hyperf/event": "Use listener to delete annotation cache."
  962. },
  963. "type": "library",
  964. "extra": {
  965. "branch-alias": {
  966. "dev-master": "2.2-dev"
  967. },
  968. "hyperf": {
  969. "config": "Hyperf\\Cache\\ConfigProvider"
  970. }
  971. },
  972. "autoload": {
  973. "psr-4": {
  974. "Hyperf\\Cache\\": "src/"
  975. }
  976. },
  977. "notification-url": "https://packagist.org/downloads/",
  978. "license": [
  979. "MIT"
  980. ],
  981. "description": "A cache component for hyperf.",
  982. "homepage": "https://hyperf.io",
  983. "keywords": [
  984. "cache",
  985. "hyperf",
  986. "php"
  987. ],
  988. "support": {
  989. "docs": "https://hyperf.wiki",
  990. "issues": "https://github.com/hyperf/hyperf/issues",
  991. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  992. "source": "https://github.com/hyperf/hyperf"
  993. },
  994. "time": "2023-06-19T10:24:33+00:00"
  995. },
  996. {
  997. "name": "hyperf/command",
  998. "version": "v2.2.35",
  999. "source": {
  1000. "type": "git",
  1001. "url": "https://github.com/hyperf/command.git",
  1002. "reference": "48cd9789166ecf5f3009de45bcf128b997ec5f88"
  1003. },
  1004. "dist": {
  1005. "type": "zip",
  1006. "url": "https://api.github.com/repos/hyperf/command/zipball/48cd9789166ecf5f3009de45bcf128b997ec5f88",
  1007. "reference": "48cd9789166ecf5f3009de45bcf128b997ec5f88",
  1008. "shasum": ""
  1009. },
  1010. "require": {
  1011. "hyperf/utils": "~2.2.0",
  1012. "php": ">=7.2",
  1013. "psr/event-dispatcher": "^1.0",
  1014. "symfony/console": ">=5.0 <5.4.12"
  1015. },
  1016. "suggest": {
  1017. "hyperf/di": "Required to use annotations."
  1018. },
  1019. "type": "library",
  1020. "extra": {
  1021. "branch-alias": {
  1022. "dev-master": "2.2-dev"
  1023. }
  1024. },
  1025. "autoload": {
  1026. "psr-4": {
  1027. "Hyperf\\Command\\": "src/"
  1028. }
  1029. },
  1030. "notification-url": "https://packagist.org/downloads/",
  1031. "license": [
  1032. "MIT"
  1033. ],
  1034. "description": "Command for hyperf",
  1035. "keywords": [
  1036. "command",
  1037. "php",
  1038. "swoole"
  1039. ],
  1040. "support": {
  1041. "issues": "https://github.com/hyperf/command/issues",
  1042. "source": "https://github.com/hyperf/command/tree/v2.2.35"
  1043. },
  1044. "time": "2022-08-27T07:28:56+00:00"
  1045. },
  1046. {
  1047. "name": "hyperf/config",
  1048. "version": "v2.2.33",
  1049. "source": {
  1050. "type": "git",
  1051. "url": "https://github.com/hyperf/config.git",
  1052. "reference": "9437f45aea36358840c907691e9b28492550e9a3"
  1053. },
  1054. "dist": {
  1055. "type": "zip",
  1056. "url": "https://api.github.com/repos/hyperf/config/zipball/9437f45aea36358840c907691e9b28492550e9a3",
  1057. "reference": "9437f45aea36358840c907691e9b28492550e9a3",
  1058. "shasum": ""
  1059. },
  1060. "require": {
  1061. "hyperf/contract": "~2.2.0",
  1062. "hyperf/utils": "~2.2.0",
  1063. "php": ">=7.2",
  1064. "psr/container": "^1.0|^2.0",
  1065. "symfony/finder": "^5.0"
  1066. },
  1067. "suggest": {
  1068. "hyperf/di": "Allows using @Value annotation",
  1069. "hyperf/event": "Allows using @Value annotation",
  1070. "hyperf/framework": "Allows using @Value annotation",
  1071. "vlucas/phpdotenv": "Allows using enviroment value to override the config"
  1072. },
  1073. "type": "library",
  1074. "extra": {
  1075. "branch-alias": {
  1076. "dev-master": "2.2-dev"
  1077. },
  1078. "hyperf": {
  1079. "config": "Hyperf\\Config\\ConfigProvider"
  1080. }
  1081. },
  1082. "autoload": {
  1083. "files": [
  1084. "./src/Functions.php"
  1085. ],
  1086. "psr-4": {
  1087. "Hyperf\\Config\\": "src/"
  1088. }
  1089. },
  1090. "notification-url": "https://packagist.org/downloads/",
  1091. "license": [
  1092. "MIT"
  1093. ],
  1094. "description": "An independent component that provides configuration container.",
  1095. "homepage": "https://hyperf.io",
  1096. "keywords": [
  1097. "config",
  1098. "configuration",
  1099. "hyperf",
  1100. "php",
  1101. "swoole"
  1102. ],
  1103. "support": {
  1104. "docs": "https://hyperf.wiki",
  1105. "issues": "https://github.com/hyperf/hyperf/issues",
  1106. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1107. "source": "https://github.com/hyperf/hyperf"
  1108. },
  1109. "time": "2022-05-24T13:10:54+00:00"
  1110. },
  1111. {
  1112. "name": "hyperf/context",
  1113. "version": "v2.2.33",
  1114. "source": {
  1115. "type": "git",
  1116. "url": "https://github.com/hyperf/context.git",
  1117. "reference": "f2e77442693a07d47f7ca97f8b2fdb8e17196a47"
  1118. },
  1119. "dist": {
  1120. "type": "zip",
  1121. "url": "https://api.github.com/repos/hyperf/context/zipball/f2e77442693a07d47f7ca97f8b2fdb8e17196a47",
  1122. "reference": "f2e77442693a07d47f7ca97f8b2fdb8e17196a47",
  1123. "shasum": ""
  1124. },
  1125. "require": {
  1126. "hyperf/engine": "^1.1",
  1127. "php": ">=7.2"
  1128. },
  1129. "type": "library",
  1130. "extra": {
  1131. "branch-alias": {
  1132. "dev-master": "2.2-dev"
  1133. }
  1134. },
  1135. "autoload": {
  1136. "psr-4": {
  1137. "Hyperf\\Context\\": "src/"
  1138. }
  1139. },
  1140. "notification-url": "https://packagist.org/downloads/",
  1141. "license": [
  1142. "MIT"
  1143. ],
  1144. "description": "A coroutine context library.",
  1145. "homepage": "https://hyperf.io",
  1146. "keywords": [
  1147. "Context",
  1148. "hyperf",
  1149. "php",
  1150. "swoole"
  1151. ],
  1152. "support": {
  1153. "docs": "https://hyperf.wiki",
  1154. "issues": "https://github.com/hyperf/hyperf/issues",
  1155. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1156. "source": "https://github.com/hyperf/hyperf"
  1157. },
  1158. "time": "2022-05-24T13:10:54+00:00"
  1159. },
  1160. {
  1161. "name": "hyperf/contract",
  1162. "version": "v2.2.33",
  1163. "source": {
  1164. "type": "git",
  1165. "url": "https://github.com/hyperf/contract.git",
  1166. "reference": "1ebf037c91d76ec05af9e5cb3335b0f5ec810e27"
  1167. },
  1168. "dist": {
  1169. "type": "zip",
  1170. "url": "https://api.github.com/repos/hyperf/contract/zipball/1ebf037c91d76ec05af9e5cb3335b0f5ec810e27",
  1171. "reference": "1ebf037c91d76ec05af9e5cb3335b0f5ec810e27",
  1172. "shasum": ""
  1173. },
  1174. "require": {
  1175. "php": ">=7.2"
  1176. },
  1177. "type": "library",
  1178. "extra": {
  1179. "branch-alias": {
  1180. "dev-master": "2.2-dev"
  1181. }
  1182. },
  1183. "autoload": {
  1184. "psr-4": {
  1185. "Hyperf\\Contract\\": "src/"
  1186. }
  1187. },
  1188. "notification-url": "https://packagist.org/downloads/",
  1189. "license": [
  1190. "MIT"
  1191. ],
  1192. "description": "The contracts of Hyperf.",
  1193. "homepage": "https://hyperf.io",
  1194. "keywords": [
  1195. "hyperf",
  1196. "php",
  1197. "swoole"
  1198. ],
  1199. "support": {
  1200. "docs": "https://hyperf.wiki",
  1201. "issues": "https://github.com/hyperf/hyperf/issues",
  1202. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1203. "source": "https://github.com/hyperf/hyperf"
  1204. },
  1205. "time": "2022-05-24T13:10:54+00:00"
  1206. },
  1207. {
  1208. "name": "hyperf/crontab",
  1209. "version": "v2.2.33",
  1210. "source": {
  1211. "type": "git",
  1212. "url": "https://github.com/hyperf/crontab.git",
  1213. "reference": "64e1a6db961fdf46a111ec172956abb5a386511c"
  1214. },
  1215. "dist": {
  1216. "type": "zip",
  1217. "url": "https://api.github.com/repos/hyperf/crontab/zipball/64e1a6db961fdf46a111ec172956abb5a386511c",
  1218. "reference": "64e1a6db961fdf46a111ec172956abb5a386511c",
  1219. "shasum": ""
  1220. },
  1221. "require": {
  1222. "hyperf/utils": "~2.2.0",
  1223. "nesbot/carbon": "^2.0",
  1224. "php": ">=7.2"
  1225. },
  1226. "type": "library",
  1227. "extra": {
  1228. "branch-alias": {
  1229. "dev-master": "2.2-dev"
  1230. },
  1231. "hyperf": {
  1232. "config": "Hyperf\\Crontab\\ConfigProvider"
  1233. }
  1234. },
  1235. "autoload": {
  1236. "psr-4": {
  1237. "Hyperf\\Crontab\\": "src/"
  1238. }
  1239. },
  1240. "notification-url": "https://packagist.org/downloads/",
  1241. "license": [
  1242. "MIT"
  1243. ],
  1244. "description": "A crontab component for Hyperf.",
  1245. "homepage": "https://hyperf.io",
  1246. "keywords": [
  1247. "crontab",
  1248. "hyperf",
  1249. "php",
  1250. "swoole"
  1251. ],
  1252. "support": {
  1253. "docs": "https://hyperf.wiki",
  1254. "issues": "https://github.com/hyperf/hyperf/issues",
  1255. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1256. "source": "https://github.com/hyperf/hyperf"
  1257. },
  1258. "time": "2022-05-24T13:10:54+00:00"
  1259. },
  1260. {
  1261. "name": "hyperf/database",
  1262. "version": "v2.2.39",
  1263. "source": {
  1264. "type": "git",
  1265. "url": "https://github.com/hyperf/database.git",
  1266. "reference": "6105b9539aa4db7d615b2fef2687655a7a5df56c"
  1267. },
  1268. "dist": {
  1269. "type": "zip",
  1270. "url": "https://api.github.com/repos/hyperf/database/zipball/6105b9539aa4db7d615b2fef2687655a7a5df56c",
  1271. "reference": "6105b9539aa4db7d615b2fef2687655a7a5df56c",
  1272. "shasum": ""
  1273. },
  1274. "require": {
  1275. "hyperf/macroable": "~2.2.0",
  1276. "hyperf/utils": "~2.2.8",
  1277. "nesbot/carbon": "^2.0",
  1278. "php": ">=7.2",
  1279. "psr/container": "^1.0|^2.0",
  1280. "psr/event-dispatcher": "^1.0"
  1281. },
  1282. "suggest": {
  1283. "doctrine/dbal": "Required to rename columns (^3.0).",
  1284. "nikic/php-parser": "Required to use ModelCommand. (^4.0)",
  1285. "php-di/phpdoc-reader": "Required to use ModelCommand. (^2.2)"
  1286. },
  1287. "type": "library",
  1288. "extra": {
  1289. "branch-alias": {
  1290. "dev-master": "2.2-dev"
  1291. }
  1292. },
  1293. "autoload": {
  1294. "psr-4": {
  1295. "Hyperf\\Database\\": "src/"
  1296. }
  1297. },
  1298. "notification-url": "https://packagist.org/downloads/",
  1299. "license": [
  1300. "MIT"
  1301. ],
  1302. "description": "A flexible database library.",
  1303. "homepage": "https://hyperf.io",
  1304. "keywords": [
  1305. "database",
  1306. "hyperf",
  1307. "php"
  1308. ],
  1309. "support": {
  1310. "docs": "https://hyperf.wiki",
  1311. "issues": "https://github.com/hyperf/hyperf/issues",
  1312. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1313. "source": "https://github.com/hyperf/hyperf"
  1314. },
  1315. "time": "2023-02-09T02:50:06+00:00"
  1316. },
  1317. {
  1318. "name": "hyperf/db-connection",
  1319. "version": "v2.2.33",
  1320. "source": {
  1321. "type": "git",
  1322. "url": "https://github.com/hyperf/db-connection.git",
  1323. "reference": "05d2a1e858f01682739e066430b339a9bcdef837"
  1324. },
  1325. "dist": {
  1326. "type": "zip",
  1327. "url": "https://api.github.com/repos/hyperf/db-connection/zipball/05d2a1e858f01682739e066430b339a9bcdef837",
  1328. "reference": "05d2a1e858f01682739e066430b339a9bcdef837",
  1329. "shasum": ""
  1330. },
  1331. "require": {
  1332. "hyperf/database": "~2.2.0",
  1333. "hyperf/di": "~2.2.0",
  1334. "hyperf/framework": "~2.2.0",
  1335. "hyperf/model-listener": "~2.2.0",
  1336. "hyperf/pool": "~2.2.0",
  1337. "hyperf/utils": "~2.2.0",
  1338. "php": ">=7.2"
  1339. },
  1340. "type": "library",
  1341. "extra": {
  1342. "branch-alias": {
  1343. "dev-master": "2.2-dev"
  1344. },
  1345. "hyperf": {
  1346. "config": "Hyperf\\DbConnection\\ConfigProvider"
  1347. }
  1348. },
  1349. "autoload": {
  1350. "psr-4": {
  1351. "Hyperf\\DbConnection\\": "src/"
  1352. }
  1353. },
  1354. "notification-url": "https://packagist.org/downloads/",
  1355. "license": [
  1356. "MIT"
  1357. ],
  1358. "description": "A hyperf db connection handler for hyperf/database.",
  1359. "homepage": "https://hyperf.io",
  1360. "keywords": [
  1361. "Connection",
  1362. "database",
  1363. "hyperf",
  1364. "php"
  1365. ],
  1366. "support": {
  1367. "docs": "https://hyperf.wiki",
  1368. "issues": "https://github.com/hyperf/hyperf/issues",
  1369. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1370. "source": "https://github.com/hyperf/hyperf"
  1371. },
  1372. "time": "2022-05-24T13:10:54+00:00"
  1373. },
  1374. {
  1375. "name": "hyperf/di",
  1376. "version": "v2.2.33",
  1377. "source": {
  1378. "type": "git",
  1379. "url": "https://github.com/hyperf/di.git",
  1380. "reference": "471c3cf9e0c02ab3aaa0c6e9884062bd541e4577"
  1381. },
  1382. "dist": {
  1383. "type": "zip",
  1384. "url": "https://api.github.com/repos/hyperf/di/zipball/471c3cf9e0c02ab3aaa0c6e9884062bd541e4577",
  1385. "reference": "471c3cf9e0c02ab3aaa0c6e9884062bd541e4577",
  1386. "shasum": ""
  1387. },
  1388. "require": {
  1389. "doctrine/annotations": "^1.6",
  1390. "doctrine/instantiator": "^1.0",
  1391. "nikic/php-parser": "^4.1",
  1392. "php": ">=7.3",
  1393. "php-di/phpdoc-reader": "^2.2",
  1394. "psr/container": "^1.0|^2.0",
  1395. "symfony/finder": "^5.0",
  1396. "vlucas/phpdotenv": "^5.0"
  1397. },
  1398. "suggest": {
  1399. "ext-pcntl": "Required to scan annotations.",
  1400. "hyperf/config": "Require this component for annotation scan progress to retrieve the scan path."
  1401. },
  1402. "type": "library",
  1403. "extra": {
  1404. "branch-alias": {
  1405. "dev-master": "2.2-dev"
  1406. },
  1407. "hyperf": {
  1408. "config": "Hyperf\\Di\\ConfigProvider"
  1409. }
  1410. },
  1411. "autoload": {
  1412. "psr-4": {
  1413. "Hyperf\\Di\\": "src/"
  1414. }
  1415. },
  1416. "notification-url": "https://packagist.org/downloads/",
  1417. "license": [
  1418. "MIT"
  1419. ],
  1420. "description": "A DI for Hyperf.",
  1421. "homepage": "https://hyperf.io",
  1422. "keywords": [
  1423. "annotation",
  1424. "di",
  1425. "hyperf",
  1426. "php",
  1427. "swoole"
  1428. ],
  1429. "support": {
  1430. "docs": "https://hyperf.wiki",
  1431. "issues": "https://github.com/hyperf/hyperf/issues",
  1432. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1433. "source": "https://github.com/hyperf/hyperf"
  1434. },
  1435. "time": "2022-05-24T13:10:54+00:00"
  1436. },
  1437. {
  1438. "name": "hyperf/dispatcher",
  1439. "version": "v2.2.33",
  1440. "source": {
  1441. "type": "git",
  1442. "url": "https://github.com/hyperf/dispatcher.git",
  1443. "reference": "bcffa8faa11367204c4e00e93f6425d600603e03"
  1444. },
  1445. "dist": {
  1446. "type": "zip",
  1447. "url": "https://api.github.com/repos/hyperf/dispatcher/zipball/bcffa8faa11367204c4e00e93f6425d600603e03",
  1448. "reference": "bcffa8faa11367204c4e00e93f6425d600603e03",
  1449. "shasum": ""
  1450. },
  1451. "require": {
  1452. "hyperf/contract": "~2.2.0",
  1453. "php": ">=7.2",
  1454. "psr/container": "^1.0|^2.0",
  1455. "psr/http-message": "^1.0",
  1456. "psr/http-server-middleware": "^1.0"
  1457. },
  1458. "type": "library",
  1459. "extra": {
  1460. "branch-alias": {
  1461. "dev-master": "2.2-dev"
  1462. },
  1463. "hyperf": {
  1464. "config": "Hyperf\\Dispatcher\\ConfigProvider"
  1465. }
  1466. },
  1467. "autoload": {
  1468. "psr-4": {
  1469. "Hyperf\\Dispatcher\\": "src/"
  1470. }
  1471. },
  1472. "notification-url": "https://packagist.org/downloads/",
  1473. "license": [
  1474. "MIT"
  1475. ],
  1476. "description": "A HTTP Server for Hyperf.",
  1477. "homepage": "https://hyperf.io",
  1478. "keywords": [
  1479. "dispatcher",
  1480. "filter",
  1481. "hyperf",
  1482. "middleware",
  1483. "php",
  1484. "swoole"
  1485. ],
  1486. "support": {
  1487. "docs": "https://hyperf.wiki",
  1488. "issues": "https://github.com/hyperf/hyperf/issues",
  1489. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1490. "source": "https://github.com/hyperf/hyperf"
  1491. },
  1492. "time": "2022-05-24T13:10:54+00:00"
  1493. },
  1494. {
  1495. "name": "hyperf/engine",
  1496. "version": "v1.2.2",
  1497. "source": {
  1498. "type": "git",
  1499. "url": "https://github.com/hyperf/engine.git",
  1500. "reference": "12fdb2b4cec9ee92fc808321a7378cc6251e52cd"
  1501. },
  1502. "dist": {
  1503. "type": "zip",
  1504. "url": "https://api.github.com/repos/hyperf/engine/zipball/12fdb2b4cec9ee92fc808321a7378cc6251e52cd",
  1505. "reference": "12fdb2b4cec9ee92fc808321a7378cc6251e52cd",
  1506. "shasum": ""
  1507. },
  1508. "require": {
  1509. "php": ">=7.4"
  1510. },
  1511. "require-dev": {
  1512. "friendsofphp/php-cs-fixer": "^3.0",
  1513. "hyperf/guzzle": "^2.2",
  1514. "phpstan/phpstan": "^1.0",
  1515. "phpunit/phpunit": "^9.4",
  1516. "swoole/ide-helper": "dev-master"
  1517. },
  1518. "suggest": {
  1519. "ext-swoole": ">=4.5"
  1520. },
  1521. "type": "library",
  1522. "extra": {
  1523. "branch-alias": {
  1524. "dev-master": "1.2-dev"
  1525. }
  1526. },
  1527. "autoload": {
  1528. "psr-4": {
  1529. "Hyperf\\Engine\\": "src/"
  1530. }
  1531. },
  1532. "notification-url": "https://packagist.org/downloads/",
  1533. "license": [
  1534. "MIT"
  1535. ],
  1536. "keywords": [
  1537. "hyperf",
  1538. "php"
  1539. ],
  1540. "support": {
  1541. "issues": "https://github.com/hyperf/engine/issues",
  1542. "source": "https://github.com/hyperf/engine/tree/v1.2.2"
  1543. },
  1544. "time": "2022-08-06T05:25:43+00:00"
  1545. },
  1546. {
  1547. "name": "hyperf/event",
  1548. "version": "v2.2.33",
  1549. "source": {
  1550. "type": "git",
  1551. "url": "https://github.com/hyperf/event.git",
  1552. "reference": "cd92f5c1218c65f29b15c4d12dcf5835e0426ac8"
  1553. },
  1554. "dist": {
  1555. "type": "zip",
  1556. "url": "https://api.github.com/repos/hyperf/event/zipball/cd92f5c1218c65f29b15c4d12dcf5835e0426ac8",
  1557. "reference": "cd92f5c1218c65f29b15c4d12dcf5835e0426ac8",
  1558. "shasum": ""
  1559. },
  1560. "require": {
  1561. "hyperf/contract": "~2.2.0",
  1562. "php": ">=7.2",
  1563. "psr/event-dispatcher": "^1.0"
  1564. },
  1565. "suggest": {
  1566. "hyperf/di": "Required to use annotatioins."
  1567. },
  1568. "type": "library",
  1569. "extra": {
  1570. "branch-alias": {
  1571. "dev-master": "2.2-dev"
  1572. },
  1573. "hyperf": {
  1574. "config": "Hyperf\\Event\\ConfigProvider"
  1575. }
  1576. },
  1577. "autoload": {
  1578. "psr-4": {
  1579. "Hyperf\\Event\\": "src/"
  1580. }
  1581. },
  1582. "notification-url": "https://packagist.org/downloads/",
  1583. "license": [
  1584. "MIT"
  1585. ],
  1586. "description": "an event manager that implements PSR-14.",
  1587. "homepage": "https://hyperf.io",
  1588. "keywords": [
  1589. "event",
  1590. "hyperf",
  1591. "php",
  1592. "swoole"
  1593. ],
  1594. "support": {
  1595. "docs": "https://hyperf.wiki",
  1596. "issues": "https://github.com/hyperf/hyperf/issues",
  1597. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1598. "source": "https://github.com/hyperf/hyperf"
  1599. },
  1600. "time": "2022-05-24T13:10:54+00:00"
  1601. },
  1602. {
  1603. "name": "hyperf/exception-handler",
  1604. "version": "v2.2.33",
  1605. "source": {
  1606. "type": "git",
  1607. "url": "https://github.com/hyperf/exception-handler.git",
  1608. "reference": "4ec8f6debf530b661bb2b436ef96da53ce0abbdc"
  1609. },
  1610. "dist": {
  1611. "type": "zip",
  1612. "url": "https://api.github.com/repos/hyperf/exception-handler/zipball/4ec8f6debf530b661bb2b436ef96da53ce0abbdc",
  1613. "reference": "4ec8f6debf530b661bb2b436ef96da53ce0abbdc",
  1614. "shasum": ""
  1615. },
  1616. "require": {
  1617. "hyperf/contract": "~2.2.0",
  1618. "hyperf/dispatcher": "~2.2.0",
  1619. "hyperf/utils": "~2.2.0",
  1620. "php": ">=7.2",
  1621. "psr/container": "^1.0|^2.0",
  1622. "psr/http-message": "^1.0"
  1623. },
  1624. "type": "library",
  1625. "extra": {
  1626. "branch-alias": {
  1627. "dev-master": "2.2-dev"
  1628. },
  1629. "hyperf": {
  1630. "config": "Hyperf\\ExceptionHandler\\ConfigProvider"
  1631. }
  1632. },
  1633. "autoload": {
  1634. "psr-4": {
  1635. "Hyperf\\ExceptionHandler\\": "src/"
  1636. }
  1637. },
  1638. "notification-url": "https://packagist.org/downloads/",
  1639. "license": [
  1640. "MIT"
  1641. ],
  1642. "description": "Exception handler for hyperf",
  1643. "homepage": "https://hyperf.io",
  1644. "keywords": [
  1645. "exception-handler",
  1646. "php",
  1647. "swoole"
  1648. ],
  1649. "support": {
  1650. "docs": "https://hyperf.wiki",
  1651. "issues": "https://github.com/hyperf/hyperf/issues",
  1652. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1653. "source": "https://github.com/hyperf/hyperf"
  1654. },
  1655. "time": "2022-05-24T13:10:54+00:00"
  1656. },
  1657. {
  1658. "name": "hyperf/framework",
  1659. "version": "v2.2.33",
  1660. "source": {
  1661. "type": "git",
  1662. "url": "https://github.com/hyperf/framework.git",
  1663. "reference": "49e98fb747214bcac79aecadda8349e70b8f2891"
  1664. },
  1665. "dist": {
  1666. "type": "zip",
  1667. "url": "https://api.github.com/repos/hyperf/framework/zipball/49e98fb747214bcac79aecadda8349e70b8f2891",
  1668. "reference": "49e98fb747214bcac79aecadda8349e70b8f2891",
  1669. "shasum": ""
  1670. },
  1671. "require": {
  1672. "fig/http-message-util": "^1.1.2",
  1673. "hyperf/contract": "~2.2.0",
  1674. "hyperf/utils": "~2.2.0",
  1675. "php": ">=7.2",
  1676. "psr/container": "^1.0|^2.0",
  1677. "psr/event-dispatcher": "^1.0",
  1678. "psr/log": "^1.0|^2.0|^3.0"
  1679. },
  1680. "suggest": {
  1681. "ext-swoole": "Required to use swoole engine.",
  1682. "hyperf/command": "Required to use Command annotation.",
  1683. "hyperf/di": "Required to use Command annotation.",
  1684. "hyperf/dispatcher": "Required to use BootApplication event.",
  1685. "symfony/event-dispatcher": "Required to use symfony event dispatcher (^5.0)."
  1686. },
  1687. "type": "library",
  1688. "extra": {
  1689. "branch-alias": {
  1690. "dev-master": "2.2-dev"
  1691. },
  1692. "hyperf": {
  1693. "config": "Hyperf\\Framework\\ConfigProvider"
  1694. }
  1695. },
  1696. "autoload": {
  1697. "psr-4": {
  1698. "Hyperf\\Framework\\": "src/"
  1699. }
  1700. },
  1701. "notification-url": "https://packagist.org/downloads/",
  1702. "license": [
  1703. "MIT"
  1704. ],
  1705. "description": "A coroutine framework that focuses on hyperspeed and flexible, specifically use for build microservices and middlewares.",
  1706. "homepage": "https://hyperf.io",
  1707. "keywords": [
  1708. "Microservice",
  1709. "framework",
  1710. "hyperf",
  1711. "middleware",
  1712. "php",
  1713. "swoole"
  1714. ],
  1715. "support": {
  1716. "docs": "https://hyperf.wiki",
  1717. "issues": "https://github.com/hyperf/hyperf/issues",
  1718. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1719. "source": "https://github.com/hyperf/hyperf"
  1720. },
  1721. "time": "2022-05-24T13:10:54+00:00"
  1722. },
  1723. {
  1724. "name": "hyperf/guzzle",
  1725. "version": "v2.2.33",
  1726. "source": {
  1727. "type": "git",
  1728. "url": "https://github.com/hyperf/guzzle.git",
  1729. "reference": "ef4d6b02778cf44b7f0edefd9c33a5d8d08ad48f"
  1730. },
  1731. "dist": {
  1732. "type": "zip",
  1733. "url": "https://api.github.com/repos/hyperf/guzzle/zipball/ef4d6b02778cf44b7f0edefd9c33a5d8d08ad48f",
  1734. "reference": "ef4d6b02778cf44b7f0edefd9c33a5d8d08ad48f",
  1735. "shasum": ""
  1736. },
  1737. "require": {
  1738. "guzzlehttp/guzzle": "^6.3|^7.0",
  1739. "hyperf/utils": "~2.2.0",
  1740. "php": ">=7.0",
  1741. "psr/container": "^1.0|^2.0",
  1742. "psr/http-message": "^1.0"
  1743. },
  1744. "suggest": {
  1745. "hyperf/pool": "Required to use pool handler."
  1746. },
  1747. "type": "library",
  1748. "extra": {
  1749. "branch-alias": {
  1750. "dev-master": "2.2-dev"
  1751. },
  1752. "hyperf": {
  1753. "config": "Hyperf\\Guzzle\\ConfigProvider"
  1754. }
  1755. },
  1756. "autoload": {
  1757. "psr-4": {
  1758. "Hyperf\\Guzzle\\": "src/"
  1759. }
  1760. },
  1761. "notification-url": "https://packagist.org/downloads/",
  1762. "license": [
  1763. "MIT"
  1764. ],
  1765. "description": "Swoole coroutine handler for guzzle",
  1766. "keywords": [
  1767. "Guzzle",
  1768. "handler",
  1769. "php",
  1770. "swoole"
  1771. ],
  1772. "support": {
  1773. "issues": "https://github.com/hyperf/guzzle/issues",
  1774. "source": "https://github.com/hyperf/guzzle/tree/v2.2.33"
  1775. },
  1776. "time": "2022-05-24T13:10:54+00:00"
  1777. },
  1778. {
  1779. "name": "hyperf/http-message",
  1780. "version": "v2.2.33",
  1781. "source": {
  1782. "type": "git",
  1783. "url": "https://github.com/hyperf/http-message.git",
  1784. "reference": "d71d796177ec72fe30d116c57ed8bd8121a57b6e"
  1785. },
  1786. "dist": {
  1787. "type": "zip",
  1788. "url": "https://api.github.com/repos/hyperf/http-message/zipball/d71d796177ec72fe30d116c57ed8bd8121a57b6e",
  1789. "reference": "d71d796177ec72fe30d116c57ed8bd8121a57b6e",
  1790. "shasum": ""
  1791. },
  1792. "require": {
  1793. "hyperf/utils": "~2.2.0",
  1794. "laminas/laminas-mime": "^2.7",
  1795. "psr/http-message": "^1.0"
  1796. },
  1797. "suggest": {
  1798. "psr/container": "Required to replace RequestParserInterface."
  1799. },
  1800. "type": "library",
  1801. "extra": {
  1802. "branch-alias": {
  1803. "dev-master": "2.2-dev"
  1804. },
  1805. "hyperf": {
  1806. "config": "Hyperf\\HttpMessage\\ConfigProvider"
  1807. }
  1808. },
  1809. "autoload": {
  1810. "psr-4": {
  1811. "Hyperf\\HttpMessage\\": "src/"
  1812. }
  1813. },
  1814. "notification-url": "https://packagist.org/downloads/",
  1815. "license": [
  1816. "MIT"
  1817. ],
  1818. "description": "microservice framework base on swoole",
  1819. "keywords": [
  1820. "http-message",
  1821. "hyperf",
  1822. "php",
  1823. "swoole"
  1824. ],
  1825. "support": {
  1826. "issues": "https://github.com/hyperf/http-message/issues",
  1827. "source": "https://github.com/hyperf/http-message/tree/v2.2.33"
  1828. },
  1829. "time": "2022-05-24T13:10:54+00:00"
  1830. },
  1831. {
  1832. "name": "hyperf/http-server",
  1833. "version": "v2.2.33",
  1834. "source": {
  1835. "type": "git",
  1836. "url": "https://github.com/hyperf/http-server.git",
  1837. "reference": "0f1f22d408de82c9f8fb3f2cf57457e319210798"
  1838. },
  1839. "dist": {
  1840. "type": "zip",
  1841. "url": "https://api.github.com/repos/hyperf/http-server/zipball/0f1f22d408de82c9f8fb3f2cf57457e319210798",
  1842. "reference": "0f1f22d408de82c9f8fb3f2cf57457e319210798",
  1843. "shasum": ""
  1844. },
  1845. "require": {
  1846. "hyperf/contract": "~2.2.0",
  1847. "hyperf/dispatcher": "~2.2.0",
  1848. "hyperf/event": "~2.2.0",
  1849. "hyperf/exception-handler": "~2.2.0",
  1850. "hyperf/http-message": "~2.2.0",
  1851. "hyperf/macroable": "~2.2.0",
  1852. "hyperf/server": "~2.2.0",
  1853. "hyperf/utils": "~2.2.0",
  1854. "nikic/fast-route": "^1.3",
  1855. "php": ">=7.2",
  1856. "psr/container": "^1.0|^2.0"
  1857. },
  1858. "suggest": {
  1859. "hyperf/di": "Required to use annotations."
  1860. },
  1861. "type": "library",
  1862. "extra": {
  1863. "branch-alias": {
  1864. "dev-master": "2.2-dev"
  1865. },
  1866. "hyperf": {
  1867. "config": "Hyperf\\HttpServer\\ConfigProvider"
  1868. }
  1869. },
  1870. "autoload": {
  1871. "psr-4": {
  1872. "Hyperf\\HttpServer\\": "src/"
  1873. }
  1874. },
  1875. "notification-url": "https://packagist.org/downloads/",
  1876. "license": [
  1877. "MIT"
  1878. ],
  1879. "description": "A HTTP Server for Hyperf.",
  1880. "homepage": "https://hyperf.io",
  1881. "keywords": [
  1882. "http",
  1883. "http-server",
  1884. "hyperf",
  1885. "php",
  1886. "swoole"
  1887. ],
  1888. "support": {
  1889. "docs": "https://hyperf.wiki",
  1890. "issues": "https://github.com/hyperf/hyperf/issues",
  1891. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1892. "source": "https://github.com/hyperf/hyperf"
  1893. },
  1894. "time": "2022-05-24T13:10:54+00:00"
  1895. },
  1896. {
  1897. "name": "hyperf/logger",
  1898. "version": "v2.2.33",
  1899. "source": {
  1900. "type": "git",
  1901. "url": "https://github.com/hyperf/logger.git",
  1902. "reference": "f19929efaeca4aba2b91e7452f4f1b3245bfac51"
  1903. },
  1904. "dist": {
  1905. "type": "zip",
  1906. "url": "https://api.github.com/repos/hyperf/logger/zipball/f19929efaeca4aba2b91e7452f4f1b3245bfac51",
  1907. "reference": "f19929efaeca4aba2b91e7452f4f1b3245bfac51",
  1908. "shasum": ""
  1909. },
  1910. "require": {
  1911. "hyperf/contract": "~2.2.0",
  1912. "hyperf/utils": "~2.2.0",
  1913. "monolog/monolog": "^2.0",
  1914. "php": ">=7.2",
  1915. "psr/container": "^1.0|^2.0",
  1916. "psr/log": "^1.0|^2.0|^3.0"
  1917. },
  1918. "conflict": {
  1919. "monolog/monolog": ">=2.6.0"
  1920. },
  1921. "type": "library",
  1922. "extra": {
  1923. "branch-alias": {
  1924. "dev-master": "2.2-dev"
  1925. },
  1926. "hyperf": {
  1927. "config": "Hyperf\\Logger\\ConfigProvider"
  1928. }
  1929. },
  1930. "autoload": {
  1931. "psr-4": {
  1932. "Hyperf\\Logger\\": "src/"
  1933. }
  1934. },
  1935. "notification-url": "https://packagist.org/downloads/",
  1936. "license": [
  1937. "MIT"
  1938. ],
  1939. "description": "A logger component for hyperf.",
  1940. "homepage": "https://hyperf.io",
  1941. "keywords": [
  1942. "hyperf",
  1943. "logger",
  1944. "php"
  1945. ],
  1946. "support": {
  1947. "docs": "https://hyperf.wiki",
  1948. "issues": "https://github.com/hyperf/hyperf/issues",
  1949. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1950. "source": "https://github.com/hyperf/hyperf"
  1951. },
  1952. "time": "2022-05-24T13:10:54+00:00"
  1953. },
  1954. {
  1955. "name": "hyperf/macroable",
  1956. "version": "v2.2.33",
  1957. "source": {
  1958. "type": "git",
  1959. "url": "https://github.com/hyperf/macroable.git",
  1960. "reference": "e4e1b3ed614a5a9d4c24a48b0b3a554eb712af9f"
  1961. },
  1962. "dist": {
  1963. "type": "zip",
  1964. "url": "https://api.github.com/repos/hyperf/macroable/zipball/e4e1b3ed614a5a9d4c24a48b0b3a554eb712af9f",
  1965. "reference": "e4e1b3ed614a5a9d4c24a48b0b3a554eb712af9f",
  1966. "shasum": ""
  1967. },
  1968. "require": {
  1969. "php": ">=7.3"
  1970. },
  1971. "type": "library",
  1972. "extra": {
  1973. "branch-alias": {
  1974. "dev-master": "2.2-dev"
  1975. }
  1976. },
  1977. "autoload": {
  1978. "psr-4": {
  1979. "Hyperf\\Macroable\\": "src/"
  1980. }
  1981. },
  1982. "notification-url": "https://packagist.org/downloads/",
  1983. "license": [
  1984. "MIT"
  1985. ],
  1986. "description": "Hyperf Macroable package which come from illuminate/macroable",
  1987. "homepage": "https://hyperf.io",
  1988. "keywords": [
  1989. "hyperf",
  1990. "macroable",
  1991. "php",
  1992. "swoole"
  1993. ],
  1994. "support": {
  1995. "docs": "https://hyperf.wiki",
  1996. "issues": "https://github.com/hyperf/hyperf/issues",
  1997. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  1998. "source": "https://github.com/hyperf/hyperf"
  1999. },
  2000. "time": "2022-05-24T13:10:54+00:00"
  2001. },
  2002. {
  2003. "name": "hyperf/memory",
  2004. "version": "v2.2.33",
  2005. "source": {
  2006. "type": "git",
  2007. "url": "https://github.com/hyperf/memory.git",
  2008. "reference": "8adfac46a0f52385a4ad2e8bc4f956c34cb6f25e"
  2009. },
  2010. "dist": {
  2011. "type": "zip",
  2012. "url": "https://api.github.com/repos/hyperf/memory/zipball/8adfac46a0f52385a4ad2e8bc4f956c34cb6f25e",
  2013. "reference": "8adfac46a0f52385a4ad2e8bc4f956c34cb6f25e",
  2014. "shasum": ""
  2015. },
  2016. "require": {
  2017. "php": ">=7.2"
  2018. },
  2019. "type": "library",
  2020. "extra": {
  2021. "branch-alias": {
  2022. "dev-master": "2.2-dev"
  2023. },
  2024. "hyperf": {
  2025. "config": "Hyperf\\Memory\\ConfigProvider"
  2026. }
  2027. },
  2028. "autoload": {
  2029. "psr-4": {
  2030. "Hyperf\\Memory\\": "src/"
  2031. }
  2032. },
  2033. "notification-url": "https://packagist.org/downloads/",
  2034. "license": [
  2035. "MIT"
  2036. ],
  2037. "description": "An independent component that use to operate and manage memory.",
  2038. "homepage": "https://hyperf.io",
  2039. "keywords": [
  2040. "hyperf",
  2041. "memory",
  2042. "php",
  2043. "swoole"
  2044. ],
  2045. "support": {
  2046. "docs": "https://hyperf.wiki",
  2047. "issues": "https://github.com/hyperf/hyperf/issues",
  2048. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2049. "source": "https://github.com/hyperf/hyperf"
  2050. },
  2051. "time": "2022-05-24T13:10:54+00:00"
  2052. },
  2053. {
  2054. "name": "hyperf/model-listener",
  2055. "version": "v2.2.33",
  2056. "source": {
  2057. "type": "git",
  2058. "url": "https://github.com/hyperf/model-listener.git",
  2059. "reference": "0ac64b517db0d9e192650cd70f81a2962cd54e63"
  2060. },
  2061. "dist": {
  2062. "type": "zip",
  2063. "url": "https://api.github.com/repos/hyperf/model-listener/zipball/0ac64b517db0d9e192650cd70f81a2962cd54e63",
  2064. "reference": "0ac64b517db0d9e192650cd70f81a2962cd54e63",
  2065. "shasum": ""
  2066. },
  2067. "require": {
  2068. "hyperf/contract": "~2.2.0",
  2069. "hyperf/database": "~2.2.0",
  2070. "hyperf/di": "~2.2.0",
  2071. "hyperf/event": "~2.2.0",
  2072. "hyperf/utils": "~2.2.0",
  2073. "php": ">=7.2",
  2074. "psr/container": "^1.0|^2.0"
  2075. },
  2076. "type": "library",
  2077. "extra": {
  2078. "branch-alias": {
  2079. "dev-master": "2.2-dev"
  2080. },
  2081. "hyperf": {
  2082. "config": "Hyperf\\ModelListener\\ConfigProvider"
  2083. }
  2084. },
  2085. "autoload": {
  2086. "psr-4": {
  2087. "Hyperf\\ModelListener\\": "src/"
  2088. }
  2089. },
  2090. "notification-url": "https://packagist.org/downloads/",
  2091. "license": [
  2092. "MIT"
  2093. ],
  2094. "description": "A model listener for Hyperf.",
  2095. "homepage": "https://hyperf.io",
  2096. "keywords": [
  2097. "hyperf",
  2098. "model-listener",
  2099. "php",
  2100. "swoole"
  2101. ],
  2102. "support": {
  2103. "docs": "https://hyperf.wiki",
  2104. "issues": "https://github.com/hyperf/hyperf/issues",
  2105. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2106. "source": "https://github.com/hyperf/hyperf"
  2107. },
  2108. "time": "2022-05-24T13:10:54+00:00"
  2109. },
  2110. {
  2111. "name": "hyperf/pool",
  2112. "version": "v2.2.33",
  2113. "source": {
  2114. "type": "git",
  2115. "url": "https://github.com/hyperf/pool.git",
  2116. "reference": "b66965453f404f09570a166e9c103a074d2dbd4e"
  2117. },
  2118. "dist": {
  2119. "type": "zip",
  2120. "url": "https://api.github.com/repos/hyperf/pool/zipball/b66965453f404f09570a166e9c103a074d2dbd4e",
  2121. "reference": "b66965453f404f09570a166e9c103a074d2dbd4e",
  2122. "shasum": ""
  2123. },
  2124. "require": {
  2125. "hyperf/contract": "~2.2.0",
  2126. "hyperf/utils": "~2.2.0",
  2127. "php": ">=7.2",
  2128. "psr/container": "^1.0|^2.0"
  2129. },
  2130. "type": "library",
  2131. "extra": {
  2132. "branch-alias": {
  2133. "dev-master": "2.2-dev"
  2134. },
  2135. "hyperf": {
  2136. "config": "Hyperf\\Pool\\ConfigProvider"
  2137. }
  2138. },
  2139. "autoload": {
  2140. "psr-4": {
  2141. "Hyperf\\Pool\\": "src/"
  2142. }
  2143. },
  2144. "notification-url": "https://packagist.org/downloads/",
  2145. "license": [
  2146. "MIT"
  2147. ],
  2148. "description": "An independent universal connection pool component.",
  2149. "homepage": "https://hyperf.io",
  2150. "keywords": [
  2151. "connection-pool",
  2152. "hyperf",
  2153. "php",
  2154. "swoole"
  2155. ],
  2156. "support": {
  2157. "docs": "https://hyperf.wiki",
  2158. "issues": "https://github.com/hyperf/hyperf/issues",
  2159. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2160. "source": "https://github.com/hyperf/hyperf"
  2161. },
  2162. "time": "2022-05-24T13:10:54+00:00"
  2163. },
  2164. {
  2165. "name": "hyperf/process",
  2166. "version": "v2.2.33",
  2167. "source": {
  2168. "type": "git",
  2169. "url": "https://github.com/hyperf/process.git",
  2170. "reference": "a93b2a4bf0455e3f639649046705e7b3b6ccd137"
  2171. },
  2172. "dist": {
  2173. "type": "zip",
  2174. "url": "https://api.github.com/repos/hyperf/process/zipball/a93b2a4bf0455e3f639649046705e7b3b6ccd137",
  2175. "reference": "a93b2a4bf0455e3f639649046705e7b3b6ccd137",
  2176. "shasum": ""
  2177. },
  2178. "require": {
  2179. "hyperf/contract": "~2.2.0",
  2180. "hyperf/utils": "~2.2.0",
  2181. "php": ">=7.2",
  2182. "psr/container": "^1.0|^2.0",
  2183. "psr/event-dispatcher": "^1.0"
  2184. },
  2185. "suggest": {
  2186. "hyperf/di": "Required to use annotations.",
  2187. "hyperf/event": "Required to dump the message before and after process.",
  2188. "hyperf/framework": "Required to use BootProcessListener."
  2189. },
  2190. "type": "library",
  2191. "extra": {
  2192. "branch-alias": {
  2193. "dev-master": "2.2-dev"
  2194. },
  2195. "hyperf": {
  2196. "config": "Hyperf\\Process\\ConfigProvider"
  2197. }
  2198. },
  2199. "autoload": {
  2200. "psr-4": {
  2201. "Hyperf\\Process\\": "src/"
  2202. }
  2203. },
  2204. "notification-url": "https://packagist.org/downloads/",
  2205. "license": [
  2206. "MIT"
  2207. ],
  2208. "description": "A process component for hyperf.",
  2209. "homepage": "https://hyperf.io",
  2210. "keywords": [
  2211. "hyperf",
  2212. "php",
  2213. "process"
  2214. ],
  2215. "support": {
  2216. "docs": "https://hyperf.wiki",
  2217. "issues": "https://github.com/hyperf/hyperf/issues",
  2218. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2219. "source": "https://github.com/hyperf/hyperf"
  2220. },
  2221. "time": "2022-05-24T13:10:54+00:00"
  2222. },
  2223. {
  2224. "name": "hyperf/redis",
  2225. "version": "v2.2.37",
  2226. "source": {
  2227. "type": "git",
  2228. "url": "https://github.com/hyperf/redis.git",
  2229. "reference": "89f6c0063c69dc27adb094277947af30d2e59ad0"
  2230. },
  2231. "dist": {
  2232. "type": "zip",
  2233. "url": "https://api.github.com/repos/hyperf/redis/zipball/89f6c0063c69dc27adb094277947af30d2e59ad0",
  2234. "reference": "89f6c0063c69dc27adb094277947af30d2e59ad0",
  2235. "shasum": ""
  2236. },
  2237. "require": {
  2238. "ext-redis": "*",
  2239. "hyperf/contract": "~2.2.0",
  2240. "hyperf/pool": "~2.2.0",
  2241. "hyperf/utils": "~2.2.0",
  2242. "php": ">=7.2",
  2243. "psr/container": "^1.0|^2.0"
  2244. },
  2245. "suggest": {
  2246. "ext-redis": "Required to use sentinel mode (>=5.2).",
  2247. "hyperf/di": "Create the RedisPool via dependency injection."
  2248. },
  2249. "type": "library",
  2250. "extra": {
  2251. "branch-alias": {
  2252. "dev-master": "2.2-dev"
  2253. },
  2254. "hyperf": {
  2255. "config": "Hyperf\\Redis\\ConfigProvider"
  2256. }
  2257. },
  2258. "autoload": {
  2259. "psr-4": {
  2260. "Hyperf\\Redis\\": "src/"
  2261. }
  2262. },
  2263. "notification-url": "https://packagist.org/downloads/",
  2264. "license": [
  2265. "MIT"
  2266. ],
  2267. "description": "A redis component for hyperf.",
  2268. "homepage": "https://hyperf.io",
  2269. "keywords": [
  2270. "hyperf",
  2271. "php",
  2272. "pool",
  2273. "redis"
  2274. ],
  2275. "support": {
  2276. "docs": "https://hyperf.wiki",
  2277. "issues": "https://github.com/hyperf/hyperf/issues",
  2278. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2279. "source": "https://github.com/hyperf/hyperf"
  2280. },
  2281. "time": "2023-02-04T09:57:22+00:00"
  2282. },
  2283. {
  2284. "name": "hyperf/server",
  2285. "version": "v2.2.33",
  2286. "source": {
  2287. "type": "git",
  2288. "url": "https://github.com/hyperf/server.git",
  2289. "reference": "1d3364520e37777a7ed83d8bc1597da42f8d6c1b"
  2290. },
  2291. "dist": {
  2292. "type": "zip",
  2293. "url": "https://api.github.com/repos/hyperf/server/zipball/1d3364520e37777a7ed83d8bc1597da42f8d6c1b",
  2294. "reference": "1d3364520e37777a7ed83d8bc1597da42f8d6c1b",
  2295. "shasum": ""
  2296. },
  2297. "require": {
  2298. "hyperf/contract": "~2.2.0",
  2299. "hyperf/utils": "~2.2.0",
  2300. "php": ">=7.2",
  2301. "psr/container": "^1.0|^2.0",
  2302. "psr/event-dispatcher": "^1.0",
  2303. "psr/log": "^1.0|^2.0|^3.0",
  2304. "symfony/console": "^5.0"
  2305. },
  2306. "suggest": {
  2307. "hyperf/event": "Dump the info after server start.",
  2308. "hyperf/framework": "Dump the info after server start."
  2309. },
  2310. "type": "library",
  2311. "extra": {
  2312. "branch-alias": {
  2313. "dev-master": "2.2-dev"
  2314. },
  2315. "hyperf": {
  2316. "config": "Hyperf\\Server\\ConfigProvider"
  2317. }
  2318. },
  2319. "autoload": {
  2320. "psr-4": {
  2321. "Hyperf\\Server\\": "src/"
  2322. }
  2323. },
  2324. "notification-url": "https://packagist.org/downloads/",
  2325. "license": [
  2326. "MIT"
  2327. ],
  2328. "description": "A base server library for Hyperf.",
  2329. "homepage": "https://hyperf.io",
  2330. "keywords": [
  2331. "hyperf",
  2332. "php",
  2333. "server",
  2334. "swoole"
  2335. ],
  2336. "support": {
  2337. "docs": "https://hyperf.wiki",
  2338. "issues": "https://github.com/hyperf/hyperf/issues",
  2339. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2340. "source": "https://github.com/hyperf/hyperf"
  2341. },
  2342. "time": "2022-05-24T13:10:54+00:00"
  2343. },
  2344. {
  2345. "name": "hyperf/utils",
  2346. "version": "v2.2.34",
  2347. "source": {
  2348. "type": "git",
  2349. "url": "https://github.com/hyperf/utils.git",
  2350. "reference": "9c8519392166a6c8057cc52f7d02e1ac638581f5"
  2351. },
  2352. "dist": {
  2353. "type": "zip",
  2354. "url": "https://api.github.com/repos/hyperf/utils/zipball/9c8519392166a6c8057cc52f7d02e1ac638581f5",
  2355. "reference": "9c8519392166a6c8057cc52f7d02e1ac638581f5",
  2356. "shasum": ""
  2357. },
  2358. "require": {
  2359. "doctrine/inflector": "^2.0",
  2360. "hyperf/context": "~2.2.0",
  2361. "hyperf/contract": "~2.2.0",
  2362. "hyperf/engine": "^1.1",
  2363. "hyperf/macroable": "~2.2.0",
  2364. "php": ">=7.2"
  2365. },
  2366. "suggest": {
  2367. "ext-swoole": "Required to use methods related to swoole (>=4.5).",
  2368. "hyperf/di": "Required to use ExceptionNormalizer",
  2369. "nikic/php-parser": "Required to use PhpParser. (^4.0)",
  2370. "symfony/property-access": "Required to use SymfonyNormalizer (^5.0)",
  2371. "symfony/serializer": "Required to use SymfonyNormalizer (^5.0)",
  2372. "symfony/var-dumper": "Required to use the dd function (^5.0)."
  2373. },
  2374. "type": "library",
  2375. "extra": {
  2376. "hyperf": {
  2377. "config": "Hyperf\\Utils\\ConfigProvider"
  2378. },
  2379. "branch-alias": {
  2380. "dev-master": "2.2-dev"
  2381. }
  2382. },
  2383. "autoload": {
  2384. "files": [
  2385. "src/Functions.php"
  2386. ],
  2387. "psr-4": {
  2388. "Hyperf\\Utils\\": "src/"
  2389. }
  2390. },
  2391. "notification-url": "https://packagist.org/downloads/",
  2392. "license": [
  2393. "MIT"
  2394. ],
  2395. "description": "A tools package that could help developer solved the problem quickly.",
  2396. "homepage": "https://hyperf.io",
  2397. "keywords": [
  2398. "hyperf",
  2399. "php",
  2400. "swoole",
  2401. "utils"
  2402. ],
  2403. "support": {
  2404. "docs": "https://hyperf.wiki",
  2405. "issues": "https://github.com/hyperf/hyperf/issues",
  2406. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  2407. "source": "https://github.com/hyperf/hyperf"
  2408. },
  2409. "time": "2022-07-21T05:42:54+00:00"
  2410. },
  2411. {
  2412. "name": "iexbase/tron-api",
  2413. "version": "4.0.1",
  2414. "source": {
  2415. "type": "git",
  2416. "url": "https://github.com/iexbase/tron-api.git",
  2417. "reference": "366227f946f7b8030db8e7326c6f9573c3898583"
  2418. },
  2419. "dist": {
  2420. "type": "zip",
  2421. "url": "https://api.github.com/repos/iexbase/tron-api/zipball/366227f946f7b8030db8e7326c6f9573c3898583",
  2422. "reference": "366227f946f7b8030db8e7326c6f9573c3898583",
  2423. "shasum": ""
  2424. },
  2425. "require": {
  2426. "comely-io/data-types": "^1.0",
  2427. "ext-bcmath": "*",
  2428. "ext-json": "*",
  2429. "guzzlehttp/guzzle": "^7.0",
  2430. "iexbase/web3.php": "^2.0.1",
  2431. "kornrunner/secp256k1": "^0.1.2",
  2432. "php": "^7.4",
  2433. "simplito/elliptic-php": "^1.0"
  2434. },
  2435. "require-dev": {
  2436. "phpunit/phpunit": "^6.0"
  2437. },
  2438. "type": "library",
  2439. "autoload": {
  2440. "psr-4": {
  2441. "IEXBase\\TronAPI\\": "src"
  2442. }
  2443. },
  2444. "notification-url": "https://packagist.org/downloads/",
  2445. "license": [
  2446. "MIT"
  2447. ],
  2448. "authors": [
  2449. {
  2450. "name": "Shamsudin Serderov",
  2451. "email": "steein.shamsudin@gmail.com"
  2452. }
  2453. ],
  2454. "description": "A PHP API for interacting with Tron (Trx)",
  2455. "homepage": "https://github.com/iexbase/tron-api",
  2456. "keywords": [
  2457. "iexbase",
  2458. "tron-api",
  2459. "tron-lib",
  2460. "tron-php",
  2461. "tron-rest-api"
  2462. ],
  2463. "support": {
  2464. "issues": "https://github.com/iexbase/tron-api/issues",
  2465. "source": "https://github.com/iexbase/tron-api/tree/4.0.1"
  2466. },
  2467. "time": "2021-05-30T05:24:04+00:00"
  2468. },
  2469. {
  2470. "name": "iexbase/web3.php",
  2471. "version": "2.0.1",
  2472. "source": {
  2473. "type": "git",
  2474. "url": "https://github.com/iexbase/web3.php.git",
  2475. "reference": "f25ed954a7586ead86046dd7e02a333a8098511b"
  2476. },
  2477. "dist": {
  2478. "type": "zip",
  2479. "url": "https://api.github.com/repos/iexbase/web3.php/zipball/f25ed954a7586ead86046dd7e02a333a8098511b",
  2480. "reference": "f25ed954a7586ead86046dd7e02a333a8098511b",
  2481. "shasum": ""
  2482. },
  2483. "require": {
  2484. "ext-mbstring": "*",
  2485. "guzzlehttp/guzzle": "^7.0",
  2486. "kornrunner/keccak": "~1.0",
  2487. "php": "^7.1",
  2488. "phpseclib/phpseclib": "~2.0.11"
  2489. },
  2490. "require-dev": {
  2491. "phpunit/phpunit": "~6.0"
  2492. },
  2493. "type": "library",
  2494. "autoload": {
  2495. "psr-4": {
  2496. "Web3\\": "src/"
  2497. }
  2498. },
  2499. "notification-url": "https://packagist.org/downloads/",
  2500. "license": [
  2501. "MIT"
  2502. ],
  2503. "description": "Ethereum web3 interface.",
  2504. "support": {
  2505. "source": "https://github.com/iexbase/web3.php/tree/2.0.1"
  2506. },
  2507. "time": "2020-10-15T18:16:13+00:00"
  2508. },
  2509. {
  2510. "name": "kornrunner/keccak",
  2511. "version": "1.1.0",
  2512. "source": {
  2513. "type": "git",
  2514. "url": "https://github.com/kornrunner/php-keccak.git",
  2515. "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890"
  2516. },
  2517. "dist": {
  2518. "type": "zip",
  2519. "url": "https://api.github.com/repos/kornrunner/php-keccak/zipball/433749d28e117fb97baf9f2631b92b5d9ab3c890",
  2520. "reference": "433749d28e117fb97baf9f2631b92b5d9ab3c890",
  2521. "shasum": ""
  2522. },
  2523. "require": {
  2524. "php": ">=7.3",
  2525. "symfony/polyfill-mbstring": "^1.8"
  2526. },
  2527. "require-dev": {
  2528. "phpunit/phpunit": "^8.2"
  2529. },
  2530. "type": "library",
  2531. "autoload": {
  2532. "psr-4": {
  2533. "kornrunner\\": "src"
  2534. }
  2535. },
  2536. "notification-url": "https://packagist.org/downloads/",
  2537. "license": [
  2538. "MIT"
  2539. ],
  2540. "authors": [
  2541. {
  2542. "name": "Boris Momcilovic",
  2543. "homepage": "https://github.com/kornrunner/php-keccak"
  2544. }
  2545. ],
  2546. "description": "Pure PHP implementation of Keccak",
  2547. "keywords": [
  2548. "keccak",
  2549. "sha-3",
  2550. "sha3-256"
  2551. ],
  2552. "support": {
  2553. "issues": "https://github.com/kornrunner/php-keccak/issues",
  2554. "source": "https://github.com/kornrunner/php-keccak/tree/1.1.0"
  2555. },
  2556. "time": "2020-12-07T15:40:44+00:00"
  2557. },
  2558. {
  2559. "name": "kornrunner/secp256k1",
  2560. "version": "0.1.2",
  2561. "source": {
  2562. "type": "git",
  2563. "url": "https://github.com/kornrunner/php-secp256k1.git",
  2564. "reference": "915f0ef1ec748606a1117b171093266de349b058"
  2565. },
  2566. "dist": {
  2567. "type": "zip",
  2568. "url": "https://api.github.com/repos/kornrunner/php-secp256k1/zipball/915f0ef1ec748606a1117b171093266de349b058",
  2569. "reference": "915f0ef1ec748606a1117b171093266de349b058",
  2570. "shasum": ""
  2571. },
  2572. "require": {
  2573. "mdanter/ecc": "^0.5",
  2574. "php": ">=7.1"
  2575. },
  2576. "require-dev": {
  2577. "php-coveralls/php-coveralls": "^2.1",
  2578. "phpunit/phpunit": "^7"
  2579. },
  2580. "type": "library",
  2581. "autoload": {
  2582. "psr-4": {
  2583. "kornrunner\\": "src/"
  2584. }
  2585. },
  2586. "notification-url": "https://packagist.org/downloads/",
  2587. "license": [
  2588. "MIT"
  2589. ],
  2590. "authors": [
  2591. {
  2592. "name": "Boris Momčilović",
  2593. "email": "boris.momcilovic@gmail.com"
  2594. }
  2595. ],
  2596. "description": "Pure PHP secp256k1",
  2597. "keywords": [
  2598. "curve",
  2599. "ecc",
  2600. "elliptic",
  2601. "secp256k1"
  2602. ],
  2603. "support": {
  2604. "issues": "https://github.com/kornrunner/php-secp256k1/issues",
  2605. "source": "https://github.com/kornrunner/php-secp256k1/tree/master"
  2606. },
  2607. "time": "2019-01-16T17:01:51+00:00"
  2608. },
  2609. {
  2610. "name": "laminas/laminas-mime",
  2611. "version": "2.10.0",
  2612. "source": {
  2613. "type": "git",
  2614. "url": "https://github.com/laminas/laminas-mime.git",
  2615. "reference": "62a899a7c9100889c2d2386b1357003a2cb52fa9"
  2616. },
  2617. "dist": {
  2618. "type": "zip",
  2619. "url": "https://api.github.com/repos/laminas/laminas-mime/zipball/62a899a7c9100889c2d2386b1357003a2cb52fa9",
  2620. "reference": "62a899a7c9100889c2d2386b1357003a2cb52fa9",
  2621. "shasum": ""
  2622. },
  2623. "require": {
  2624. "laminas/laminas-stdlib": "^2.7 || ^3.0",
  2625. "php": "^7.3 || ~8.0.0 || ~8.1.0"
  2626. },
  2627. "conflict": {
  2628. "zendframework/zend-mime": "*"
  2629. },
  2630. "require-dev": {
  2631. "laminas/laminas-coding-standard": "~2.2.1",
  2632. "laminas/laminas-mail": "^2.12",
  2633. "phpunit/phpunit": "^9.5"
  2634. },
  2635. "suggest": {
  2636. "laminas/laminas-mail": "Laminas\\Mail component"
  2637. },
  2638. "type": "library",
  2639. "autoload": {
  2640. "psr-4": {
  2641. "Laminas\\Mime\\": "src/"
  2642. }
  2643. },
  2644. "notification-url": "https://packagist.org/downloads/",
  2645. "license": [
  2646. "BSD-3-Clause"
  2647. ],
  2648. "description": "Create and parse MIME messages and parts",
  2649. "homepage": "https://laminas.dev",
  2650. "keywords": [
  2651. "laminas",
  2652. "mime"
  2653. ],
  2654. "support": {
  2655. "chat": "https://laminas.dev/chat",
  2656. "docs": "https://docs.laminas.dev/laminas-mime/",
  2657. "forum": "https://discourse.laminas.dev",
  2658. "issues": "https://github.com/laminas/laminas-mime/issues",
  2659. "rss": "https://github.com/laminas/laminas-mime/releases.atom",
  2660. "source": "https://github.com/laminas/laminas-mime"
  2661. },
  2662. "funding": [
  2663. {
  2664. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2665. "type": "community_bridge"
  2666. }
  2667. ],
  2668. "time": "2022-08-30T09:38:41+00:00"
  2669. },
  2670. {
  2671. "name": "laminas/laminas-stdlib",
  2672. "version": "3.13.0",
  2673. "source": {
  2674. "type": "git",
  2675. "url": "https://github.com/laminas/laminas-stdlib.git",
  2676. "reference": "66a6d03c381f6c9f1dd988bf8244f9afb9380d76"
  2677. },
  2678. "dist": {
  2679. "type": "zip",
  2680. "url": "https://api.github.com/repos/laminas/laminas-stdlib/zipball/66a6d03c381f6c9f1dd988bf8244f9afb9380d76",
  2681. "reference": "66a6d03c381f6c9f1dd988bf8244f9afb9380d76",
  2682. "shasum": ""
  2683. },
  2684. "require": {
  2685. "php": "^7.4 || ~8.0.0 || ~8.1.0"
  2686. },
  2687. "conflict": {
  2688. "zendframework/zend-stdlib": "*"
  2689. },
  2690. "require-dev": {
  2691. "laminas/laminas-coding-standard": "~2.3.0",
  2692. "phpbench/phpbench": "^1.2.6",
  2693. "phpstan/phpdoc-parser": "^0.5.4",
  2694. "phpunit/phpunit": "^9.5.23",
  2695. "psalm/plugin-phpunit": "^0.17.0",
  2696. "vimeo/psalm": "^4.26"
  2697. },
  2698. "type": "library",
  2699. "autoload": {
  2700. "psr-4": {
  2701. "Laminas\\Stdlib\\": "src/"
  2702. }
  2703. },
  2704. "notification-url": "https://packagist.org/downloads/",
  2705. "license": [
  2706. "BSD-3-Clause"
  2707. ],
  2708. "description": "SPL extensions, array utilities, error handlers, and more",
  2709. "homepage": "https://laminas.dev",
  2710. "keywords": [
  2711. "laminas",
  2712. "stdlib"
  2713. ],
  2714. "support": {
  2715. "chat": "https://laminas.dev/chat",
  2716. "docs": "https://docs.laminas.dev/laminas-stdlib/",
  2717. "forum": "https://discourse.laminas.dev",
  2718. "issues": "https://github.com/laminas/laminas-stdlib/issues",
  2719. "rss": "https://github.com/laminas/laminas-stdlib/releases.atom",
  2720. "source": "https://github.com/laminas/laminas-stdlib"
  2721. },
  2722. "funding": [
  2723. {
  2724. "url": "https://funding.communitybridge.org/projects/laminas-project",
  2725. "type": "community_bridge"
  2726. }
  2727. ],
  2728. "time": "2022-08-24T13:56:50+00:00"
  2729. },
  2730. {
  2731. "name": "mdanter/ecc",
  2732. "version": "v0.5.2",
  2733. "source": {
  2734. "type": "git",
  2735. "url": "https://github.com/phpecc/phpecc.git",
  2736. "reference": "b95f25cc1bacc83a9f0ccd375900b7cfd343029e"
  2737. },
  2738. "dist": {
  2739. "type": "zip",
  2740. "url": "https://api.github.com/repos/phpecc/phpecc/zipball/b95f25cc1bacc83a9f0ccd375900b7cfd343029e",
  2741. "reference": "b95f25cc1bacc83a9f0ccd375900b7cfd343029e",
  2742. "shasum": ""
  2743. },
  2744. "require": {
  2745. "ext-gmp": "*",
  2746. "fgrosse/phpasn1": "^2.0",
  2747. "php": "^7.0"
  2748. },
  2749. "require-dev": {
  2750. "phpunit/phpunit": "^6.0",
  2751. "squizlabs/php_codesniffer": "^2.0",
  2752. "symfony/yaml": "^2.6|^3.0"
  2753. },
  2754. "type": "library",
  2755. "autoload": {
  2756. "psr-4": {
  2757. "Mdanter\\Ecc\\": "src/"
  2758. }
  2759. },
  2760. "notification-url": "https://packagist.org/downloads/",
  2761. "license": [
  2762. "MIT"
  2763. ],
  2764. "authors": [
  2765. {
  2766. "name": "Matyas Danter",
  2767. "homepage": "http://matejdanter.com/",
  2768. "role": "Author"
  2769. },
  2770. {
  2771. "name": "Thibaud Fabre",
  2772. "email": "thibaud@aztech.io",
  2773. "homepage": "http://aztech.io",
  2774. "role": "Maintainer"
  2775. },
  2776. {
  2777. "name": "Thomas Kerin",
  2778. "email": "afk11@users.noreply.github.com",
  2779. "role": "Maintainer"
  2780. }
  2781. ],
  2782. "description": "PHP Elliptic Curve Cryptography library",
  2783. "homepage": "https://github.com/phpecc/phpecc",
  2784. "keywords": [
  2785. "Diffie",
  2786. "ECDSA",
  2787. "Hellman",
  2788. "curve",
  2789. "ecdh",
  2790. "elliptic",
  2791. "nistp192",
  2792. "nistp224",
  2793. "nistp256",
  2794. "nistp384",
  2795. "nistp521",
  2796. "phpecc",
  2797. "secp256k1",
  2798. "secp256r1"
  2799. ],
  2800. "support": {
  2801. "issues": "https://github.com/phpecc/phpecc/issues",
  2802. "source": "https://github.com/phpecc/phpecc/tree/master"
  2803. },
  2804. "time": "2018-12-03T18:17:01+00:00"
  2805. },
  2806. {
  2807. "name": "monolog/monolog",
  2808. "version": "2.5.0",
  2809. "source": {
  2810. "type": "git",
  2811. "url": "https://github.com/Seldaek/monolog.git",
  2812. "reference": "4192345e260f1d51b365536199744b987e160edc"
  2813. },
  2814. "dist": {
  2815. "type": "zip",
  2816. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/4192345e260f1d51b365536199744b987e160edc",
  2817. "reference": "4192345e260f1d51b365536199744b987e160edc",
  2818. "shasum": ""
  2819. },
  2820. "require": {
  2821. "php": ">=7.2",
  2822. "psr/log": "^1.0.1 || ^2.0 || ^3.0"
  2823. },
  2824. "provide": {
  2825. "psr/log-implementation": "1.0.0 || 2.0.0 || 3.0.0"
  2826. },
  2827. "require-dev": {
  2828. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  2829. "doctrine/couchdb": "~1.0@dev",
  2830. "elasticsearch/elasticsearch": "^7",
  2831. "graylog2/gelf-php": "^1.4.2",
  2832. "mongodb/mongodb": "^1.8",
  2833. "php-amqplib/php-amqplib": "~2.4 || ^3",
  2834. "php-console/php-console": "^3.1.3",
  2835. "phpspec/prophecy": "^1.6.1",
  2836. "phpstan/phpstan": "^0.12.91",
  2837. "phpunit/phpunit": "^8.5",
  2838. "predis/predis": "^1.1",
  2839. "rollbar/rollbar": "^1.3 || ^2 || ^3",
  2840. "ruflin/elastica": ">=0.90@dev",
  2841. "swiftmailer/swiftmailer": "^5.3|^6.0"
  2842. },
  2843. "suggest": {
  2844. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  2845. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  2846. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  2847. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  2848. "ext-curl": "Required to send log messages using the IFTTTHandler, the LogglyHandler, the SendGridHandler, the SlackWebhookHandler or the TelegramBotHandler",
  2849. "ext-mbstring": "Allow to work properly with unicode symbols",
  2850. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  2851. "ext-openssl": "Required to send log messages using SSL",
  2852. "ext-sockets": "Allow sending log messages to a Syslog server (via UDP driver)",
  2853. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  2854. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  2855. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  2856. "php-console/php-console": "Allow sending log messages to Google Chrome",
  2857. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  2858. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  2859. },
  2860. "type": "library",
  2861. "extra": {
  2862. "branch-alias": {
  2863. "dev-main": "2.x-dev"
  2864. }
  2865. },
  2866. "autoload": {
  2867. "psr-4": {
  2868. "Monolog\\": "src/Monolog"
  2869. }
  2870. },
  2871. "notification-url": "https://packagist.org/downloads/",
  2872. "license": [
  2873. "MIT"
  2874. ],
  2875. "authors": [
  2876. {
  2877. "name": "Jordi Boggiano",
  2878. "email": "j.boggiano@seld.be",
  2879. "homepage": "https://seld.be"
  2880. }
  2881. ],
  2882. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  2883. "homepage": "https://github.com/Seldaek/monolog",
  2884. "keywords": [
  2885. "log",
  2886. "logging",
  2887. "psr-3"
  2888. ],
  2889. "support": {
  2890. "issues": "https://github.com/Seldaek/monolog/issues",
  2891. "source": "https://github.com/Seldaek/monolog/tree/2.5.0"
  2892. },
  2893. "funding": [
  2894. {
  2895. "url": "https://github.com/Seldaek",
  2896. "type": "github"
  2897. },
  2898. {
  2899. "url": "https://tidelift.com/funding/github/packagist/monolog/monolog",
  2900. "type": "tidelift"
  2901. }
  2902. ],
  2903. "time": "2022-04-08T15:43:54+00:00"
  2904. },
  2905. {
  2906. "name": "nesbot/carbon",
  2907. "version": "2.68.1",
  2908. "source": {
  2909. "type": "git",
  2910. "url": "https://github.com/briannesbitt/Carbon.git",
  2911. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da"
  2912. },
  2913. "dist": {
  2914. "type": "zip",
  2915. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  2916. "reference": "4f991ed2a403c85efbc4f23eb4030063fdbe01da",
  2917. "shasum": ""
  2918. },
  2919. "require": {
  2920. "ext-json": "*",
  2921. "php": "^7.1.8 || ^8.0",
  2922. "symfony/polyfill-mbstring": "^1.0",
  2923. "symfony/polyfill-php80": "^1.16",
  2924. "symfony/translation": "^3.4 || ^4.0 || ^5.0 || ^6.0"
  2925. },
  2926. "require-dev": {
  2927. "doctrine/dbal": "^2.0 || ^3.1.4",
  2928. "doctrine/orm": "^2.7",
  2929. "friendsofphp/php-cs-fixer": "^3.0",
  2930. "kylekatarnls/multi-tester": "^2.0",
  2931. "ondrejmirtes/better-reflection": "*",
  2932. "phpmd/phpmd": "^2.9",
  2933. "phpstan/extension-installer": "^1.0",
  2934. "phpstan/phpstan": "^0.12.99 || ^1.7.14",
  2935. "phpunit/php-file-iterator": "^2.0.5 || ^3.0.6",
  2936. "phpunit/phpunit": "^7.5.20 || ^8.5.26 || ^9.5.20",
  2937. "squizlabs/php_codesniffer": "^3.4"
  2938. },
  2939. "bin": [
  2940. "bin/carbon"
  2941. ],
  2942. "type": "library",
  2943. "extra": {
  2944. "branch-alias": {
  2945. "dev-3.x": "3.x-dev",
  2946. "dev-master": "2.x-dev"
  2947. },
  2948. "laravel": {
  2949. "providers": [
  2950. "Carbon\\Laravel\\ServiceProvider"
  2951. ]
  2952. },
  2953. "phpstan": {
  2954. "includes": [
  2955. "extension.neon"
  2956. ]
  2957. }
  2958. },
  2959. "autoload": {
  2960. "psr-4": {
  2961. "Carbon\\": "src/Carbon/"
  2962. }
  2963. },
  2964. "notification-url": "https://packagist.org/downloads/",
  2965. "license": [
  2966. "MIT"
  2967. ],
  2968. "authors": [
  2969. {
  2970. "name": "Brian Nesbitt",
  2971. "email": "brian@nesbot.com",
  2972. "homepage": "https://markido.com"
  2973. },
  2974. {
  2975. "name": "kylekatarnls",
  2976. "homepage": "https://github.com/kylekatarnls"
  2977. }
  2978. ],
  2979. "description": "An API extension for DateTime that supports 281 different languages.",
  2980. "homepage": "https://carbon.nesbot.com",
  2981. "keywords": [
  2982. "date",
  2983. "datetime",
  2984. "time"
  2985. ],
  2986. "support": {
  2987. "docs": "https://carbon.nesbot.com/docs",
  2988. "issues": "https://github.com/briannesbitt/Carbon/issues",
  2989. "source": "https://github.com/briannesbitt/Carbon"
  2990. },
  2991. "funding": [
  2992. {
  2993. "url": "https://github.com/sponsors/kylekatarnls",
  2994. "type": "github"
  2995. },
  2996. {
  2997. "url": "https://opencollective.com/Carbon#sponsor",
  2998. "type": "opencollective"
  2999. },
  3000. {
  3001. "url": "https://tidelift.com/subscription/pkg/packagist-nesbot-carbon?utm_source=packagist-nesbot-carbon&utm_medium=referral&utm_campaign=readme",
  3002. "type": "tidelift"
  3003. }
  3004. ],
  3005. "time": "2023-06-20T18:29:04+00:00"
  3006. },
  3007. {
  3008. "name": "nikic/fast-route",
  3009. "version": "v1.3.0",
  3010. "source": {
  3011. "type": "git",
  3012. "url": "https://github.com/nikic/FastRoute.git",
  3013. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  3014. },
  3015. "dist": {
  3016. "type": "zip",
  3017. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  3018. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  3019. "shasum": ""
  3020. },
  3021. "require": {
  3022. "php": ">=5.4.0"
  3023. },
  3024. "require-dev": {
  3025. "phpunit/phpunit": "^4.8.35|~5.7"
  3026. },
  3027. "type": "library",
  3028. "autoload": {
  3029. "files": [
  3030. "src/functions.php"
  3031. ],
  3032. "psr-4": {
  3033. "FastRoute\\": "src/"
  3034. }
  3035. },
  3036. "notification-url": "https://packagist.org/downloads/",
  3037. "license": [
  3038. "BSD-3-Clause"
  3039. ],
  3040. "authors": [
  3041. {
  3042. "name": "Nikita Popov",
  3043. "email": "nikic@php.net"
  3044. }
  3045. ],
  3046. "description": "Fast request router for PHP",
  3047. "keywords": [
  3048. "router",
  3049. "routing"
  3050. ],
  3051. "support": {
  3052. "issues": "https://github.com/nikic/FastRoute/issues",
  3053. "source": "https://github.com/nikic/FastRoute/tree/master"
  3054. },
  3055. "time": "2018-02-13T20:26:39+00:00"
  3056. },
  3057. {
  3058. "name": "nikic/php-parser",
  3059. "version": "v4.16.0",
  3060. "source": {
  3061. "type": "git",
  3062. "url": "https://github.com/nikic/PHP-Parser.git",
  3063. "reference": "19526a33fb561ef417e822e85f08a00db4059c17"
  3064. },
  3065. "dist": {
  3066. "type": "zip",
  3067. "url": "https://api.github.com/repos/nikic/PHP-Parser/zipball/19526a33fb561ef417e822e85f08a00db4059c17",
  3068. "reference": "19526a33fb561ef417e822e85f08a00db4059c17",
  3069. "shasum": ""
  3070. },
  3071. "require": {
  3072. "ext-tokenizer": "*",
  3073. "php": ">=7.0"
  3074. },
  3075. "require-dev": {
  3076. "ircmaxell/php-yacc": "^0.0.7",
  3077. "phpunit/phpunit": "^6.5 || ^7.0 || ^8.0 || ^9.0"
  3078. },
  3079. "bin": [
  3080. "bin/php-parse"
  3081. ],
  3082. "type": "library",
  3083. "extra": {
  3084. "branch-alias": {
  3085. "dev-master": "4.9-dev"
  3086. }
  3087. },
  3088. "autoload": {
  3089. "psr-4": {
  3090. "PhpParser\\": "lib/PhpParser"
  3091. }
  3092. },
  3093. "notification-url": "https://packagist.org/downloads/",
  3094. "license": [
  3095. "BSD-3-Clause"
  3096. ],
  3097. "authors": [
  3098. {
  3099. "name": "Nikita Popov"
  3100. }
  3101. ],
  3102. "description": "A PHP parser written in PHP",
  3103. "keywords": [
  3104. "parser",
  3105. "php"
  3106. ],
  3107. "support": {
  3108. "issues": "https://github.com/nikic/PHP-Parser/issues",
  3109. "source": "https://github.com/nikic/PHP-Parser/tree/v4.16.0"
  3110. },
  3111. "time": "2023-06-25T14:52:30+00:00"
  3112. },
  3113. {
  3114. "name": "php-di/phpdoc-reader",
  3115. "version": "2.2.1",
  3116. "source": {
  3117. "type": "git",
  3118. "url": "https://github.com/PHP-DI/PhpDocReader.git",
  3119. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c"
  3120. },
  3121. "dist": {
  3122. "type": "zip",
  3123. "url": "https://api.github.com/repos/PHP-DI/PhpDocReader/zipball/66daff34cbd2627740ffec9469ffbac9f8c8185c",
  3124. "reference": "66daff34cbd2627740ffec9469ffbac9f8c8185c",
  3125. "shasum": ""
  3126. },
  3127. "require": {
  3128. "php": ">=7.2.0"
  3129. },
  3130. "require-dev": {
  3131. "mnapoli/hard-mode": "~0.3.0",
  3132. "phpunit/phpunit": "^8.5|^9.0"
  3133. },
  3134. "type": "library",
  3135. "autoload": {
  3136. "psr-4": {
  3137. "PhpDocReader\\": "src/PhpDocReader"
  3138. }
  3139. },
  3140. "notification-url": "https://packagist.org/downloads/",
  3141. "license": [
  3142. "MIT"
  3143. ],
  3144. "description": "PhpDocReader parses @var and @param values in PHP docblocks (supports namespaced class names with the same resolution rules as PHP)",
  3145. "keywords": [
  3146. "phpdoc",
  3147. "reflection"
  3148. ],
  3149. "support": {
  3150. "issues": "https://github.com/PHP-DI/PhpDocReader/issues",
  3151. "source": "https://github.com/PHP-DI/PhpDocReader/tree/2.2.1"
  3152. },
  3153. "time": "2020-10-12T12:39:22+00:00"
  3154. },
  3155. {
  3156. "name": "phpoption/phpoption",
  3157. "version": "1.9.1",
  3158. "source": {
  3159. "type": "git",
  3160. "url": "https://github.com/schmittjoh/php-option.git",
  3161. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e"
  3162. },
  3163. "dist": {
  3164. "type": "zip",
  3165. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/dd3a383e599f49777d8b628dadbb90cae435b87e",
  3166. "reference": "dd3a383e599f49777d8b628dadbb90cae435b87e",
  3167. "shasum": ""
  3168. },
  3169. "require": {
  3170. "php": "^7.2.5 || ^8.0"
  3171. },
  3172. "require-dev": {
  3173. "bamarni/composer-bin-plugin": "^1.8.2",
  3174. "phpunit/phpunit": "^8.5.32 || ^9.6.3 || ^10.0.12"
  3175. },
  3176. "type": "library",
  3177. "extra": {
  3178. "bamarni-bin": {
  3179. "bin-links": true,
  3180. "forward-command": true
  3181. },
  3182. "branch-alias": {
  3183. "dev-master": "1.9-dev"
  3184. }
  3185. },
  3186. "autoload": {
  3187. "psr-4": {
  3188. "PhpOption\\": "src/PhpOption/"
  3189. }
  3190. },
  3191. "notification-url": "https://packagist.org/downloads/",
  3192. "license": [
  3193. "Apache-2.0"
  3194. ],
  3195. "authors": [
  3196. {
  3197. "name": "Johannes M. Schmitt",
  3198. "email": "schmittjoh@gmail.com",
  3199. "homepage": "https://github.com/schmittjoh"
  3200. },
  3201. {
  3202. "name": "Graham Campbell",
  3203. "email": "hello@gjcampbell.co.uk",
  3204. "homepage": "https://github.com/GrahamCampbell"
  3205. }
  3206. ],
  3207. "description": "Option Type for PHP",
  3208. "keywords": [
  3209. "language",
  3210. "option",
  3211. "php",
  3212. "type"
  3213. ],
  3214. "support": {
  3215. "issues": "https://github.com/schmittjoh/php-option/issues",
  3216. "source": "https://github.com/schmittjoh/php-option/tree/1.9.1"
  3217. },
  3218. "funding": [
  3219. {
  3220. "url": "https://github.com/GrahamCampbell",
  3221. "type": "github"
  3222. },
  3223. {
  3224. "url": "https://tidelift.com/funding/github/packagist/phpoption/phpoption",
  3225. "type": "tidelift"
  3226. }
  3227. ],
  3228. "time": "2023-02-25T19:38:58+00:00"
  3229. },
  3230. {
  3231. "name": "phpseclib/phpseclib",
  3232. "version": "2.0.44",
  3233. "source": {
  3234. "type": "git",
  3235. "url": "https://github.com/phpseclib/phpseclib.git",
  3236. "reference": "149f608243f8133c61926aae26ce67d2b22b37e5"
  3237. },
  3238. "dist": {
  3239. "type": "zip",
  3240. "url": "https://api.github.com/repos/phpseclib/phpseclib/zipball/149f608243f8133c61926aae26ce67d2b22b37e5",
  3241. "reference": "149f608243f8133c61926aae26ce67d2b22b37e5",
  3242. "shasum": ""
  3243. },
  3244. "require": {
  3245. "php": ">=5.3.3"
  3246. },
  3247. "require-dev": {
  3248. "phing/phing": "~2.7",
  3249. "phpunit/phpunit": "^4.8.35|^5.7|^6.0|^9.4",
  3250. "squizlabs/php_codesniffer": "~2.0"
  3251. },
  3252. "suggest": {
  3253. "ext-gmp": "Install the GMP (GNU Multiple Precision) extension in order to speed up arbitrary precision integer arithmetic operations.",
  3254. "ext-libsodium": "SSH2/SFTP can make use of some algorithms provided by the libsodium-php extension.",
  3255. "ext-mcrypt": "Install the Mcrypt extension in order to speed up a few other cryptographic operations.",
  3256. "ext-openssl": "Install the OpenSSL extension in order to speed up a wide variety of cryptographic operations.",
  3257. "ext-xml": "Install the XML extension to load XML formatted public keys."
  3258. },
  3259. "type": "library",
  3260. "autoload": {
  3261. "files": [
  3262. "phpseclib/bootstrap.php"
  3263. ],
  3264. "psr-4": {
  3265. "phpseclib\\": "phpseclib/"
  3266. }
  3267. },
  3268. "notification-url": "https://packagist.org/downloads/",
  3269. "license": [
  3270. "MIT"
  3271. ],
  3272. "authors": [
  3273. {
  3274. "name": "Jim Wigginton",
  3275. "email": "terrafrost@php.net",
  3276. "role": "Lead Developer"
  3277. },
  3278. {
  3279. "name": "Patrick Monnerat",
  3280. "email": "pm@datasphere.ch",
  3281. "role": "Developer"
  3282. },
  3283. {
  3284. "name": "Andreas Fischer",
  3285. "email": "bantu@phpbb.com",
  3286. "role": "Developer"
  3287. },
  3288. {
  3289. "name": "Hans-Jürgen Petrich",
  3290. "email": "petrich@tronic-media.com",
  3291. "role": "Developer"
  3292. },
  3293. {
  3294. "name": "Graham Campbell",
  3295. "email": "graham@alt-three.com",
  3296. "role": "Developer"
  3297. }
  3298. ],
  3299. "description": "PHP Secure Communications Library - Pure-PHP implementations of RSA, AES, SSH2, SFTP, X.509 etc.",
  3300. "homepage": "http://phpseclib.sourceforge.net",
  3301. "keywords": [
  3302. "BigInteger",
  3303. "aes",
  3304. "asn.1",
  3305. "asn1",
  3306. "blowfish",
  3307. "crypto",
  3308. "cryptography",
  3309. "encryption",
  3310. "rsa",
  3311. "security",
  3312. "sftp",
  3313. "signature",
  3314. "signing",
  3315. "ssh",
  3316. "twofish",
  3317. "x.509",
  3318. "x509"
  3319. ],
  3320. "support": {
  3321. "issues": "https://github.com/phpseclib/phpseclib/issues",
  3322. "source": "https://github.com/phpseclib/phpseclib/tree/2.0.44"
  3323. },
  3324. "funding": [
  3325. {
  3326. "url": "https://github.com/terrafrost",
  3327. "type": "github"
  3328. },
  3329. {
  3330. "url": "https://www.patreon.com/phpseclib",
  3331. "type": "patreon"
  3332. },
  3333. {
  3334. "url": "https://tidelift.com/funding/github/packagist/phpseclib/phpseclib",
  3335. "type": "tidelift"
  3336. }
  3337. ],
  3338. "time": "2023-06-13T08:41:47+00:00"
  3339. },
  3340. {
  3341. "name": "psr/cache",
  3342. "version": "1.0.1",
  3343. "source": {
  3344. "type": "git",
  3345. "url": "https://github.com/php-fig/cache.git",
  3346. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  3347. },
  3348. "dist": {
  3349. "type": "zip",
  3350. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  3351. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  3352. "shasum": ""
  3353. },
  3354. "require": {
  3355. "php": ">=5.3.0"
  3356. },
  3357. "type": "library",
  3358. "extra": {
  3359. "branch-alias": {
  3360. "dev-master": "1.0.x-dev"
  3361. }
  3362. },
  3363. "autoload": {
  3364. "psr-4": {
  3365. "Psr\\Cache\\": "src/"
  3366. }
  3367. },
  3368. "notification-url": "https://packagist.org/downloads/",
  3369. "license": [
  3370. "MIT"
  3371. ],
  3372. "authors": [
  3373. {
  3374. "name": "PHP-FIG",
  3375. "homepage": "http://www.php-fig.org/"
  3376. }
  3377. ],
  3378. "description": "Common interface for caching libraries",
  3379. "keywords": [
  3380. "cache",
  3381. "psr",
  3382. "psr-6"
  3383. ],
  3384. "support": {
  3385. "source": "https://github.com/php-fig/cache/tree/master"
  3386. },
  3387. "time": "2016-08-06T20:24:11+00:00"
  3388. },
  3389. {
  3390. "name": "psr/container",
  3391. "version": "2.0.2",
  3392. "source": {
  3393. "type": "git",
  3394. "url": "https://github.com/php-fig/container.git",
  3395. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963"
  3396. },
  3397. "dist": {
  3398. "type": "zip",
  3399. "url": "https://api.github.com/repos/php-fig/container/zipball/c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3400. "reference": "c71ecc56dfe541dbd90c5360474fbc405f8d5963",
  3401. "shasum": ""
  3402. },
  3403. "require": {
  3404. "php": ">=7.4.0"
  3405. },
  3406. "type": "library",
  3407. "extra": {
  3408. "branch-alias": {
  3409. "dev-master": "2.0.x-dev"
  3410. }
  3411. },
  3412. "autoload": {
  3413. "psr-4": {
  3414. "Psr\\Container\\": "src/"
  3415. }
  3416. },
  3417. "notification-url": "https://packagist.org/downloads/",
  3418. "license": [
  3419. "MIT"
  3420. ],
  3421. "authors": [
  3422. {
  3423. "name": "PHP-FIG",
  3424. "homepage": "https://www.php-fig.org/"
  3425. }
  3426. ],
  3427. "description": "Common Container Interface (PHP FIG PSR-11)",
  3428. "homepage": "https://github.com/php-fig/container",
  3429. "keywords": [
  3430. "PSR-11",
  3431. "container",
  3432. "container-interface",
  3433. "container-interop",
  3434. "psr"
  3435. ],
  3436. "support": {
  3437. "issues": "https://github.com/php-fig/container/issues",
  3438. "source": "https://github.com/php-fig/container/tree/2.0.2"
  3439. },
  3440. "time": "2021-11-05T16:47:00+00:00"
  3441. },
  3442. {
  3443. "name": "psr/event-dispatcher",
  3444. "version": "1.0.0",
  3445. "source": {
  3446. "type": "git",
  3447. "url": "https://github.com/php-fig/event-dispatcher.git",
  3448. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0"
  3449. },
  3450. "dist": {
  3451. "type": "zip",
  3452. "url": "https://api.github.com/repos/php-fig/event-dispatcher/zipball/dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3453. "reference": "dbefd12671e8a14ec7f180cab83036ed26714bb0",
  3454. "shasum": ""
  3455. },
  3456. "require": {
  3457. "php": ">=7.2.0"
  3458. },
  3459. "type": "library",
  3460. "extra": {
  3461. "branch-alias": {
  3462. "dev-master": "1.0.x-dev"
  3463. }
  3464. },
  3465. "autoload": {
  3466. "psr-4": {
  3467. "Psr\\EventDispatcher\\": "src/"
  3468. }
  3469. },
  3470. "notification-url": "https://packagist.org/downloads/",
  3471. "license": [
  3472. "MIT"
  3473. ],
  3474. "authors": [
  3475. {
  3476. "name": "PHP-FIG",
  3477. "homepage": "http://www.php-fig.org/"
  3478. }
  3479. ],
  3480. "description": "Standard interfaces for event handling.",
  3481. "keywords": [
  3482. "events",
  3483. "psr",
  3484. "psr-14"
  3485. ],
  3486. "support": {
  3487. "issues": "https://github.com/php-fig/event-dispatcher/issues",
  3488. "source": "https://github.com/php-fig/event-dispatcher/tree/1.0.0"
  3489. },
  3490. "time": "2019-01-08T18:20:26+00:00"
  3491. },
  3492. {
  3493. "name": "psr/http-client",
  3494. "version": "1.0.2",
  3495. "source": {
  3496. "type": "git",
  3497. "url": "https://github.com/php-fig/http-client.git",
  3498. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31"
  3499. },
  3500. "dist": {
  3501. "type": "zip",
  3502. "url": "https://api.github.com/repos/php-fig/http-client/zipball/0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  3503. "reference": "0955afe48220520692d2d09f7ab7e0f93ffd6a31",
  3504. "shasum": ""
  3505. },
  3506. "require": {
  3507. "php": "^7.0 || ^8.0",
  3508. "psr/http-message": "^1.0 || ^2.0"
  3509. },
  3510. "type": "library",
  3511. "extra": {
  3512. "branch-alias": {
  3513. "dev-master": "1.0.x-dev"
  3514. }
  3515. },
  3516. "autoload": {
  3517. "psr-4": {
  3518. "Psr\\Http\\Client\\": "src/"
  3519. }
  3520. },
  3521. "notification-url": "https://packagist.org/downloads/",
  3522. "license": [
  3523. "MIT"
  3524. ],
  3525. "authors": [
  3526. {
  3527. "name": "PHP-FIG",
  3528. "homepage": "https://www.php-fig.org/"
  3529. }
  3530. ],
  3531. "description": "Common interface for HTTP clients",
  3532. "homepage": "https://github.com/php-fig/http-client",
  3533. "keywords": [
  3534. "http",
  3535. "http-client",
  3536. "psr",
  3537. "psr-18"
  3538. ],
  3539. "support": {
  3540. "source": "https://github.com/php-fig/http-client/tree/1.0.2"
  3541. },
  3542. "time": "2023-04-10T20:12:12+00:00"
  3543. },
  3544. {
  3545. "name": "psr/http-factory",
  3546. "version": "1.0.2",
  3547. "source": {
  3548. "type": "git",
  3549. "url": "https://github.com/php-fig/http-factory.git",
  3550. "reference": "e616d01114759c4c489f93b099585439f795fe35"
  3551. },
  3552. "dist": {
  3553. "type": "zip",
  3554. "url": "https://api.github.com/repos/php-fig/http-factory/zipball/e616d01114759c4c489f93b099585439f795fe35",
  3555. "reference": "e616d01114759c4c489f93b099585439f795fe35",
  3556. "shasum": ""
  3557. },
  3558. "require": {
  3559. "php": ">=7.0.0",
  3560. "psr/http-message": "^1.0 || ^2.0"
  3561. },
  3562. "type": "library",
  3563. "extra": {
  3564. "branch-alias": {
  3565. "dev-master": "1.0.x-dev"
  3566. }
  3567. },
  3568. "autoload": {
  3569. "psr-4": {
  3570. "Psr\\Http\\Message\\": "src/"
  3571. }
  3572. },
  3573. "notification-url": "https://packagist.org/downloads/",
  3574. "license": [
  3575. "MIT"
  3576. ],
  3577. "authors": [
  3578. {
  3579. "name": "PHP-FIG",
  3580. "homepage": "https://www.php-fig.org/"
  3581. }
  3582. ],
  3583. "description": "Common interfaces for PSR-7 HTTP message factories",
  3584. "keywords": [
  3585. "factory",
  3586. "http",
  3587. "message",
  3588. "psr",
  3589. "psr-17",
  3590. "psr-7",
  3591. "request",
  3592. "response"
  3593. ],
  3594. "support": {
  3595. "source": "https://github.com/php-fig/http-factory/tree/1.0.2"
  3596. },
  3597. "time": "2023-04-10T20:10:41+00:00"
  3598. },
  3599. {
  3600. "name": "psr/http-message",
  3601. "version": "1.1",
  3602. "source": {
  3603. "type": "git",
  3604. "url": "https://github.com/php-fig/http-message.git",
  3605. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba"
  3606. },
  3607. "dist": {
  3608. "type": "zip",
  3609. "url": "https://api.github.com/repos/php-fig/http-message/zipball/cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3610. "reference": "cb6ce4845ce34a8ad9e68117c10ee90a29919eba",
  3611. "shasum": ""
  3612. },
  3613. "require": {
  3614. "php": "^7.2 || ^8.0"
  3615. },
  3616. "type": "library",
  3617. "extra": {
  3618. "branch-alias": {
  3619. "dev-master": "1.1.x-dev"
  3620. }
  3621. },
  3622. "autoload": {
  3623. "psr-4": {
  3624. "Psr\\Http\\Message\\": "src/"
  3625. }
  3626. },
  3627. "notification-url": "https://packagist.org/downloads/",
  3628. "license": [
  3629. "MIT"
  3630. ],
  3631. "authors": [
  3632. {
  3633. "name": "PHP-FIG",
  3634. "homepage": "http://www.php-fig.org/"
  3635. }
  3636. ],
  3637. "description": "Common interface for HTTP messages",
  3638. "homepage": "https://github.com/php-fig/http-message",
  3639. "keywords": [
  3640. "http",
  3641. "http-message",
  3642. "psr",
  3643. "psr-7",
  3644. "request",
  3645. "response"
  3646. ],
  3647. "support": {
  3648. "source": "https://github.com/php-fig/http-message/tree/1.1"
  3649. },
  3650. "time": "2023-04-04T09:50:52+00:00"
  3651. },
  3652. {
  3653. "name": "psr/http-server-handler",
  3654. "version": "1.0.2",
  3655. "source": {
  3656. "type": "git",
  3657. "url": "https://github.com/php-fig/http-server-handler.git",
  3658. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4"
  3659. },
  3660. "dist": {
  3661. "type": "zip",
  3662. "url": "https://api.github.com/repos/php-fig/http-server-handler/zipball/84c4fb66179be4caaf8e97bd239203245302e7d4",
  3663. "reference": "84c4fb66179be4caaf8e97bd239203245302e7d4",
  3664. "shasum": ""
  3665. },
  3666. "require": {
  3667. "php": ">=7.0",
  3668. "psr/http-message": "^1.0 || ^2.0"
  3669. },
  3670. "type": "library",
  3671. "extra": {
  3672. "branch-alias": {
  3673. "dev-master": "1.0.x-dev"
  3674. }
  3675. },
  3676. "autoload": {
  3677. "psr-4": {
  3678. "Psr\\Http\\Server\\": "src/"
  3679. }
  3680. },
  3681. "notification-url": "https://packagist.org/downloads/",
  3682. "license": [
  3683. "MIT"
  3684. ],
  3685. "authors": [
  3686. {
  3687. "name": "PHP-FIG",
  3688. "homepage": "https://www.php-fig.org/"
  3689. }
  3690. ],
  3691. "description": "Common interface for HTTP server-side request handler",
  3692. "keywords": [
  3693. "handler",
  3694. "http",
  3695. "http-interop",
  3696. "psr",
  3697. "psr-15",
  3698. "psr-7",
  3699. "request",
  3700. "response",
  3701. "server"
  3702. ],
  3703. "support": {
  3704. "source": "https://github.com/php-fig/http-server-handler/tree/1.0.2"
  3705. },
  3706. "time": "2023-04-10T20:06:20+00:00"
  3707. },
  3708. {
  3709. "name": "psr/http-server-middleware",
  3710. "version": "1.0.2",
  3711. "source": {
  3712. "type": "git",
  3713. "url": "https://github.com/php-fig/http-server-middleware.git",
  3714. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829"
  3715. },
  3716. "dist": {
  3717. "type": "zip",
  3718. "url": "https://api.github.com/repos/php-fig/http-server-middleware/zipball/c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3719. "reference": "c1481f747daaa6a0782775cd6a8c26a1bf4a3829",
  3720. "shasum": ""
  3721. },
  3722. "require": {
  3723. "php": ">=7.0",
  3724. "psr/http-message": "^1.0 || ^2.0",
  3725. "psr/http-server-handler": "^1.0"
  3726. },
  3727. "type": "library",
  3728. "extra": {
  3729. "branch-alias": {
  3730. "dev-master": "1.0.x-dev"
  3731. }
  3732. },
  3733. "autoload": {
  3734. "psr-4": {
  3735. "Psr\\Http\\Server\\": "src/"
  3736. }
  3737. },
  3738. "notification-url": "https://packagist.org/downloads/",
  3739. "license": [
  3740. "MIT"
  3741. ],
  3742. "authors": [
  3743. {
  3744. "name": "PHP-FIG",
  3745. "homepage": "https://www.php-fig.org/"
  3746. }
  3747. ],
  3748. "description": "Common interface for HTTP server-side middleware",
  3749. "keywords": [
  3750. "http",
  3751. "http-interop",
  3752. "middleware",
  3753. "psr",
  3754. "psr-15",
  3755. "psr-7",
  3756. "request",
  3757. "response"
  3758. ],
  3759. "support": {
  3760. "issues": "https://github.com/php-fig/http-server-middleware/issues",
  3761. "source": "https://github.com/php-fig/http-server-middleware/tree/1.0.2"
  3762. },
  3763. "time": "2023-04-11T06:14:47+00:00"
  3764. },
  3765. {
  3766. "name": "psr/log",
  3767. "version": "1.1.4",
  3768. "source": {
  3769. "type": "git",
  3770. "url": "https://github.com/php-fig/log.git",
  3771. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  3772. },
  3773. "dist": {
  3774. "type": "zip",
  3775. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  3776. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  3777. "shasum": ""
  3778. },
  3779. "require": {
  3780. "php": ">=5.3.0"
  3781. },
  3782. "type": "library",
  3783. "extra": {
  3784. "branch-alias": {
  3785. "dev-master": "1.1.x-dev"
  3786. }
  3787. },
  3788. "autoload": {
  3789. "psr-4": {
  3790. "Psr\\Log\\": "Psr/Log/"
  3791. }
  3792. },
  3793. "notification-url": "https://packagist.org/downloads/",
  3794. "license": [
  3795. "MIT"
  3796. ],
  3797. "authors": [
  3798. {
  3799. "name": "PHP-FIG",
  3800. "homepage": "https://www.php-fig.org/"
  3801. }
  3802. ],
  3803. "description": "Common interface for logging libraries",
  3804. "homepage": "https://github.com/php-fig/log",
  3805. "keywords": [
  3806. "log",
  3807. "psr",
  3808. "psr-3"
  3809. ],
  3810. "support": {
  3811. "source": "https://github.com/php-fig/log/tree/1.1.4"
  3812. },
  3813. "time": "2021-05-03T11:20:27+00:00"
  3814. },
  3815. {
  3816. "name": "psr/simple-cache",
  3817. "version": "1.0.1",
  3818. "source": {
  3819. "type": "git",
  3820. "url": "https://github.com/php-fig/simple-cache.git",
  3821. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  3822. },
  3823. "dist": {
  3824. "type": "zip",
  3825. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3826. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  3827. "shasum": ""
  3828. },
  3829. "require": {
  3830. "php": ">=5.3.0"
  3831. },
  3832. "type": "library",
  3833. "extra": {
  3834. "branch-alias": {
  3835. "dev-master": "1.0.x-dev"
  3836. }
  3837. },
  3838. "autoload": {
  3839. "psr-4": {
  3840. "Psr\\SimpleCache\\": "src/"
  3841. }
  3842. },
  3843. "notification-url": "https://packagist.org/downloads/",
  3844. "license": [
  3845. "MIT"
  3846. ],
  3847. "authors": [
  3848. {
  3849. "name": "PHP-FIG",
  3850. "homepage": "http://www.php-fig.org/"
  3851. }
  3852. ],
  3853. "description": "Common interfaces for simple caching",
  3854. "keywords": [
  3855. "cache",
  3856. "caching",
  3857. "psr",
  3858. "psr-16",
  3859. "simple-cache"
  3860. ],
  3861. "support": {
  3862. "source": "https://github.com/php-fig/simple-cache/tree/master"
  3863. },
  3864. "time": "2017-10-23T01:57:42+00:00"
  3865. },
  3866. {
  3867. "name": "ralouphie/getallheaders",
  3868. "version": "3.0.3",
  3869. "source": {
  3870. "type": "git",
  3871. "url": "https://github.com/ralouphie/getallheaders.git",
  3872. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  3873. },
  3874. "dist": {
  3875. "type": "zip",
  3876. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  3877. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  3878. "shasum": ""
  3879. },
  3880. "require": {
  3881. "php": ">=5.6"
  3882. },
  3883. "require-dev": {
  3884. "php-coveralls/php-coveralls": "^2.1",
  3885. "phpunit/phpunit": "^5 || ^6.5"
  3886. },
  3887. "type": "library",
  3888. "autoload": {
  3889. "files": [
  3890. "src/getallheaders.php"
  3891. ]
  3892. },
  3893. "notification-url": "https://packagist.org/downloads/",
  3894. "license": [
  3895. "MIT"
  3896. ],
  3897. "authors": [
  3898. {
  3899. "name": "Ralph Khattar",
  3900. "email": "ralph.khattar@gmail.com"
  3901. }
  3902. ],
  3903. "description": "A polyfill for getallheaders.",
  3904. "support": {
  3905. "issues": "https://github.com/ralouphie/getallheaders/issues",
  3906. "source": "https://github.com/ralouphie/getallheaders/tree/develop"
  3907. },
  3908. "time": "2019-03-08T08:55:37+00:00"
  3909. },
  3910. {
  3911. "name": "simplito/bigint-wrapper-php",
  3912. "version": "1.0.0",
  3913. "source": {
  3914. "type": "git",
  3915. "url": "https://github.com/simplito/bigint-wrapper-php.git",
  3916. "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930"
  3917. },
  3918. "dist": {
  3919. "type": "zip",
  3920. "url": "https://api.github.com/repos/simplito/bigint-wrapper-php/zipball/cf21ec76d33f103add487b3eadbd9f5033a25930",
  3921. "reference": "cf21ec76d33f103add487b3eadbd9f5033a25930",
  3922. "shasum": ""
  3923. },
  3924. "type": "library",
  3925. "autoload": {
  3926. "psr-4": {
  3927. "BI\\": "lib/"
  3928. }
  3929. },
  3930. "notification-url": "https://packagist.org/downloads/",
  3931. "license": [
  3932. "MIT"
  3933. ],
  3934. "authors": [
  3935. {
  3936. "name": "Simplito Team",
  3937. "email": "s.smyczynski@simplito.com",
  3938. "homepage": "https://simplito.com"
  3939. }
  3940. ],
  3941. "description": "Common interface for php_gmp and php_bcmath modules",
  3942. "support": {
  3943. "issues": "https://github.com/simplito/bigint-wrapper-php/issues",
  3944. "source": "https://github.com/simplito/bigint-wrapper-php/tree/1.0.0"
  3945. },
  3946. "time": "2018-02-27T12:38:08+00:00"
  3947. },
  3948. {
  3949. "name": "simplito/bn-php",
  3950. "version": "1.1.3",
  3951. "source": {
  3952. "type": "git",
  3953. "url": "https://github.com/simplito/bn-php.git",
  3954. "reference": "189167f940cdb681288a967b0f4d66de81adcd97"
  3955. },
  3956. "dist": {
  3957. "type": "zip",
  3958. "url": "https://api.github.com/repos/simplito/bn-php/zipball/189167f940cdb681288a967b0f4d66de81adcd97",
  3959. "reference": "189167f940cdb681288a967b0f4d66de81adcd97",
  3960. "shasum": ""
  3961. },
  3962. "require": {
  3963. "simplito/bigint-wrapper-php": "~1.0.0"
  3964. },
  3965. "require-dev": {
  3966. "phpunit/phpunit": "*"
  3967. },
  3968. "type": "library",
  3969. "autoload": {
  3970. "psr-4": {
  3971. "BN\\": "lib/"
  3972. }
  3973. },
  3974. "notification-url": "https://packagist.org/downloads/",
  3975. "license": [
  3976. "MIT"
  3977. ],
  3978. "authors": [
  3979. {
  3980. "name": "Simplito Team",
  3981. "email": "s.smyczynski@simplito.com",
  3982. "homepage": "https://simplito.com"
  3983. }
  3984. ],
  3985. "description": "Big number implementation compatible with bn.js",
  3986. "support": {
  3987. "issues": "https://github.com/simplito/bn-php/issues",
  3988. "source": "https://github.com/simplito/bn-php/tree/1.1.3"
  3989. },
  3990. "time": "2022-08-12T18:58:14+00:00"
  3991. },
  3992. {
  3993. "name": "simplito/elliptic-php",
  3994. "version": "1.0.10",
  3995. "source": {
  3996. "type": "git",
  3997. "url": "https://github.com/simplito/elliptic-php.git",
  3998. "reference": "a6228f480c729cf8efe2650a617c8500e981716d"
  3999. },
  4000. "dist": {
  4001. "type": "zip",
  4002. "url": "https://api.github.com/repos/simplito/elliptic-php/zipball/a6228f480c729cf8efe2650a617c8500e981716d",
  4003. "reference": "a6228f480c729cf8efe2650a617c8500e981716d",
  4004. "shasum": ""
  4005. },
  4006. "require": {
  4007. "ext-gmp": "*",
  4008. "simplito/bn-php": "~1.1.0"
  4009. },
  4010. "require-dev": {
  4011. "phpbench/phpbench": "@dev",
  4012. "phpunit/phpunit": "*"
  4013. },
  4014. "type": "library",
  4015. "autoload": {
  4016. "psr-4": {
  4017. "Elliptic\\": "lib/"
  4018. }
  4019. },
  4020. "notification-url": "https://packagist.org/downloads/",
  4021. "license": [
  4022. "MIT"
  4023. ],
  4024. "authors": [
  4025. {
  4026. "name": "Simplito Team",
  4027. "email": "s.smyczynski@simplito.com",
  4028. "homepage": "https://simplito.com"
  4029. }
  4030. ],
  4031. "description": "Fast elliptic curve cryptography",
  4032. "homepage": "https://github.com/simplito/elliptic-php",
  4033. "keywords": [
  4034. "Curve25519",
  4035. "ECDSA",
  4036. "Ed25519",
  4037. "EdDSA",
  4038. "cryptography",
  4039. "curve",
  4040. "curve25519-weier",
  4041. "ecc",
  4042. "ecdh",
  4043. "elliptic",
  4044. "nistp192",
  4045. "nistp224",
  4046. "nistp256",
  4047. "nistp384",
  4048. "nistp521",
  4049. "secp256k1"
  4050. ],
  4051. "support": {
  4052. "issues": "https://github.com/simplito/elliptic-php/issues",
  4053. "source": "https://github.com/simplito/elliptic-php/tree/1.0.10"
  4054. },
  4055. "time": "2022-08-12T19:00:25+00:00"
  4056. },
  4057. {
  4058. "name": "symfony/console",
  4059. "version": "v5.4.11",
  4060. "source": {
  4061. "type": "git",
  4062. "url": "https://github.com/symfony/console.git",
  4063. "reference": "535846c7ee6bc4dd027ca0d93220601456734b10"
  4064. },
  4065. "dist": {
  4066. "type": "zip",
  4067. "url": "https://api.github.com/repos/symfony/console/zipball/535846c7ee6bc4dd027ca0d93220601456734b10",
  4068. "reference": "535846c7ee6bc4dd027ca0d93220601456734b10",
  4069. "shasum": ""
  4070. },
  4071. "require": {
  4072. "php": ">=7.2.5",
  4073. "symfony/deprecation-contracts": "^2.1|^3",
  4074. "symfony/polyfill-mbstring": "~1.0",
  4075. "symfony/polyfill-php73": "^1.9",
  4076. "symfony/polyfill-php80": "^1.16",
  4077. "symfony/service-contracts": "^1.1|^2|^3",
  4078. "symfony/string": "^5.1|^6.0"
  4079. },
  4080. "conflict": {
  4081. "psr/log": ">=3",
  4082. "symfony/dependency-injection": "<4.4",
  4083. "symfony/dotenv": "<5.1",
  4084. "symfony/event-dispatcher": "<4.4",
  4085. "symfony/lock": "<4.4",
  4086. "symfony/process": "<4.4"
  4087. },
  4088. "provide": {
  4089. "psr/log-implementation": "1.0|2.0"
  4090. },
  4091. "require-dev": {
  4092. "psr/log": "^1|^2",
  4093. "symfony/config": "^4.4|^5.0|^6.0",
  4094. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  4095. "symfony/event-dispatcher": "^4.4|^5.0|^6.0",
  4096. "symfony/lock": "^4.4|^5.0|^6.0",
  4097. "symfony/process": "^4.4|^5.0|^6.0",
  4098. "symfony/var-dumper": "^4.4|^5.0|^6.0"
  4099. },
  4100. "suggest": {
  4101. "psr/log": "For using the console logger",
  4102. "symfony/event-dispatcher": "",
  4103. "symfony/lock": "",
  4104. "symfony/process": ""
  4105. },
  4106. "type": "library",
  4107. "autoload": {
  4108. "psr-4": {
  4109. "Symfony\\Component\\Console\\": ""
  4110. },
  4111. "exclude-from-classmap": [
  4112. "/Tests/"
  4113. ]
  4114. },
  4115. "notification-url": "https://packagist.org/downloads/",
  4116. "license": [
  4117. "MIT"
  4118. ],
  4119. "authors": [
  4120. {
  4121. "name": "Fabien Potencier",
  4122. "email": "fabien@symfony.com"
  4123. },
  4124. {
  4125. "name": "Symfony Community",
  4126. "homepage": "https://symfony.com/contributors"
  4127. }
  4128. ],
  4129. "description": "Eases the creation of beautiful and testable command line interfaces",
  4130. "homepage": "https://symfony.com",
  4131. "keywords": [
  4132. "cli",
  4133. "command line",
  4134. "console",
  4135. "terminal"
  4136. ],
  4137. "support": {
  4138. "source": "https://github.com/symfony/console/tree/v5.4.11"
  4139. },
  4140. "funding": [
  4141. {
  4142. "url": "https://symfony.com/sponsor",
  4143. "type": "custom"
  4144. },
  4145. {
  4146. "url": "https://github.com/fabpot",
  4147. "type": "github"
  4148. },
  4149. {
  4150. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4151. "type": "tidelift"
  4152. }
  4153. ],
  4154. "time": "2022-07-22T10:42:43+00:00"
  4155. },
  4156. {
  4157. "name": "symfony/deprecation-contracts",
  4158. "version": "v2.5.2",
  4159. "source": {
  4160. "type": "git",
  4161. "url": "https://github.com/symfony/deprecation-contracts.git",
  4162. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  4163. },
  4164. "dist": {
  4165. "type": "zip",
  4166. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  4167. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  4168. "shasum": ""
  4169. },
  4170. "require": {
  4171. "php": ">=7.1"
  4172. },
  4173. "type": "library",
  4174. "extra": {
  4175. "branch-alias": {
  4176. "dev-main": "2.5-dev"
  4177. },
  4178. "thanks": {
  4179. "name": "symfony/contracts",
  4180. "url": "https://github.com/symfony/contracts"
  4181. }
  4182. },
  4183. "autoload": {
  4184. "files": [
  4185. "function.php"
  4186. ]
  4187. },
  4188. "notification-url": "https://packagist.org/downloads/",
  4189. "license": [
  4190. "MIT"
  4191. ],
  4192. "authors": [
  4193. {
  4194. "name": "Nicolas Grekas",
  4195. "email": "p@tchwork.com"
  4196. },
  4197. {
  4198. "name": "Symfony Community",
  4199. "homepage": "https://symfony.com/contributors"
  4200. }
  4201. ],
  4202. "description": "A generic function and convention to trigger deprecation notices",
  4203. "homepage": "https://symfony.com",
  4204. "support": {
  4205. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  4206. },
  4207. "funding": [
  4208. {
  4209. "url": "https://symfony.com/sponsor",
  4210. "type": "custom"
  4211. },
  4212. {
  4213. "url": "https://github.com/fabpot",
  4214. "type": "github"
  4215. },
  4216. {
  4217. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4218. "type": "tidelift"
  4219. }
  4220. ],
  4221. "time": "2022-01-02T09:53:40+00:00"
  4222. },
  4223. {
  4224. "name": "symfony/finder",
  4225. "version": "v5.4.21",
  4226. "source": {
  4227. "type": "git",
  4228. "url": "https://github.com/symfony/finder.git",
  4229. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19"
  4230. },
  4231. "dist": {
  4232. "type": "zip",
  4233. "url": "https://api.github.com/repos/symfony/finder/zipball/078e9a5e1871fcfe6a5ce421b539344c21afef19",
  4234. "reference": "078e9a5e1871fcfe6a5ce421b539344c21afef19",
  4235. "shasum": ""
  4236. },
  4237. "require": {
  4238. "php": ">=7.2.5",
  4239. "symfony/deprecation-contracts": "^2.1|^3",
  4240. "symfony/polyfill-php80": "^1.16"
  4241. },
  4242. "type": "library",
  4243. "autoload": {
  4244. "psr-4": {
  4245. "Symfony\\Component\\Finder\\": ""
  4246. },
  4247. "exclude-from-classmap": [
  4248. "/Tests/"
  4249. ]
  4250. },
  4251. "notification-url": "https://packagist.org/downloads/",
  4252. "license": [
  4253. "MIT"
  4254. ],
  4255. "authors": [
  4256. {
  4257. "name": "Fabien Potencier",
  4258. "email": "fabien@symfony.com"
  4259. },
  4260. {
  4261. "name": "Symfony Community",
  4262. "homepage": "https://symfony.com/contributors"
  4263. }
  4264. ],
  4265. "description": "Finds files and directories via an intuitive fluent interface",
  4266. "homepage": "https://symfony.com",
  4267. "support": {
  4268. "source": "https://github.com/symfony/finder/tree/v5.4.21"
  4269. },
  4270. "funding": [
  4271. {
  4272. "url": "https://symfony.com/sponsor",
  4273. "type": "custom"
  4274. },
  4275. {
  4276. "url": "https://github.com/fabpot",
  4277. "type": "github"
  4278. },
  4279. {
  4280. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4281. "type": "tidelift"
  4282. }
  4283. ],
  4284. "time": "2023-02-16T09:33:00+00:00"
  4285. },
  4286. {
  4287. "name": "symfony/polyfill-ctype",
  4288. "version": "v1.27.0",
  4289. "source": {
  4290. "type": "git",
  4291. "url": "https://github.com/symfony/polyfill-ctype.git",
  4292. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  4293. },
  4294. "dist": {
  4295. "type": "zip",
  4296. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  4297. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  4298. "shasum": ""
  4299. },
  4300. "require": {
  4301. "php": ">=7.1"
  4302. },
  4303. "provide": {
  4304. "ext-ctype": "*"
  4305. },
  4306. "suggest": {
  4307. "ext-ctype": "For best performance"
  4308. },
  4309. "type": "library",
  4310. "extra": {
  4311. "branch-alias": {
  4312. "dev-main": "1.27-dev"
  4313. },
  4314. "thanks": {
  4315. "name": "symfony/polyfill",
  4316. "url": "https://github.com/symfony/polyfill"
  4317. }
  4318. },
  4319. "autoload": {
  4320. "files": [
  4321. "bootstrap.php"
  4322. ],
  4323. "psr-4": {
  4324. "Symfony\\Polyfill\\Ctype\\": ""
  4325. }
  4326. },
  4327. "notification-url": "https://packagist.org/downloads/",
  4328. "license": [
  4329. "MIT"
  4330. ],
  4331. "authors": [
  4332. {
  4333. "name": "Gert de Pagter",
  4334. "email": "BackEndTea@gmail.com"
  4335. },
  4336. {
  4337. "name": "Symfony Community",
  4338. "homepage": "https://symfony.com/contributors"
  4339. }
  4340. ],
  4341. "description": "Symfony polyfill for ctype functions",
  4342. "homepage": "https://symfony.com",
  4343. "keywords": [
  4344. "compatibility",
  4345. "ctype",
  4346. "polyfill",
  4347. "portable"
  4348. ],
  4349. "support": {
  4350. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  4351. },
  4352. "funding": [
  4353. {
  4354. "url": "https://symfony.com/sponsor",
  4355. "type": "custom"
  4356. },
  4357. {
  4358. "url": "https://github.com/fabpot",
  4359. "type": "github"
  4360. },
  4361. {
  4362. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4363. "type": "tidelift"
  4364. }
  4365. ],
  4366. "time": "2022-11-03T14:55:06+00:00"
  4367. },
  4368. {
  4369. "name": "symfony/polyfill-intl-grapheme",
  4370. "version": "v1.27.0",
  4371. "source": {
  4372. "type": "git",
  4373. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  4374. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  4375. },
  4376. "dist": {
  4377. "type": "zip",
  4378. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  4379. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  4380. "shasum": ""
  4381. },
  4382. "require": {
  4383. "php": ">=7.1"
  4384. },
  4385. "suggest": {
  4386. "ext-intl": "For best performance"
  4387. },
  4388. "type": "library",
  4389. "extra": {
  4390. "branch-alias": {
  4391. "dev-main": "1.27-dev"
  4392. },
  4393. "thanks": {
  4394. "name": "symfony/polyfill",
  4395. "url": "https://github.com/symfony/polyfill"
  4396. }
  4397. },
  4398. "autoload": {
  4399. "files": [
  4400. "bootstrap.php"
  4401. ],
  4402. "psr-4": {
  4403. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  4404. }
  4405. },
  4406. "notification-url": "https://packagist.org/downloads/",
  4407. "license": [
  4408. "MIT"
  4409. ],
  4410. "authors": [
  4411. {
  4412. "name": "Nicolas Grekas",
  4413. "email": "p@tchwork.com"
  4414. },
  4415. {
  4416. "name": "Symfony Community",
  4417. "homepage": "https://symfony.com/contributors"
  4418. }
  4419. ],
  4420. "description": "Symfony polyfill for intl's grapheme_* functions",
  4421. "homepage": "https://symfony.com",
  4422. "keywords": [
  4423. "compatibility",
  4424. "grapheme",
  4425. "intl",
  4426. "polyfill",
  4427. "portable",
  4428. "shim"
  4429. ],
  4430. "support": {
  4431. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  4432. },
  4433. "funding": [
  4434. {
  4435. "url": "https://symfony.com/sponsor",
  4436. "type": "custom"
  4437. },
  4438. {
  4439. "url": "https://github.com/fabpot",
  4440. "type": "github"
  4441. },
  4442. {
  4443. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4444. "type": "tidelift"
  4445. }
  4446. ],
  4447. "time": "2022-11-03T14:55:06+00:00"
  4448. },
  4449. {
  4450. "name": "symfony/polyfill-intl-normalizer",
  4451. "version": "v1.27.0",
  4452. "source": {
  4453. "type": "git",
  4454. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  4455. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  4456. },
  4457. "dist": {
  4458. "type": "zip",
  4459. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  4460. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  4461. "shasum": ""
  4462. },
  4463. "require": {
  4464. "php": ">=7.1"
  4465. },
  4466. "suggest": {
  4467. "ext-intl": "For best performance"
  4468. },
  4469. "type": "library",
  4470. "extra": {
  4471. "branch-alias": {
  4472. "dev-main": "1.27-dev"
  4473. },
  4474. "thanks": {
  4475. "name": "symfony/polyfill",
  4476. "url": "https://github.com/symfony/polyfill"
  4477. }
  4478. },
  4479. "autoload": {
  4480. "files": [
  4481. "bootstrap.php"
  4482. ],
  4483. "psr-4": {
  4484. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  4485. },
  4486. "classmap": [
  4487. "Resources/stubs"
  4488. ]
  4489. },
  4490. "notification-url": "https://packagist.org/downloads/",
  4491. "license": [
  4492. "MIT"
  4493. ],
  4494. "authors": [
  4495. {
  4496. "name": "Nicolas Grekas",
  4497. "email": "p@tchwork.com"
  4498. },
  4499. {
  4500. "name": "Symfony Community",
  4501. "homepage": "https://symfony.com/contributors"
  4502. }
  4503. ],
  4504. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  4505. "homepage": "https://symfony.com",
  4506. "keywords": [
  4507. "compatibility",
  4508. "intl",
  4509. "normalizer",
  4510. "polyfill",
  4511. "portable",
  4512. "shim"
  4513. ],
  4514. "support": {
  4515. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  4516. },
  4517. "funding": [
  4518. {
  4519. "url": "https://symfony.com/sponsor",
  4520. "type": "custom"
  4521. },
  4522. {
  4523. "url": "https://github.com/fabpot",
  4524. "type": "github"
  4525. },
  4526. {
  4527. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4528. "type": "tidelift"
  4529. }
  4530. ],
  4531. "time": "2022-11-03T14:55:06+00:00"
  4532. },
  4533. {
  4534. "name": "symfony/polyfill-mbstring",
  4535. "version": "v1.27.0",
  4536. "source": {
  4537. "type": "git",
  4538. "url": "https://github.com/symfony/polyfill-mbstring.git",
  4539. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  4540. },
  4541. "dist": {
  4542. "type": "zip",
  4543. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  4544. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  4545. "shasum": ""
  4546. },
  4547. "require": {
  4548. "php": ">=7.1"
  4549. },
  4550. "provide": {
  4551. "ext-mbstring": "*"
  4552. },
  4553. "suggest": {
  4554. "ext-mbstring": "For best performance"
  4555. },
  4556. "type": "library",
  4557. "extra": {
  4558. "branch-alias": {
  4559. "dev-main": "1.27-dev"
  4560. },
  4561. "thanks": {
  4562. "name": "symfony/polyfill",
  4563. "url": "https://github.com/symfony/polyfill"
  4564. }
  4565. },
  4566. "autoload": {
  4567. "files": [
  4568. "bootstrap.php"
  4569. ],
  4570. "psr-4": {
  4571. "Symfony\\Polyfill\\Mbstring\\": ""
  4572. }
  4573. },
  4574. "notification-url": "https://packagist.org/downloads/",
  4575. "license": [
  4576. "MIT"
  4577. ],
  4578. "authors": [
  4579. {
  4580. "name": "Nicolas Grekas",
  4581. "email": "p@tchwork.com"
  4582. },
  4583. {
  4584. "name": "Symfony Community",
  4585. "homepage": "https://symfony.com/contributors"
  4586. }
  4587. ],
  4588. "description": "Symfony polyfill for the Mbstring extension",
  4589. "homepage": "https://symfony.com",
  4590. "keywords": [
  4591. "compatibility",
  4592. "mbstring",
  4593. "polyfill",
  4594. "portable",
  4595. "shim"
  4596. ],
  4597. "support": {
  4598. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  4599. },
  4600. "funding": [
  4601. {
  4602. "url": "https://symfony.com/sponsor",
  4603. "type": "custom"
  4604. },
  4605. {
  4606. "url": "https://github.com/fabpot",
  4607. "type": "github"
  4608. },
  4609. {
  4610. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4611. "type": "tidelift"
  4612. }
  4613. ],
  4614. "time": "2022-11-03T14:55:06+00:00"
  4615. },
  4616. {
  4617. "name": "symfony/polyfill-php73",
  4618. "version": "v1.27.0",
  4619. "source": {
  4620. "type": "git",
  4621. "url": "https://github.com/symfony/polyfill-php73.git",
  4622. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  4623. },
  4624. "dist": {
  4625. "type": "zip",
  4626. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4627. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  4628. "shasum": ""
  4629. },
  4630. "require": {
  4631. "php": ">=7.1"
  4632. },
  4633. "type": "library",
  4634. "extra": {
  4635. "branch-alias": {
  4636. "dev-main": "1.27-dev"
  4637. },
  4638. "thanks": {
  4639. "name": "symfony/polyfill",
  4640. "url": "https://github.com/symfony/polyfill"
  4641. }
  4642. },
  4643. "autoload": {
  4644. "files": [
  4645. "bootstrap.php"
  4646. ],
  4647. "psr-4": {
  4648. "Symfony\\Polyfill\\Php73\\": ""
  4649. },
  4650. "classmap": [
  4651. "Resources/stubs"
  4652. ]
  4653. },
  4654. "notification-url": "https://packagist.org/downloads/",
  4655. "license": [
  4656. "MIT"
  4657. ],
  4658. "authors": [
  4659. {
  4660. "name": "Nicolas Grekas",
  4661. "email": "p@tchwork.com"
  4662. },
  4663. {
  4664. "name": "Symfony Community",
  4665. "homepage": "https://symfony.com/contributors"
  4666. }
  4667. ],
  4668. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  4669. "homepage": "https://symfony.com",
  4670. "keywords": [
  4671. "compatibility",
  4672. "polyfill",
  4673. "portable",
  4674. "shim"
  4675. ],
  4676. "support": {
  4677. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  4678. },
  4679. "funding": [
  4680. {
  4681. "url": "https://symfony.com/sponsor",
  4682. "type": "custom"
  4683. },
  4684. {
  4685. "url": "https://github.com/fabpot",
  4686. "type": "github"
  4687. },
  4688. {
  4689. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4690. "type": "tidelift"
  4691. }
  4692. ],
  4693. "time": "2022-11-03T14:55:06+00:00"
  4694. },
  4695. {
  4696. "name": "symfony/polyfill-php80",
  4697. "version": "v1.27.0",
  4698. "source": {
  4699. "type": "git",
  4700. "url": "https://github.com/symfony/polyfill-php80.git",
  4701. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  4702. },
  4703. "dist": {
  4704. "type": "zip",
  4705. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4706. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  4707. "shasum": ""
  4708. },
  4709. "require": {
  4710. "php": ">=7.1"
  4711. },
  4712. "type": "library",
  4713. "extra": {
  4714. "branch-alias": {
  4715. "dev-main": "1.27-dev"
  4716. },
  4717. "thanks": {
  4718. "name": "symfony/polyfill",
  4719. "url": "https://github.com/symfony/polyfill"
  4720. }
  4721. },
  4722. "autoload": {
  4723. "files": [
  4724. "bootstrap.php"
  4725. ],
  4726. "psr-4": {
  4727. "Symfony\\Polyfill\\Php80\\": ""
  4728. },
  4729. "classmap": [
  4730. "Resources/stubs"
  4731. ]
  4732. },
  4733. "notification-url": "https://packagist.org/downloads/",
  4734. "license": [
  4735. "MIT"
  4736. ],
  4737. "authors": [
  4738. {
  4739. "name": "Ion Bazan",
  4740. "email": "ion.bazan@gmail.com"
  4741. },
  4742. {
  4743. "name": "Nicolas Grekas",
  4744. "email": "p@tchwork.com"
  4745. },
  4746. {
  4747. "name": "Symfony Community",
  4748. "homepage": "https://symfony.com/contributors"
  4749. }
  4750. ],
  4751. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  4752. "homepage": "https://symfony.com",
  4753. "keywords": [
  4754. "compatibility",
  4755. "polyfill",
  4756. "portable",
  4757. "shim"
  4758. ],
  4759. "support": {
  4760. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  4761. },
  4762. "funding": [
  4763. {
  4764. "url": "https://symfony.com/sponsor",
  4765. "type": "custom"
  4766. },
  4767. {
  4768. "url": "https://github.com/fabpot",
  4769. "type": "github"
  4770. },
  4771. {
  4772. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4773. "type": "tidelift"
  4774. }
  4775. ],
  4776. "time": "2022-11-03T14:55:06+00:00"
  4777. },
  4778. {
  4779. "name": "symfony/service-contracts",
  4780. "version": "v1.1.2",
  4781. "source": {
  4782. "type": "git",
  4783. "url": "https://github.com/symfony/service-contracts.git",
  4784. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0"
  4785. },
  4786. "dist": {
  4787. "type": "zip",
  4788. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/191afdcb5804db960d26d8566b7e9a2843cab3a0",
  4789. "reference": "191afdcb5804db960d26d8566b7e9a2843cab3a0",
  4790. "shasum": ""
  4791. },
  4792. "require": {
  4793. "php": "^7.1.3"
  4794. },
  4795. "suggest": {
  4796. "psr/container": "",
  4797. "symfony/service-implementation": ""
  4798. },
  4799. "type": "library",
  4800. "extra": {
  4801. "branch-alias": {
  4802. "dev-master": "1.1-dev"
  4803. }
  4804. },
  4805. "autoload": {
  4806. "psr-4": {
  4807. "Symfony\\Contracts\\Service\\": ""
  4808. }
  4809. },
  4810. "notification-url": "https://packagist.org/downloads/",
  4811. "license": [
  4812. "MIT"
  4813. ],
  4814. "authors": [
  4815. {
  4816. "name": "Nicolas Grekas",
  4817. "email": "p@tchwork.com"
  4818. },
  4819. {
  4820. "name": "Symfony Community",
  4821. "homepage": "https://symfony.com/contributors"
  4822. }
  4823. ],
  4824. "description": "Generic abstractions related to writing services",
  4825. "homepage": "https://symfony.com",
  4826. "keywords": [
  4827. "abstractions",
  4828. "contracts",
  4829. "decoupling",
  4830. "interfaces",
  4831. "interoperability",
  4832. "standards"
  4833. ],
  4834. "support": {
  4835. "source": "https://github.com/symfony/service-contracts/tree/v1.1.2"
  4836. },
  4837. "time": "2019-05-28T07:50:59+00:00"
  4838. },
  4839. {
  4840. "name": "symfony/string",
  4841. "version": "v5.4.22",
  4842. "source": {
  4843. "type": "git",
  4844. "url": "https://github.com/symfony/string.git",
  4845. "reference": "8036a4c76c0dd29e60b6a7cafcacc50cf088ea62"
  4846. },
  4847. "dist": {
  4848. "type": "zip",
  4849. "url": "https://api.github.com/repos/symfony/string/zipball/8036a4c76c0dd29e60b6a7cafcacc50cf088ea62",
  4850. "reference": "8036a4c76c0dd29e60b6a7cafcacc50cf088ea62",
  4851. "shasum": ""
  4852. },
  4853. "require": {
  4854. "php": ">=7.2.5",
  4855. "symfony/polyfill-ctype": "~1.8",
  4856. "symfony/polyfill-intl-grapheme": "~1.0",
  4857. "symfony/polyfill-intl-normalizer": "~1.0",
  4858. "symfony/polyfill-mbstring": "~1.0",
  4859. "symfony/polyfill-php80": "~1.15"
  4860. },
  4861. "conflict": {
  4862. "symfony/translation-contracts": ">=3.0"
  4863. },
  4864. "require-dev": {
  4865. "symfony/error-handler": "^4.4|^5.0|^6.0",
  4866. "symfony/http-client": "^4.4|^5.0|^6.0",
  4867. "symfony/translation-contracts": "^1.1|^2",
  4868. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  4869. },
  4870. "type": "library",
  4871. "autoload": {
  4872. "files": [
  4873. "Resources/functions.php"
  4874. ],
  4875. "psr-4": {
  4876. "Symfony\\Component\\String\\": ""
  4877. },
  4878. "exclude-from-classmap": [
  4879. "/Tests/"
  4880. ]
  4881. },
  4882. "notification-url": "https://packagist.org/downloads/",
  4883. "license": [
  4884. "MIT"
  4885. ],
  4886. "authors": [
  4887. {
  4888. "name": "Nicolas Grekas",
  4889. "email": "p@tchwork.com"
  4890. },
  4891. {
  4892. "name": "Symfony Community",
  4893. "homepage": "https://symfony.com/contributors"
  4894. }
  4895. ],
  4896. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  4897. "homepage": "https://symfony.com",
  4898. "keywords": [
  4899. "grapheme",
  4900. "i18n",
  4901. "string",
  4902. "unicode",
  4903. "utf-8",
  4904. "utf8"
  4905. ],
  4906. "support": {
  4907. "source": "https://github.com/symfony/string/tree/v5.4.22"
  4908. },
  4909. "funding": [
  4910. {
  4911. "url": "https://symfony.com/sponsor",
  4912. "type": "custom"
  4913. },
  4914. {
  4915. "url": "https://github.com/fabpot",
  4916. "type": "github"
  4917. },
  4918. {
  4919. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  4920. "type": "tidelift"
  4921. }
  4922. ],
  4923. "time": "2023-03-14T06:11:53+00:00"
  4924. },
  4925. {
  4926. "name": "symfony/translation",
  4927. "version": "v5.4.24",
  4928. "source": {
  4929. "type": "git",
  4930. "url": "https://github.com/symfony/translation.git",
  4931. "reference": "de237e59c5833422342be67402d487fbf50334ff"
  4932. },
  4933. "dist": {
  4934. "type": "zip",
  4935. "url": "https://api.github.com/repos/symfony/translation/zipball/de237e59c5833422342be67402d487fbf50334ff",
  4936. "reference": "de237e59c5833422342be67402d487fbf50334ff",
  4937. "shasum": ""
  4938. },
  4939. "require": {
  4940. "php": ">=7.2.5",
  4941. "symfony/deprecation-contracts": "^2.1|^3",
  4942. "symfony/polyfill-mbstring": "~1.0",
  4943. "symfony/polyfill-php80": "^1.16",
  4944. "symfony/translation-contracts": "^2.3"
  4945. },
  4946. "conflict": {
  4947. "symfony/config": "<4.4",
  4948. "symfony/console": "<5.3",
  4949. "symfony/dependency-injection": "<5.0",
  4950. "symfony/http-kernel": "<5.0",
  4951. "symfony/twig-bundle": "<5.0",
  4952. "symfony/yaml": "<4.4"
  4953. },
  4954. "provide": {
  4955. "symfony/translation-implementation": "2.3"
  4956. },
  4957. "require-dev": {
  4958. "psr/log": "^1|^2|^3",
  4959. "symfony/config": "^4.4|^5.0|^6.0",
  4960. "symfony/console": "^5.4|^6.0",
  4961. "symfony/dependency-injection": "^5.0|^6.0",
  4962. "symfony/finder": "^4.4|^5.0|^6.0",
  4963. "symfony/http-client-contracts": "^1.1|^2.0|^3.0",
  4964. "symfony/http-kernel": "^5.0|^6.0",
  4965. "symfony/intl": "^4.4|^5.0|^6.0",
  4966. "symfony/polyfill-intl-icu": "^1.21",
  4967. "symfony/service-contracts": "^1.1.2|^2|^3",
  4968. "symfony/yaml": "^4.4|^5.0|^6.0"
  4969. },
  4970. "suggest": {
  4971. "psr/log-implementation": "To use logging capability in translator",
  4972. "symfony/config": "",
  4973. "symfony/yaml": ""
  4974. },
  4975. "type": "library",
  4976. "autoload": {
  4977. "files": [
  4978. "Resources/functions.php"
  4979. ],
  4980. "psr-4": {
  4981. "Symfony\\Component\\Translation\\": ""
  4982. },
  4983. "exclude-from-classmap": [
  4984. "/Tests/"
  4985. ]
  4986. },
  4987. "notification-url": "https://packagist.org/downloads/",
  4988. "license": [
  4989. "MIT"
  4990. ],
  4991. "authors": [
  4992. {
  4993. "name": "Fabien Potencier",
  4994. "email": "fabien@symfony.com"
  4995. },
  4996. {
  4997. "name": "Symfony Community",
  4998. "homepage": "https://symfony.com/contributors"
  4999. }
  5000. ],
  5001. "description": "Provides tools to internationalize your application",
  5002. "homepage": "https://symfony.com",
  5003. "support": {
  5004. "source": "https://github.com/symfony/translation/tree/v5.4.24"
  5005. },
  5006. "funding": [
  5007. {
  5008. "url": "https://symfony.com/sponsor",
  5009. "type": "custom"
  5010. },
  5011. {
  5012. "url": "https://github.com/fabpot",
  5013. "type": "github"
  5014. },
  5015. {
  5016. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5017. "type": "tidelift"
  5018. }
  5019. ],
  5020. "time": "2023-05-19T12:34:17+00:00"
  5021. },
  5022. {
  5023. "name": "symfony/translation-contracts",
  5024. "version": "v2.5.2",
  5025. "source": {
  5026. "type": "git",
  5027. "url": "https://github.com/symfony/translation-contracts.git",
  5028. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  5029. },
  5030. "dist": {
  5031. "type": "zip",
  5032. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  5033. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  5034. "shasum": ""
  5035. },
  5036. "require": {
  5037. "php": ">=7.2.5"
  5038. },
  5039. "suggest": {
  5040. "symfony/translation-implementation": ""
  5041. },
  5042. "type": "library",
  5043. "extra": {
  5044. "branch-alias": {
  5045. "dev-main": "2.5-dev"
  5046. },
  5047. "thanks": {
  5048. "name": "symfony/contracts",
  5049. "url": "https://github.com/symfony/contracts"
  5050. }
  5051. },
  5052. "autoload": {
  5053. "psr-4": {
  5054. "Symfony\\Contracts\\Translation\\": ""
  5055. }
  5056. },
  5057. "notification-url": "https://packagist.org/downloads/",
  5058. "license": [
  5059. "MIT"
  5060. ],
  5061. "authors": [
  5062. {
  5063. "name": "Nicolas Grekas",
  5064. "email": "p@tchwork.com"
  5065. },
  5066. {
  5067. "name": "Symfony Community",
  5068. "homepage": "https://symfony.com/contributors"
  5069. }
  5070. ],
  5071. "description": "Generic abstractions related to translation",
  5072. "homepage": "https://symfony.com",
  5073. "keywords": [
  5074. "abstractions",
  5075. "contracts",
  5076. "decoupling",
  5077. "interfaces",
  5078. "interoperability",
  5079. "standards"
  5080. ],
  5081. "support": {
  5082. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  5083. },
  5084. "funding": [
  5085. {
  5086. "url": "https://symfony.com/sponsor",
  5087. "type": "custom"
  5088. },
  5089. {
  5090. "url": "https://github.com/fabpot",
  5091. "type": "github"
  5092. },
  5093. {
  5094. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5095. "type": "tidelift"
  5096. }
  5097. ],
  5098. "time": "2022-06-27T16:58:25+00:00"
  5099. },
  5100. {
  5101. "name": "vlucas/phpdotenv",
  5102. "version": "v5.5.0",
  5103. "source": {
  5104. "type": "git",
  5105. "url": "https://github.com/vlucas/phpdotenv.git",
  5106. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7"
  5107. },
  5108. "dist": {
  5109. "type": "zip",
  5110. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  5111. "reference": "1a7ea2afc49c3ee6d87061f5a233e3a035d0eae7",
  5112. "shasum": ""
  5113. },
  5114. "require": {
  5115. "ext-pcre": "*",
  5116. "graham-campbell/result-type": "^1.0.2",
  5117. "php": "^7.1.3 || ^8.0",
  5118. "phpoption/phpoption": "^1.8",
  5119. "symfony/polyfill-ctype": "^1.23",
  5120. "symfony/polyfill-mbstring": "^1.23.1",
  5121. "symfony/polyfill-php80": "^1.23.1"
  5122. },
  5123. "require-dev": {
  5124. "bamarni/composer-bin-plugin": "^1.4.1",
  5125. "ext-filter": "*",
  5126. "phpunit/phpunit": "^7.5.20 || ^8.5.30 || ^9.5.25"
  5127. },
  5128. "suggest": {
  5129. "ext-filter": "Required to use the boolean validator."
  5130. },
  5131. "type": "library",
  5132. "extra": {
  5133. "bamarni-bin": {
  5134. "bin-links": true,
  5135. "forward-command": true
  5136. },
  5137. "branch-alias": {
  5138. "dev-master": "5.5-dev"
  5139. }
  5140. },
  5141. "autoload": {
  5142. "psr-4": {
  5143. "Dotenv\\": "src/"
  5144. }
  5145. },
  5146. "notification-url": "https://packagist.org/downloads/",
  5147. "license": [
  5148. "BSD-3-Clause"
  5149. ],
  5150. "authors": [
  5151. {
  5152. "name": "Graham Campbell",
  5153. "email": "hello@gjcampbell.co.uk",
  5154. "homepage": "https://github.com/GrahamCampbell"
  5155. },
  5156. {
  5157. "name": "Vance Lucas",
  5158. "email": "vance@vancelucas.com",
  5159. "homepage": "https://github.com/vlucas"
  5160. }
  5161. ],
  5162. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  5163. "keywords": [
  5164. "dotenv",
  5165. "env",
  5166. "environment"
  5167. ],
  5168. "support": {
  5169. "issues": "https://github.com/vlucas/phpdotenv/issues",
  5170. "source": "https://github.com/vlucas/phpdotenv/tree/v5.5.0"
  5171. },
  5172. "funding": [
  5173. {
  5174. "url": "https://github.com/GrahamCampbell",
  5175. "type": "github"
  5176. },
  5177. {
  5178. "url": "https://tidelift.com/funding/github/packagist/vlucas/phpdotenv",
  5179. "type": "tidelift"
  5180. }
  5181. ],
  5182. "time": "2022-10-16T01:01:54+00:00"
  5183. }
  5184. ],
  5185. "packages-dev": [
  5186. {
  5187. "name": "composer/pcre",
  5188. "version": "3.1.0",
  5189. "source": {
  5190. "type": "git",
  5191. "url": "https://github.com/composer/pcre.git",
  5192. "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2"
  5193. },
  5194. "dist": {
  5195. "type": "zip",
  5196. "url": "https://api.github.com/repos/composer/pcre/zipball/4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
  5197. "reference": "4bff79ddd77851fe3cdd11616ed3f92841ba5bd2",
  5198. "shasum": ""
  5199. },
  5200. "require": {
  5201. "php": "^7.4 || ^8.0"
  5202. },
  5203. "require-dev": {
  5204. "phpstan/phpstan": "^1.3",
  5205. "phpstan/phpstan-strict-rules": "^1.1",
  5206. "symfony/phpunit-bridge": "^5"
  5207. },
  5208. "type": "library",
  5209. "extra": {
  5210. "branch-alias": {
  5211. "dev-main": "3.x-dev"
  5212. }
  5213. },
  5214. "autoload": {
  5215. "psr-4": {
  5216. "Composer\\Pcre\\": "src"
  5217. }
  5218. },
  5219. "notification-url": "https://packagist.org/downloads/",
  5220. "license": [
  5221. "MIT"
  5222. ],
  5223. "authors": [
  5224. {
  5225. "name": "Jordi Boggiano",
  5226. "email": "j.boggiano@seld.be",
  5227. "homepage": "http://seld.be"
  5228. }
  5229. ],
  5230. "description": "PCRE wrapping library that offers type-safe preg_* replacements.",
  5231. "keywords": [
  5232. "PCRE",
  5233. "preg",
  5234. "regex",
  5235. "regular expression"
  5236. ],
  5237. "support": {
  5238. "issues": "https://github.com/composer/pcre/issues",
  5239. "source": "https://github.com/composer/pcre/tree/3.1.0"
  5240. },
  5241. "funding": [
  5242. {
  5243. "url": "https://packagist.com",
  5244. "type": "custom"
  5245. },
  5246. {
  5247. "url": "https://github.com/composer",
  5248. "type": "github"
  5249. },
  5250. {
  5251. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  5252. "type": "tidelift"
  5253. }
  5254. ],
  5255. "time": "2022-11-17T09:50:14+00:00"
  5256. },
  5257. {
  5258. "name": "composer/semver",
  5259. "version": "3.3.2",
  5260. "source": {
  5261. "type": "git",
  5262. "url": "https://github.com/composer/semver.git",
  5263. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  5264. },
  5265. "dist": {
  5266. "type": "zip",
  5267. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  5268. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  5269. "shasum": ""
  5270. },
  5271. "require": {
  5272. "php": "^5.3.2 || ^7.0 || ^8.0"
  5273. },
  5274. "require-dev": {
  5275. "phpstan/phpstan": "^1.4",
  5276. "symfony/phpunit-bridge": "^4.2 || ^5"
  5277. },
  5278. "type": "library",
  5279. "extra": {
  5280. "branch-alias": {
  5281. "dev-main": "3.x-dev"
  5282. }
  5283. },
  5284. "autoload": {
  5285. "psr-4": {
  5286. "Composer\\Semver\\": "src"
  5287. }
  5288. },
  5289. "notification-url": "https://packagist.org/downloads/",
  5290. "license": [
  5291. "MIT"
  5292. ],
  5293. "authors": [
  5294. {
  5295. "name": "Nils Adermann",
  5296. "email": "naderman@naderman.de",
  5297. "homepage": "http://www.naderman.de"
  5298. },
  5299. {
  5300. "name": "Jordi Boggiano",
  5301. "email": "j.boggiano@seld.be",
  5302. "homepage": "http://seld.be"
  5303. },
  5304. {
  5305. "name": "Rob Bast",
  5306. "email": "rob.bast@gmail.com",
  5307. "homepage": "http://robbast.nl"
  5308. }
  5309. ],
  5310. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  5311. "keywords": [
  5312. "semantic",
  5313. "semver",
  5314. "validation",
  5315. "versioning"
  5316. ],
  5317. "support": {
  5318. "irc": "irc://irc.freenode.org/composer",
  5319. "issues": "https://github.com/composer/semver/issues",
  5320. "source": "https://github.com/composer/semver/tree/3.3.2"
  5321. },
  5322. "funding": [
  5323. {
  5324. "url": "https://packagist.com",
  5325. "type": "custom"
  5326. },
  5327. {
  5328. "url": "https://github.com/composer",
  5329. "type": "github"
  5330. },
  5331. {
  5332. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  5333. "type": "tidelift"
  5334. }
  5335. ],
  5336. "time": "2022-04-01T19:23:25+00:00"
  5337. },
  5338. {
  5339. "name": "composer/xdebug-handler",
  5340. "version": "3.0.3",
  5341. "source": {
  5342. "type": "git",
  5343. "url": "https://github.com/composer/xdebug-handler.git",
  5344. "reference": "ced299686f41dce890debac69273b47ffe98a40c"
  5345. },
  5346. "dist": {
  5347. "type": "zip",
  5348. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/ced299686f41dce890debac69273b47ffe98a40c",
  5349. "reference": "ced299686f41dce890debac69273b47ffe98a40c",
  5350. "shasum": ""
  5351. },
  5352. "require": {
  5353. "composer/pcre": "^1 || ^2 || ^3",
  5354. "php": "^7.2.5 || ^8.0",
  5355. "psr/log": "^1 || ^2 || ^3"
  5356. },
  5357. "require-dev": {
  5358. "phpstan/phpstan": "^1.0",
  5359. "phpstan/phpstan-strict-rules": "^1.1",
  5360. "symfony/phpunit-bridge": "^6.0"
  5361. },
  5362. "type": "library",
  5363. "autoload": {
  5364. "psr-4": {
  5365. "Composer\\XdebugHandler\\": "src"
  5366. }
  5367. },
  5368. "notification-url": "https://packagist.org/downloads/",
  5369. "license": [
  5370. "MIT"
  5371. ],
  5372. "authors": [
  5373. {
  5374. "name": "John Stevenson",
  5375. "email": "john-stevenson@blueyonder.co.uk"
  5376. }
  5377. ],
  5378. "description": "Restarts a process without Xdebug.",
  5379. "keywords": [
  5380. "Xdebug",
  5381. "performance"
  5382. ],
  5383. "support": {
  5384. "irc": "irc://irc.freenode.org/composer",
  5385. "issues": "https://github.com/composer/xdebug-handler/issues",
  5386. "source": "https://github.com/composer/xdebug-handler/tree/3.0.3"
  5387. },
  5388. "funding": [
  5389. {
  5390. "url": "https://packagist.com",
  5391. "type": "custom"
  5392. },
  5393. {
  5394. "url": "https://github.com/composer",
  5395. "type": "github"
  5396. },
  5397. {
  5398. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  5399. "type": "tidelift"
  5400. }
  5401. ],
  5402. "time": "2022-02-25T21:32:43+00:00"
  5403. },
  5404. {
  5405. "name": "friendsofphp/php-cs-fixer",
  5406. "version": "v3.14.2",
  5407. "source": {
  5408. "type": "git",
  5409. "url": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer.git",
  5410. "reference": "14f0541651841b63640e7aafad041ad55dc7aa88"
  5411. },
  5412. "dist": {
  5413. "type": "zip",
  5414. "url": "https://api.github.com/repos/PHP-CS-Fixer/PHP-CS-Fixer/zipball/14f0541651841b63640e7aafad041ad55dc7aa88",
  5415. "reference": "14f0541651841b63640e7aafad041ad55dc7aa88",
  5416. "shasum": ""
  5417. },
  5418. "require": {
  5419. "composer/semver": "^3.3",
  5420. "composer/xdebug-handler": "^3.0.3",
  5421. "doctrine/annotations": "^1.14.2 || ^2",
  5422. "doctrine/lexer": "^2",
  5423. "ext-json": "*",
  5424. "ext-tokenizer": "*",
  5425. "php": "^7.4 || ^8.0",
  5426. "sebastian/diff": "^4.0",
  5427. "symfony/console": "^5.4 || ^6.0",
  5428. "symfony/event-dispatcher": "^5.4 || ^6.0",
  5429. "symfony/filesystem": "^5.4 || ^6.0",
  5430. "symfony/finder": "^5.4 || ^6.0",
  5431. "symfony/options-resolver": "^5.4 || ^6.0",
  5432. "symfony/polyfill-mbstring": "^1.27",
  5433. "symfony/polyfill-php80": "^1.27",
  5434. "symfony/polyfill-php81": "^1.27",
  5435. "symfony/process": "^5.4 || ^6.0",
  5436. "symfony/stopwatch": "^5.4 || ^6.0"
  5437. },
  5438. "require-dev": {
  5439. "justinrainbow/json-schema": "^5.2",
  5440. "keradus/cli-executor": "^2.0",
  5441. "mikey179/vfsstream": "^1.6.11",
  5442. "php-coveralls/php-coveralls": "^2.5.3",
  5443. "php-cs-fixer/accessible-object": "^1.1",
  5444. "php-cs-fixer/phpunit-constraint-isidenticalstring": "^1.2",
  5445. "php-cs-fixer/phpunit-constraint-xmlmatchesxsd": "^1.2.1",
  5446. "phpspec/prophecy": "^1.16",
  5447. "phpspec/prophecy-phpunit": "^2.0",
  5448. "phpunit/phpunit": "^9.5",
  5449. "phpunitgoodpractices/polyfill": "^1.6",
  5450. "phpunitgoodpractices/traits": "^1.9.2",
  5451. "symfony/phpunit-bridge": "^6.2.3",
  5452. "symfony/yaml": "^5.4 || ^6.0"
  5453. },
  5454. "suggest": {
  5455. "ext-dom": "For handling output formats in XML",
  5456. "ext-mbstring": "For handling non-UTF8 characters."
  5457. },
  5458. "bin": [
  5459. "php-cs-fixer"
  5460. ],
  5461. "type": "application",
  5462. "autoload": {
  5463. "psr-4": {
  5464. "PhpCsFixer\\": "src/"
  5465. }
  5466. },
  5467. "notification-url": "https://packagist.org/downloads/",
  5468. "license": [
  5469. "MIT"
  5470. ],
  5471. "authors": [
  5472. {
  5473. "name": "Fabien Potencier",
  5474. "email": "fabien@symfony.com"
  5475. },
  5476. {
  5477. "name": "Dariusz Rumiński",
  5478. "email": "dariusz.ruminski@gmail.com"
  5479. }
  5480. ],
  5481. "description": "A tool to automatically fix PHP code style",
  5482. "support": {
  5483. "issues": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/issues",
  5484. "source": "https://github.com/PHP-CS-Fixer/PHP-CS-Fixer/tree/v3.14.2"
  5485. },
  5486. "funding": [
  5487. {
  5488. "url": "https://github.com/keradus",
  5489. "type": "github"
  5490. }
  5491. ],
  5492. "time": "2023-01-29T23:47:01+00:00"
  5493. },
  5494. {
  5495. "name": "hamcrest/hamcrest-php",
  5496. "version": "v2.0.1",
  5497. "source": {
  5498. "type": "git",
  5499. "url": "https://github.com/hamcrest/hamcrest-php.git",
  5500. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  5501. },
  5502. "dist": {
  5503. "type": "zip",
  5504. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5505. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  5506. "shasum": ""
  5507. },
  5508. "require": {
  5509. "php": "^5.3|^7.0|^8.0"
  5510. },
  5511. "replace": {
  5512. "cordoval/hamcrest-php": "*",
  5513. "davedevelopment/hamcrest-php": "*",
  5514. "kodova/hamcrest-php": "*"
  5515. },
  5516. "require-dev": {
  5517. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  5518. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  5519. },
  5520. "type": "library",
  5521. "extra": {
  5522. "branch-alias": {
  5523. "dev-master": "2.1-dev"
  5524. }
  5525. },
  5526. "autoload": {
  5527. "classmap": [
  5528. "hamcrest"
  5529. ]
  5530. },
  5531. "notification-url": "https://packagist.org/downloads/",
  5532. "license": [
  5533. "BSD-3-Clause"
  5534. ],
  5535. "description": "This is the PHP port of Hamcrest Matchers",
  5536. "keywords": [
  5537. "test"
  5538. ],
  5539. "support": {
  5540. "issues": "https://github.com/hamcrest/hamcrest-php/issues",
  5541. "source": "https://github.com/hamcrest/hamcrest-php/tree/v2.0.1"
  5542. },
  5543. "time": "2020-07-09T08:09:16+00:00"
  5544. },
  5545. {
  5546. "name": "hyperf/devtool",
  5547. "version": "v2.2.33",
  5548. "source": {
  5549. "type": "git",
  5550. "url": "https://github.com/hyperf/devtool.git",
  5551. "reference": "f447311bf7507ff2b13658250ef3bcff7a9bc881"
  5552. },
  5553. "dist": {
  5554. "type": "zip",
  5555. "url": "https://api.github.com/repos/hyperf/devtool/zipball/f447311bf7507ff2b13658250ef3bcff7a9bc881",
  5556. "reference": "f447311bf7507ff2b13658250ef3bcff7a9bc881",
  5557. "shasum": ""
  5558. },
  5559. "require": {
  5560. "hyperf/command": "~2.2.0",
  5561. "hyperf/contract": "~2.2.0",
  5562. "hyperf/di": "~2.2.0",
  5563. "hyperf/utils": "~2.2.0",
  5564. "php": ">=7.2"
  5565. },
  5566. "type": "library",
  5567. "extra": {
  5568. "branch-alias": {
  5569. "dev-master": "2.2-dev"
  5570. },
  5571. "hyperf": {
  5572. "config": "Hyperf\\Devtool\\ConfigProvider"
  5573. }
  5574. },
  5575. "autoload": {
  5576. "psr-4": {
  5577. "Hyperf\\Devtool\\": "src/"
  5578. }
  5579. },
  5580. "notification-url": "https://packagist.org/downloads/",
  5581. "license": [
  5582. "MIT"
  5583. ],
  5584. "description": "A Devtool for Hyperf.",
  5585. "homepage": "https://hyperf.io",
  5586. "keywords": [
  5587. "devtool",
  5588. "hyperf",
  5589. "php",
  5590. "swoole"
  5591. ],
  5592. "support": {
  5593. "docs": "https://hyperf.wiki",
  5594. "issues": "https://github.com/hyperf/hyperf/issues",
  5595. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5596. "source": "https://github.com/hyperf/hyperf"
  5597. },
  5598. "time": "2022-05-24T13:10:54+00:00"
  5599. },
  5600. {
  5601. "name": "hyperf/ide-helper",
  5602. "version": "v2.2.33",
  5603. "source": {
  5604. "type": "git",
  5605. "url": "https://github.com/hyperf/ide-helper.git",
  5606. "reference": "e7e26af552f7cf5512c357df9604ff9aa77ed3f3"
  5607. },
  5608. "dist": {
  5609. "type": "zip",
  5610. "url": "https://api.github.com/repos/hyperf/ide-helper/zipball/e7e26af552f7cf5512c357df9604ff9aa77ed3f3",
  5611. "reference": "e7e26af552f7cf5512c357df9604ff9aa77ed3f3",
  5612. "shasum": ""
  5613. },
  5614. "type": "library",
  5615. "extra": {
  5616. "branch-alias": {
  5617. "dev-master": "2.2-dev"
  5618. }
  5619. },
  5620. "notification-url": "https://packagist.org/downloads/",
  5621. "license": [
  5622. "MIT"
  5623. ],
  5624. "description": "IDE help files for Hyperf.",
  5625. "homepage": "https://hyperf.io",
  5626. "keywords": [
  5627. "hyperf",
  5628. "ide-helper",
  5629. "php",
  5630. "swoole"
  5631. ],
  5632. "support": {
  5633. "docs": "https://hyperf.wiki",
  5634. "issues": "https://github.com/hyperf/hyperf/issues",
  5635. "pull-request": "https://github.com/hyperf/hyperf/pulls",
  5636. "source": "https://github.com/hyperf/hyperf"
  5637. },
  5638. "time": "2022-05-24T13:10:54+00:00"
  5639. },
  5640. {
  5641. "name": "hyperf/testing",
  5642. "version": "v2.2.33",
  5643. "source": {
  5644. "type": "git",
  5645. "url": "https://github.com/hyperf/testing.git",
  5646. "reference": "63726e3b4e999a96dd4dd62a54f8b2f8f48f850e"
  5647. },
  5648. "dist": {
  5649. "type": "zip",
  5650. "url": "https://api.github.com/repos/hyperf/testing/zipball/63726e3b4e999a96dd4dd62a54f8b2f8f48f850e",
  5651. "reference": "63726e3b4e999a96dd4dd62a54f8b2f8f48f850e",
  5652. "shasum": ""
  5653. },
  5654. "require": {
  5655. "hyperf/contract": "~2.2.0",
  5656. "hyperf/http-message": "~2.2.0",
  5657. "hyperf/http-server": "~2.2.0",
  5658. "hyperf/utils": "~2.2.0",
  5659. "php": ">=7.2",
  5660. "phpunit/phpunit": "^9.5",
  5661. "psr/container": "^1.0|^2.0"
  5662. },
  5663. "bin": [
  5664. "co-phpunit"
  5665. ],
  5666. "type": "library",
  5667. "extra": {
  5668. "branch-alias": {
  5669. "dev-master": "2.2-dev"
  5670. }
  5671. },
  5672. "autoload": {
  5673. "psr-4": {
  5674. "Hyperf\\Testing\\": "src/"
  5675. }
  5676. },
  5677. "notification-url": "https://packagist.org/downloads/",
  5678. "license": [
  5679. "MIT"
  5680. ],
  5681. "description": "Testing for hyperf",
  5682. "keywords": [
  5683. "php",
  5684. "swoole",
  5685. "testing"
  5686. ],
  5687. "support": {
  5688. "source": "https://github.com/hyperf/testing/tree/v2.2.33"
  5689. },
  5690. "time": "2022-05-24T13:10:54+00:00"
  5691. },
  5692. {
  5693. "name": "mockery/mockery",
  5694. "version": "1.6.2",
  5695. "source": {
  5696. "type": "git",
  5697. "url": "https://github.com/mockery/mockery.git",
  5698. "reference": "13a7fa2642c76c58fa2806ef7f565344c817a191"
  5699. },
  5700. "dist": {
  5701. "type": "zip",
  5702. "url": "https://api.github.com/repos/mockery/mockery/zipball/13a7fa2642c76c58fa2806ef7f565344c817a191",
  5703. "reference": "13a7fa2642c76c58fa2806ef7f565344c817a191",
  5704. "shasum": ""
  5705. },
  5706. "require": {
  5707. "hamcrest/hamcrest-php": "^2.0.1",
  5708. "lib-pcre": ">=7.0",
  5709. "php": "^7.4 || ^8.0"
  5710. },
  5711. "conflict": {
  5712. "phpunit/phpunit": "<8.0"
  5713. },
  5714. "require-dev": {
  5715. "phpunit/phpunit": "^8.5 || ^9.3",
  5716. "psalm/plugin-phpunit": "^0.18",
  5717. "vimeo/psalm": "^5.9"
  5718. },
  5719. "type": "library",
  5720. "extra": {
  5721. "branch-alias": {
  5722. "dev-main": "1.6.x-dev"
  5723. }
  5724. },
  5725. "autoload": {
  5726. "files": [
  5727. "library/helpers.php",
  5728. "library/Mockery.php"
  5729. ],
  5730. "psr-4": {
  5731. "Mockery\\": "library/Mockery"
  5732. }
  5733. },
  5734. "notification-url": "https://packagist.org/downloads/",
  5735. "license": [
  5736. "BSD-3-Clause"
  5737. ],
  5738. "authors": [
  5739. {
  5740. "name": "Pádraic Brady",
  5741. "email": "padraic.brady@gmail.com",
  5742. "homepage": "http://blog.astrumfutura.com"
  5743. },
  5744. {
  5745. "name": "Dave Marshall",
  5746. "email": "dave.marshall@atstsolutions.co.uk",
  5747. "homepage": "http://davedevelopment.co.uk"
  5748. }
  5749. ],
  5750. "description": "Mockery is a simple yet flexible PHP mock object framework",
  5751. "homepage": "https://github.com/mockery/mockery",
  5752. "keywords": [
  5753. "BDD",
  5754. "TDD",
  5755. "library",
  5756. "mock",
  5757. "mock objects",
  5758. "mockery",
  5759. "stub",
  5760. "test",
  5761. "test double",
  5762. "testing"
  5763. ],
  5764. "support": {
  5765. "issues": "https://github.com/mockery/mockery/issues",
  5766. "source": "https://github.com/mockery/mockery/tree/1.6.2"
  5767. },
  5768. "time": "2023-06-07T09:07:52+00:00"
  5769. },
  5770. {
  5771. "name": "myclabs/deep-copy",
  5772. "version": "1.11.1",
  5773. "source": {
  5774. "type": "git",
  5775. "url": "https://github.com/myclabs/DeepCopy.git",
  5776. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c"
  5777. },
  5778. "dist": {
  5779. "type": "zip",
  5780. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  5781. "reference": "7284c22080590fb39f2ffa3e9057f10a4ddd0e0c",
  5782. "shasum": ""
  5783. },
  5784. "require": {
  5785. "php": "^7.1 || ^8.0"
  5786. },
  5787. "conflict": {
  5788. "doctrine/collections": "<1.6.8",
  5789. "doctrine/common": "<2.13.3 || >=3,<3.2.2"
  5790. },
  5791. "require-dev": {
  5792. "doctrine/collections": "^1.6.8",
  5793. "doctrine/common": "^2.13.3 || ^3.2.2",
  5794. "phpunit/phpunit": "^7.5.20 || ^8.5.23 || ^9.5.13"
  5795. },
  5796. "type": "library",
  5797. "autoload": {
  5798. "files": [
  5799. "src/DeepCopy/deep_copy.php"
  5800. ],
  5801. "psr-4": {
  5802. "DeepCopy\\": "src/DeepCopy/"
  5803. }
  5804. },
  5805. "notification-url": "https://packagist.org/downloads/",
  5806. "license": [
  5807. "MIT"
  5808. ],
  5809. "description": "Create deep copies (clones) of your objects",
  5810. "keywords": [
  5811. "clone",
  5812. "copy",
  5813. "duplicate",
  5814. "object",
  5815. "object graph"
  5816. ],
  5817. "support": {
  5818. "issues": "https://github.com/myclabs/DeepCopy/issues",
  5819. "source": "https://github.com/myclabs/DeepCopy/tree/1.11.1"
  5820. },
  5821. "funding": [
  5822. {
  5823. "url": "https://tidelift.com/funding/github/packagist/myclabs/deep-copy",
  5824. "type": "tidelift"
  5825. }
  5826. ],
  5827. "time": "2023-03-08T13:26:56+00:00"
  5828. },
  5829. {
  5830. "name": "phar-io/manifest",
  5831. "version": "2.0.3",
  5832. "source": {
  5833. "type": "git",
  5834. "url": "https://github.com/phar-io/manifest.git",
  5835. "reference": "97803eca37d319dfa7826cc2437fc020857acb53"
  5836. },
  5837. "dist": {
  5838. "type": "zip",
  5839. "url": "https://api.github.com/repos/phar-io/manifest/zipball/97803eca37d319dfa7826cc2437fc020857acb53",
  5840. "reference": "97803eca37d319dfa7826cc2437fc020857acb53",
  5841. "shasum": ""
  5842. },
  5843. "require": {
  5844. "ext-dom": "*",
  5845. "ext-phar": "*",
  5846. "ext-xmlwriter": "*",
  5847. "phar-io/version": "^3.0.1",
  5848. "php": "^7.2 || ^8.0"
  5849. },
  5850. "type": "library",
  5851. "extra": {
  5852. "branch-alias": {
  5853. "dev-master": "2.0.x-dev"
  5854. }
  5855. },
  5856. "autoload": {
  5857. "classmap": [
  5858. "src/"
  5859. ]
  5860. },
  5861. "notification-url": "https://packagist.org/downloads/",
  5862. "license": [
  5863. "BSD-3-Clause"
  5864. ],
  5865. "authors": [
  5866. {
  5867. "name": "Arne Blankerts",
  5868. "email": "arne@blankerts.de",
  5869. "role": "Developer"
  5870. },
  5871. {
  5872. "name": "Sebastian Heuer",
  5873. "email": "sebastian@phpeople.de",
  5874. "role": "Developer"
  5875. },
  5876. {
  5877. "name": "Sebastian Bergmann",
  5878. "email": "sebastian@phpunit.de",
  5879. "role": "Developer"
  5880. }
  5881. ],
  5882. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  5883. "support": {
  5884. "issues": "https://github.com/phar-io/manifest/issues",
  5885. "source": "https://github.com/phar-io/manifest/tree/2.0.3"
  5886. },
  5887. "time": "2021-07-20T11:28:43+00:00"
  5888. },
  5889. {
  5890. "name": "phar-io/version",
  5891. "version": "3.2.1",
  5892. "source": {
  5893. "type": "git",
  5894. "url": "https://github.com/phar-io/version.git",
  5895. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74"
  5896. },
  5897. "dist": {
  5898. "type": "zip",
  5899. "url": "https://api.github.com/repos/phar-io/version/zipball/4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  5900. "reference": "4f7fd7836c6f332bb2933569e566a0d6c4cbed74",
  5901. "shasum": ""
  5902. },
  5903. "require": {
  5904. "php": "^7.2 || ^8.0"
  5905. },
  5906. "type": "library",
  5907. "autoload": {
  5908. "classmap": [
  5909. "src/"
  5910. ]
  5911. },
  5912. "notification-url": "https://packagist.org/downloads/",
  5913. "license": [
  5914. "BSD-3-Clause"
  5915. ],
  5916. "authors": [
  5917. {
  5918. "name": "Arne Blankerts",
  5919. "email": "arne@blankerts.de",
  5920. "role": "Developer"
  5921. },
  5922. {
  5923. "name": "Sebastian Heuer",
  5924. "email": "sebastian@phpeople.de",
  5925. "role": "Developer"
  5926. },
  5927. {
  5928. "name": "Sebastian Bergmann",
  5929. "email": "sebastian@phpunit.de",
  5930. "role": "Developer"
  5931. }
  5932. ],
  5933. "description": "Library for handling version information and constraints",
  5934. "support": {
  5935. "issues": "https://github.com/phar-io/version/issues",
  5936. "source": "https://github.com/phar-io/version/tree/3.2.1"
  5937. },
  5938. "time": "2022-02-21T01:04:05+00:00"
  5939. },
  5940. {
  5941. "name": "phpstan/phpstan",
  5942. "version": "0.12.100",
  5943. "source": {
  5944. "type": "git",
  5945. "url": "https://github.com/phpstan/phpstan.git",
  5946. "reference": "48236ddf823547081b2b153d1cd2994b784328c3"
  5947. },
  5948. "dist": {
  5949. "type": "zip",
  5950. "url": "https://api.github.com/repos/phpstan/phpstan/zipball/48236ddf823547081b2b153d1cd2994b784328c3",
  5951. "reference": "48236ddf823547081b2b153d1cd2994b784328c3",
  5952. "shasum": ""
  5953. },
  5954. "require": {
  5955. "php": "^7.1|^8.0"
  5956. },
  5957. "conflict": {
  5958. "phpstan/phpstan-shim": "*"
  5959. },
  5960. "bin": [
  5961. "phpstan",
  5962. "phpstan.phar"
  5963. ],
  5964. "type": "library",
  5965. "extra": {
  5966. "branch-alias": {
  5967. "dev-master": "0.12-dev"
  5968. }
  5969. },
  5970. "autoload": {
  5971. "files": [
  5972. "bootstrap.php"
  5973. ]
  5974. },
  5975. "notification-url": "https://packagist.org/downloads/",
  5976. "license": [
  5977. "MIT"
  5978. ],
  5979. "description": "PHPStan - PHP Static Analysis Tool",
  5980. "support": {
  5981. "issues": "https://github.com/phpstan/phpstan/issues",
  5982. "source": "https://github.com/phpstan/phpstan/tree/0.12.100"
  5983. },
  5984. "funding": [
  5985. {
  5986. "url": "https://github.com/ondrejmirtes",
  5987. "type": "github"
  5988. },
  5989. {
  5990. "url": "https://github.com/phpstan",
  5991. "type": "github"
  5992. },
  5993. {
  5994. "url": "https://tidelift.com/funding/github/packagist/phpstan/phpstan",
  5995. "type": "tidelift"
  5996. }
  5997. ],
  5998. "time": "2022-11-01T09:52:08+00:00"
  5999. },
  6000. {
  6001. "name": "phpunit/php-code-coverage",
  6002. "version": "9.2.26",
  6003. "source": {
  6004. "type": "git",
  6005. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  6006. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1"
  6007. },
  6008. "dist": {
  6009. "type": "zip",
  6010. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  6011. "reference": "443bc6912c9bd5b409254a40f4b0f4ced7c80ea1",
  6012. "shasum": ""
  6013. },
  6014. "require": {
  6015. "ext-dom": "*",
  6016. "ext-libxml": "*",
  6017. "ext-xmlwriter": "*",
  6018. "nikic/php-parser": "^4.15",
  6019. "php": ">=7.3",
  6020. "phpunit/php-file-iterator": "^3.0.3",
  6021. "phpunit/php-text-template": "^2.0.2",
  6022. "sebastian/code-unit-reverse-lookup": "^2.0.2",
  6023. "sebastian/complexity": "^2.0",
  6024. "sebastian/environment": "^5.1.2",
  6025. "sebastian/lines-of-code": "^1.0.3",
  6026. "sebastian/version": "^3.0.1",
  6027. "theseer/tokenizer": "^1.2.0"
  6028. },
  6029. "require-dev": {
  6030. "phpunit/phpunit": "^9.3"
  6031. },
  6032. "suggest": {
  6033. "ext-pcov": "PHP extension that provides line coverage",
  6034. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  6035. },
  6036. "type": "library",
  6037. "extra": {
  6038. "branch-alias": {
  6039. "dev-master": "9.2-dev"
  6040. }
  6041. },
  6042. "autoload": {
  6043. "classmap": [
  6044. "src/"
  6045. ]
  6046. },
  6047. "notification-url": "https://packagist.org/downloads/",
  6048. "license": [
  6049. "BSD-3-Clause"
  6050. ],
  6051. "authors": [
  6052. {
  6053. "name": "Sebastian Bergmann",
  6054. "email": "sebastian@phpunit.de",
  6055. "role": "lead"
  6056. }
  6057. ],
  6058. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  6059. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  6060. "keywords": [
  6061. "coverage",
  6062. "testing",
  6063. "xunit"
  6064. ],
  6065. "support": {
  6066. "issues": "https://github.com/sebastianbergmann/php-code-coverage/issues",
  6067. "source": "https://github.com/sebastianbergmann/php-code-coverage/tree/9.2.26"
  6068. },
  6069. "funding": [
  6070. {
  6071. "url": "https://github.com/sebastianbergmann",
  6072. "type": "github"
  6073. }
  6074. ],
  6075. "time": "2023-03-06T12:58:08+00:00"
  6076. },
  6077. {
  6078. "name": "phpunit/php-file-iterator",
  6079. "version": "3.0.6",
  6080. "source": {
  6081. "type": "git",
  6082. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  6083. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf"
  6084. },
  6085. "dist": {
  6086. "type": "zip",
  6087. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6088. "reference": "cf1c2e7c203ac650e352f4cc675a7021e7d1b3cf",
  6089. "shasum": ""
  6090. },
  6091. "require": {
  6092. "php": ">=7.3"
  6093. },
  6094. "require-dev": {
  6095. "phpunit/phpunit": "^9.3"
  6096. },
  6097. "type": "library",
  6098. "extra": {
  6099. "branch-alias": {
  6100. "dev-master": "3.0-dev"
  6101. }
  6102. },
  6103. "autoload": {
  6104. "classmap": [
  6105. "src/"
  6106. ]
  6107. },
  6108. "notification-url": "https://packagist.org/downloads/",
  6109. "license": [
  6110. "BSD-3-Clause"
  6111. ],
  6112. "authors": [
  6113. {
  6114. "name": "Sebastian Bergmann",
  6115. "email": "sebastian@phpunit.de",
  6116. "role": "lead"
  6117. }
  6118. ],
  6119. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  6120. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  6121. "keywords": [
  6122. "filesystem",
  6123. "iterator"
  6124. ],
  6125. "support": {
  6126. "issues": "https://github.com/sebastianbergmann/php-file-iterator/issues",
  6127. "source": "https://github.com/sebastianbergmann/php-file-iterator/tree/3.0.6"
  6128. },
  6129. "funding": [
  6130. {
  6131. "url": "https://github.com/sebastianbergmann",
  6132. "type": "github"
  6133. }
  6134. ],
  6135. "time": "2021-12-02T12:48:52+00:00"
  6136. },
  6137. {
  6138. "name": "phpunit/php-invoker",
  6139. "version": "3.1.1",
  6140. "source": {
  6141. "type": "git",
  6142. "url": "https://github.com/sebastianbergmann/php-invoker.git",
  6143. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67"
  6144. },
  6145. "dist": {
  6146. "type": "zip",
  6147. "url": "https://api.github.com/repos/sebastianbergmann/php-invoker/zipball/5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6148. "reference": "5a10147d0aaf65b58940a0b72f71c9ac0423cc67",
  6149. "shasum": ""
  6150. },
  6151. "require": {
  6152. "php": ">=7.3"
  6153. },
  6154. "require-dev": {
  6155. "ext-pcntl": "*",
  6156. "phpunit/phpunit": "^9.3"
  6157. },
  6158. "suggest": {
  6159. "ext-pcntl": "*"
  6160. },
  6161. "type": "library",
  6162. "extra": {
  6163. "branch-alias": {
  6164. "dev-master": "3.1-dev"
  6165. }
  6166. },
  6167. "autoload": {
  6168. "classmap": [
  6169. "src/"
  6170. ]
  6171. },
  6172. "notification-url": "https://packagist.org/downloads/",
  6173. "license": [
  6174. "BSD-3-Clause"
  6175. ],
  6176. "authors": [
  6177. {
  6178. "name": "Sebastian Bergmann",
  6179. "email": "sebastian@phpunit.de",
  6180. "role": "lead"
  6181. }
  6182. ],
  6183. "description": "Invoke callables with a timeout",
  6184. "homepage": "https://github.com/sebastianbergmann/php-invoker/",
  6185. "keywords": [
  6186. "process"
  6187. ],
  6188. "support": {
  6189. "issues": "https://github.com/sebastianbergmann/php-invoker/issues",
  6190. "source": "https://github.com/sebastianbergmann/php-invoker/tree/3.1.1"
  6191. },
  6192. "funding": [
  6193. {
  6194. "url": "https://github.com/sebastianbergmann",
  6195. "type": "github"
  6196. }
  6197. ],
  6198. "time": "2020-09-28T05:58:55+00:00"
  6199. },
  6200. {
  6201. "name": "phpunit/php-text-template",
  6202. "version": "2.0.4",
  6203. "source": {
  6204. "type": "git",
  6205. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  6206. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28"
  6207. },
  6208. "dist": {
  6209. "type": "zip",
  6210. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6211. "reference": "5da5f67fc95621df9ff4c4e5a84d6a8a2acf7c28",
  6212. "shasum": ""
  6213. },
  6214. "require": {
  6215. "php": ">=7.3"
  6216. },
  6217. "require-dev": {
  6218. "phpunit/phpunit": "^9.3"
  6219. },
  6220. "type": "library",
  6221. "extra": {
  6222. "branch-alias": {
  6223. "dev-master": "2.0-dev"
  6224. }
  6225. },
  6226. "autoload": {
  6227. "classmap": [
  6228. "src/"
  6229. ]
  6230. },
  6231. "notification-url": "https://packagist.org/downloads/",
  6232. "license": [
  6233. "BSD-3-Clause"
  6234. ],
  6235. "authors": [
  6236. {
  6237. "name": "Sebastian Bergmann",
  6238. "email": "sebastian@phpunit.de",
  6239. "role": "lead"
  6240. }
  6241. ],
  6242. "description": "Simple template engine.",
  6243. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  6244. "keywords": [
  6245. "template"
  6246. ],
  6247. "support": {
  6248. "issues": "https://github.com/sebastianbergmann/php-text-template/issues",
  6249. "source": "https://github.com/sebastianbergmann/php-text-template/tree/2.0.4"
  6250. },
  6251. "funding": [
  6252. {
  6253. "url": "https://github.com/sebastianbergmann",
  6254. "type": "github"
  6255. }
  6256. ],
  6257. "time": "2020-10-26T05:33:50+00:00"
  6258. },
  6259. {
  6260. "name": "phpunit/php-timer",
  6261. "version": "5.0.3",
  6262. "source": {
  6263. "type": "git",
  6264. "url": "https://github.com/sebastianbergmann/php-timer.git",
  6265. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2"
  6266. },
  6267. "dist": {
  6268. "type": "zip",
  6269. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6270. "reference": "5a63ce20ed1b5bf577850e2c4e87f4aa902afbd2",
  6271. "shasum": ""
  6272. },
  6273. "require": {
  6274. "php": ">=7.3"
  6275. },
  6276. "require-dev": {
  6277. "phpunit/phpunit": "^9.3"
  6278. },
  6279. "type": "library",
  6280. "extra": {
  6281. "branch-alias": {
  6282. "dev-master": "5.0-dev"
  6283. }
  6284. },
  6285. "autoload": {
  6286. "classmap": [
  6287. "src/"
  6288. ]
  6289. },
  6290. "notification-url": "https://packagist.org/downloads/",
  6291. "license": [
  6292. "BSD-3-Clause"
  6293. ],
  6294. "authors": [
  6295. {
  6296. "name": "Sebastian Bergmann",
  6297. "email": "sebastian@phpunit.de",
  6298. "role": "lead"
  6299. }
  6300. ],
  6301. "description": "Utility class for timing",
  6302. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  6303. "keywords": [
  6304. "timer"
  6305. ],
  6306. "support": {
  6307. "issues": "https://github.com/sebastianbergmann/php-timer/issues",
  6308. "source": "https://github.com/sebastianbergmann/php-timer/tree/5.0.3"
  6309. },
  6310. "funding": [
  6311. {
  6312. "url": "https://github.com/sebastianbergmann",
  6313. "type": "github"
  6314. }
  6315. ],
  6316. "time": "2020-10-26T13:16:10+00:00"
  6317. },
  6318. {
  6319. "name": "phpunit/phpunit",
  6320. "version": "9.6.9",
  6321. "source": {
  6322. "type": "git",
  6323. "url": "https://github.com/sebastianbergmann/phpunit.git",
  6324. "reference": "a9aceaf20a682aeacf28d582654a1670d8826778"
  6325. },
  6326. "dist": {
  6327. "type": "zip",
  6328. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/a9aceaf20a682aeacf28d582654a1670d8826778",
  6329. "reference": "a9aceaf20a682aeacf28d582654a1670d8826778",
  6330. "shasum": ""
  6331. },
  6332. "require": {
  6333. "doctrine/instantiator": "^1.3.1 || ^2",
  6334. "ext-dom": "*",
  6335. "ext-json": "*",
  6336. "ext-libxml": "*",
  6337. "ext-mbstring": "*",
  6338. "ext-xml": "*",
  6339. "ext-xmlwriter": "*",
  6340. "myclabs/deep-copy": "^1.10.1",
  6341. "phar-io/manifest": "^2.0.3",
  6342. "phar-io/version": "^3.0.2",
  6343. "php": ">=7.3",
  6344. "phpunit/php-code-coverage": "^9.2.13",
  6345. "phpunit/php-file-iterator": "^3.0.5",
  6346. "phpunit/php-invoker": "^3.1.1",
  6347. "phpunit/php-text-template": "^2.0.3",
  6348. "phpunit/php-timer": "^5.0.2",
  6349. "sebastian/cli-parser": "^1.0.1",
  6350. "sebastian/code-unit": "^1.0.6",
  6351. "sebastian/comparator": "^4.0.8",
  6352. "sebastian/diff": "^4.0.3",
  6353. "sebastian/environment": "^5.1.3",
  6354. "sebastian/exporter": "^4.0.5",
  6355. "sebastian/global-state": "^5.0.1",
  6356. "sebastian/object-enumerator": "^4.0.3",
  6357. "sebastian/resource-operations": "^3.0.3",
  6358. "sebastian/type": "^3.2",
  6359. "sebastian/version": "^3.0.2"
  6360. },
  6361. "suggest": {
  6362. "ext-soap": "To be able to generate mocks based on WSDL files",
  6363. "ext-xdebug": "PHP extension that provides line coverage as well as branch and path coverage"
  6364. },
  6365. "bin": [
  6366. "phpunit"
  6367. ],
  6368. "type": "library",
  6369. "extra": {
  6370. "branch-alias": {
  6371. "dev-master": "9.6-dev"
  6372. }
  6373. },
  6374. "autoload": {
  6375. "files": [
  6376. "src/Framework/Assert/Functions.php"
  6377. ],
  6378. "classmap": [
  6379. "src/"
  6380. ]
  6381. },
  6382. "notification-url": "https://packagist.org/downloads/",
  6383. "license": [
  6384. "BSD-3-Clause"
  6385. ],
  6386. "authors": [
  6387. {
  6388. "name": "Sebastian Bergmann",
  6389. "email": "sebastian@phpunit.de",
  6390. "role": "lead"
  6391. }
  6392. ],
  6393. "description": "The PHP Unit Testing framework.",
  6394. "homepage": "https://phpunit.de/",
  6395. "keywords": [
  6396. "phpunit",
  6397. "testing",
  6398. "xunit"
  6399. ],
  6400. "support": {
  6401. "issues": "https://github.com/sebastianbergmann/phpunit/issues",
  6402. "security": "https://github.com/sebastianbergmann/phpunit/security/policy",
  6403. "source": "https://github.com/sebastianbergmann/phpunit/tree/9.6.9"
  6404. },
  6405. "funding": [
  6406. {
  6407. "url": "https://phpunit.de/sponsors.html",
  6408. "type": "custom"
  6409. },
  6410. {
  6411. "url": "https://github.com/sebastianbergmann",
  6412. "type": "github"
  6413. },
  6414. {
  6415. "url": "https://tidelift.com/funding/github/packagist/phpunit/phpunit",
  6416. "type": "tidelift"
  6417. }
  6418. ],
  6419. "time": "2023-06-11T06:13:56+00:00"
  6420. },
  6421. {
  6422. "name": "sebastian/cli-parser",
  6423. "version": "1.0.1",
  6424. "source": {
  6425. "type": "git",
  6426. "url": "https://github.com/sebastianbergmann/cli-parser.git",
  6427. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2"
  6428. },
  6429. "dist": {
  6430. "type": "zip",
  6431. "url": "https://api.github.com/repos/sebastianbergmann/cli-parser/zipball/442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6432. "reference": "442e7c7e687e42adc03470c7b668bc4b2402c0b2",
  6433. "shasum": ""
  6434. },
  6435. "require": {
  6436. "php": ">=7.3"
  6437. },
  6438. "require-dev": {
  6439. "phpunit/phpunit": "^9.3"
  6440. },
  6441. "type": "library",
  6442. "extra": {
  6443. "branch-alias": {
  6444. "dev-master": "1.0-dev"
  6445. }
  6446. },
  6447. "autoload": {
  6448. "classmap": [
  6449. "src/"
  6450. ]
  6451. },
  6452. "notification-url": "https://packagist.org/downloads/",
  6453. "license": [
  6454. "BSD-3-Clause"
  6455. ],
  6456. "authors": [
  6457. {
  6458. "name": "Sebastian Bergmann",
  6459. "email": "sebastian@phpunit.de",
  6460. "role": "lead"
  6461. }
  6462. ],
  6463. "description": "Library for parsing CLI options",
  6464. "homepage": "https://github.com/sebastianbergmann/cli-parser",
  6465. "support": {
  6466. "issues": "https://github.com/sebastianbergmann/cli-parser/issues",
  6467. "source": "https://github.com/sebastianbergmann/cli-parser/tree/1.0.1"
  6468. },
  6469. "funding": [
  6470. {
  6471. "url": "https://github.com/sebastianbergmann",
  6472. "type": "github"
  6473. }
  6474. ],
  6475. "time": "2020-09-28T06:08:49+00:00"
  6476. },
  6477. {
  6478. "name": "sebastian/code-unit",
  6479. "version": "1.0.8",
  6480. "source": {
  6481. "type": "git",
  6482. "url": "https://github.com/sebastianbergmann/code-unit.git",
  6483. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120"
  6484. },
  6485. "dist": {
  6486. "type": "zip",
  6487. "url": "https://api.github.com/repos/sebastianbergmann/code-unit/zipball/1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6488. "reference": "1fc9f64c0927627ef78ba436c9b17d967e68e120",
  6489. "shasum": ""
  6490. },
  6491. "require": {
  6492. "php": ">=7.3"
  6493. },
  6494. "require-dev": {
  6495. "phpunit/phpunit": "^9.3"
  6496. },
  6497. "type": "library",
  6498. "extra": {
  6499. "branch-alias": {
  6500. "dev-master": "1.0-dev"
  6501. }
  6502. },
  6503. "autoload": {
  6504. "classmap": [
  6505. "src/"
  6506. ]
  6507. },
  6508. "notification-url": "https://packagist.org/downloads/",
  6509. "license": [
  6510. "BSD-3-Clause"
  6511. ],
  6512. "authors": [
  6513. {
  6514. "name": "Sebastian Bergmann",
  6515. "email": "sebastian@phpunit.de",
  6516. "role": "lead"
  6517. }
  6518. ],
  6519. "description": "Collection of value objects that represent the PHP code units",
  6520. "homepage": "https://github.com/sebastianbergmann/code-unit",
  6521. "support": {
  6522. "issues": "https://github.com/sebastianbergmann/code-unit/issues",
  6523. "source": "https://github.com/sebastianbergmann/code-unit/tree/1.0.8"
  6524. },
  6525. "funding": [
  6526. {
  6527. "url": "https://github.com/sebastianbergmann",
  6528. "type": "github"
  6529. }
  6530. ],
  6531. "time": "2020-10-26T13:08:54+00:00"
  6532. },
  6533. {
  6534. "name": "sebastian/code-unit-reverse-lookup",
  6535. "version": "2.0.3",
  6536. "source": {
  6537. "type": "git",
  6538. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  6539. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5"
  6540. },
  6541. "dist": {
  6542. "type": "zip",
  6543. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6544. "reference": "ac91f01ccec49fb77bdc6fd1e548bc70f7faa3e5",
  6545. "shasum": ""
  6546. },
  6547. "require": {
  6548. "php": ">=7.3"
  6549. },
  6550. "require-dev": {
  6551. "phpunit/phpunit": "^9.3"
  6552. },
  6553. "type": "library",
  6554. "extra": {
  6555. "branch-alias": {
  6556. "dev-master": "2.0-dev"
  6557. }
  6558. },
  6559. "autoload": {
  6560. "classmap": [
  6561. "src/"
  6562. ]
  6563. },
  6564. "notification-url": "https://packagist.org/downloads/",
  6565. "license": [
  6566. "BSD-3-Clause"
  6567. ],
  6568. "authors": [
  6569. {
  6570. "name": "Sebastian Bergmann",
  6571. "email": "sebastian@phpunit.de"
  6572. }
  6573. ],
  6574. "description": "Looks up which function or method a line of code belongs to",
  6575. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  6576. "support": {
  6577. "issues": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/issues",
  6578. "source": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/tree/2.0.3"
  6579. },
  6580. "funding": [
  6581. {
  6582. "url": "https://github.com/sebastianbergmann",
  6583. "type": "github"
  6584. }
  6585. ],
  6586. "time": "2020-09-28T05:30:19+00:00"
  6587. },
  6588. {
  6589. "name": "sebastian/comparator",
  6590. "version": "4.0.8",
  6591. "source": {
  6592. "type": "git",
  6593. "url": "https://github.com/sebastianbergmann/comparator.git",
  6594. "reference": "fa0f136dd2334583309d32b62544682ee972b51a"
  6595. },
  6596. "dist": {
  6597. "type": "zip",
  6598. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/fa0f136dd2334583309d32b62544682ee972b51a",
  6599. "reference": "fa0f136dd2334583309d32b62544682ee972b51a",
  6600. "shasum": ""
  6601. },
  6602. "require": {
  6603. "php": ">=7.3",
  6604. "sebastian/diff": "^4.0",
  6605. "sebastian/exporter": "^4.0"
  6606. },
  6607. "require-dev": {
  6608. "phpunit/phpunit": "^9.3"
  6609. },
  6610. "type": "library",
  6611. "extra": {
  6612. "branch-alias": {
  6613. "dev-master": "4.0-dev"
  6614. }
  6615. },
  6616. "autoload": {
  6617. "classmap": [
  6618. "src/"
  6619. ]
  6620. },
  6621. "notification-url": "https://packagist.org/downloads/",
  6622. "license": [
  6623. "BSD-3-Clause"
  6624. ],
  6625. "authors": [
  6626. {
  6627. "name": "Sebastian Bergmann",
  6628. "email": "sebastian@phpunit.de"
  6629. },
  6630. {
  6631. "name": "Jeff Welch",
  6632. "email": "whatthejeff@gmail.com"
  6633. },
  6634. {
  6635. "name": "Volker Dusch",
  6636. "email": "github@wallbash.com"
  6637. },
  6638. {
  6639. "name": "Bernhard Schussek",
  6640. "email": "bschussek@2bepublished.at"
  6641. }
  6642. ],
  6643. "description": "Provides the functionality to compare PHP values for equality",
  6644. "homepage": "https://github.com/sebastianbergmann/comparator",
  6645. "keywords": [
  6646. "comparator",
  6647. "compare",
  6648. "equality"
  6649. ],
  6650. "support": {
  6651. "issues": "https://github.com/sebastianbergmann/comparator/issues",
  6652. "source": "https://github.com/sebastianbergmann/comparator/tree/4.0.8"
  6653. },
  6654. "funding": [
  6655. {
  6656. "url": "https://github.com/sebastianbergmann",
  6657. "type": "github"
  6658. }
  6659. ],
  6660. "time": "2022-09-14T12:41:17+00:00"
  6661. },
  6662. {
  6663. "name": "sebastian/complexity",
  6664. "version": "2.0.2",
  6665. "source": {
  6666. "type": "git",
  6667. "url": "https://github.com/sebastianbergmann/complexity.git",
  6668. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88"
  6669. },
  6670. "dist": {
  6671. "type": "zip",
  6672. "url": "https://api.github.com/repos/sebastianbergmann/complexity/zipball/739b35e53379900cc9ac327b2147867b8b6efd88",
  6673. "reference": "739b35e53379900cc9ac327b2147867b8b6efd88",
  6674. "shasum": ""
  6675. },
  6676. "require": {
  6677. "nikic/php-parser": "^4.7",
  6678. "php": ">=7.3"
  6679. },
  6680. "require-dev": {
  6681. "phpunit/phpunit": "^9.3"
  6682. },
  6683. "type": "library",
  6684. "extra": {
  6685. "branch-alias": {
  6686. "dev-master": "2.0-dev"
  6687. }
  6688. },
  6689. "autoload": {
  6690. "classmap": [
  6691. "src/"
  6692. ]
  6693. },
  6694. "notification-url": "https://packagist.org/downloads/",
  6695. "license": [
  6696. "BSD-3-Clause"
  6697. ],
  6698. "authors": [
  6699. {
  6700. "name": "Sebastian Bergmann",
  6701. "email": "sebastian@phpunit.de",
  6702. "role": "lead"
  6703. }
  6704. ],
  6705. "description": "Library for calculating the complexity of PHP code units",
  6706. "homepage": "https://github.com/sebastianbergmann/complexity",
  6707. "support": {
  6708. "issues": "https://github.com/sebastianbergmann/complexity/issues",
  6709. "source": "https://github.com/sebastianbergmann/complexity/tree/2.0.2"
  6710. },
  6711. "funding": [
  6712. {
  6713. "url": "https://github.com/sebastianbergmann",
  6714. "type": "github"
  6715. }
  6716. ],
  6717. "time": "2020-10-26T15:52:27+00:00"
  6718. },
  6719. {
  6720. "name": "sebastian/diff",
  6721. "version": "4.0.5",
  6722. "source": {
  6723. "type": "git",
  6724. "url": "https://github.com/sebastianbergmann/diff.git",
  6725. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131"
  6726. },
  6727. "dist": {
  6728. "type": "zip",
  6729. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  6730. "reference": "74be17022044ebaaecfdf0c5cd504fc9cd5a7131",
  6731. "shasum": ""
  6732. },
  6733. "require": {
  6734. "php": ">=7.3"
  6735. },
  6736. "require-dev": {
  6737. "phpunit/phpunit": "^9.3",
  6738. "symfony/process": "^4.2 || ^5"
  6739. },
  6740. "type": "library",
  6741. "extra": {
  6742. "branch-alias": {
  6743. "dev-master": "4.0-dev"
  6744. }
  6745. },
  6746. "autoload": {
  6747. "classmap": [
  6748. "src/"
  6749. ]
  6750. },
  6751. "notification-url": "https://packagist.org/downloads/",
  6752. "license": [
  6753. "BSD-3-Clause"
  6754. ],
  6755. "authors": [
  6756. {
  6757. "name": "Sebastian Bergmann",
  6758. "email": "sebastian@phpunit.de"
  6759. },
  6760. {
  6761. "name": "Kore Nordmann",
  6762. "email": "mail@kore-nordmann.de"
  6763. }
  6764. ],
  6765. "description": "Diff implementation",
  6766. "homepage": "https://github.com/sebastianbergmann/diff",
  6767. "keywords": [
  6768. "diff",
  6769. "udiff",
  6770. "unidiff",
  6771. "unified diff"
  6772. ],
  6773. "support": {
  6774. "issues": "https://github.com/sebastianbergmann/diff/issues",
  6775. "source": "https://github.com/sebastianbergmann/diff/tree/4.0.5"
  6776. },
  6777. "funding": [
  6778. {
  6779. "url": "https://github.com/sebastianbergmann",
  6780. "type": "github"
  6781. }
  6782. ],
  6783. "time": "2023-05-07T05:35:17+00:00"
  6784. },
  6785. {
  6786. "name": "sebastian/environment",
  6787. "version": "5.1.5",
  6788. "source": {
  6789. "type": "git",
  6790. "url": "https://github.com/sebastianbergmann/environment.git",
  6791. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed"
  6792. },
  6793. "dist": {
  6794. "type": "zip",
  6795. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  6796. "reference": "830c43a844f1f8d5b7a1f6d6076b784454d8b7ed",
  6797. "shasum": ""
  6798. },
  6799. "require": {
  6800. "php": ">=7.3"
  6801. },
  6802. "require-dev": {
  6803. "phpunit/phpunit": "^9.3"
  6804. },
  6805. "suggest": {
  6806. "ext-posix": "*"
  6807. },
  6808. "type": "library",
  6809. "extra": {
  6810. "branch-alias": {
  6811. "dev-master": "5.1-dev"
  6812. }
  6813. },
  6814. "autoload": {
  6815. "classmap": [
  6816. "src/"
  6817. ]
  6818. },
  6819. "notification-url": "https://packagist.org/downloads/",
  6820. "license": [
  6821. "BSD-3-Clause"
  6822. ],
  6823. "authors": [
  6824. {
  6825. "name": "Sebastian Bergmann",
  6826. "email": "sebastian@phpunit.de"
  6827. }
  6828. ],
  6829. "description": "Provides functionality to handle HHVM/PHP environments",
  6830. "homepage": "http://www.github.com/sebastianbergmann/environment",
  6831. "keywords": [
  6832. "Xdebug",
  6833. "environment",
  6834. "hhvm"
  6835. ],
  6836. "support": {
  6837. "issues": "https://github.com/sebastianbergmann/environment/issues",
  6838. "source": "https://github.com/sebastianbergmann/environment/tree/5.1.5"
  6839. },
  6840. "funding": [
  6841. {
  6842. "url": "https://github.com/sebastianbergmann",
  6843. "type": "github"
  6844. }
  6845. ],
  6846. "time": "2023-02-03T06:03:51+00:00"
  6847. },
  6848. {
  6849. "name": "sebastian/exporter",
  6850. "version": "4.0.5",
  6851. "source": {
  6852. "type": "git",
  6853. "url": "https://github.com/sebastianbergmann/exporter.git",
  6854. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d"
  6855. },
  6856. "dist": {
  6857. "type": "zip",
  6858. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  6859. "reference": "ac230ed27f0f98f597c8a2b6eb7ac563af5e5b9d",
  6860. "shasum": ""
  6861. },
  6862. "require": {
  6863. "php": ">=7.3",
  6864. "sebastian/recursion-context": "^4.0"
  6865. },
  6866. "require-dev": {
  6867. "ext-mbstring": "*",
  6868. "phpunit/phpunit": "^9.3"
  6869. },
  6870. "type": "library",
  6871. "extra": {
  6872. "branch-alias": {
  6873. "dev-master": "4.0-dev"
  6874. }
  6875. },
  6876. "autoload": {
  6877. "classmap": [
  6878. "src/"
  6879. ]
  6880. },
  6881. "notification-url": "https://packagist.org/downloads/",
  6882. "license": [
  6883. "BSD-3-Clause"
  6884. ],
  6885. "authors": [
  6886. {
  6887. "name": "Sebastian Bergmann",
  6888. "email": "sebastian@phpunit.de"
  6889. },
  6890. {
  6891. "name": "Jeff Welch",
  6892. "email": "whatthejeff@gmail.com"
  6893. },
  6894. {
  6895. "name": "Volker Dusch",
  6896. "email": "github@wallbash.com"
  6897. },
  6898. {
  6899. "name": "Adam Harvey",
  6900. "email": "aharvey@php.net"
  6901. },
  6902. {
  6903. "name": "Bernhard Schussek",
  6904. "email": "bschussek@gmail.com"
  6905. }
  6906. ],
  6907. "description": "Provides the functionality to export PHP variables for visualization",
  6908. "homepage": "https://www.github.com/sebastianbergmann/exporter",
  6909. "keywords": [
  6910. "export",
  6911. "exporter"
  6912. ],
  6913. "support": {
  6914. "issues": "https://github.com/sebastianbergmann/exporter/issues",
  6915. "source": "https://github.com/sebastianbergmann/exporter/tree/4.0.5"
  6916. },
  6917. "funding": [
  6918. {
  6919. "url": "https://github.com/sebastianbergmann",
  6920. "type": "github"
  6921. }
  6922. ],
  6923. "time": "2022-09-14T06:03:37+00:00"
  6924. },
  6925. {
  6926. "name": "sebastian/global-state",
  6927. "version": "5.0.5",
  6928. "source": {
  6929. "type": "git",
  6930. "url": "https://github.com/sebastianbergmann/global-state.git",
  6931. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2"
  6932. },
  6933. "dist": {
  6934. "type": "zip",
  6935. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  6936. "reference": "0ca8db5a5fc9c8646244e629625ac486fa286bf2",
  6937. "shasum": ""
  6938. },
  6939. "require": {
  6940. "php": ">=7.3",
  6941. "sebastian/object-reflector": "^2.0",
  6942. "sebastian/recursion-context": "^4.0"
  6943. },
  6944. "require-dev": {
  6945. "ext-dom": "*",
  6946. "phpunit/phpunit": "^9.3"
  6947. },
  6948. "suggest": {
  6949. "ext-uopz": "*"
  6950. },
  6951. "type": "library",
  6952. "extra": {
  6953. "branch-alias": {
  6954. "dev-master": "5.0-dev"
  6955. }
  6956. },
  6957. "autoload": {
  6958. "classmap": [
  6959. "src/"
  6960. ]
  6961. },
  6962. "notification-url": "https://packagist.org/downloads/",
  6963. "license": [
  6964. "BSD-3-Clause"
  6965. ],
  6966. "authors": [
  6967. {
  6968. "name": "Sebastian Bergmann",
  6969. "email": "sebastian@phpunit.de"
  6970. }
  6971. ],
  6972. "description": "Snapshotting of global state",
  6973. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  6974. "keywords": [
  6975. "global state"
  6976. ],
  6977. "support": {
  6978. "issues": "https://github.com/sebastianbergmann/global-state/issues",
  6979. "source": "https://github.com/sebastianbergmann/global-state/tree/5.0.5"
  6980. },
  6981. "funding": [
  6982. {
  6983. "url": "https://github.com/sebastianbergmann",
  6984. "type": "github"
  6985. }
  6986. ],
  6987. "time": "2022-02-14T08:28:10+00:00"
  6988. },
  6989. {
  6990. "name": "sebastian/lines-of-code",
  6991. "version": "1.0.3",
  6992. "source": {
  6993. "type": "git",
  6994. "url": "https://github.com/sebastianbergmann/lines-of-code.git",
  6995. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc"
  6996. },
  6997. "dist": {
  6998. "type": "zip",
  6999. "url": "https://api.github.com/repos/sebastianbergmann/lines-of-code/zipball/c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7000. "reference": "c1c2e997aa3146983ed888ad08b15470a2e22ecc",
  7001. "shasum": ""
  7002. },
  7003. "require": {
  7004. "nikic/php-parser": "^4.6",
  7005. "php": ">=7.3"
  7006. },
  7007. "require-dev": {
  7008. "phpunit/phpunit": "^9.3"
  7009. },
  7010. "type": "library",
  7011. "extra": {
  7012. "branch-alias": {
  7013. "dev-master": "1.0-dev"
  7014. }
  7015. },
  7016. "autoload": {
  7017. "classmap": [
  7018. "src/"
  7019. ]
  7020. },
  7021. "notification-url": "https://packagist.org/downloads/",
  7022. "license": [
  7023. "BSD-3-Clause"
  7024. ],
  7025. "authors": [
  7026. {
  7027. "name": "Sebastian Bergmann",
  7028. "email": "sebastian@phpunit.de",
  7029. "role": "lead"
  7030. }
  7031. ],
  7032. "description": "Library for counting the lines of code in PHP source code",
  7033. "homepage": "https://github.com/sebastianbergmann/lines-of-code",
  7034. "support": {
  7035. "issues": "https://github.com/sebastianbergmann/lines-of-code/issues",
  7036. "source": "https://github.com/sebastianbergmann/lines-of-code/tree/1.0.3"
  7037. },
  7038. "funding": [
  7039. {
  7040. "url": "https://github.com/sebastianbergmann",
  7041. "type": "github"
  7042. }
  7043. ],
  7044. "time": "2020-11-28T06:42:11+00:00"
  7045. },
  7046. {
  7047. "name": "sebastian/object-enumerator",
  7048. "version": "4.0.4",
  7049. "source": {
  7050. "type": "git",
  7051. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  7052. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71"
  7053. },
  7054. "dist": {
  7055. "type": "zip",
  7056. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/5c9eeac41b290a3712d88851518825ad78f45c71",
  7057. "reference": "5c9eeac41b290a3712d88851518825ad78f45c71",
  7058. "shasum": ""
  7059. },
  7060. "require": {
  7061. "php": ">=7.3",
  7062. "sebastian/object-reflector": "^2.0",
  7063. "sebastian/recursion-context": "^4.0"
  7064. },
  7065. "require-dev": {
  7066. "phpunit/phpunit": "^9.3"
  7067. },
  7068. "type": "library",
  7069. "extra": {
  7070. "branch-alias": {
  7071. "dev-master": "4.0-dev"
  7072. }
  7073. },
  7074. "autoload": {
  7075. "classmap": [
  7076. "src/"
  7077. ]
  7078. },
  7079. "notification-url": "https://packagist.org/downloads/",
  7080. "license": [
  7081. "BSD-3-Clause"
  7082. ],
  7083. "authors": [
  7084. {
  7085. "name": "Sebastian Bergmann",
  7086. "email": "sebastian@phpunit.de"
  7087. }
  7088. ],
  7089. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  7090. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  7091. "support": {
  7092. "issues": "https://github.com/sebastianbergmann/object-enumerator/issues",
  7093. "source": "https://github.com/sebastianbergmann/object-enumerator/tree/4.0.4"
  7094. },
  7095. "funding": [
  7096. {
  7097. "url": "https://github.com/sebastianbergmann",
  7098. "type": "github"
  7099. }
  7100. ],
  7101. "time": "2020-10-26T13:12:34+00:00"
  7102. },
  7103. {
  7104. "name": "sebastian/object-reflector",
  7105. "version": "2.0.4",
  7106. "source": {
  7107. "type": "git",
  7108. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  7109. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7"
  7110. },
  7111. "dist": {
  7112. "type": "zip",
  7113. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7114. "reference": "b4f479ebdbf63ac605d183ece17d8d7fe49c15c7",
  7115. "shasum": ""
  7116. },
  7117. "require": {
  7118. "php": ">=7.3"
  7119. },
  7120. "require-dev": {
  7121. "phpunit/phpunit": "^9.3"
  7122. },
  7123. "type": "library",
  7124. "extra": {
  7125. "branch-alias": {
  7126. "dev-master": "2.0-dev"
  7127. }
  7128. },
  7129. "autoload": {
  7130. "classmap": [
  7131. "src/"
  7132. ]
  7133. },
  7134. "notification-url": "https://packagist.org/downloads/",
  7135. "license": [
  7136. "BSD-3-Clause"
  7137. ],
  7138. "authors": [
  7139. {
  7140. "name": "Sebastian Bergmann",
  7141. "email": "sebastian@phpunit.de"
  7142. }
  7143. ],
  7144. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  7145. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  7146. "support": {
  7147. "issues": "https://github.com/sebastianbergmann/object-reflector/issues",
  7148. "source": "https://github.com/sebastianbergmann/object-reflector/tree/2.0.4"
  7149. },
  7150. "funding": [
  7151. {
  7152. "url": "https://github.com/sebastianbergmann",
  7153. "type": "github"
  7154. }
  7155. ],
  7156. "time": "2020-10-26T13:14:26+00:00"
  7157. },
  7158. {
  7159. "name": "sebastian/recursion-context",
  7160. "version": "4.0.5",
  7161. "source": {
  7162. "type": "git",
  7163. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  7164. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1"
  7165. },
  7166. "dist": {
  7167. "type": "zip",
  7168. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  7169. "reference": "e75bd0f07204fec2a0af9b0f3cfe97d05f92efc1",
  7170. "shasum": ""
  7171. },
  7172. "require": {
  7173. "php": ">=7.3"
  7174. },
  7175. "require-dev": {
  7176. "phpunit/phpunit": "^9.3"
  7177. },
  7178. "type": "library",
  7179. "extra": {
  7180. "branch-alias": {
  7181. "dev-master": "4.0-dev"
  7182. }
  7183. },
  7184. "autoload": {
  7185. "classmap": [
  7186. "src/"
  7187. ]
  7188. },
  7189. "notification-url": "https://packagist.org/downloads/",
  7190. "license": [
  7191. "BSD-3-Clause"
  7192. ],
  7193. "authors": [
  7194. {
  7195. "name": "Sebastian Bergmann",
  7196. "email": "sebastian@phpunit.de"
  7197. },
  7198. {
  7199. "name": "Jeff Welch",
  7200. "email": "whatthejeff@gmail.com"
  7201. },
  7202. {
  7203. "name": "Adam Harvey",
  7204. "email": "aharvey@php.net"
  7205. }
  7206. ],
  7207. "description": "Provides functionality to recursively process PHP variables",
  7208. "homepage": "https://github.com/sebastianbergmann/recursion-context",
  7209. "support": {
  7210. "issues": "https://github.com/sebastianbergmann/recursion-context/issues",
  7211. "source": "https://github.com/sebastianbergmann/recursion-context/tree/4.0.5"
  7212. },
  7213. "funding": [
  7214. {
  7215. "url": "https://github.com/sebastianbergmann",
  7216. "type": "github"
  7217. }
  7218. ],
  7219. "time": "2023-02-03T06:07:39+00:00"
  7220. },
  7221. {
  7222. "name": "sebastian/resource-operations",
  7223. "version": "3.0.3",
  7224. "source": {
  7225. "type": "git",
  7226. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  7227. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8"
  7228. },
  7229. "dist": {
  7230. "type": "zip",
  7231. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7232. "reference": "0f4443cb3a1d92ce809899753bc0d5d5a8dd19a8",
  7233. "shasum": ""
  7234. },
  7235. "require": {
  7236. "php": ">=7.3"
  7237. },
  7238. "require-dev": {
  7239. "phpunit/phpunit": "^9.0"
  7240. },
  7241. "type": "library",
  7242. "extra": {
  7243. "branch-alias": {
  7244. "dev-master": "3.0-dev"
  7245. }
  7246. },
  7247. "autoload": {
  7248. "classmap": [
  7249. "src/"
  7250. ]
  7251. },
  7252. "notification-url": "https://packagist.org/downloads/",
  7253. "license": [
  7254. "BSD-3-Clause"
  7255. ],
  7256. "authors": [
  7257. {
  7258. "name": "Sebastian Bergmann",
  7259. "email": "sebastian@phpunit.de"
  7260. }
  7261. ],
  7262. "description": "Provides a list of PHP built-in functions that operate on resources",
  7263. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  7264. "support": {
  7265. "issues": "https://github.com/sebastianbergmann/resource-operations/issues",
  7266. "source": "https://github.com/sebastianbergmann/resource-operations/tree/3.0.3"
  7267. },
  7268. "funding": [
  7269. {
  7270. "url": "https://github.com/sebastianbergmann",
  7271. "type": "github"
  7272. }
  7273. ],
  7274. "time": "2020-09-28T06:45:17+00:00"
  7275. },
  7276. {
  7277. "name": "sebastian/type",
  7278. "version": "3.2.1",
  7279. "source": {
  7280. "type": "git",
  7281. "url": "https://github.com/sebastianbergmann/type.git",
  7282. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7"
  7283. },
  7284. "dist": {
  7285. "type": "zip",
  7286. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  7287. "reference": "75e2c2a32f5e0b3aef905b9ed0b179b953b3d7c7",
  7288. "shasum": ""
  7289. },
  7290. "require": {
  7291. "php": ">=7.3"
  7292. },
  7293. "require-dev": {
  7294. "phpunit/phpunit": "^9.5"
  7295. },
  7296. "type": "library",
  7297. "extra": {
  7298. "branch-alias": {
  7299. "dev-master": "3.2-dev"
  7300. }
  7301. },
  7302. "autoload": {
  7303. "classmap": [
  7304. "src/"
  7305. ]
  7306. },
  7307. "notification-url": "https://packagist.org/downloads/",
  7308. "license": [
  7309. "BSD-3-Clause"
  7310. ],
  7311. "authors": [
  7312. {
  7313. "name": "Sebastian Bergmann",
  7314. "email": "sebastian@phpunit.de",
  7315. "role": "lead"
  7316. }
  7317. ],
  7318. "description": "Collection of value objects that represent the types of the PHP type system",
  7319. "homepage": "https://github.com/sebastianbergmann/type",
  7320. "support": {
  7321. "issues": "https://github.com/sebastianbergmann/type/issues",
  7322. "source": "https://github.com/sebastianbergmann/type/tree/3.2.1"
  7323. },
  7324. "funding": [
  7325. {
  7326. "url": "https://github.com/sebastianbergmann",
  7327. "type": "github"
  7328. }
  7329. ],
  7330. "time": "2023-02-03T06:13:03+00:00"
  7331. },
  7332. {
  7333. "name": "sebastian/version",
  7334. "version": "3.0.2",
  7335. "source": {
  7336. "type": "git",
  7337. "url": "https://github.com/sebastianbergmann/version.git",
  7338. "reference": "c6c1022351a901512170118436c764e473f6de8c"
  7339. },
  7340. "dist": {
  7341. "type": "zip",
  7342. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/c6c1022351a901512170118436c764e473f6de8c",
  7343. "reference": "c6c1022351a901512170118436c764e473f6de8c",
  7344. "shasum": ""
  7345. },
  7346. "require": {
  7347. "php": ">=7.3"
  7348. },
  7349. "type": "library",
  7350. "extra": {
  7351. "branch-alias": {
  7352. "dev-master": "3.0-dev"
  7353. }
  7354. },
  7355. "autoload": {
  7356. "classmap": [
  7357. "src/"
  7358. ]
  7359. },
  7360. "notification-url": "https://packagist.org/downloads/",
  7361. "license": [
  7362. "BSD-3-Clause"
  7363. ],
  7364. "authors": [
  7365. {
  7366. "name": "Sebastian Bergmann",
  7367. "email": "sebastian@phpunit.de",
  7368. "role": "lead"
  7369. }
  7370. ],
  7371. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  7372. "homepage": "https://github.com/sebastianbergmann/version",
  7373. "support": {
  7374. "issues": "https://github.com/sebastianbergmann/version/issues",
  7375. "source": "https://github.com/sebastianbergmann/version/tree/3.0.2"
  7376. },
  7377. "funding": [
  7378. {
  7379. "url": "https://github.com/sebastianbergmann",
  7380. "type": "github"
  7381. }
  7382. ],
  7383. "time": "2020-09-28T06:39:44+00:00"
  7384. },
  7385. {
  7386. "name": "swoole/ide-helper",
  7387. "version": "4.8.13",
  7388. "source": {
  7389. "type": "git",
  7390. "url": "https://github.com/swoole/ide-helper.git",
  7391. "reference": "d100c446b2e3d56430cbcab5dc3fa20a9f35c4ef"
  7392. },
  7393. "dist": {
  7394. "type": "zip",
  7395. "url": "https://api.github.com/repos/swoole/ide-helper/zipball/d100c446b2e3d56430cbcab5dc3fa20a9f35c4ef",
  7396. "reference": "d100c446b2e3d56430cbcab5dc3fa20a9f35c4ef",
  7397. "shasum": ""
  7398. },
  7399. "type": "library",
  7400. "notification-url": "https://packagist.org/downloads/",
  7401. "license": [
  7402. "Apache-2.0"
  7403. ],
  7404. "authors": [
  7405. {
  7406. "name": "Team Swoole",
  7407. "email": "team@swoole.com"
  7408. }
  7409. ],
  7410. "description": "IDE help files for Swoole.",
  7411. "support": {
  7412. "issues": "https://github.com/swoole/ide-helper/issues",
  7413. "source": "https://github.com/swoole/ide-helper/tree/4.8.13"
  7414. },
  7415. "time": "2023-03-20T06:46:24+00:00"
  7416. },
  7417. {
  7418. "name": "symfony/event-dispatcher",
  7419. "version": "v5.4.22",
  7420. "source": {
  7421. "type": "git",
  7422. "url": "https://github.com/symfony/event-dispatcher.git",
  7423. "reference": "1df20e45d56da29a4b1d8259dd6e950acbf1b13f"
  7424. },
  7425. "dist": {
  7426. "type": "zip",
  7427. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/1df20e45d56da29a4b1d8259dd6e950acbf1b13f",
  7428. "reference": "1df20e45d56da29a4b1d8259dd6e950acbf1b13f",
  7429. "shasum": ""
  7430. },
  7431. "require": {
  7432. "php": ">=7.2.5",
  7433. "symfony/deprecation-contracts": "^2.1|^3",
  7434. "symfony/event-dispatcher-contracts": "^2|^3",
  7435. "symfony/polyfill-php80": "^1.16"
  7436. },
  7437. "conflict": {
  7438. "symfony/dependency-injection": "<4.4"
  7439. },
  7440. "provide": {
  7441. "psr/event-dispatcher-implementation": "1.0",
  7442. "symfony/event-dispatcher-implementation": "2.0"
  7443. },
  7444. "require-dev": {
  7445. "psr/log": "^1|^2|^3",
  7446. "symfony/config": "^4.4|^5.0|^6.0",
  7447. "symfony/dependency-injection": "^4.4|^5.0|^6.0",
  7448. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7449. "symfony/expression-language": "^4.4|^5.0|^6.0",
  7450. "symfony/http-foundation": "^4.4|^5.0|^6.0",
  7451. "symfony/service-contracts": "^1.1|^2|^3",
  7452. "symfony/stopwatch": "^4.4|^5.0|^6.0"
  7453. },
  7454. "suggest": {
  7455. "symfony/dependency-injection": "",
  7456. "symfony/http-kernel": ""
  7457. },
  7458. "type": "library",
  7459. "autoload": {
  7460. "psr-4": {
  7461. "Symfony\\Component\\EventDispatcher\\": ""
  7462. },
  7463. "exclude-from-classmap": [
  7464. "/Tests/"
  7465. ]
  7466. },
  7467. "notification-url": "https://packagist.org/downloads/",
  7468. "license": [
  7469. "MIT"
  7470. ],
  7471. "authors": [
  7472. {
  7473. "name": "Fabien Potencier",
  7474. "email": "fabien@symfony.com"
  7475. },
  7476. {
  7477. "name": "Symfony Community",
  7478. "homepage": "https://symfony.com/contributors"
  7479. }
  7480. ],
  7481. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  7482. "homepage": "https://symfony.com",
  7483. "support": {
  7484. "source": "https://github.com/symfony/event-dispatcher/tree/v5.4.22"
  7485. },
  7486. "funding": [
  7487. {
  7488. "url": "https://symfony.com/sponsor",
  7489. "type": "custom"
  7490. },
  7491. {
  7492. "url": "https://github.com/fabpot",
  7493. "type": "github"
  7494. },
  7495. {
  7496. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7497. "type": "tidelift"
  7498. }
  7499. ],
  7500. "time": "2023-03-17T11:31:58+00:00"
  7501. },
  7502. {
  7503. "name": "symfony/event-dispatcher-contracts",
  7504. "version": "v2.5.2",
  7505. "source": {
  7506. "type": "git",
  7507. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  7508. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1"
  7509. },
  7510. "dist": {
  7511. "type": "zip",
  7512. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/f98b54df6ad059855739db6fcbc2d36995283fe1",
  7513. "reference": "f98b54df6ad059855739db6fcbc2d36995283fe1",
  7514. "shasum": ""
  7515. },
  7516. "require": {
  7517. "php": ">=7.2.5",
  7518. "psr/event-dispatcher": "^1"
  7519. },
  7520. "suggest": {
  7521. "symfony/event-dispatcher-implementation": ""
  7522. },
  7523. "type": "library",
  7524. "extra": {
  7525. "branch-alias": {
  7526. "dev-main": "2.5-dev"
  7527. },
  7528. "thanks": {
  7529. "name": "symfony/contracts",
  7530. "url": "https://github.com/symfony/contracts"
  7531. }
  7532. },
  7533. "autoload": {
  7534. "psr-4": {
  7535. "Symfony\\Contracts\\EventDispatcher\\": ""
  7536. }
  7537. },
  7538. "notification-url": "https://packagist.org/downloads/",
  7539. "license": [
  7540. "MIT"
  7541. ],
  7542. "authors": [
  7543. {
  7544. "name": "Nicolas Grekas",
  7545. "email": "p@tchwork.com"
  7546. },
  7547. {
  7548. "name": "Symfony Community",
  7549. "homepage": "https://symfony.com/contributors"
  7550. }
  7551. ],
  7552. "description": "Generic abstractions related to dispatching event",
  7553. "homepage": "https://symfony.com",
  7554. "keywords": [
  7555. "abstractions",
  7556. "contracts",
  7557. "decoupling",
  7558. "interfaces",
  7559. "interoperability",
  7560. "standards"
  7561. ],
  7562. "support": {
  7563. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v2.5.2"
  7564. },
  7565. "funding": [
  7566. {
  7567. "url": "https://symfony.com/sponsor",
  7568. "type": "custom"
  7569. },
  7570. {
  7571. "url": "https://github.com/fabpot",
  7572. "type": "github"
  7573. },
  7574. {
  7575. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7576. "type": "tidelift"
  7577. }
  7578. ],
  7579. "time": "2022-01-02T09:53:40+00:00"
  7580. },
  7581. {
  7582. "name": "symfony/filesystem",
  7583. "version": "v5.4.25",
  7584. "source": {
  7585. "type": "git",
  7586. "url": "https://github.com/symfony/filesystem.git",
  7587. "reference": "0ce3a62c9579a53358d3a7eb6b3dfb79789a6364"
  7588. },
  7589. "dist": {
  7590. "type": "zip",
  7591. "url": "https://api.github.com/repos/symfony/filesystem/zipball/0ce3a62c9579a53358d3a7eb6b3dfb79789a6364",
  7592. "reference": "0ce3a62c9579a53358d3a7eb6b3dfb79789a6364",
  7593. "shasum": ""
  7594. },
  7595. "require": {
  7596. "php": ">=7.2.5",
  7597. "symfony/polyfill-ctype": "~1.8",
  7598. "symfony/polyfill-mbstring": "~1.8",
  7599. "symfony/polyfill-php80": "^1.16"
  7600. },
  7601. "type": "library",
  7602. "autoload": {
  7603. "psr-4": {
  7604. "Symfony\\Component\\Filesystem\\": ""
  7605. },
  7606. "exclude-from-classmap": [
  7607. "/Tests/"
  7608. ]
  7609. },
  7610. "notification-url": "https://packagist.org/downloads/",
  7611. "license": [
  7612. "MIT"
  7613. ],
  7614. "authors": [
  7615. {
  7616. "name": "Fabien Potencier",
  7617. "email": "fabien@symfony.com"
  7618. },
  7619. {
  7620. "name": "Symfony Community",
  7621. "homepage": "https://symfony.com/contributors"
  7622. }
  7623. ],
  7624. "description": "Provides basic utilities for the filesystem",
  7625. "homepage": "https://symfony.com",
  7626. "support": {
  7627. "source": "https://github.com/symfony/filesystem/tree/v5.4.25"
  7628. },
  7629. "funding": [
  7630. {
  7631. "url": "https://symfony.com/sponsor",
  7632. "type": "custom"
  7633. },
  7634. {
  7635. "url": "https://github.com/fabpot",
  7636. "type": "github"
  7637. },
  7638. {
  7639. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7640. "type": "tidelift"
  7641. }
  7642. ],
  7643. "time": "2023-05-31T13:04:02+00:00"
  7644. },
  7645. {
  7646. "name": "symfony/options-resolver",
  7647. "version": "v5.4.21",
  7648. "source": {
  7649. "type": "git",
  7650. "url": "https://github.com/symfony/options-resolver.git",
  7651. "reference": "4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9"
  7652. },
  7653. "dist": {
  7654. "type": "zip",
  7655. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9",
  7656. "reference": "4fe5cf6ede71096839f0e4b4444d65dd3a7c1eb9",
  7657. "shasum": ""
  7658. },
  7659. "require": {
  7660. "php": ">=7.2.5",
  7661. "symfony/deprecation-contracts": "^2.1|^3",
  7662. "symfony/polyfill-php73": "~1.0",
  7663. "symfony/polyfill-php80": "^1.16"
  7664. },
  7665. "type": "library",
  7666. "autoload": {
  7667. "psr-4": {
  7668. "Symfony\\Component\\OptionsResolver\\": ""
  7669. },
  7670. "exclude-from-classmap": [
  7671. "/Tests/"
  7672. ]
  7673. },
  7674. "notification-url": "https://packagist.org/downloads/",
  7675. "license": [
  7676. "MIT"
  7677. ],
  7678. "authors": [
  7679. {
  7680. "name": "Fabien Potencier",
  7681. "email": "fabien@symfony.com"
  7682. },
  7683. {
  7684. "name": "Symfony Community",
  7685. "homepage": "https://symfony.com/contributors"
  7686. }
  7687. ],
  7688. "description": "Provides an improved replacement for the array_replace PHP function",
  7689. "homepage": "https://symfony.com",
  7690. "keywords": [
  7691. "config",
  7692. "configuration",
  7693. "options"
  7694. ],
  7695. "support": {
  7696. "source": "https://github.com/symfony/options-resolver/tree/v5.4.21"
  7697. },
  7698. "funding": [
  7699. {
  7700. "url": "https://symfony.com/sponsor",
  7701. "type": "custom"
  7702. },
  7703. {
  7704. "url": "https://github.com/fabpot",
  7705. "type": "github"
  7706. },
  7707. {
  7708. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7709. "type": "tidelift"
  7710. }
  7711. ],
  7712. "time": "2023-02-14T08:03:56+00:00"
  7713. },
  7714. {
  7715. "name": "symfony/polyfill-php81",
  7716. "version": "v1.27.0",
  7717. "source": {
  7718. "type": "git",
  7719. "url": "https://github.com/symfony/polyfill-php81.git",
  7720. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a"
  7721. },
  7722. "dist": {
  7723. "type": "zip",
  7724. "url": "https://api.github.com/repos/symfony/polyfill-php81/zipball/707403074c8ea6e2edaf8794b0157a0bfa52157a",
  7725. "reference": "707403074c8ea6e2edaf8794b0157a0bfa52157a",
  7726. "shasum": ""
  7727. },
  7728. "require": {
  7729. "php": ">=7.1"
  7730. },
  7731. "type": "library",
  7732. "extra": {
  7733. "branch-alias": {
  7734. "dev-main": "1.27-dev"
  7735. },
  7736. "thanks": {
  7737. "name": "symfony/polyfill",
  7738. "url": "https://github.com/symfony/polyfill"
  7739. }
  7740. },
  7741. "autoload": {
  7742. "files": [
  7743. "bootstrap.php"
  7744. ],
  7745. "psr-4": {
  7746. "Symfony\\Polyfill\\Php81\\": ""
  7747. },
  7748. "classmap": [
  7749. "Resources/stubs"
  7750. ]
  7751. },
  7752. "notification-url": "https://packagist.org/downloads/",
  7753. "license": [
  7754. "MIT"
  7755. ],
  7756. "authors": [
  7757. {
  7758. "name": "Nicolas Grekas",
  7759. "email": "p@tchwork.com"
  7760. },
  7761. {
  7762. "name": "Symfony Community",
  7763. "homepage": "https://symfony.com/contributors"
  7764. }
  7765. ],
  7766. "description": "Symfony polyfill backporting some PHP 8.1+ features to lower PHP versions",
  7767. "homepage": "https://symfony.com",
  7768. "keywords": [
  7769. "compatibility",
  7770. "polyfill",
  7771. "portable",
  7772. "shim"
  7773. ],
  7774. "support": {
  7775. "source": "https://github.com/symfony/polyfill-php81/tree/v1.27.0"
  7776. },
  7777. "funding": [
  7778. {
  7779. "url": "https://symfony.com/sponsor",
  7780. "type": "custom"
  7781. },
  7782. {
  7783. "url": "https://github.com/fabpot",
  7784. "type": "github"
  7785. },
  7786. {
  7787. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7788. "type": "tidelift"
  7789. }
  7790. ],
  7791. "time": "2022-11-03T14:55:06+00:00"
  7792. },
  7793. {
  7794. "name": "symfony/process",
  7795. "version": "v5.4.24",
  7796. "source": {
  7797. "type": "git",
  7798. "url": "https://github.com/symfony/process.git",
  7799. "reference": "e3c46cc5689c8782944274bb30702106ecbe3b64"
  7800. },
  7801. "dist": {
  7802. "type": "zip",
  7803. "url": "https://api.github.com/repos/symfony/process/zipball/e3c46cc5689c8782944274bb30702106ecbe3b64",
  7804. "reference": "e3c46cc5689c8782944274bb30702106ecbe3b64",
  7805. "shasum": ""
  7806. },
  7807. "require": {
  7808. "php": ">=7.2.5",
  7809. "symfony/polyfill-php80": "^1.16"
  7810. },
  7811. "type": "library",
  7812. "autoload": {
  7813. "psr-4": {
  7814. "Symfony\\Component\\Process\\": ""
  7815. },
  7816. "exclude-from-classmap": [
  7817. "/Tests/"
  7818. ]
  7819. },
  7820. "notification-url": "https://packagist.org/downloads/",
  7821. "license": [
  7822. "MIT"
  7823. ],
  7824. "authors": [
  7825. {
  7826. "name": "Fabien Potencier",
  7827. "email": "fabien@symfony.com"
  7828. },
  7829. {
  7830. "name": "Symfony Community",
  7831. "homepage": "https://symfony.com/contributors"
  7832. }
  7833. ],
  7834. "description": "Executes commands in sub-processes",
  7835. "homepage": "https://symfony.com",
  7836. "support": {
  7837. "source": "https://github.com/symfony/process/tree/v5.4.24"
  7838. },
  7839. "funding": [
  7840. {
  7841. "url": "https://symfony.com/sponsor",
  7842. "type": "custom"
  7843. },
  7844. {
  7845. "url": "https://github.com/fabpot",
  7846. "type": "github"
  7847. },
  7848. {
  7849. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7850. "type": "tidelift"
  7851. }
  7852. ],
  7853. "time": "2023-05-17T11:26:05+00:00"
  7854. },
  7855. {
  7856. "name": "symfony/stopwatch",
  7857. "version": "v5.4.21",
  7858. "source": {
  7859. "type": "git",
  7860. "url": "https://github.com/symfony/stopwatch.git",
  7861. "reference": "f83692cd869a6f2391691d40a01e8acb89e76fee"
  7862. },
  7863. "dist": {
  7864. "type": "zip",
  7865. "url": "https://api.github.com/repos/symfony/stopwatch/zipball/f83692cd869a6f2391691d40a01e8acb89e76fee",
  7866. "reference": "f83692cd869a6f2391691d40a01e8acb89e76fee",
  7867. "shasum": ""
  7868. },
  7869. "require": {
  7870. "php": ">=7.2.5",
  7871. "symfony/service-contracts": "^1|^2|^3"
  7872. },
  7873. "type": "library",
  7874. "autoload": {
  7875. "psr-4": {
  7876. "Symfony\\Component\\Stopwatch\\": ""
  7877. },
  7878. "exclude-from-classmap": [
  7879. "/Tests/"
  7880. ]
  7881. },
  7882. "notification-url": "https://packagist.org/downloads/",
  7883. "license": [
  7884. "MIT"
  7885. ],
  7886. "authors": [
  7887. {
  7888. "name": "Fabien Potencier",
  7889. "email": "fabien@symfony.com"
  7890. },
  7891. {
  7892. "name": "Symfony Community",
  7893. "homepage": "https://symfony.com/contributors"
  7894. }
  7895. ],
  7896. "description": "Provides a way to profile code",
  7897. "homepage": "https://symfony.com",
  7898. "support": {
  7899. "source": "https://github.com/symfony/stopwatch/tree/v5.4.21"
  7900. },
  7901. "funding": [
  7902. {
  7903. "url": "https://symfony.com/sponsor",
  7904. "type": "custom"
  7905. },
  7906. {
  7907. "url": "https://github.com/fabpot",
  7908. "type": "github"
  7909. },
  7910. {
  7911. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7912. "type": "tidelift"
  7913. }
  7914. ],
  7915. "time": "2023-02-14T08:03:56+00:00"
  7916. },
  7917. {
  7918. "name": "theseer/tokenizer",
  7919. "version": "1.2.1",
  7920. "source": {
  7921. "type": "git",
  7922. "url": "https://github.com/theseer/tokenizer.git",
  7923. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e"
  7924. },
  7925. "dist": {
  7926. "type": "zip",
  7927. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/34a41e998c2183e22995f158c581e7b5e755ab9e",
  7928. "reference": "34a41e998c2183e22995f158c581e7b5e755ab9e",
  7929. "shasum": ""
  7930. },
  7931. "require": {
  7932. "ext-dom": "*",
  7933. "ext-tokenizer": "*",
  7934. "ext-xmlwriter": "*",
  7935. "php": "^7.2 || ^8.0"
  7936. },
  7937. "type": "library",
  7938. "autoload": {
  7939. "classmap": [
  7940. "src/"
  7941. ]
  7942. },
  7943. "notification-url": "https://packagist.org/downloads/",
  7944. "license": [
  7945. "BSD-3-Clause"
  7946. ],
  7947. "authors": [
  7948. {
  7949. "name": "Arne Blankerts",
  7950. "email": "arne@blankerts.de",
  7951. "role": "Developer"
  7952. }
  7953. ],
  7954. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  7955. "support": {
  7956. "issues": "https://github.com/theseer/tokenizer/issues",
  7957. "source": "https://github.com/theseer/tokenizer/tree/1.2.1"
  7958. },
  7959. "funding": [
  7960. {
  7961. "url": "https://github.com/theseer",
  7962. "type": "github"
  7963. }
  7964. ],
  7965. "time": "2021-07-28T10:34:58+00:00"
  7966. }
  7967. ],
  7968. "aliases": [],
  7969. "minimum-stability": "dev",
  7970. "stability-flags": [],
  7971. "prefer-stable": true,
  7972. "prefer-lowest": false,
  7973. "platform": {
  7974. "php": ">=7.3"
  7975. },
  7976. "platform-dev": [],
  7977. "plugin-api-version": "2.0.0"
  7978. }