composer.lock 244 KB

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