No Description

composer.lock 267KB

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