composer.lock 275 KB

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