composer.lock 353 KB

1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162636465666768697071727374757677787980818283848586878889909192939495969798991001011021031041051061071081091101111121131141151161171181191201211221231241251261271281291301311321331341351361371381391401411421431441451461471481491501511521531541551561571581591601611621631641651661671681691701711721731741751761771781791801811821831841851861871881891901911921931941951961971981992002012022032042052062072082092102112122132142152162172182192202212222232242252262272282292302312322332342352362372382392402412422432442452462472482492502512522532542552562572582592602612622632642652662672682692702712722732742752762772782792802812822832842852862872882892902912922932942952962972982993003013023033043053063073083093103113123133143153163173183193203213223233243253263273283293303313323333343353363373383393403413423433443453463473483493503513523533543553563573583593603613623633643653663673683693703713723733743753763773783793803813823833843853863873883893903913923933943953963973983994004014024034044054064074084094104114124134144154164174184194204214224234244254264274284294304314324334344354364374384394404414424434444454464474484494504514524534544554564574584594604614624634644654664674684694704714724734744754764774784794804814824834844854864874884894904914924934944954964974984995005015025035045055065075085095105115125135145155165175185195205215225235245255265275285295305315325335345355365375385395405415425435445455465475485495505515525535545555565575585595605615625635645655665675685695705715725735745755765775785795805815825835845855865875885895905915925935945955965975985996006016026036046056066076086096106116126136146156166176186196206216226236246256266276286296306316326336346356366376386396406416426436446456466476486496506516526536546556566576586596606616626636646656666676686696706716726736746756766776786796806816826836846856866876886896906916926936946956966976986997007017027037047057067077087097107117127137147157167177187197207217227237247257267277287297307317327337347357367377387397407417427437447457467477487497507517527537547557567577587597607617627637647657667677687697707717727737747757767777787797807817827837847857867877887897907917927937947957967977987998008018028038048058068078088098108118128138148158168178188198208218228238248258268278288298308318328338348358368378388398408418428438448458468478488498508518528538548558568578588598608618628638648658668678688698708718728738748758768778788798808818828838848858868878888898908918928938948958968978988999009019029039049059069079089099109119129139149159169179189199209219229239249259269279289299309319329339349359369379389399409419429439449459469479489499509519529539549559569579589599609619629639649659669679689699709719729739749759769779789799809819829839849859869879889899909919929939949959969979989991000100110021003100410051006100710081009101010111012101310141015101610171018101910201021102210231024102510261027102810291030103110321033103410351036103710381039104010411042104310441045104610471048104910501051105210531054105510561057105810591060106110621063106410651066106710681069107010711072107310741075107610771078107910801081108210831084108510861087108810891090109110921093109410951096109710981099110011011102110311041105110611071108110911101111111211131114111511161117111811191120112111221123112411251126112711281129113011311132113311341135113611371138113911401141114211431144114511461147114811491150115111521153115411551156115711581159116011611162116311641165116611671168116911701171117211731174117511761177117811791180118111821183118411851186118711881189119011911192119311941195119611971198119912001201120212031204120512061207120812091210121112121213121412151216121712181219122012211222122312241225122612271228122912301231123212331234123512361237123812391240124112421243124412451246124712481249125012511252125312541255125612571258125912601261126212631264126512661267126812691270127112721273127412751276127712781279128012811282128312841285128612871288128912901291129212931294129512961297129812991300130113021303130413051306130713081309131013111312131313141315131613171318131913201321132213231324132513261327132813291330133113321333133413351336133713381339134013411342134313441345134613471348134913501351135213531354135513561357135813591360136113621363136413651366136713681369137013711372137313741375137613771378137913801381138213831384138513861387138813891390139113921393139413951396139713981399140014011402140314041405140614071408140914101411141214131414141514161417141814191420142114221423142414251426142714281429143014311432143314341435143614371438143914401441144214431444144514461447144814491450145114521453145414551456145714581459146014611462146314641465146614671468146914701471147214731474147514761477147814791480148114821483148414851486148714881489149014911492149314941495149614971498149915001501150215031504150515061507150815091510151115121513151415151516151715181519152015211522152315241525152615271528152915301531153215331534153515361537153815391540154115421543154415451546154715481549155015511552155315541555155615571558155915601561156215631564156515661567156815691570157115721573157415751576157715781579158015811582158315841585158615871588158915901591159215931594159515961597159815991600160116021603160416051606160716081609161016111612161316141615161616171618161916201621162216231624162516261627162816291630163116321633163416351636163716381639164016411642164316441645164616471648164916501651165216531654165516561657165816591660166116621663166416651666166716681669167016711672167316741675167616771678167916801681168216831684168516861687168816891690169116921693169416951696169716981699170017011702170317041705170617071708170917101711171217131714171517161717171817191720172117221723172417251726172717281729173017311732173317341735173617371738173917401741174217431744174517461747174817491750175117521753175417551756175717581759176017611762176317641765176617671768176917701771177217731774177517761777177817791780178117821783178417851786178717881789179017911792179317941795179617971798179918001801180218031804180518061807180818091810181118121813181418151816181718181819182018211822182318241825182618271828182918301831183218331834183518361837183818391840184118421843184418451846184718481849185018511852185318541855185618571858185918601861186218631864186518661867186818691870187118721873187418751876187718781879188018811882188318841885188618871888188918901891189218931894189518961897189818991900190119021903190419051906190719081909191019111912191319141915191619171918191919201921192219231924192519261927192819291930193119321933193419351936193719381939194019411942194319441945194619471948194919501951195219531954195519561957195819591960196119621963196419651966196719681969197019711972197319741975197619771978197919801981198219831984198519861987198819891990199119921993199419951996199719981999200020012002200320042005200620072008200920102011201220132014201520162017201820192020202120222023202420252026202720282029203020312032203320342035203620372038203920402041204220432044204520462047204820492050205120522053205420552056205720582059206020612062206320642065206620672068206920702071207220732074207520762077207820792080208120822083208420852086208720882089209020912092209320942095209620972098209921002101210221032104210521062107210821092110211121122113211421152116211721182119212021212122212321242125212621272128212921302131213221332134213521362137213821392140214121422143214421452146214721482149215021512152215321542155215621572158215921602161216221632164216521662167216821692170217121722173217421752176217721782179218021812182218321842185218621872188218921902191219221932194219521962197219821992200220122022203220422052206220722082209221022112212221322142215221622172218221922202221222222232224222522262227222822292230223122322233223422352236223722382239224022412242224322442245224622472248224922502251225222532254225522562257225822592260226122622263226422652266226722682269227022712272227322742275227622772278227922802281228222832284228522862287228822892290229122922293229422952296229722982299230023012302230323042305230623072308230923102311231223132314231523162317231823192320232123222323232423252326232723282329233023312332233323342335233623372338233923402341234223432344234523462347234823492350235123522353235423552356235723582359236023612362236323642365236623672368236923702371237223732374237523762377237823792380238123822383238423852386238723882389239023912392239323942395239623972398239924002401240224032404240524062407240824092410241124122413241424152416241724182419242024212422242324242425242624272428242924302431243224332434243524362437243824392440244124422443244424452446244724482449245024512452245324542455245624572458245924602461246224632464246524662467246824692470247124722473247424752476247724782479248024812482248324842485248624872488248924902491249224932494249524962497249824992500250125022503250425052506250725082509251025112512251325142515251625172518251925202521252225232524252525262527252825292530253125322533253425352536253725382539254025412542254325442545254625472548254925502551255225532554255525562557255825592560256125622563256425652566256725682569257025712572257325742575257625772578257925802581258225832584258525862587258825892590259125922593259425952596259725982599260026012602260326042605260626072608260926102611261226132614261526162617261826192620262126222623262426252626262726282629263026312632263326342635263626372638263926402641264226432644264526462647264826492650265126522653265426552656265726582659266026612662266326642665266626672668266926702671267226732674267526762677267826792680268126822683268426852686268726882689269026912692269326942695269626972698269927002701270227032704270527062707270827092710271127122713271427152716271727182719272027212722272327242725272627272728272927302731273227332734273527362737273827392740274127422743274427452746274727482749275027512752275327542755275627572758275927602761276227632764276527662767276827692770277127722773277427752776277727782779278027812782278327842785278627872788278927902791279227932794279527962797279827992800280128022803280428052806280728082809281028112812281328142815281628172818281928202821282228232824282528262827282828292830283128322833283428352836283728382839284028412842284328442845284628472848284928502851285228532854285528562857285828592860286128622863286428652866286728682869287028712872287328742875287628772878287928802881288228832884288528862887288828892890289128922893289428952896289728982899290029012902290329042905290629072908290929102911291229132914291529162917291829192920292129222923292429252926292729282929293029312932293329342935293629372938293929402941294229432944294529462947294829492950295129522953295429552956295729582959296029612962296329642965296629672968296929702971297229732974297529762977297829792980298129822983298429852986298729882989299029912992299329942995299629972998299930003001300230033004300530063007300830093010301130123013301430153016301730183019302030213022302330243025302630273028302930303031303230333034303530363037303830393040304130423043304430453046304730483049305030513052305330543055305630573058305930603061306230633064306530663067306830693070307130723073307430753076307730783079308030813082308330843085308630873088308930903091309230933094309530963097309830993100310131023103310431053106310731083109311031113112311331143115311631173118311931203121312231233124312531263127312831293130313131323133313431353136313731383139314031413142314331443145314631473148314931503151315231533154315531563157315831593160316131623163316431653166316731683169317031713172317331743175317631773178317931803181318231833184318531863187318831893190319131923193319431953196319731983199320032013202320332043205320632073208320932103211321232133214321532163217321832193220322132223223322432253226322732283229323032313232323332343235323632373238323932403241324232433244324532463247324832493250325132523253325432553256325732583259326032613262326332643265326632673268326932703271327232733274327532763277327832793280328132823283328432853286328732883289329032913292329332943295329632973298329933003301330233033304330533063307330833093310331133123313331433153316331733183319332033213322332333243325332633273328332933303331333233333334333533363337333833393340334133423343334433453346334733483349335033513352335333543355335633573358335933603361336233633364336533663367336833693370337133723373337433753376337733783379338033813382338333843385338633873388338933903391339233933394339533963397339833993400340134023403340434053406340734083409341034113412341334143415341634173418341934203421342234233424342534263427342834293430343134323433343434353436343734383439344034413442344334443445344634473448344934503451345234533454345534563457345834593460346134623463346434653466346734683469347034713472347334743475347634773478347934803481348234833484348534863487348834893490349134923493349434953496349734983499350035013502350335043505350635073508350935103511351235133514351535163517351835193520352135223523352435253526352735283529353035313532353335343535353635373538353935403541354235433544354535463547354835493550355135523553355435553556355735583559356035613562356335643565356635673568356935703571357235733574357535763577357835793580358135823583358435853586358735883589359035913592359335943595359635973598359936003601360236033604360536063607360836093610361136123613361436153616361736183619362036213622362336243625362636273628362936303631363236333634363536363637363836393640364136423643364436453646364736483649365036513652365336543655365636573658365936603661366236633664366536663667366836693670367136723673367436753676367736783679368036813682368336843685368636873688368936903691369236933694369536963697369836993700370137023703370437053706370737083709371037113712371337143715371637173718371937203721372237233724372537263727372837293730373137323733373437353736373737383739374037413742374337443745374637473748374937503751375237533754375537563757375837593760376137623763376437653766376737683769377037713772377337743775377637773778377937803781378237833784378537863787378837893790379137923793379437953796379737983799380038013802380338043805380638073808380938103811381238133814381538163817381838193820382138223823382438253826382738283829383038313832383338343835383638373838383938403841384238433844384538463847384838493850385138523853385438553856385738583859386038613862386338643865386638673868386938703871387238733874387538763877387838793880388138823883388438853886388738883889389038913892389338943895389638973898389939003901390239033904390539063907390839093910391139123913391439153916391739183919392039213922392339243925392639273928392939303931393239333934393539363937393839393940394139423943394439453946394739483949395039513952395339543955395639573958395939603961396239633964396539663967396839693970397139723973397439753976397739783979398039813982398339843985398639873988398939903991399239933994399539963997399839994000400140024003400440054006400740084009401040114012401340144015401640174018401940204021402240234024402540264027402840294030403140324033403440354036403740384039404040414042404340444045404640474048404940504051405240534054405540564057405840594060406140624063406440654066406740684069407040714072407340744075407640774078407940804081408240834084408540864087408840894090409140924093409440954096409740984099410041014102410341044105410641074108410941104111411241134114411541164117411841194120412141224123412441254126412741284129413041314132413341344135413641374138413941404141414241434144414541464147414841494150415141524153415441554156415741584159416041614162416341644165416641674168416941704171417241734174417541764177417841794180418141824183418441854186418741884189419041914192419341944195419641974198419942004201420242034204420542064207420842094210421142124213421442154216421742184219422042214222422342244225422642274228422942304231423242334234423542364237423842394240424142424243424442454246424742484249425042514252425342544255425642574258425942604261426242634264426542664267426842694270427142724273427442754276427742784279428042814282428342844285428642874288428942904291429242934294429542964297429842994300430143024303430443054306430743084309431043114312431343144315431643174318431943204321432243234324432543264327432843294330433143324333433443354336433743384339434043414342434343444345434643474348434943504351435243534354435543564357435843594360436143624363436443654366436743684369437043714372437343744375437643774378437943804381438243834384438543864387438843894390439143924393439443954396439743984399440044014402440344044405440644074408440944104411441244134414441544164417441844194420442144224423442444254426442744284429443044314432443344344435443644374438443944404441444244434444444544464447444844494450445144524453445444554456445744584459446044614462446344644465446644674468446944704471447244734474447544764477447844794480448144824483448444854486448744884489449044914492449344944495449644974498449945004501450245034504450545064507450845094510451145124513451445154516451745184519452045214522452345244525452645274528452945304531453245334534453545364537453845394540454145424543454445454546454745484549455045514552455345544555455645574558455945604561456245634564456545664567456845694570457145724573457445754576457745784579458045814582458345844585458645874588458945904591459245934594459545964597459845994600460146024603460446054606460746084609461046114612461346144615461646174618461946204621462246234624462546264627462846294630463146324633463446354636463746384639464046414642464346444645464646474648464946504651465246534654465546564657465846594660466146624663466446654666466746684669467046714672467346744675467646774678467946804681468246834684468546864687468846894690469146924693469446954696469746984699470047014702470347044705470647074708470947104711471247134714471547164717471847194720472147224723472447254726472747284729473047314732473347344735473647374738473947404741474247434744474547464747474847494750475147524753475447554756475747584759476047614762476347644765476647674768476947704771477247734774477547764777477847794780478147824783478447854786478747884789479047914792479347944795479647974798479948004801480248034804480548064807480848094810481148124813481448154816481748184819482048214822482348244825482648274828482948304831483248334834483548364837483848394840484148424843484448454846484748484849485048514852485348544855485648574858485948604861486248634864486548664867486848694870487148724873487448754876487748784879488048814882488348844885488648874888488948904891489248934894489548964897489848994900490149024903490449054906490749084909491049114912491349144915491649174918491949204921492249234924492549264927492849294930493149324933493449354936493749384939494049414942494349444945494649474948494949504951495249534954495549564957495849594960496149624963496449654966496749684969497049714972497349744975497649774978497949804981498249834984498549864987498849894990499149924993499449954996499749984999500050015002500350045005500650075008500950105011501250135014501550165017501850195020502150225023502450255026502750285029503050315032503350345035503650375038503950405041504250435044504550465047504850495050505150525053505450555056505750585059506050615062506350645065506650675068506950705071507250735074507550765077507850795080508150825083508450855086508750885089509050915092509350945095509650975098509951005101510251035104510551065107510851095110511151125113511451155116511751185119512051215122512351245125512651275128512951305131513251335134513551365137513851395140514151425143514451455146514751485149515051515152515351545155515651575158515951605161516251635164516551665167516851695170517151725173517451755176517751785179518051815182518351845185518651875188518951905191519251935194519551965197519851995200520152025203520452055206520752085209521052115212521352145215521652175218521952205221522252235224522552265227522852295230523152325233523452355236523752385239524052415242524352445245524652475248524952505251525252535254525552565257525852595260526152625263526452655266526752685269527052715272527352745275527652775278527952805281528252835284528552865287528852895290529152925293529452955296529752985299530053015302530353045305530653075308530953105311531253135314531553165317531853195320532153225323532453255326532753285329533053315332533353345335533653375338533953405341534253435344534553465347534853495350535153525353535453555356535753585359536053615362536353645365536653675368536953705371537253735374537553765377537853795380538153825383538453855386538753885389539053915392539353945395539653975398539954005401540254035404540554065407540854095410541154125413541454155416541754185419542054215422542354245425542654275428542954305431543254335434543554365437543854395440544154425443544454455446544754485449545054515452545354545455545654575458545954605461546254635464546554665467546854695470547154725473547454755476547754785479548054815482548354845485548654875488548954905491549254935494549554965497549854995500550155025503550455055506550755085509551055115512551355145515551655175518551955205521552255235524552555265527552855295530553155325533553455355536553755385539554055415542554355445545554655475548554955505551555255535554555555565557555855595560556155625563556455655566556755685569557055715572557355745575557655775578557955805581558255835584558555865587558855895590559155925593559455955596559755985599560056015602560356045605560656075608560956105611561256135614561556165617561856195620562156225623562456255626562756285629563056315632563356345635563656375638563956405641564256435644564556465647564856495650565156525653565456555656565756585659566056615662566356645665566656675668566956705671567256735674567556765677567856795680568156825683568456855686568756885689569056915692569356945695569656975698569957005701570257035704570557065707570857095710571157125713571457155716571757185719572057215722572357245725572657275728572957305731573257335734573557365737573857395740574157425743574457455746574757485749575057515752575357545755575657575758575957605761576257635764576557665767576857695770577157725773577457755776577757785779578057815782578357845785578657875788578957905791579257935794579557965797579857995800580158025803580458055806580758085809581058115812581358145815581658175818581958205821582258235824582558265827582858295830583158325833583458355836583758385839584058415842584358445845584658475848584958505851585258535854585558565857585858595860586158625863586458655866586758685869587058715872587358745875587658775878587958805881588258835884588558865887588858895890589158925893589458955896589758985899590059015902590359045905590659075908590959105911591259135914591559165917591859195920592159225923592459255926592759285929593059315932593359345935593659375938593959405941594259435944594559465947594859495950595159525953595459555956595759585959596059615962596359645965596659675968596959705971597259735974597559765977597859795980598159825983598459855986598759885989599059915992599359945995599659975998599960006001600260036004600560066007600860096010601160126013601460156016601760186019602060216022602360246025602660276028602960306031603260336034603560366037603860396040604160426043604460456046604760486049605060516052605360546055605660576058605960606061606260636064606560666067606860696070607160726073607460756076607760786079608060816082608360846085608660876088608960906091609260936094609560966097609860996100610161026103610461056106610761086109611061116112611361146115611661176118611961206121612261236124612561266127612861296130613161326133613461356136613761386139614061416142614361446145614661476148614961506151615261536154615561566157615861596160616161626163616461656166616761686169617061716172617361746175617661776178617961806181618261836184618561866187618861896190619161926193619461956196619761986199620062016202620362046205620662076208620962106211621262136214621562166217621862196220622162226223622462256226622762286229623062316232623362346235623662376238623962406241624262436244624562466247624862496250625162526253625462556256625762586259626062616262626362646265626662676268626962706271627262736274627562766277627862796280628162826283628462856286628762886289629062916292629362946295629662976298629963006301630263036304630563066307630863096310631163126313631463156316631763186319632063216322632363246325632663276328632963306331633263336334633563366337633863396340634163426343634463456346634763486349635063516352635363546355635663576358635963606361636263636364636563666367636863696370637163726373637463756376637763786379638063816382638363846385638663876388638963906391639263936394639563966397639863996400640164026403640464056406640764086409641064116412641364146415641664176418641964206421642264236424642564266427642864296430643164326433643464356436643764386439644064416442644364446445644664476448644964506451645264536454645564566457645864596460646164626463646464656466646764686469647064716472647364746475647664776478647964806481648264836484648564866487648864896490649164926493649464956496649764986499650065016502650365046505650665076508650965106511651265136514651565166517651865196520652165226523652465256526652765286529653065316532653365346535653665376538653965406541654265436544654565466547654865496550655165526553655465556556655765586559656065616562656365646565656665676568656965706571657265736574657565766577657865796580658165826583658465856586658765886589659065916592659365946595659665976598659966006601660266036604660566066607660866096610661166126613661466156616661766186619662066216622662366246625662666276628662966306631663266336634663566366637663866396640664166426643664466456646664766486649665066516652665366546655665666576658665966606661666266636664666566666667666866696670667166726673667466756676667766786679668066816682668366846685668666876688668966906691669266936694669566966697669866996700670167026703670467056706670767086709671067116712671367146715671667176718671967206721672267236724672567266727672867296730673167326733673467356736673767386739674067416742674367446745674667476748674967506751675267536754675567566757675867596760676167626763676467656766676767686769677067716772677367746775677667776778677967806781678267836784678567866787678867896790679167926793679467956796679767986799680068016802680368046805680668076808680968106811681268136814681568166817681868196820682168226823682468256826682768286829683068316832683368346835683668376838683968406841684268436844684568466847684868496850685168526853685468556856685768586859686068616862686368646865686668676868686968706871687268736874687568766877687868796880688168826883688468856886688768886889689068916892689368946895689668976898689969006901690269036904690569066907690869096910691169126913691469156916691769186919692069216922692369246925692669276928692969306931693269336934693569366937693869396940694169426943694469456946694769486949695069516952695369546955695669576958695969606961696269636964696569666967696869696970697169726973697469756976697769786979698069816982698369846985698669876988698969906991699269936994699569966997699869997000700170027003700470057006700770087009701070117012701370147015701670177018701970207021702270237024702570267027702870297030703170327033703470357036703770387039704070417042704370447045704670477048704970507051705270537054705570567057705870597060706170627063706470657066706770687069707070717072707370747075707670777078707970807081708270837084708570867087708870897090709170927093709470957096709770987099710071017102710371047105710671077108710971107111711271137114711571167117711871197120712171227123712471257126712771287129713071317132713371347135713671377138713971407141714271437144714571467147714871497150715171527153715471557156715771587159716071617162716371647165716671677168716971707171717271737174717571767177717871797180718171827183718471857186718771887189719071917192719371947195719671977198719972007201720272037204720572067207720872097210721172127213721472157216721772187219722072217222722372247225722672277228722972307231723272337234723572367237723872397240724172427243724472457246724772487249725072517252725372547255725672577258725972607261726272637264726572667267726872697270727172727273727472757276727772787279728072817282728372847285728672877288728972907291729272937294729572967297729872997300730173027303730473057306730773087309731073117312731373147315731673177318731973207321732273237324732573267327732873297330733173327333733473357336733773387339734073417342734373447345734673477348734973507351735273537354735573567357735873597360736173627363736473657366736773687369737073717372737373747375737673777378737973807381738273837384738573867387738873897390739173927393739473957396739773987399740074017402740374047405740674077408740974107411741274137414741574167417741874197420742174227423742474257426742774287429743074317432743374347435743674377438743974407441744274437444744574467447744874497450745174527453745474557456745774587459746074617462746374647465746674677468746974707471747274737474747574767477747874797480748174827483748474857486748774887489749074917492749374947495749674977498749975007501750275037504750575067507750875097510751175127513751475157516751775187519752075217522752375247525752675277528752975307531753275337534753575367537753875397540754175427543754475457546754775487549755075517552755375547555755675577558755975607561756275637564756575667567756875697570757175727573757475757576757775787579758075817582758375847585758675877588758975907591759275937594759575967597759875997600760176027603760476057606760776087609761076117612761376147615761676177618761976207621762276237624762576267627762876297630763176327633763476357636763776387639764076417642764376447645764676477648764976507651765276537654765576567657765876597660766176627663766476657666766776687669767076717672767376747675767676777678767976807681768276837684768576867687768876897690769176927693769476957696769776987699770077017702770377047705770677077708770977107711771277137714771577167717771877197720772177227723772477257726772777287729773077317732773377347735773677377738773977407741774277437744774577467747774877497750775177527753775477557756775777587759776077617762776377647765776677677768776977707771777277737774777577767777777877797780778177827783778477857786778777887789779077917792779377947795779677977798779978007801780278037804780578067807780878097810781178127813781478157816781778187819782078217822782378247825782678277828782978307831783278337834783578367837783878397840784178427843784478457846784778487849785078517852785378547855785678577858785978607861786278637864786578667867786878697870787178727873787478757876787778787879788078817882788378847885788678877888788978907891789278937894789578967897789878997900790179027903790479057906790779087909791079117912791379147915791679177918791979207921792279237924792579267927792879297930793179327933793479357936793779387939794079417942794379447945794679477948794979507951795279537954795579567957795879597960796179627963796479657966796779687969797079717972797379747975797679777978797979807981798279837984798579867987798879897990799179927993799479957996799779987999800080018002800380048005800680078008800980108011801280138014801580168017801880198020802180228023802480258026802780288029803080318032803380348035803680378038803980408041804280438044804580468047804880498050805180528053805480558056805780588059806080618062806380648065806680678068806980708071807280738074807580768077807880798080808180828083808480858086808780888089809080918092809380948095809680978098809981008101810281038104810581068107810881098110811181128113811481158116811781188119812081218122812381248125812681278128812981308131813281338134813581368137813881398140814181428143814481458146814781488149815081518152815381548155815681578158815981608161816281638164816581668167816881698170817181728173817481758176817781788179818081818182818381848185818681878188818981908191819281938194819581968197819881998200820182028203820482058206820782088209821082118212821382148215821682178218821982208221822282238224822582268227822882298230823182328233823482358236823782388239824082418242824382448245824682478248824982508251825282538254825582568257825882598260826182628263826482658266826782688269827082718272827382748275827682778278827982808281828282838284828582868287828882898290829182928293829482958296829782988299830083018302830383048305830683078308830983108311831283138314831583168317831883198320832183228323832483258326832783288329833083318332833383348335833683378338833983408341834283438344834583468347834883498350835183528353835483558356835783588359836083618362836383648365836683678368836983708371837283738374837583768377837883798380838183828383838483858386838783888389839083918392839383948395839683978398839984008401840284038404840584068407840884098410841184128413841484158416841784188419842084218422842384248425842684278428842984308431843284338434843584368437843884398440844184428443844484458446844784488449845084518452845384548455845684578458845984608461846284638464846584668467846884698470847184728473847484758476847784788479848084818482848384848485848684878488848984908491849284938494849584968497849884998500850185028503850485058506850785088509851085118512851385148515851685178518851985208521852285238524852585268527852885298530853185328533853485358536853785388539854085418542854385448545854685478548854985508551855285538554855585568557855885598560856185628563856485658566856785688569857085718572857385748575857685778578857985808581858285838584858585868587858885898590859185928593859485958596859785988599860086018602860386048605860686078608860986108611861286138614861586168617861886198620862186228623862486258626862786288629863086318632863386348635863686378638863986408641864286438644864586468647864886498650865186528653865486558656865786588659866086618662866386648665866686678668866986708671867286738674867586768677867886798680868186828683868486858686868786888689869086918692869386948695869686978698869987008701870287038704870587068707870887098710871187128713871487158716871787188719872087218722872387248725872687278728872987308731873287338734873587368737873887398740874187428743874487458746874787488749875087518752875387548755875687578758875987608761876287638764876587668767876887698770877187728773877487758776877787788779878087818782878387848785878687878788878987908791879287938794879587968797879887998800880188028803880488058806880788088809881088118812881388148815881688178818881988208821882288238824882588268827882888298830883188328833883488358836883788388839884088418842884388448845884688478848884988508851885288538854885588568857885888598860886188628863886488658866886788688869887088718872887388748875887688778878887988808881888288838884888588868887888888898890889188928893889488958896889788988899890089018902890389048905890689078908890989108911891289138914891589168917891889198920892189228923892489258926892789288929893089318932893389348935893689378938893989408941894289438944894589468947894889498950895189528953895489558956895789588959896089618962896389648965896689678968896989708971897289738974897589768977897889798980898189828983898489858986898789888989899089918992899389948995899689978998899990009001900290039004900590069007900890099010901190129013901490159016901790189019902090219022902390249025902690279028902990309031903290339034903590369037903890399040904190429043904490459046904790489049905090519052905390549055905690579058905990609061906290639064906590669067906890699070907190729073907490759076907790789079908090819082908390849085908690879088908990909091909290939094909590969097909890999100910191029103910491059106910791089109911091119112911391149115911691179118911991209121912291239124912591269127912891299130913191329133913491359136913791389139914091419142914391449145914691479148914991509151915291539154915591569157915891599160916191629163916491659166916791689169917091719172917391749175917691779178917991809181918291839184918591869187918891899190919191929193919491959196919791989199920092019202920392049205920692079208920992109211921292139214921592169217921892199220922192229223922492259226922792289229923092319232923392349235923692379238923992409241924292439244924592469247924892499250925192529253925492559256925792589259926092619262926392649265926692679268926992709271927292739274927592769277927892799280928192829283928492859286928792889289929092919292929392949295929692979298929993009301930293039304930593069307930893099310931193129313931493159316931793189319932093219322932393249325932693279328932993309331933293339334933593369337933893399340934193429343934493459346934793489349935093519352935393549355935693579358935993609361936293639364936593669367936893699370937193729373937493759376937793789379938093819382938393849385938693879388938993909391939293939394939593969397939893999400940194029403940494059406940794089409941094119412941394149415941694179418941994209421942294239424942594269427942894299430943194329433943494359436943794389439944094419442944394449445944694479448944994509451945294539454945594569457945894599460946194629463946494659466946794689469947094719472947394749475947694779478947994809481948294839484948594869487948894899490949194929493949494959496949794989499950095019502950395049505950695079508950995109511951295139514951595169517951895199520952195229523952495259526952795289529953095319532953395349535953695379538953995409541954295439544954595469547954895499550955195529553955495559556955795589559956095619562956395649565956695679568956995709571957295739574957595769577957895799580958195829583958495859586958795889589959095919592959395949595959695979598959996009601960296039604960596069607960896099610961196129613961496159616961796189619962096219622962396249625962696279628962996309631963296339634963596369637963896399640964196429643964496459646964796489649965096519652965396549655965696579658965996609661966296639664966596669667966896699670967196729673967496759676967796789679968096819682968396849685968696879688968996909691969296939694969596969697969896999700970197029703970497059706970797089709971097119712971397149715971697179718971997209721972297239724972597269727972897299730973197329733973497359736973797389739974097419742974397449745974697479748974997509751975297539754975597569757975897599760976197629763976497659766976797689769977097719772977397749775977697779778977997809781978297839784978597869787978897899790979197929793979497959796979797989799980098019802980398049805980698079808980998109811981298139814981598169817981898199820982198229823982498259826982798289829983098319832983398349835983698379838983998409841984298439844984598469847984898499850985198529853985498559856985798589859986098619862986398649865986698679868986998709871987298739874987598769877987898799880988198829883988498859886988798889889989098919892989398949895989698979898989999009901990299039904990599069907990899099910991199129913991499159916991799189919992099219922
  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": "39c835cd00302a06f537909d04e3c468",
  8. "packages": [
  9. {
  10. "name": "bacon/bacon-qr-code",
  11. "version": "2.0.3",
  12. "source": {
  13. "type": "git",
  14. "url": "https://github.com/Bacon/BaconQrCode.git",
  15. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4"
  16. },
  17. "dist": {
  18. "type": "zip",
  19. "url": "https://api.github.com/repos/Bacon/BaconQrCode/zipball/3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  20. "reference": "3e9d791b67d0a2912922b7b7c7312f4b37af41e4",
  21. "shasum": "",
  22. "mirrors": [
  23. {
  24. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  25. "preferred": true
  26. }
  27. ]
  28. },
  29. "require": {
  30. "dasprid/enum": "^1.0.3",
  31. "ext-iconv": "*",
  32. "php": "^7.1 || ^8.0"
  33. },
  34. "require-dev": {
  35. "phly/keep-a-changelog": "^1.4",
  36. "phpunit/phpunit": "^7 | ^8 | ^9",
  37. "squizlabs/php_codesniffer": "^3.4"
  38. },
  39. "suggest": {
  40. "ext-imagick": "to generate QR code images"
  41. },
  42. "type": "library",
  43. "autoload": {
  44. "psr-4": {
  45. "BaconQrCode\\": "src/"
  46. }
  47. },
  48. "notification-url": "https://packagist.org/downloads/",
  49. "license": [
  50. "BSD-2-Clause"
  51. ],
  52. "authors": [
  53. {
  54. "name": "Ben Scholzen 'DASPRiD'",
  55. "email": "mail@dasprids.de",
  56. "homepage": "https://dasprids.de/",
  57. "role": "Developer"
  58. }
  59. ],
  60. "description": "BaconQrCode is a QR code generator for PHP.",
  61. "homepage": "https://github.com/Bacon/BaconQrCode",
  62. "time": "2020-10-30T02:02:47+00:00"
  63. },
  64. {
  65. "name": "barryvdh/laravel-ide-helper",
  66. "version": "v2.8.2",
  67. "source": {
  68. "type": "git",
  69. "url": "https://github.com/barryvdh/laravel-ide-helper.git",
  70. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca"
  71. },
  72. "dist": {
  73. "type": "zip",
  74. "url": "https://api.github.com/repos/barryvdh/laravel-ide-helper/zipball/5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  75. "reference": "5515cabea39b9cf55f98980d0f269dc9d85cfcca",
  76. "shasum": "",
  77. "mirrors": [
  78. {
  79. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  80. "preferred": true
  81. }
  82. ]
  83. },
  84. "require": {
  85. "barryvdh/reflection-docblock": "^2.0.6",
  86. "composer/composer": "^1.6 || ^2",
  87. "doctrine/dbal": "~2.3",
  88. "ext-json": "*",
  89. "illuminate/console": "^6 || ^7 || ^8",
  90. "illuminate/filesystem": "^6 || ^7 || ^8",
  91. "illuminate/support": "^6 || ^7 || ^8",
  92. "php": ">=7.2",
  93. "phpdocumentor/type-resolver": "^1.1.0"
  94. },
  95. "require-dev": {
  96. "ext-pdo_sqlite": "*",
  97. "friendsofphp/php-cs-fixer": "^2",
  98. "illuminate/config": "^6 || ^7 || ^8",
  99. "illuminate/view": "^6 || ^7 || ^8",
  100. "mockery/mockery": "^1.3.3",
  101. "orchestra/testbench": "^4 || ^5 || ^6",
  102. "phpunit/phpunit": "^8.5 || ^9",
  103. "spatie/phpunit-snapshot-assertions": "^1.4 || ^2.2 || ^3 || ^4",
  104. "vimeo/psalm": "^3.12"
  105. },
  106. "type": "library",
  107. "extra": {
  108. "branch-alias": {
  109. "dev-master": "2.8-dev"
  110. },
  111. "laravel": {
  112. "providers": [
  113. "Barryvdh\\LaravelIdeHelper\\IdeHelperServiceProvider"
  114. ]
  115. }
  116. },
  117. "autoload": {
  118. "psr-4": {
  119. "Barryvdh\\LaravelIdeHelper\\": "src"
  120. }
  121. },
  122. "notification-url": "https://packagist.org/downloads/",
  123. "license": [
  124. "MIT"
  125. ],
  126. "authors": [
  127. {
  128. "name": "Barry vd. Heuvel",
  129. "email": "barryvdh@gmail.com"
  130. }
  131. ],
  132. "description": "Laravel IDE Helper, generates correct PHPDocs for all Facade classes, to improve auto-completion.",
  133. "keywords": [
  134. "autocomplete",
  135. "codeintel",
  136. "helper",
  137. "ide",
  138. "laravel",
  139. "netbeans",
  140. "phpdoc",
  141. "phpstorm",
  142. "sublime"
  143. ],
  144. "time": "2020-12-06T08:55:05+00:00"
  145. },
  146. {
  147. "name": "barryvdh/reflection-docblock",
  148. "version": "v2.0.6",
  149. "source": {
  150. "type": "git",
  151. "url": "https://github.com/barryvdh/ReflectionDocBlock.git",
  152. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16"
  153. },
  154. "dist": {
  155. "type": "zip",
  156. "url": "https://api.github.com/repos/barryvdh/ReflectionDocBlock/zipball/6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  157. "reference": "6b69015d83d3daf9004a71a89f26e27d27ef6a16",
  158. "shasum": "",
  159. "mirrors": [
  160. {
  161. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  162. "preferred": true
  163. }
  164. ]
  165. },
  166. "require": {
  167. "php": ">=5.3.3"
  168. },
  169. "require-dev": {
  170. "phpunit/phpunit": "~4.0,<4.5"
  171. },
  172. "suggest": {
  173. "dflydev/markdown": "~1.0",
  174. "erusev/parsedown": "~1.0"
  175. },
  176. "type": "library",
  177. "extra": {
  178. "branch-alias": {
  179. "dev-master": "2.0.x-dev"
  180. }
  181. },
  182. "autoload": {
  183. "psr-0": {
  184. "Barryvdh": [
  185. "src/"
  186. ]
  187. }
  188. },
  189. "notification-url": "https://packagist.org/downloads/",
  190. "license": [
  191. "MIT"
  192. ],
  193. "authors": [
  194. {
  195. "name": "Mike van Riel",
  196. "email": "mike.vanriel@naenius.com"
  197. }
  198. ],
  199. "time": "2018-12-13T10:34:14+00:00"
  200. },
  201. {
  202. "name": "composer/ca-bundle",
  203. "version": "1.2.9",
  204. "source": {
  205. "type": "git",
  206. "url": "https://github.com/composer/ca-bundle.git",
  207. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5"
  208. },
  209. "dist": {
  210. "type": "zip",
  211. "url": "https://api.github.com/repos/composer/ca-bundle/zipball/78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  212. "reference": "78a0e288fdcebf92aa2318a8d3656168da6ac1a5",
  213. "shasum": "",
  214. "mirrors": [
  215. {
  216. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  217. "preferred": true
  218. }
  219. ]
  220. },
  221. "require": {
  222. "ext-openssl": "*",
  223. "ext-pcre": "*",
  224. "php": "^5.3.2 || ^7.0 || ^8.0"
  225. },
  226. "require-dev": {
  227. "phpstan/phpstan": "^0.12.55",
  228. "psr/log": "^1.0",
  229. "symfony/phpunit-bridge": "^4.2 || ^5",
  230. "symfony/process": "^2.5 || ^3.0 || ^4.0 || ^5.0"
  231. },
  232. "type": "library",
  233. "extra": {
  234. "branch-alias": {
  235. "dev-main": "1.x-dev"
  236. }
  237. },
  238. "autoload": {
  239. "psr-4": {
  240. "Composer\\CaBundle\\": "src"
  241. }
  242. },
  243. "notification-url": "https://packagist.org/downloads/",
  244. "license": [
  245. "MIT"
  246. ],
  247. "authors": [
  248. {
  249. "name": "Jordi Boggiano",
  250. "email": "j.boggiano@seld.be",
  251. "homepage": "http://seld.be"
  252. }
  253. ],
  254. "description": "Lets you find a path to the system CA bundle, and includes a fallback to the Mozilla CA bundle.",
  255. "keywords": [
  256. "cabundle",
  257. "cacert",
  258. "certificate",
  259. "ssl",
  260. "tls"
  261. ],
  262. "time": "2021-01-12T12:10:35+00:00"
  263. },
  264. {
  265. "name": "composer/composer",
  266. "version": "2.0.12",
  267. "source": {
  268. "type": "git",
  269. "url": "https://github.com/composer/composer.git",
  270. "reference": "6c12ce263da71641903e399c3ce8ecb08fd375fb"
  271. },
  272. "dist": {
  273. "type": "zip",
  274. "url": "https://api.github.com/repos/composer/composer/zipball/6c12ce263da71641903e399c3ce8ecb08fd375fb",
  275. "reference": "6c12ce263da71641903e399c3ce8ecb08fd375fb",
  276. "shasum": "",
  277. "mirrors": [
  278. {
  279. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  280. "preferred": true
  281. }
  282. ]
  283. },
  284. "require": {
  285. "composer/ca-bundle": "^1.0",
  286. "composer/semver": "^3.0",
  287. "composer/spdx-licenses": "^1.2",
  288. "composer/xdebug-handler": "^1.1",
  289. "justinrainbow/json-schema": "^5.2.10",
  290. "php": "^5.3.2 || ^7.0 || ^8.0",
  291. "psr/log": "^1.0",
  292. "react/promise": "^1.2 || ^2.7",
  293. "seld/jsonlint": "^1.4",
  294. "seld/phar-utils": "^1.0",
  295. "symfony/console": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  296. "symfony/filesystem": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  297. "symfony/finder": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0",
  298. "symfony/process": "^2.8.52 || ^3.4.35 || ^4.4 || ^5.0"
  299. },
  300. "require-dev": {
  301. "phpspec/prophecy": "^1.10",
  302. "symfony/phpunit-bridge": "^4.2 || ^5.0"
  303. },
  304. "suggest": {
  305. "ext-openssl": "Enabling the openssl extension allows you to access https URLs for repositories and packages",
  306. "ext-zip": "Enabling the zip extension allows you to unzip archives",
  307. "ext-zlib": "Allow gzip compression of HTTP requests"
  308. },
  309. "bin": [
  310. "bin/composer"
  311. ],
  312. "type": "library",
  313. "extra": {
  314. "branch-alias": {
  315. "dev-master": "2.0-dev"
  316. }
  317. },
  318. "autoload": {
  319. "psr-4": {
  320. "Composer\\": "src/Composer"
  321. }
  322. },
  323. "notification-url": "https://packagist.org/downloads/",
  324. "license": [
  325. "MIT"
  326. ],
  327. "authors": [
  328. {
  329. "name": "Nils Adermann",
  330. "email": "naderman@naderman.de",
  331. "homepage": "https://www.naderman.de"
  332. },
  333. {
  334. "name": "Jordi Boggiano",
  335. "email": "j.boggiano@seld.be",
  336. "homepage": "https://seld.be"
  337. }
  338. ],
  339. "description": "Composer helps you declare, manage and install dependencies of PHP projects. It ensures you have the right stack everywhere.",
  340. "homepage": "https://getcomposer.org/",
  341. "keywords": [
  342. "autoload",
  343. "dependency",
  344. "package"
  345. ],
  346. "time": "2021-04-01T08:14:59+00:00"
  347. },
  348. {
  349. "name": "composer/semver",
  350. "version": "3.3.2",
  351. "source": {
  352. "type": "git",
  353. "url": "https://github.com/composer/semver.git",
  354. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9"
  355. },
  356. "dist": {
  357. "type": "zip",
  358. "url": "https://api.github.com/repos/composer/semver/zipball/3953f23262f2bff1919fc82183ad9acb13ff62c9",
  359. "reference": "3953f23262f2bff1919fc82183ad9acb13ff62c9",
  360. "shasum": "",
  361. "mirrors": [
  362. {
  363. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  364. "preferred": true
  365. }
  366. ]
  367. },
  368. "require": {
  369. "php": "^5.3.2 || ^7.0 || ^8.0"
  370. },
  371. "require-dev": {
  372. "phpstan/phpstan": "^1.4",
  373. "symfony/phpunit-bridge": "^4.2 || ^5"
  374. },
  375. "type": "library",
  376. "extra": {
  377. "branch-alias": {
  378. "dev-main": "3.x-dev"
  379. }
  380. },
  381. "autoload": {
  382. "psr-4": {
  383. "Composer\\Semver\\": "src"
  384. }
  385. },
  386. "notification-url": "https://packagist.org/downloads/",
  387. "license": [
  388. "MIT"
  389. ],
  390. "authors": [
  391. {
  392. "name": "Nils Adermann",
  393. "email": "naderman@naderman.de",
  394. "homepage": "http://www.naderman.de"
  395. },
  396. {
  397. "name": "Jordi Boggiano",
  398. "email": "j.boggiano@seld.be",
  399. "homepage": "http://seld.be"
  400. },
  401. {
  402. "name": "Rob Bast",
  403. "email": "rob.bast@gmail.com",
  404. "homepage": "http://robbast.nl"
  405. }
  406. ],
  407. "description": "Semver library that offers utilities, version constraint parsing and validation.",
  408. "keywords": [
  409. "semantic",
  410. "semver",
  411. "validation",
  412. "versioning"
  413. ],
  414. "support": {
  415. "irc": "irc://irc.freenode.org/composer",
  416. "issues": "https://github.com/composer/semver/issues",
  417. "source": "https://github.com/composer/semver/tree/3.3.2"
  418. },
  419. "funding": [
  420. {
  421. "url": "https://packagist.com",
  422. "type": "custom"
  423. },
  424. {
  425. "url": "https://github.com/composer",
  426. "type": "github"
  427. },
  428. {
  429. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  430. "type": "tidelift"
  431. }
  432. ],
  433. "time": "2022-04-01T19:23:25+00:00"
  434. },
  435. {
  436. "name": "composer/spdx-licenses",
  437. "version": "1.5.5",
  438. "source": {
  439. "type": "git",
  440. "url": "https://github.com/composer/spdx-licenses.git",
  441. "reference": "de30328a7af8680efdc03e396aad24befd513200"
  442. },
  443. "dist": {
  444. "type": "zip",
  445. "url": "https://api.github.com/repos/composer/spdx-licenses/zipball/de30328a7af8680efdc03e396aad24befd513200",
  446. "reference": "de30328a7af8680efdc03e396aad24befd513200",
  447. "shasum": "",
  448. "mirrors": [
  449. {
  450. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  451. "preferred": true
  452. }
  453. ]
  454. },
  455. "require": {
  456. "php": "^5.3.2 || ^7.0 || ^8.0"
  457. },
  458. "require-dev": {
  459. "phpunit/phpunit": "^4.8.35 || ^5.7 || 6.5 - 7"
  460. },
  461. "type": "library",
  462. "extra": {
  463. "branch-alias": {
  464. "dev-main": "1.x-dev"
  465. }
  466. },
  467. "autoload": {
  468. "psr-4": {
  469. "Composer\\Spdx\\": "src"
  470. }
  471. },
  472. "notification-url": "https://packagist.org/downloads/",
  473. "license": [
  474. "MIT"
  475. ],
  476. "authors": [
  477. {
  478. "name": "Nils Adermann",
  479. "email": "naderman@naderman.de",
  480. "homepage": "http://www.naderman.de"
  481. },
  482. {
  483. "name": "Jordi Boggiano",
  484. "email": "j.boggiano@seld.be",
  485. "homepage": "http://seld.be"
  486. },
  487. {
  488. "name": "Rob Bast",
  489. "email": "rob.bast@gmail.com",
  490. "homepage": "http://robbast.nl"
  491. }
  492. ],
  493. "description": "SPDX licenses list and validation library.",
  494. "keywords": [
  495. "license",
  496. "spdx",
  497. "validator"
  498. ],
  499. "time": "2020-12-03T16:04:16+00:00"
  500. },
  501. {
  502. "name": "composer/xdebug-handler",
  503. "version": "1.4.6",
  504. "source": {
  505. "type": "git",
  506. "url": "https://github.com/composer/xdebug-handler.git",
  507. "reference": "f27e06cd9675801df441b3656569b328e04aa37c"
  508. },
  509. "dist": {
  510. "type": "zip",
  511. "url": "https://api.github.com/repos/composer/xdebug-handler/zipball/f27e06cd9675801df441b3656569b328e04aa37c",
  512. "reference": "f27e06cd9675801df441b3656569b328e04aa37c",
  513. "shasum": "",
  514. "mirrors": [
  515. {
  516. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  517. "preferred": true
  518. }
  519. ]
  520. },
  521. "require": {
  522. "php": "^5.3.2 || ^7.0 || ^8.0",
  523. "psr/log": "^1.0"
  524. },
  525. "require-dev": {
  526. "phpstan/phpstan": "^0.12.55",
  527. "symfony/phpunit-bridge": "^4.2 || ^5"
  528. },
  529. "type": "library",
  530. "autoload": {
  531. "psr-4": {
  532. "Composer\\XdebugHandler\\": "src"
  533. }
  534. },
  535. "notification-url": "https://packagist.org/downloads/",
  536. "license": [
  537. "MIT"
  538. ],
  539. "authors": [
  540. {
  541. "name": "John Stevenson",
  542. "email": "john-stevenson@blueyonder.co.uk"
  543. }
  544. ],
  545. "description": "Restarts a process without Xdebug.",
  546. "keywords": [
  547. "Xdebug",
  548. "performance"
  549. ],
  550. "support": {
  551. "irc": "irc://irc.freenode.org/composer",
  552. "issues": "https://github.com/composer/xdebug-handler/issues",
  553. "source": "https://github.com/composer/xdebug-handler/tree/1.4.6"
  554. },
  555. "funding": [
  556. {
  557. "url": "https://packagist.com",
  558. "type": "custom"
  559. },
  560. {
  561. "url": "https://github.com/composer",
  562. "type": "github"
  563. },
  564. {
  565. "url": "https://tidelift.com/funding/github/packagist/composer/composer",
  566. "type": "tidelift"
  567. }
  568. ],
  569. "time": "2021-03-25T17:01:18+00:00"
  570. },
  571. {
  572. "name": "dasprid/enum",
  573. "version": "1.0.3",
  574. "source": {
  575. "type": "git",
  576. "url": "https://github.com/DASPRiD/Enum.git",
  577. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2"
  578. },
  579. "dist": {
  580. "type": "zip",
  581. "url": "https://api.github.com/repos/DASPRiD/Enum/zipball/5abf82f213618696dda8e3bf6f64dd042d8542b2",
  582. "reference": "5abf82f213618696dda8e3bf6f64dd042d8542b2",
  583. "shasum": "",
  584. "mirrors": [
  585. {
  586. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  587. "preferred": true
  588. }
  589. ]
  590. },
  591. "require-dev": {
  592. "phpunit/phpunit": "^7 | ^8 | ^9",
  593. "squizlabs/php_codesniffer": "^3.4"
  594. },
  595. "type": "library",
  596. "autoload": {
  597. "psr-4": {
  598. "DASPRiD\\Enum\\": "src/"
  599. }
  600. },
  601. "notification-url": "https://packagist.org/downloads/",
  602. "license": [
  603. "BSD-2-Clause"
  604. ],
  605. "authors": [
  606. {
  607. "name": "Ben Scholzen 'DASPRiD'",
  608. "email": "mail@dasprids.de",
  609. "homepage": "https://dasprids.de/",
  610. "role": "Developer"
  611. }
  612. ],
  613. "description": "PHP 7.1 enum implementation",
  614. "keywords": [
  615. "enum",
  616. "map"
  617. ],
  618. "time": "2020-10-02T16:03:48+00:00"
  619. },
  620. {
  621. "name": "dingo/api",
  622. "version": "v2.4.7",
  623. "source": {
  624. "type": "git",
  625. "url": "https://github.com/dingo/api.git",
  626. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3"
  627. },
  628. "dist": {
  629. "type": "zip",
  630. "url": "https://api.github.com/repos/dingo/api/zipball/669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  631. "reference": "669a5a9f39cf4f499af1b6fcf43c15e364312ad3",
  632. "shasum": "",
  633. "mirrors": [
  634. {
  635. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  636. "preferred": true
  637. }
  638. ]
  639. },
  640. "require": {
  641. "dingo/blueprint": "^0.3",
  642. "illuminate/routing": "^5.5 || ^6.0",
  643. "illuminate/support": "^5.5 || ^6.0",
  644. "league/fractal": "^0.17",
  645. "php": "^7.1"
  646. },
  647. "require-dev": {
  648. "friendsofphp/php-cs-fixer": "~2",
  649. "illuminate/auth": "^5.5 || ^6.0",
  650. "illuminate/cache": "^5.5 || ^6.0",
  651. "illuminate/console": "^5.5 || ^6.0",
  652. "illuminate/database": "^5.5 || ^6.0",
  653. "illuminate/events": "^5.5 || ^6.0",
  654. "illuminate/filesystem": "^5.5 || ^6.0",
  655. "illuminate/log": "^5.5 || ^6.0",
  656. "illuminate/pagination": "^5.5 || ^6.0",
  657. "laravel/lumen-framework": "^5.5 || ^6.0",
  658. "mockery/mockery": "~1.0",
  659. "phpdocumentor/reflection-docblock": "3.3.2",
  660. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  661. "squizlabs/php_codesniffer": "~2.0",
  662. "tymon/jwt-auth": "1.0.*"
  663. },
  664. "suggest": {
  665. "tymon/jwt-auth": "Protect your API with JSON Web Tokens."
  666. },
  667. "type": "library",
  668. "extra": {
  669. "branch-alias": {
  670. "dev-master": "2.0-dev"
  671. },
  672. "laravel": {
  673. "providers": [
  674. "Dingo\\Api\\Provider\\LaravelServiceProvider"
  675. ],
  676. "aliases": {
  677. "API": "Dingo\\Api\\Facade\\API"
  678. }
  679. }
  680. },
  681. "autoload": {
  682. "psr-4": {
  683. "Dingo\\Api\\": "src/"
  684. },
  685. "files": [
  686. "src/helpers.php"
  687. ]
  688. },
  689. "notification-url": "https://packagist.org/downloads/",
  690. "license": [
  691. "BSD-3-Clause"
  692. ],
  693. "authors": [
  694. {
  695. "name": "Jason Lewis",
  696. "email": "jason.lewis1991@gmail.com"
  697. }
  698. ],
  699. "description": "A RESTful API package for the Laravel and Lumen frameworks.",
  700. "keywords": [
  701. "api",
  702. "dingo",
  703. "laravel",
  704. "restful"
  705. ],
  706. "time": "2020-03-19T01:36:11+00:00"
  707. },
  708. {
  709. "name": "dingo/blueprint",
  710. "version": "v0.3.1",
  711. "source": {
  712. "type": "git",
  713. "url": "https://github.com/dingo/blueprint.git",
  714. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396"
  715. },
  716. "dist": {
  717. "type": "zip",
  718. "url": "https://api.github.com/repos/dingo/blueprint/zipball/45bbc59385310de7604e35ea4e27dc1756be9396",
  719. "reference": "45bbc59385310de7604e35ea4e27dc1756be9396",
  720. "shasum": "",
  721. "mirrors": [
  722. {
  723. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  724. "preferred": true
  725. }
  726. ]
  727. },
  728. "require": {
  729. "doctrine/annotations": "~1.2",
  730. "illuminate/filesystem": "^5.5 || ^6.0",
  731. "illuminate/support": "^5.5 || ^6.0",
  732. "php": "^7.1",
  733. "phpdocumentor/reflection-docblock": "^3.1|^4.1"
  734. },
  735. "require-dev": {
  736. "phpunit/phpunit": "^4.8.35 || ^5.4.3 || ^6.5",
  737. "squizlabs/php_codesniffer": "~2.0"
  738. },
  739. "type": "library",
  740. "extra": {
  741. "branch-alias": {
  742. "dev-master": "0.2-dev"
  743. }
  744. },
  745. "autoload": {
  746. "psr-4": {
  747. "Dingo\\Blueprint\\": "src"
  748. }
  749. },
  750. "notification-url": "https://packagist.org/downloads/",
  751. "license": [
  752. "BSD-3-Clause"
  753. ],
  754. "authors": [
  755. {
  756. "name": "Jason Lewis",
  757. "email": "jason.lewis1991@gmail.com"
  758. }
  759. ],
  760. "description": "API Blueprint documentation generator.",
  761. "keywords": [
  762. "api",
  763. "blueprint",
  764. "dingo",
  765. "docs",
  766. "laravel"
  767. ],
  768. "time": "2019-10-07T10:14:17+00:00"
  769. },
  770. {
  771. "name": "doctrine/annotations",
  772. "version": "1.12.1",
  773. "source": {
  774. "type": "git",
  775. "url": "https://github.com/doctrine/annotations.git",
  776. "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b"
  777. },
  778. "dist": {
  779. "type": "zip",
  780. "url": "https://api.github.com/repos/doctrine/annotations/zipball/b17c5014ef81d212ac539f07a1001832df1b6d3b",
  781. "reference": "b17c5014ef81d212ac539f07a1001832df1b6d3b",
  782. "shasum": "",
  783. "mirrors": [
  784. {
  785. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  786. "preferred": true
  787. }
  788. ]
  789. },
  790. "require": {
  791. "doctrine/lexer": "1.*",
  792. "ext-tokenizer": "*",
  793. "php": "^7.1 || ^8.0"
  794. },
  795. "require-dev": {
  796. "doctrine/cache": "1.*",
  797. "doctrine/coding-standard": "^6.0 || ^8.1",
  798. "phpstan/phpstan": "^0.12.20",
  799. "phpunit/phpunit": "^7.5 || ^9.1.5"
  800. },
  801. "type": "library",
  802. "autoload": {
  803. "psr-4": {
  804. "Doctrine\\Common\\Annotations\\": "lib/Doctrine/Common/Annotations"
  805. }
  806. },
  807. "notification-url": "https://packagist.org/downloads/",
  808. "license": [
  809. "MIT"
  810. ],
  811. "authors": [
  812. {
  813. "name": "Guilherme Blanco",
  814. "email": "guilhermeblanco@gmail.com"
  815. },
  816. {
  817. "name": "Roman Borschel",
  818. "email": "roman@code-factory.org"
  819. },
  820. {
  821. "name": "Benjamin Eberlei",
  822. "email": "kontakt@beberlei.de"
  823. },
  824. {
  825. "name": "Jonathan Wage",
  826. "email": "jonwage@gmail.com"
  827. },
  828. {
  829. "name": "Johannes Schmitt",
  830. "email": "schmittjoh@gmail.com"
  831. }
  832. ],
  833. "description": "Docblock Annotations Parser",
  834. "homepage": "https://www.doctrine-project.org/projects/annotations.html",
  835. "keywords": [
  836. "annotations",
  837. "docblock",
  838. "parser"
  839. ],
  840. "time": "2021-02-21T21:00:45+00:00"
  841. },
  842. {
  843. "name": "doctrine/cache",
  844. "version": "1.10.2",
  845. "source": {
  846. "type": "git",
  847. "url": "https://github.com/doctrine/cache.git",
  848. "reference": "13e3381b25847283a91948d04640543941309727"
  849. },
  850. "dist": {
  851. "type": "zip",
  852. "url": "https://api.github.com/repos/doctrine/cache/zipball/13e3381b25847283a91948d04640543941309727",
  853. "reference": "13e3381b25847283a91948d04640543941309727",
  854. "shasum": "",
  855. "mirrors": [
  856. {
  857. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  858. "preferred": true
  859. }
  860. ]
  861. },
  862. "require": {
  863. "php": "~7.1 || ^8.0"
  864. },
  865. "conflict": {
  866. "doctrine/common": ">2.2,<2.4"
  867. },
  868. "require-dev": {
  869. "alcaeus/mongo-php-adapter": "^1.1",
  870. "doctrine/coding-standard": "^6.0",
  871. "mongodb/mongodb": "^1.1",
  872. "phpunit/phpunit": "^7.0",
  873. "predis/predis": "~1.0"
  874. },
  875. "suggest": {
  876. "alcaeus/mongo-php-adapter": "Required to use legacy MongoDB driver"
  877. },
  878. "type": "library",
  879. "extra": {
  880. "branch-alias": {
  881. "dev-master": "1.9.x-dev"
  882. }
  883. },
  884. "autoload": {
  885. "psr-4": {
  886. "Doctrine\\Common\\Cache\\": "lib/Doctrine/Common/Cache"
  887. }
  888. },
  889. "notification-url": "https://packagist.org/downloads/",
  890. "license": [
  891. "MIT"
  892. ],
  893. "authors": [
  894. {
  895. "name": "Guilherme Blanco",
  896. "email": "guilhermeblanco@gmail.com"
  897. },
  898. {
  899. "name": "Roman Borschel",
  900. "email": "roman@code-factory.org"
  901. },
  902. {
  903. "name": "Benjamin Eberlei",
  904. "email": "kontakt@beberlei.de"
  905. },
  906. {
  907. "name": "Jonathan Wage",
  908. "email": "jonwage@gmail.com"
  909. },
  910. {
  911. "name": "Johannes Schmitt",
  912. "email": "schmittjoh@gmail.com"
  913. }
  914. ],
  915. "description": "PHP Doctrine Cache library is a popular cache implementation that supports many different drivers such as redis, memcache, apc, mongodb and others.",
  916. "homepage": "https://www.doctrine-project.org/projects/cache.html",
  917. "keywords": [
  918. "abstraction",
  919. "apcu",
  920. "cache",
  921. "caching",
  922. "couchdb",
  923. "memcached",
  924. "php",
  925. "redis",
  926. "xcache"
  927. ],
  928. "time": "2020-07-07T18:54:01+00:00"
  929. },
  930. {
  931. "name": "doctrine/dbal",
  932. "version": "2.13.1",
  933. "source": {
  934. "type": "git",
  935. "url": "https://github.com/doctrine/dbal.git",
  936. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9"
  937. },
  938. "dist": {
  939. "type": "zip",
  940. "url": "https://api.github.com/repos/doctrine/dbal/zipball/c800380457948e65bbd30ba92cc17cda108bf8c9",
  941. "reference": "c800380457948e65bbd30ba92cc17cda108bf8c9",
  942. "shasum": "",
  943. "mirrors": [
  944. {
  945. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  946. "preferred": true
  947. }
  948. ]
  949. },
  950. "require": {
  951. "doctrine/cache": "^1.0",
  952. "doctrine/deprecations": "^0.5.3",
  953. "doctrine/event-manager": "^1.0",
  954. "ext-pdo": "*",
  955. "php": "^7.1 || ^8"
  956. },
  957. "require-dev": {
  958. "doctrine/coding-standard": "8.2.0",
  959. "jetbrains/phpstorm-stubs": "2020.2",
  960. "phpstan/phpstan": "0.12.81",
  961. "phpunit/phpunit": "^7.5.20|^8.5|9.5.0",
  962. "squizlabs/php_codesniffer": "3.6.0",
  963. "symfony/console": "^2.0.5|^3.0|^4.0|^5.0",
  964. "vimeo/psalm": "4.6.4"
  965. },
  966. "suggest": {
  967. "symfony/console": "For helpful console commands such as SQL execution and import of files."
  968. },
  969. "bin": [
  970. "bin/doctrine-dbal"
  971. ],
  972. "type": "library",
  973. "autoload": {
  974. "psr-4": {
  975. "Doctrine\\DBAL\\": "lib/Doctrine/DBAL"
  976. }
  977. },
  978. "notification-url": "https://packagist.org/downloads/",
  979. "license": [
  980. "MIT"
  981. ],
  982. "authors": [
  983. {
  984. "name": "Guilherme Blanco",
  985. "email": "guilhermeblanco@gmail.com"
  986. },
  987. {
  988. "name": "Roman Borschel",
  989. "email": "roman@code-factory.org"
  990. },
  991. {
  992. "name": "Benjamin Eberlei",
  993. "email": "kontakt@beberlei.de"
  994. },
  995. {
  996. "name": "Jonathan Wage",
  997. "email": "jonwage@gmail.com"
  998. }
  999. ],
  1000. "description": "Powerful PHP database abstraction layer (DBAL) with many features for database schema introspection and management.",
  1001. "homepage": "https://www.doctrine-project.org/projects/dbal.html",
  1002. "keywords": [
  1003. "abstraction",
  1004. "database",
  1005. "db2",
  1006. "dbal",
  1007. "mariadb",
  1008. "mssql",
  1009. "mysql",
  1010. "oci8",
  1011. "oracle",
  1012. "pdo",
  1013. "pgsql",
  1014. "postgresql",
  1015. "queryobject",
  1016. "sasql",
  1017. "sql",
  1018. "sqlanywhere",
  1019. "sqlite",
  1020. "sqlserver",
  1021. "sqlsrv"
  1022. ],
  1023. "time": "2021-04-17T17:30:19+00:00"
  1024. },
  1025. {
  1026. "name": "doctrine/deprecations",
  1027. "version": "v0.5.3",
  1028. "source": {
  1029. "type": "git",
  1030. "url": "https://github.com/doctrine/deprecations.git",
  1031. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314"
  1032. },
  1033. "dist": {
  1034. "type": "zip",
  1035. "url": "https://api.github.com/repos/doctrine/deprecations/zipball/9504165960a1f83cc1480e2be1dd0a0478561314",
  1036. "reference": "9504165960a1f83cc1480e2be1dd0a0478561314",
  1037. "shasum": "",
  1038. "mirrors": [
  1039. {
  1040. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1041. "preferred": true
  1042. }
  1043. ]
  1044. },
  1045. "require": {
  1046. "php": "^7.1|^8.0"
  1047. },
  1048. "require-dev": {
  1049. "doctrine/coding-standard": "^6.0|^7.0|^8.0",
  1050. "phpunit/phpunit": "^7.0|^8.0|^9.0",
  1051. "psr/log": "^1.0"
  1052. },
  1053. "suggest": {
  1054. "psr/log": "Allows logging deprecations via PSR-3 logger implementation"
  1055. },
  1056. "type": "library",
  1057. "autoload": {
  1058. "psr-4": {
  1059. "Doctrine\\Deprecations\\": "lib/Doctrine/Deprecations"
  1060. }
  1061. },
  1062. "notification-url": "https://packagist.org/downloads/",
  1063. "license": [
  1064. "MIT"
  1065. ],
  1066. "description": "A small layer on top of trigger_error(E_USER_DEPRECATED) or PSR-3 logging with options to disable all deprecations or selectively for packages.",
  1067. "homepage": "https://www.doctrine-project.org/",
  1068. "time": "2021-03-21T12:59:47+00:00"
  1069. },
  1070. {
  1071. "name": "doctrine/event-manager",
  1072. "version": "1.1.1",
  1073. "source": {
  1074. "type": "git",
  1075. "url": "https://github.com/doctrine/event-manager.git",
  1076. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f"
  1077. },
  1078. "dist": {
  1079. "type": "zip",
  1080. "url": "https://api.github.com/repos/doctrine/event-manager/zipball/41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1081. "reference": "41370af6a30faa9dc0368c4a6814d596e81aba7f",
  1082. "shasum": "",
  1083. "mirrors": [
  1084. {
  1085. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1086. "preferred": true
  1087. }
  1088. ]
  1089. },
  1090. "require": {
  1091. "php": "^7.1 || ^8.0"
  1092. },
  1093. "conflict": {
  1094. "doctrine/common": "<2.9@dev"
  1095. },
  1096. "require-dev": {
  1097. "doctrine/coding-standard": "^6.0",
  1098. "phpunit/phpunit": "^7.0"
  1099. },
  1100. "type": "library",
  1101. "extra": {
  1102. "branch-alias": {
  1103. "dev-master": "1.0.x-dev"
  1104. }
  1105. },
  1106. "autoload": {
  1107. "psr-4": {
  1108. "Doctrine\\Common\\": "lib/Doctrine/Common"
  1109. }
  1110. },
  1111. "notification-url": "https://packagist.org/downloads/",
  1112. "license": [
  1113. "MIT"
  1114. ],
  1115. "authors": [
  1116. {
  1117. "name": "Guilherme Blanco",
  1118. "email": "guilhermeblanco@gmail.com"
  1119. },
  1120. {
  1121. "name": "Roman Borschel",
  1122. "email": "roman@code-factory.org"
  1123. },
  1124. {
  1125. "name": "Benjamin Eberlei",
  1126. "email": "kontakt@beberlei.de"
  1127. },
  1128. {
  1129. "name": "Jonathan Wage",
  1130. "email": "jonwage@gmail.com"
  1131. },
  1132. {
  1133. "name": "Johannes Schmitt",
  1134. "email": "schmittjoh@gmail.com"
  1135. },
  1136. {
  1137. "name": "Marco Pivetta",
  1138. "email": "ocramius@gmail.com"
  1139. }
  1140. ],
  1141. "description": "The Doctrine Event Manager is a simple PHP event system that was built to be used with the various Doctrine projects.",
  1142. "homepage": "https://www.doctrine-project.org/projects/event-manager.html",
  1143. "keywords": [
  1144. "event",
  1145. "event dispatcher",
  1146. "event manager",
  1147. "event system",
  1148. "events"
  1149. ],
  1150. "time": "2020-05-29T18:28:51+00:00"
  1151. },
  1152. {
  1153. "name": "doctrine/inflector",
  1154. "version": "2.0.3",
  1155. "source": {
  1156. "type": "git",
  1157. "url": "https://github.com/doctrine/inflector.git",
  1158. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210"
  1159. },
  1160. "dist": {
  1161. "type": "zip",
  1162. "url": "https://api.github.com/repos/doctrine/inflector/zipball/9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1163. "reference": "9cf661f4eb38f7c881cac67c75ea9b00bf97b210",
  1164. "shasum": "",
  1165. "mirrors": [
  1166. {
  1167. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1168. "preferred": true
  1169. }
  1170. ]
  1171. },
  1172. "require": {
  1173. "php": "^7.2 || ^8.0"
  1174. },
  1175. "require-dev": {
  1176. "doctrine/coding-standard": "^7.0",
  1177. "phpstan/phpstan": "^0.11",
  1178. "phpstan/phpstan-phpunit": "^0.11",
  1179. "phpstan/phpstan-strict-rules": "^0.11",
  1180. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  1181. },
  1182. "type": "library",
  1183. "extra": {
  1184. "branch-alias": {
  1185. "dev-master": "2.0.x-dev"
  1186. }
  1187. },
  1188. "autoload": {
  1189. "psr-4": {
  1190. "Doctrine\\Inflector\\": "lib/Doctrine/Inflector"
  1191. }
  1192. },
  1193. "notification-url": "https://packagist.org/downloads/",
  1194. "license": [
  1195. "MIT"
  1196. ],
  1197. "authors": [
  1198. {
  1199. "name": "Guilherme Blanco",
  1200. "email": "guilhermeblanco@gmail.com"
  1201. },
  1202. {
  1203. "name": "Roman Borschel",
  1204. "email": "roman@code-factory.org"
  1205. },
  1206. {
  1207. "name": "Benjamin Eberlei",
  1208. "email": "kontakt@beberlei.de"
  1209. },
  1210. {
  1211. "name": "Jonathan Wage",
  1212. "email": "jonwage@gmail.com"
  1213. },
  1214. {
  1215. "name": "Johannes Schmitt",
  1216. "email": "schmittjoh@gmail.com"
  1217. }
  1218. ],
  1219. "description": "PHP Doctrine Inflector is a small library that can perform string manipulations with regard to upper/lowercase and singular/plural forms of words.",
  1220. "homepage": "https://www.doctrine-project.org/projects/inflector.html",
  1221. "keywords": [
  1222. "inflection",
  1223. "inflector",
  1224. "lowercase",
  1225. "manipulation",
  1226. "php",
  1227. "plural",
  1228. "singular",
  1229. "strings",
  1230. "uppercase",
  1231. "words"
  1232. ],
  1233. "time": "2020-05-29T15:13:26+00:00"
  1234. },
  1235. {
  1236. "name": "doctrine/lexer",
  1237. "version": "1.2.1",
  1238. "source": {
  1239. "type": "git",
  1240. "url": "https://github.com/doctrine/lexer.git",
  1241. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042"
  1242. },
  1243. "dist": {
  1244. "type": "zip",
  1245. "url": "https://api.github.com/repos/doctrine/lexer/zipball/e864bbf5904cb8f5bb334f99209b48018522f042",
  1246. "reference": "e864bbf5904cb8f5bb334f99209b48018522f042",
  1247. "shasum": "",
  1248. "mirrors": [
  1249. {
  1250. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1251. "preferred": true
  1252. }
  1253. ]
  1254. },
  1255. "require": {
  1256. "php": "^7.2 || ^8.0"
  1257. },
  1258. "require-dev": {
  1259. "doctrine/coding-standard": "^6.0",
  1260. "phpstan/phpstan": "^0.11.8",
  1261. "phpunit/phpunit": "^8.2"
  1262. },
  1263. "type": "library",
  1264. "extra": {
  1265. "branch-alias": {
  1266. "dev-master": "1.2.x-dev"
  1267. }
  1268. },
  1269. "autoload": {
  1270. "psr-4": {
  1271. "Doctrine\\Common\\Lexer\\": "lib/Doctrine/Common/Lexer"
  1272. }
  1273. },
  1274. "notification-url": "https://packagist.org/downloads/",
  1275. "license": [
  1276. "MIT"
  1277. ],
  1278. "authors": [
  1279. {
  1280. "name": "Guilherme Blanco",
  1281. "email": "guilhermeblanco@gmail.com"
  1282. },
  1283. {
  1284. "name": "Roman Borschel",
  1285. "email": "roman@code-factory.org"
  1286. },
  1287. {
  1288. "name": "Johannes Schmitt",
  1289. "email": "schmittjoh@gmail.com"
  1290. }
  1291. ],
  1292. "description": "PHP Doctrine Lexer parser library that can be used in Top-Down, Recursive Descent Parsers.",
  1293. "homepage": "https://www.doctrine-project.org/projects/lexer.html",
  1294. "keywords": [
  1295. "annotations",
  1296. "docblock",
  1297. "lexer",
  1298. "parser",
  1299. "php"
  1300. ],
  1301. "time": "2020-05-25T17:44:05+00:00"
  1302. },
  1303. {
  1304. "name": "dragonmantank/cron-expression",
  1305. "version": "v2.3.1",
  1306. "source": {
  1307. "type": "git",
  1308. "url": "https://github.com/dragonmantank/cron-expression.git",
  1309. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2"
  1310. },
  1311. "dist": {
  1312. "type": "zip",
  1313. "url": "https://api.github.com/repos/dragonmantank/cron-expression/zipball/65b2d8ee1f10915efb3b55597da3404f096acba2",
  1314. "reference": "65b2d8ee1f10915efb3b55597da3404f096acba2",
  1315. "shasum": "",
  1316. "mirrors": [
  1317. {
  1318. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1319. "preferred": true
  1320. }
  1321. ]
  1322. },
  1323. "require": {
  1324. "php": "^7.0|^8.0"
  1325. },
  1326. "require-dev": {
  1327. "phpunit/phpunit": "^6.4|^7.0|^8.0|^9.0"
  1328. },
  1329. "type": "library",
  1330. "extra": {
  1331. "branch-alias": {
  1332. "dev-master": "2.3-dev"
  1333. }
  1334. },
  1335. "autoload": {
  1336. "psr-4": {
  1337. "Cron\\": "src/Cron/"
  1338. }
  1339. },
  1340. "notification-url": "https://packagist.org/downloads/",
  1341. "license": [
  1342. "MIT"
  1343. ],
  1344. "authors": [
  1345. {
  1346. "name": "Michael Dowling",
  1347. "email": "mtdowling@gmail.com",
  1348. "homepage": "https://github.com/mtdowling"
  1349. },
  1350. {
  1351. "name": "Chris Tankersley",
  1352. "email": "chris@ctankersley.com",
  1353. "homepage": "https://github.com/dragonmantank"
  1354. }
  1355. ],
  1356. "description": "CRON for PHP: Calculate the next or previous run date and determine if a CRON expression is due",
  1357. "keywords": [
  1358. "cron",
  1359. "schedule"
  1360. ],
  1361. "time": "2020-10-13T00:52:37+00:00"
  1362. },
  1363. {
  1364. "name": "easywechat-composer/easywechat-composer",
  1365. "version": "1.4.0",
  1366. "source": {
  1367. "type": "git",
  1368. "url": "https://github.com/mingyoung/easywechat-composer.git",
  1369. "reference": "93cfce1ec842b9a5b1b0791a52afd18b833f114a"
  1370. },
  1371. "dist": {
  1372. "type": "zip",
  1373. "url": "https://api.github.com/repos/mingyoung/easywechat-composer/zipball/93cfce1ec842b9a5b1b0791a52afd18b833f114a",
  1374. "reference": "93cfce1ec842b9a5b1b0791a52afd18b833f114a",
  1375. "shasum": "",
  1376. "mirrors": [
  1377. {
  1378. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1379. "preferred": true
  1380. }
  1381. ]
  1382. },
  1383. "require": {
  1384. "composer-plugin-api": "^1.0 || ^2.0",
  1385. "php": ">=7.0"
  1386. },
  1387. "require-dev": {
  1388. "composer/composer": "^1.0 || ^2.0",
  1389. "phpunit/phpunit": "^6.5 || ^7.0"
  1390. },
  1391. "type": "composer-plugin",
  1392. "extra": {
  1393. "class": "EasyWeChatComposer\\Plugin"
  1394. },
  1395. "autoload": {
  1396. "psr-4": {
  1397. "EasyWeChatComposer\\": "src/"
  1398. }
  1399. },
  1400. "notification-url": "https://packagist.org/downloads/",
  1401. "license": [
  1402. "MIT"
  1403. ],
  1404. "authors": [
  1405. {
  1406. "name": "张铭阳",
  1407. "email": "mingyoungcheung@gmail.com"
  1408. }
  1409. ],
  1410. "description": "The composer plugin for EasyWeChat",
  1411. "time": "2020-07-23T11:06:47+00:00"
  1412. },
  1413. {
  1414. "name": "egulias/email-validator",
  1415. "version": "2.1.25",
  1416. "source": {
  1417. "type": "git",
  1418. "url": "https://github.com/egulias/EmailValidator.git",
  1419. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4"
  1420. },
  1421. "dist": {
  1422. "type": "zip",
  1423. "url": "https://api.github.com/repos/egulias/EmailValidator/zipball/0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1424. "reference": "0dbf5d78455d4d6a41d186da50adc1122ec066f4",
  1425. "shasum": "",
  1426. "mirrors": [
  1427. {
  1428. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1429. "preferred": true
  1430. }
  1431. ]
  1432. },
  1433. "require": {
  1434. "doctrine/lexer": "^1.0.1",
  1435. "php": ">=5.5",
  1436. "symfony/polyfill-intl-idn": "^1.10"
  1437. },
  1438. "require-dev": {
  1439. "dominicsayers/isemail": "^3.0.7",
  1440. "phpunit/phpunit": "^4.8.36|^7.5.15",
  1441. "satooshi/php-coveralls": "^1.0.1"
  1442. },
  1443. "suggest": {
  1444. "ext-intl": "PHP Internationalization Libraries are required to use the SpoofChecking validation"
  1445. },
  1446. "type": "library",
  1447. "extra": {
  1448. "branch-alias": {
  1449. "dev-master": "2.1.x-dev"
  1450. }
  1451. },
  1452. "autoload": {
  1453. "psr-4": {
  1454. "Egulias\\EmailValidator\\": "src"
  1455. }
  1456. },
  1457. "notification-url": "https://packagist.org/downloads/",
  1458. "license": [
  1459. "MIT"
  1460. ],
  1461. "authors": [
  1462. {
  1463. "name": "Eduardo Gulias Davis"
  1464. }
  1465. ],
  1466. "description": "A library for validating emails against several RFCs",
  1467. "homepage": "https://github.com/egulias/EmailValidator",
  1468. "keywords": [
  1469. "email",
  1470. "emailvalidation",
  1471. "emailvalidator",
  1472. "validation",
  1473. "validator"
  1474. ],
  1475. "time": "2020-12-29T14:50:06+00:00"
  1476. },
  1477. {
  1478. "name": "endroid/qr-code",
  1479. "version": "3.9.7",
  1480. "source": {
  1481. "type": "git",
  1482. "url": "https://github.com/endroid/qr-code.git",
  1483. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6"
  1484. },
  1485. "dist": {
  1486. "type": "zip",
  1487. "url": "https://api.github.com/repos/endroid/qr-code/zipball/94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1488. "reference": "94563d7b3105288e6ac53a67ae720e3669fac1f6",
  1489. "shasum": "",
  1490. "mirrors": [
  1491. {
  1492. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1493. "preferred": true
  1494. }
  1495. ]
  1496. },
  1497. "require": {
  1498. "bacon/bacon-qr-code": "^2.0",
  1499. "khanamiryan/qrcode-detector-decoder": "^1.0.5",
  1500. "myclabs/php-enum": "^1.5",
  1501. "php": "^7.3||^8.0",
  1502. "symfony/options-resolver": "^3.4||^4.4||^5.0",
  1503. "symfony/property-access": "^3.4||^4.4||^5.0"
  1504. },
  1505. "require-dev": {
  1506. "endroid/quality": "^1.5.2",
  1507. "setasign/fpdf": "^1.8"
  1508. },
  1509. "suggest": {
  1510. "ext-gd": "Required for generating PNG images",
  1511. "roave/security-advisories": "Avoids installation of package versions with vulnerabilities",
  1512. "setasign/fpdf": "Required to use the FPDF writer.",
  1513. "symfony/security-checker": "Checks your composer.lock for vulnerabilities"
  1514. },
  1515. "type": "library",
  1516. "extra": {
  1517. "branch-alias": {
  1518. "dev-master": "3.x-dev"
  1519. }
  1520. },
  1521. "autoload": {
  1522. "psr-4": {
  1523. "Endroid\\QrCode\\": "src/"
  1524. }
  1525. },
  1526. "notification-url": "https://packagist.org/downloads/",
  1527. "license": [
  1528. "MIT"
  1529. ],
  1530. "authors": [
  1531. {
  1532. "name": "Jeroen van den Enden",
  1533. "email": "info@endroid.nl"
  1534. }
  1535. ],
  1536. "description": "Endroid QR Code",
  1537. "homepage": "https://github.com/endroid/qr-code",
  1538. "keywords": [
  1539. "bundle",
  1540. "code",
  1541. "endroid",
  1542. "php",
  1543. "qr",
  1544. "qrcode"
  1545. ],
  1546. "time": "2021-04-20T19:10:54+00:00"
  1547. },
  1548. {
  1549. "name": "guzzlehttp/guzzle",
  1550. "version": "6.5.5",
  1551. "source": {
  1552. "type": "git",
  1553. "url": "https://github.com/guzzle/guzzle.git",
  1554. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e"
  1555. },
  1556. "dist": {
  1557. "type": "zip",
  1558. "url": "https://api.github.com/repos/guzzle/guzzle/zipball/9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1559. "reference": "9d4290de1cfd701f38099ef7e183b64b4b7b0c5e",
  1560. "shasum": "",
  1561. "mirrors": [
  1562. {
  1563. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1564. "preferred": true
  1565. }
  1566. ]
  1567. },
  1568. "require": {
  1569. "ext-json": "*",
  1570. "guzzlehttp/promises": "^1.0",
  1571. "guzzlehttp/psr7": "^1.6.1",
  1572. "php": ">=5.5",
  1573. "symfony/polyfill-intl-idn": "^1.17.0"
  1574. },
  1575. "require-dev": {
  1576. "ext-curl": "*",
  1577. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.4 || ^7.0",
  1578. "psr/log": "^1.1"
  1579. },
  1580. "suggest": {
  1581. "psr/log": "Required for using the Log middleware"
  1582. },
  1583. "type": "library",
  1584. "extra": {
  1585. "branch-alias": {
  1586. "dev-master": "6.5-dev"
  1587. }
  1588. },
  1589. "autoload": {
  1590. "psr-4": {
  1591. "GuzzleHttp\\": "src/"
  1592. },
  1593. "files": [
  1594. "src/functions_include.php"
  1595. ]
  1596. },
  1597. "notification-url": "https://packagist.org/downloads/",
  1598. "license": [
  1599. "MIT"
  1600. ],
  1601. "authors": [
  1602. {
  1603. "name": "Michael Dowling",
  1604. "email": "mtdowling@gmail.com",
  1605. "homepage": "https://github.com/mtdowling"
  1606. }
  1607. ],
  1608. "description": "Guzzle is a PHP HTTP client library",
  1609. "homepage": "http://guzzlephp.org/",
  1610. "keywords": [
  1611. "client",
  1612. "curl",
  1613. "framework",
  1614. "http",
  1615. "http client",
  1616. "rest",
  1617. "web service"
  1618. ],
  1619. "time": "2020-06-16T21:01:06+00:00"
  1620. },
  1621. {
  1622. "name": "guzzlehttp/promises",
  1623. "version": "1.4.1",
  1624. "source": {
  1625. "type": "git",
  1626. "url": "https://github.com/guzzle/promises.git",
  1627. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d"
  1628. },
  1629. "dist": {
  1630. "type": "zip",
  1631. "url": "https://api.github.com/repos/guzzle/promises/zipball/8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1632. "reference": "8e7d04f1f6450fef59366c399cfad4b9383aa30d",
  1633. "shasum": "",
  1634. "mirrors": [
  1635. {
  1636. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1637. "preferred": true
  1638. }
  1639. ]
  1640. },
  1641. "require": {
  1642. "php": ">=5.5"
  1643. },
  1644. "require-dev": {
  1645. "symfony/phpunit-bridge": "^4.4 || ^5.1"
  1646. },
  1647. "type": "library",
  1648. "extra": {
  1649. "branch-alias": {
  1650. "dev-master": "1.4-dev"
  1651. }
  1652. },
  1653. "autoload": {
  1654. "psr-4": {
  1655. "GuzzleHttp\\Promise\\": "src/"
  1656. },
  1657. "files": [
  1658. "src/functions_include.php"
  1659. ]
  1660. },
  1661. "notification-url": "https://packagist.org/downloads/",
  1662. "license": [
  1663. "MIT"
  1664. ],
  1665. "authors": [
  1666. {
  1667. "name": "Michael Dowling",
  1668. "email": "mtdowling@gmail.com",
  1669. "homepage": "https://github.com/mtdowling"
  1670. }
  1671. ],
  1672. "description": "Guzzle promises library",
  1673. "keywords": [
  1674. "promise"
  1675. ],
  1676. "time": "2021-03-07T09:25:29+00:00"
  1677. },
  1678. {
  1679. "name": "guzzlehttp/psr7",
  1680. "version": "1.8.1",
  1681. "source": {
  1682. "type": "git",
  1683. "url": "https://github.com/guzzle/psr7.git",
  1684. "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1"
  1685. },
  1686. "dist": {
  1687. "type": "zip",
  1688. "url": "https://api.github.com/repos/guzzle/psr7/zipball/35ea11d335fd638b5882ff1725228b3d35496ab1",
  1689. "reference": "35ea11d335fd638b5882ff1725228b3d35496ab1",
  1690. "shasum": "",
  1691. "mirrors": [
  1692. {
  1693. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1694. "preferred": true
  1695. }
  1696. ]
  1697. },
  1698. "require": {
  1699. "php": ">=5.4.0",
  1700. "psr/http-message": "~1.0",
  1701. "ralouphie/getallheaders": "^2.0.5 || ^3.0.0"
  1702. },
  1703. "provide": {
  1704. "psr/http-message-implementation": "1.0"
  1705. },
  1706. "require-dev": {
  1707. "ext-zlib": "*",
  1708. "phpunit/phpunit": "~4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20 || ^8.5.8 || ^9.3.10"
  1709. },
  1710. "suggest": {
  1711. "laminas/laminas-httphandlerrunner": "Emit PSR-7 responses"
  1712. },
  1713. "type": "library",
  1714. "extra": {
  1715. "branch-alias": {
  1716. "dev-master": "1.7-dev"
  1717. }
  1718. },
  1719. "autoload": {
  1720. "psr-4": {
  1721. "GuzzleHttp\\Psr7\\": "src/"
  1722. },
  1723. "files": [
  1724. "src/functions_include.php"
  1725. ]
  1726. },
  1727. "notification-url": "https://packagist.org/downloads/",
  1728. "license": [
  1729. "MIT"
  1730. ],
  1731. "authors": [
  1732. {
  1733. "name": "Michael Dowling",
  1734. "email": "mtdowling@gmail.com",
  1735. "homepage": "https://github.com/mtdowling"
  1736. },
  1737. {
  1738. "name": "Tobias Schultze",
  1739. "homepage": "https://github.com/Tobion"
  1740. }
  1741. ],
  1742. "description": "PSR-7 message implementation that also provides common utility methods",
  1743. "keywords": [
  1744. "http",
  1745. "message",
  1746. "psr-7",
  1747. "request",
  1748. "response",
  1749. "stream",
  1750. "uri",
  1751. "url"
  1752. ],
  1753. "time": "2021-03-21T16:25:00+00:00"
  1754. },
  1755. {
  1756. "name": "illuminate/auth",
  1757. "version": "v6.20.24",
  1758. "source": {
  1759. "type": "git",
  1760. "url": "https://github.com/illuminate/auth.git",
  1761. "reference": "7d18c9aa6507e0c0ab6ae1764c214f2461b05e16"
  1762. },
  1763. "dist": {
  1764. "type": "zip",
  1765. "url": "https://api.github.com/repos/illuminate/auth/zipball/7d18c9aa6507e0c0ab6ae1764c214f2461b05e16",
  1766. "reference": "7d18c9aa6507e0c0ab6ae1764c214f2461b05e16",
  1767. "shasum": "",
  1768. "mirrors": [
  1769. {
  1770. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1771. "preferred": true
  1772. }
  1773. ]
  1774. },
  1775. "require": {
  1776. "illuminate/contracts": "^6.0",
  1777. "illuminate/http": "^6.0",
  1778. "illuminate/queue": "^6.0",
  1779. "illuminate/support": "^6.0",
  1780. "php": "^7.2.5|^8.0"
  1781. },
  1782. "suggest": {
  1783. "illuminate/console": "Required to use the auth:clear-resets command (^6.0).",
  1784. "illuminate/queue": "Required to fire login / logout events (^6.0).",
  1785. "illuminate/session": "Required to use the session based guard (^6.0)."
  1786. },
  1787. "type": "library",
  1788. "extra": {
  1789. "branch-alias": {
  1790. "dev-master": "6.x-dev"
  1791. }
  1792. },
  1793. "autoload": {
  1794. "psr-4": {
  1795. "Illuminate\\Auth\\": ""
  1796. }
  1797. },
  1798. "notification-url": "https://packagist.org/downloads/",
  1799. "license": [
  1800. "MIT"
  1801. ],
  1802. "authors": [
  1803. {
  1804. "name": "Taylor Otwell",
  1805. "email": "taylor@laravel.com"
  1806. }
  1807. ],
  1808. "description": "The Illuminate Auth package.",
  1809. "homepage": "https://laravel.com",
  1810. "time": "2020-10-27T15:05:51+00:00"
  1811. },
  1812. {
  1813. "name": "illuminate/broadcasting",
  1814. "version": "v6.20.24",
  1815. "source": {
  1816. "type": "git",
  1817. "url": "https://github.com/illuminate/broadcasting.git",
  1818. "reference": "e176ec6c65fb4f9d62e501619a361fe5989123d0"
  1819. },
  1820. "dist": {
  1821. "type": "zip",
  1822. "url": "https://api.github.com/repos/illuminate/broadcasting/zipball/e176ec6c65fb4f9d62e501619a361fe5989123d0",
  1823. "reference": "e176ec6c65fb4f9d62e501619a361fe5989123d0",
  1824. "shasum": "",
  1825. "mirrors": [
  1826. {
  1827. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1828. "preferred": true
  1829. }
  1830. ]
  1831. },
  1832. "require": {
  1833. "ext-json": "*",
  1834. "illuminate/bus": "^6.0",
  1835. "illuminate/contracts": "^6.0",
  1836. "illuminate/queue": "^6.0",
  1837. "illuminate/support": "^6.0",
  1838. "php": "^7.2.5|^8.0",
  1839. "psr/log": "^1.0"
  1840. },
  1841. "suggest": {
  1842. "pusher/pusher-php-server": "Required to use the Pusher broadcast driver (^4.0)."
  1843. },
  1844. "type": "library",
  1845. "extra": {
  1846. "branch-alias": {
  1847. "dev-master": "6.x-dev"
  1848. }
  1849. },
  1850. "autoload": {
  1851. "psr-4": {
  1852. "Illuminate\\Broadcasting\\": ""
  1853. }
  1854. },
  1855. "notification-url": "https://packagist.org/downloads/",
  1856. "license": [
  1857. "MIT"
  1858. ],
  1859. "authors": [
  1860. {
  1861. "name": "Taylor Otwell",
  1862. "email": "taylor@laravel.com"
  1863. }
  1864. ],
  1865. "description": "The Illuminate Broadcasting package.",
  1866. "homepage": "https://laravel.com",
  1867. "time": "2020-11-19T14:10:44+00:00"
  1868. },
  1869. {
  1870. "name": "illuminate/bus",
  1871. "version": "v6.20.24",
  1872. "source": {
  1873. "type": "git",
  1874. "url": "https://github.com/illuminate/bus.git",
  1875. "reference": "107fd91aa7bc121fef8b43fb51a5bdee19e77e94"
  1876. },
  1877. "dist": {
  1878. "type": "zip",
  1879. "url": "https://api.github.com/repos/illuminate/bus/zipball/107fd91aa7bc121fef8b43fb51a5bdee19e77e94",
  1880. "reference": "107fd91aa7bc121fef8b43fb51a5bdee19e77e94",
  1881. "shasum": "",
  1882. "mirrors": [
  1883. {
  1884. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1885. "preferred": true
  1886. }
  1887. ]
  1888. },
  1889. "require": {
  1890. "illuminate/contracts": "^6.0",
  1891. "illuminate/pipeline": "^6.0",
  1892. "illuminate/support": "^6.0",
  1893. "php": "^7.2.5|^8.0"
  1894. },
  1895. "type": "library",
  1896. "extra": {
  1897. "branch-alias": {
  1898. "dev-master": "6.x-dev"
  1899. }
  1900. },
  1901. "autoload": {
  1902. "psr-4": {
  1903. "Illuminate\\Bus\\": ""
  1904. }
  1905. },
  1906. "notification-url": "https://packagist.org/downloads/",
  1907. "license": [
  1908. "MIT"
  1909. ],
  1910. "authors": [
  1911. {
  1912. "name": "Taylor Otwell",
  1913. "email": "taylor@laravel.com"
  1914. }
  1915. ],
  1916. "description": "The Illuminate Bus package.",
  1917. "homepage": "https://laravel.com",
  1918. "time": "2020-10-27T15:05:51+00:00"
  1919. },
  1920. {
  1921. "name": "illuminate/cache",
  1922. "version": "v6.20.24",
  1923. "source": {
  1924. "type": "git",
  1925. "url": "https://github.com/illuminate/cache.git",
  1926. "reference": "c24628c01406d14e2fd1e7842888cd84cb0e3e37"
  1927. },
  1928. "dist": {
  1929. "type": "zip",
  1930. "url": "https://api.github.com/repos/illuminate/cache/zipball/c24628c01406d14e2fd1e7842888cd84cb0e3e37",
  1931. "reference": "c24628c01406d14e2fd1e7842888cd84cb0e3e37",
  1932. "shasum": "",
  1933. "mirrors": [
  1934. {
  1935. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1936. "preferred": true
  1937. }
  1938. ]
  1939. },
  1940. "require": {
  1941. "illuminate/contracts": "^6.0",
  1942. "illuminate/support": "^6.0",
  1943. "php": "^7.2.5|^8.0"
  1944. },
  1945. "suggest": {
  1946. "ext-memcached": "Required to use the memcache cache driver.",
  1947. "illuminate/database": "Required to use the database cache driver (^6.0).",
  1948. "illuminate/filesystem": "Required to use the file cache driver (^6.0).",
  1949. "illuminate/redis": "Required to use the redis cache driver (^6.0).",
  1950. "symfony/cache": "Required to PSR-6 cache bridge (^4.3.4)."
  1951. },
  1952. "type": "library",
  1953. "extra": {
  1954. "branch-alias": {
  1955. "dev-master": "6.x-dev"
  1956. }
  1957. },
  1958. "autoload": {
  1959. "psr-4": {
  1960. "Illuminate\\Cache\\": ""
  1961. }
  1962. },
  1963. "notification-url": "https://packagist.org/downloads/",
  1964. "license": [
  1965. "MIT"
  1966. ],
  1967. "authors": [
  1968. {
  1969. "name": "Taylor Otwell",
  1970. "email": "taylor@laravel.com"
  1971. }
  1972. ],
  1973. "description": "The Illuminate Cache package.",
  1974. "homepage": "https://laravel.com",
  1975. "time": "2021-03-30T21:33:10+00:00"
  1976. },
  1977. {
  1978. "name": "illuminate/config",
  1979. "version": "v6.20.24",
  1980. "source": {
  1981. "type": "git",
  1982. "url": "https://github.com/illuminate/config.git",
  1983. "reference": "e52084805fcfc0d36f891121dd14c64ce388a892"
  1984. },
  1985. "dist": {
  1986. "type": "zip",
  1987. "url": "https://api.github.com/repos/illuminate/config/zipball/e52084805fcfc0d36f891121dd14c64ce388a892",
  1988. "reference": "e52084805fcfc0d36f891121dd14c64ce388a892",
  1989. "shasum": "",
  1990. "mirrors": [
  1991. {
  1992. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  1993. "preferred": true
  1994. }
  1995. ]
  1996. },
  1997. "require": {
  1998. "illuminate/contracts": "^6.0",
  1999. "illuminate/support": "^6.0",
  2000. "php": "^7.2.5|^8.0"
  2001. },
  2002. "type": "library",
  2003. "extra": {
  2004. "branch-alias": {
  2005. "dev-master": "6.x-dev"
  2006. }
  2007. },
  2008. "autoload": {
  2009. "psr-4": {
  2010. "Illuminate\\Config\\": ""
  2011. }
  2012. },
  2013. "notification-url": "https://packagist.org/downloads/",
  2014. "license": [
  2015. "MIT"
  2016. ],
  2017. "authors": [
  2018. {
  2019. "name": "Taylor Otwell",
  2020. "email": "taylor@laravel.com"
  2021. }
  2022. ],
  2023. "description": "The Illuminate Config package.",
  2024. "homepage": "https://laravel.com",
  2025. "time": "2020-10-27T15:05:51+00:00"
  2026. },
  2027. {
  2028. "name": "illuminate/console",
  2029. "version": "v6.20.24",
  2030. "source": {
  2031. "type": "git",
  2032. "url": "https://github.com/illuminate/console.git",
  2033. "reference": "e500b84f88c313432638d84911aa4ddfaa31c663"
  2034. },
  2035. "dist": {
  2036. "type": "zip",
  2037. "url": "https://api.github.com/repos/illuminate/console/zipball/e500b84f88c313432638d84911aa4ddfaa31c663",
  2038. "reference": "e500b84f88c313432638d84911aa4ddfaa31c663",
  2039. "shasum": "",
  2040. "mirrors": [
  2041. {
  2042. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2043. "preferred": true
  2044. }
  2045. ]
  2046. },
  2047. "require": {
  2048. "illuminate/contracts": "^6.0",
  2049. "illuminate/support": "^6.0",
  2050. "php": "^7.2.5|^8.0",
  2051. "symfony/console": "^4.3.4",
  2052. "symfony/process": "^4.3.4"
  2053. },
  2054. "suggest": {
  2055. "dragonmantank/cron-expression": "Required to use scheduler (^2.3.1).",
  2056. "guzzlehttp/guzzle": "Required to use the ping methods on schedules (^6.3.1|^7.0.1).",
  2057. "illuminate/bus": "Required to use the scheduled job dispatcher (^6.0)",
  2058. "illuminate/container": "Required to use the scheduler (^6.0)",
  2059. "illuminate/filesystem": "Required to use the generator command (^6.0)",
  2060. "illuminate/queue": "Required to use closures for scheduled jobs (^6.0)"
  2061. },
  2062. "type": "library",
  2063. "extra": {
  2064. "branch-alias": {
  2065. "dev-master": "6.x-dev"
  2066. }
  2067. },
  2068. "autoload": {
  2069. "psr-4": {
  2070. "Illuminate\\Console\\": ""
  2071. }
  2072. },
  2073. "notification-url": "https://packagist.org/downloads/",
  2074. "license": [
  2075. "MIT"
  2076. ],
  2077. "authors": [
  2078. {
  2079. "name": "Taylor Otwell",
  2080. "email": "taylor@laravel.com"
  2081. }
  2082. ],
  2083. "description": "The Illuminate Console package.",
  2084. "homepage": "https://laravel.com",
  2085. "time": "2020-10-27T19:50:31+00:00"
  2086. },
  2087. {
  2088. "name": "illuminate/container",
  2089. "version": "v6.20.24",
  2090. "source": {
  2091. "type": "git",
  2092. "url": "https://github.com/illuminate/container.git",
  2093. "reference": "aa6e7030cba7458bbeeddfb1ddb54b3c2f7ba113"
  2094. },
  2095. "dist": {
  2096. "type": "zip",
  2097. "url": "https://api.github.com/repos/illuminate/container/zipball/aa6e7030cba7458bbeeddfb1ddb54b3c2f7ba113",
  2098. "reference": "aa6e7030cba7458bbeeddfb1ddb54b3c2f7ba113",
  2099. "shasum": "",
  2100. "mirrors": [
  2101. {
  2102. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2103. "preferred": true
  2104. }
  2105. ]
  2106. },
  2107. "require": {
  2108. "illuminate/contracts": "^6.0",
  2109. "php": "^7.2.5|^8.0",
  2110. "psr/container": "^1.0"
  2111. },
  2112. "type": "library",
  2113. "extra": {
  2114. "branch-alias": {
  2115. "dev-master": "6.x-dev"
  2116. }
  2117. },
  2118. "autoload": {
  2119. "psr-4": {
  2120. "Illuminate\\Container\\": ""
  2121. }
  2122. },
  2123. "notification-url": "https://packagist.org/downloads/",
  2124. "license": [
  2125. "MIT"
  2126. ],
  2127. "authors": [
  2128. {
  2129. "name": "Taylor Otwell",
  2130. "email": "taylor@laravel.com"
  2131. }
  2132. ],
  2133. "description": "The Illuminate Container package.",
  2134. "homepage": "https://laravel.com",
  2135. "time": "2020-10-27T16:13:38+00:00"
  2136. },
  2137. {
  2138. "name": "illuminate/contracts",
  2139. "version": "v6.20.24",
  2140. "source": {
  2141. "type": "git",
  2142. "url": "https://github.com/illuminate/contracts.git",
  2143. "reference": "89dc8d7ac32cdfa254461cdd4da5d692b44169a4"
  2144. },
  2145. "dist": {
  2146. "type": "zip",
  2147. "url": "https://api.github.com/repos/illuminate/contracts/zipball/89dc8d7ac32cdfa254461cdd4da5d692b44169a4",
  2148. "reference": "89dc8d7ac32cdfa254461cdd4da5d692b44169a4",
  2149. "shasum": "",
  2150. "mirrors": [
  2151. {
  2152. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2153. "preferred": true
  2154. }
  2155. ]
  2156. },
  2157. "require": {
  2158. "php": "^7.2.5|^8.0",
  2159. "psr/container": "^1.0",
  2160. "psr/simple-cache": "^1.0"
  2161. },
  2162. "type": "library",
  2163. "extra": {
  2164. "branch-alias": {
  2165. "dev-master": "6.x-dev"
  2166. }
  2167. },
  2168. "autoload": {
  2169. "psr-4": {
  2170. "Illuminate\\Contracts\\": ""
  2171. }
  2172. },
  2173. "notification-url": "https://packagist.org/downloads/",
  2174. "license": [
  2175. "MIT"
  2176. ],
  2177. "authors": [
  2178. {
  2179. "name": "Taylor Otwell",
  2180. "email": "taylor@laravel.com"
  2181. }
  2182. ],
  2183. "description": "The Illuminate Contracts package.",
  2184. "homepage": "https://laravel.com",
  2185. "time": "2020-12-18T14:12:37+00:00"
  2186. },
  2187. {
  2188. "name": "illuminate/database",
  2189. "version": "v6.20.24",
  2190. "source": {
  2191. "type": "git",
  2192. "url": "https://github.com/illuminate/database.git",
  2193. "reference": "da124fbe2eeed5315a8b768af6f37fb712dd0f3a"
  2194. },
  2195. "dist": {
  2196. "type": "zip",
  2197. "url": "https://api.github.com/repos/illuminate/database/zipball/da124fbe2eeed5315a8b768af6f37fb712dd0f3a",
  2198. "reference": "da124fbe2eeed5315a8b768af6f37fb712dd0f3a",
  2199. "shasum": "",
  2200. "mirrors": [
  2201. {
  2202. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2203. "preferred": true
  2204. }
  2205. ]
  2206. },
  2207. "require": {
  2208. "ext-json": "*",
  2209. "illuminate/container": "^6.0",
  2210. "illuminate/contracts": "^6.0",
  2211. "illuminate/support": "^6.0",
  2212. "php": "^7.2.5|^8.0"
  2213. },
  2214. "suggest": {
  2215. "doctrine/dbal": "Required to rename columns and drop SQLite columns (^2.6).",
  2216. "fakerphp/faker": "Required to use the eloquent factory builder (^1.9.1).",
  2217. "illuminate/console": "Required to use the database commands (^6.0).",
  2218. "illuminate/events": "Required to use the observers with Eloquent (^6.0).",
  2219. "illuminate/filesystem": "Required to use the migrations (^6.0).",
  2220. "illuminate/pagination": "Required to paginate the result set (^6.0).",
  2221. "symfony/finder": "Required to use Eloquent model factories (^4.3.4)."
  2222. },
  2223. "type": "library",
  2224. "extra": {
  2225. "branch-alias": {
  2226. "dev-master": "6.x-dev"
  2227. }
  2228. },
  2229. "autoload": {
  2230. "psr-4": {
  2231. "Illuminate\\Database\\": ""
  2232. }
  2233. },
  2234. "notification-url": "https://packagist.org/downloads/",
  2235. "license": [
  2236. "MIT"
  2237. ],
  2238. "authors": [
  2239. {
  2240. "name": "Taylor Otwell",
  2241. "email": "taylor@laravel.com"
  2242. }
  2243. ],
  2244. "description": "The Illuminate Database package.",
  2245. "homepage": "https://laravel.com",
  2246. "keywords": [
  2247. "database",
  2248. "laravel",
  2249. "orm",
  2250. "sql"
  2251. ],
  2252. "time": "2021-04-08T12:38:18+00:00"
  2253. },
  2254. {
  2255. "name": "illuminate/encryption",
  2256. "version": "v6.20.24",
  2257. "source": {
  2258. "type": "git",
  2259. "url": "https://github.com/illuminate/encryption.git",
  2260. "reference": "b31fbb8e8625c69c969a84482fbe395a59db4ae4"
  2261. },
  2262. "dist": {
  2263. "type": "zip",
  2264. "url": "https://api.github.com/repos/illuminate/encryption/zipball/b31fbb8e8625c69c969a84482fbe395a59db4ae4",
  2265. "reference": "b31fbb8e8625c69c969a84482fbe395a59db4ae4",
  2266. "shasum": "",
  2267. "mirrors": [
  2268. {
  2269. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2270. "preferred": true
  2271. }
  2272. ]
  2273. },
  2274. "require": {
  2275. "ext-json": "*",
  2276. "ext-mbstring": "*",
  2277. "ext-openssl": "*",
  2278. "illuminate/contracts": "^6.0",
  2279. "illuminate/support": "^6.0",
  2280. "php": "^7.2.5|^8.0"
  2281. },
  2282. "type": "library",
  2283. "extra": {
  2284. "branch-alias": {
  2285. "dev-master": "6.x-dev"
  2286. }
  2287. },
  2288. "autoload": {
  2289. "psr-4": {
  2290. "Illuminate\\Encryption\\": ""
  2291. }
  2292. },
  2293. "notification-url": "https://packagist.org/downloads/",
  2294. "license": [
  2295. "MIT"
  2296. ],
  2297. "authors": [
  2298. {
  2299. "name": "Taylor Otwell",
  2300. "email": "taylor@laravel.com"
  2301. }
  2302. ],
  2303. "description": "The Illuminate Encryption package.",
  2304. "homepage": "https://laravel.com",
  2305. "time": "2020-10-27T15:05:51+00:00"
  2306. },
  2307. {
  2308. "name": "illuminate/events",
  2309. "version": "v6.20.24",
  2310. "source": {
  2311. "type": "git",
  2312. "url": "https://github.com/illuminate/events.git",
  2313. "reference": "668581e3c31f9d499dc6919fe873003969a88e6c"
  2314. },
  2315. "dist": {
  2316. "type": "zip",
  2317. "url": "https://api.github.com/repos/illuminate/events/zipball/668581e3c31f9d499dc6919fe873003969a88e6c",
  2318. "reference": "668581e3c31f9d499dc6919fe873003969a88e6c",
  2319. "shasum": "",
  2320. "mirrors": [
  2321. {
  2322. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2323. "preferred": true
  2324. }
  2325. ]
  2326. },
  2327. "require": {
  2328. "illuminate/container": "^6.0",
  2329. "illuminate/contracts": "^6.0",
  2330. "illuminate/support": "^6.0",
  2331. "php": "^7.2.5|^8.0"
  2332. },
  2333. "type": "library",
  2334. "extra": {
  2335. "branch-alias": {
  2336. "dev-master": "6.x-dev"
  2337. }
  2338. },
  2339. "autoload": {
  2340. "psr-4": {
  2341. "Illuminate\\Events\\": ""
  2342. }
  2343. },
  2344. "notification-url": "https://packagist.org/downloads/",
  2345. "license": [
  2346. "MIT"
  2347. ],
  2348. "authors": [
  2349. {
  2350. "name": "Taylor Otwell",
  2351. "email": "taylor@laravel.com"
  2352. }
  2353. ],
  2354. "description": "The Illuminate Events package.",
  2355. "homepage": "https://laravel.com",
  2356. "time": "2020-10-27T15:05:51+00:00"
  2357. },
  2358. {
  2359. "name": "illuminate/filesystem",
  2360. "version": "v6.20.24",
  2361. "source": {
  2362. "type": "git",
  2363. "url": "https://github.com/illuminate/filesystem.git",
  2364. "reference": "5355953da41db06aac064a3d08dfa1f9bafffd24"
  2365. },
  2366. "dist": {
  2367. "type": "zip",
  2368. "url": "https://api.github.com/repos/illuminate/filesystem/zipball/5355953da41db06aac064a3d08dfa1f9bafffd24",
  2369. "reference": "5355953da41db06aac064a3d08dfa1f9bafffd24",
  2370. "shasum": "",
  2371. "mirrors": [
  2372. {
  2373. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2374. "preferred": true
  2375. }
  2376. ]
  2377. },
  2378. "require": {
  2379. "illuminate/contracts": "^6.0",
  2380. "illuminate/support": "^6.0",
  2381. "php": "^7.2.5|^8.0",
  2382. "symfony/finder": "^4.3.4"
  2383. },
  2384. "suggest": {
  2385. "ext-ftp": "Required to use the Flysystem FTP driver.",
  2386. "league/flysystem": "Required to use the Flysystem local and FTP drivers (^1.1).",
  2387. "league/flysystem-aws-s3-v3": "Required to use the Flysystem S3 driver (^1.0).",
  2388. "league/flysystem-cached-adapter": "Required to use the Flysystem cache (^1.0).",
  2389. "league/flysystem-sftp": "Required to use the Flysystem SFTP driver (^1.0).",
  2390. "psr/http-message": "Required to allow Storage::put to accept a StreamInterface (^1.0)."
  2391. },
  2392. "type": "library",
  2393. "extra": {
  2394. "branch-alias": {
  2395. "dev-master": "6.x-dev"
  2396. }
  2397. },
  2398. "autoload": {
  2399. "psr-4": {
  2400. "Illuminate\\Filesystem\\": ""
  2401. }
  2402. },
  2403. "notification-url": "https://packagist.org/downloads/",
  2404. "license": [
  2405. "MIT"
  2406. ],
  2407. "authors": [
  2408. {
  2409. "name": "Taylor Otwell",
  2410. "email": "taylor@laravel.com"
  2411. }
  2412. ],
  2413. "description": "The Illuminate Filesystem package.",
  2414. "homepage": "https://laravel.com",
  2415. "time": "2020-10-27T15:05:51+00:00"
  2416. },
  2417. {
  2418. "name": "illuminate/hashing",
  2419. "version": "v6.20.24",
  2420. "source": {
  2421. "type": "git",
  2422. "url": "https://github.com/illuminate/hashing.git",
  2423. "reference": "d1fcfd3acf9629708c00a6b4c946857a5f877bf2"
  2424. },
  2425. "dist": {
  2426. "type": "zip",
  2427. "url": "https://api.github.com/repos/illuminate/hashing/zipball/d1fcfd3acf9629708c00a6b4c946857a5f877bf2",
  2428. "reference": "d1fcfd3acf9629708c00a6b4c946857a5f877bf2",
  2429. "shasum": "",
  2430. "mirrors": [
  2431. {
  2432. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2433. "preferred": true
  2434. }
  2435. ]
  2436. },
  2437. "require": {
  2438. "illuminate/contracts": "^6.0",
  2439. "illuminate/support": "^6.0",
  2440. "php": "^7.2.5|^8.0"
  2441. },
  2442. "type": "library",
  2443. "extra": {
  2444. "branch-alias": {
  2445. "dev-master": "6.x-dev"
  2446. }
  2447. },
  2448. "autoload": {
  2449. "psr-4": {
  2450. "Illuminate\\Hashing\\": ""
  2451. }
  2452. },
  2453. "notification-url": "https://packagist.org/downloads/",
  2454. "license": [
  2455. "MIT"
  2456. ],
  2457. "authors": [
  2458. {
  2459. "name": "Taylor Otwell",
  2460. "email": "taylor@laravel.com"
  2461. }
  2462. ],
  2463. "description": "The Illuminate Hashing package.",
  2464. "homepage": "https://laravel.com",
  2465. "time": "2020-10-27T15:05:51+00:00"
  2466. },
  2467. {
  2468. "name": "illuminate/http",
  2469. "version": "v6.20.24",
  2470. "source": {
  2471. "type": "git",
  2472. "url": "https://github.com/illuminate/http.git",
  2473. "reference": "c20a51c83af75a335b7e97beb168a860bfe2f929"
  2474. },
  2475. "dist": {
  2476. "type": "zip",
  2477. "url": "https://api.github.com/repos/illuminate/http/zipball/c20a51c83af75a335b7e97beb168a860bfe2f929",
  2478. "reference": "c20a51c83af75a335b7e97beb168a860bfe2f929",
  2479. "shasum": "",
  2480. "mirrors": [
  2481. {
  2482. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2483. "preferred": true
  2484. }
  2485. ]
  2486. },
  2487. "require": {
  2488. "ext-json": "*",
  2489. "illuminate/session": "^6.0",
  2490. "illuminate/support": "^6.0",
  2491. "php": "^7.2.5|^8.0",
  2492. "symfony/http-foundation": "^4.3.4",
  2493. "symfony/http-kernel": "^4.3.4"
  2494. },
  2495. "suggest": {
  2496. "ext-gd": "Required to use Illuminate\\Http\\Testing\\FileFactory::image()."
  2497. },
  2498. "type": "library",
  2499. "extra": {
  2500. "branch-alias": {
  2501. "dev-master": "6.x-dev"
  2502. }
  2503. },
  2504. "autoload": {
  2505. "psr-4": {
  2506. "Illuminate\\Http\\": ""
  2507. }
  2508. },
  2509. "notification-url": "https://packagist.org/downloads/",
  2510. "license": [
  2511. "MIT"
  2512. ],
  2513. "authors": [
  2514. {
  2515. "name": "Taylor Otwell",
  2516. "email": "taylor@laravel.com"
  2517. }
  2518. ],
  2519. "description": "The Illuminate Http package.",
  2520. "homepage": "https://laravel.com",
  2521. "time": "2021-01-20T13:50:36+00:00"
  2522. },
  2523. {
  2524. "name": "illuminate/log",
  2525. "version": "v6.20.24",
  2526. "source": {
  2527. "type": "git",
  2528. "url": "https://github.com/illuminate/log.git",
  2529. "reference": "f6a94ca6050310a2f58e2a6b7d43d6d64594d077"
  2530. },
  2531. "dist": {
  2532. "type": "zip",
  2533. "url": "https://api.github.com/repos/illuminate/log/zipball/f6a94ca6050310a2f58e2a6b7d43d6d64594d077",
  2534. "reference": "f6a94ca6050310a2f58e2a6b7d43d6d64594d077",
  2535. "shasum": "",
  2536. "mirrors": [
  2537. {
  2538. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2539. "preferred": true
  2540. }
  2541. ]
  2542. },
  2543. "require": {
  2544. "illuminate/contracts": "^6.0",
  2545. "illuminate/support": "^6.0",
  2546. "monolog/monolog": "^1.12|^2.0",
  2547. "php": "^7.2.5|^8.0"
  2548. },
  2549. "type": "library",
  2550. "extra": {
  2551. "branch-alias": {
  2552. "dev-master": "6.x-dev"
  2553. }
  2554. },
  2555. "autoload": {
  2556. "psr-4": {
  2557. "Illuminate\\Log\\": ""
  2558. }
  2559. },
  2560. "notification-url": "https://packagist.org/downloads/",
  2561. "license": [
  2562. "MIT"
  2563. ],
  2564. "authors": [
  2565. {
  2566. "name": "Taylor Otwell",
  2567. "email": "taylor@laravel.com"
  2568. }
  2569. ],
  2570. "description": "The Illuminate Log package.",
  2571. "homepage": "https://laravel.com",
  2572. "time": "2020-10-27T15:05:51+00:00"
  2573. },
  2574. {
  2575. "name": "illuminate/pagination",
  2576. "version": "v6.20.24",
  2577. "source": {
  2578. "type": "git",
  2579. "url": "https://github.com/illuminate/pagination.git",
  2580. "reference": "c98b4979213660a29a1979813824849f30fd9f27"
  2581. },
  2582. "dist": {
  2583. "type": "zip",
  2584. "url": "https://api.github.com/repos/illuminate/pagination/zipball/c98b4979213660a29a1979813824849f30fd9f27",
  2585. "reference": "c98b4979213660a29a1979813824849f30fd9f27",
  2586. "shasum": "",
  2587. "mirrors": [
  2588. {
  2589. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2590. "preferred": true
  2591. }
  2592. ]
  2593. },
  2594. "require": {
  2595. "ext-json": "*",
  2596. "illuminate/contracts": "^6.0",
  2597. "illuminate/support": "^6.0",
  2598. "php": "^7.2.5|^8.0"
  2599. },
  2600. "type": "library",
  2601. "extra": {
  2602. "branch-alias": {
  2603. "dev-master": "6.x-dev"
  2604. }
  2605. },
  2606. "autoload": {
  2607. "psr-4": {
  2608. "Illuminate\\Pagination\\": ""
  2609. }
  2610. },
  2611. "notification-url": "https://packagist.org/downloads/",
  2612. "license": [
  2613. "MIT"
  2614. ],
  2615. "authors": [
  2616. {
  2617. "name": "Taylor Otwell",
  2618. "email": "taylor@laravel.com"
  2619. }
  2620. ],
  2621. "description": "The Illuminate Pagination package.",
  2622. "homepage": "https://laravel.com",
  2623. "time": "2021-01-26T17:15:42+00:00"
  2624. },
  2625. {
  2626. "name": "illuminate/pipeline",
  2627. "version": "v6.20.24",
  2628. "source": {
  2629. "type": "git",
  2630. "url": "https://github.com/illuminate/pipeline.git",
  2631. "reference": "01063d3605efd22453316d771802cf5075ed848e"
  2632. },
  2633. "dist": {
  2634. "type": "zip",
  2635. "url": "https://api.github.com/repos/illuminate/pipeline/zipball/01063d3605efd22453316d771802cf5075ed848e",
  2636. "reference": "01063d3605efd22453316d771802cf5075ed848e",
  2637. "shasum": "",
  2638. "mirrors": [
  2639. {
  2640. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2641. "preferred": true
  2642. }
  2643. ]
  2644. },
  2645. "require": {
  2646. "illuminate/contracts": "^6.0",
  2647. "illuminate/support": "^6.0",
  2648. "php": "^7.2.5|^8.0",
  2649. "symfony/debug": "^4.3.4"
  2650. },
  2651. "type": "library",
  2652. "extra": {
  2653. "branch-alias": {
  2654. "dev-master": "6.x-dev"
  2655. }
  2656. },
  2657. "autoload": {
  2658. "psr-4": {
  2659. "Illuminate\\Pipeline\\": ""
  2660. }
  2661. },
  2662. "notification-url": "https://packagist.org/downloads/",
  2663. "license": [
  2664. "MIT"
  2665. ],
  2666. "authors": [
  2667. {
  2668. "name": "Taylor Otwell",
  2669. "email": "taylor@laravel.com"
  2670. }
  2671. ],
  2672. "description": "The Illuminate Pipeline package.",
  2673. "homepage": "https://laravel.com",
  2674. "time": "2020-10-27T15:05:51+00:00"
  2675. },
  2676. {
  2677. "name": "illuminate/queue",
  2678. "version": "v6.20.24",
  2679. "source": {
  2680. "type": "git",
  2681. "url": "https://github.com/illuminate/queue.git",
  2682. "reference": "eaf5da2b91526bc21485ebf98f08a6cb9948b053"
  2683. },
  2684. "dist": {
  2685. "type": "zip",
  2686. "url": "https://api.github.com/repos/illuminate/queue/zipball/eaf5da2b91526bc21485ebf98f08a6cb9948b053",
  2687. "reference": "eaf5da2b91526bc21485ebf98f08a6cb9948b053",
  2688. "shasum": "",
  2689. "mirrors": [
  2690. {
  2691. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2692. "preferred": true
  2693. }
  2694. ]
  2695. },
  2696. "require": {
  2697. "ext-json": "*",
  2698. "illuminate/console": "^6.0",
  2699. "illuminate/container": "^6.0",
  2700. "illuminate/contracts": "^6.0",
  2701. "illuminate/database": "^6.0",
  2702. "illuminate/filesystem": "^6.0",
  2703. "illuminate/pipeline": "^6.0",
  2704. "illuminate/support": "^6.0",
  2705. "opis/closure": "^3.6",
  2706. "php": "^7.2.5|^8.0",
  2707. "symfony/debug": "^4.3.4",
  2708. "symfony/process": "^4.3.4"
  2709. },
  2710. "suggest": {
  2711. "aws/aws-sdk-php": "Required to use the SQS queue driver and DynamoDb failed job storage (^3.155).",
  2712. "ext-pcntl": "Required to use all features of the queue worker.",
  2713. "ext-posix": "Required to use all features of the queue worker.",
  2714. "illuminate/redis": "Required to use the Redis queue driver (^6.0).",
  2715. "pda/pheanstalk": "Required to use the Beanstalk queue driver (^4.0)."
  2716. },
  2717. "type": "library",
  2718. "extra": {
  2719. "branch-alias": {
  2720. "dev-master": "6.x-dev"
  2721. }
  2722. },
  2723. "autoload": {
  2724. "psr-4": {
  2725. "Illuminate\\Queue\\": ""
  2726. }
  2727. },
  2728. "notification-url": "https://packagist.org/downloads/",
  2729. "license": [
  2730. "MIT"
  2731. ],
  2732. "authors": [
  2733. {
  2734. "name": "Taylor Otwell",
  2735. "email": "taylor@laravel.com"
  2736. }
  2737. ],
  2738. "description": "The Illuminate Queue package.",
  2739. "homepage": "https://laravel.com",
  2740. "time": "2020-11-18T14:36:08+00:00"
  2741. },
  2742. {
  2743. "name": "illuminate/redis",
  2744. "version": "v6.0.0",
  2745. "source": {
  2746. "type": "git",
  2747. "url": "https://github.com/illuminate/redis.git",
  2748. "reference": "c5e0c8796e107df27190c11f42935f8776d6afa7"
  2749. },
  2750. "dist": {
  2751. "type": "zip",
  2752. "url": "https://api.github.com/repos/illuminate/redis/zipball/c5e0c8796e107df27190c11f42935f8776d6afa7",
  2753. "reference": "c5e0c8796e107df27190c11f42935f8776d6afa7",
  2754. "shasum": "",
  2755. "mirrors": [
  2756. {
  2757. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  2758. "preferred": true
  2759. }
  2760. ]
  2761. },
  2762. "require": {
  2763. "illuminate/contracts": "^6.0",
  2764. "illuminate/support": "^6.0",
  2765. "php": "^7.2"
  2766. },
  2767. "suggest": {
  2768. "ext-redis": "Required to use the phpredis connector.",
  2769. "predis/predis": "Required to use the predis connector (^1.0)."
  2770. },
  2771. "type": "library",
  2772. "extra": {
  2773. "branch-alias": {
  2774. "dev-master": "6.0-dev"
  2775. }
  2776. },
  2777. "autoload": {
  2778. "psr-4": {
  2779. "Illuminate\\Redis\\": ""
  2780. }
  2781. },
  2782. "notification-url": "https://packagist.org/downloads/",
  2783. "license": [
  2784. "MIT"
  2785. ],
  2786. "authors": [
  2787. {
  2788. "name": "Taylor Otwell",
  2789. "email": "taylor@laravel.com"
  2790. }
  2791. ],
  2792. "description": "The Illuminate Redis package.",
  2793. "homepage": "https://laravel.com",
  2794. "support": {
  2795. "issues": "https://github.com/laravel/framework/issues",
  2796. "source": "https://github.com/laravel/framework"
  2797. },
  2798. "time": "2019-09-03T11:25:18+00:00"
  2799. },
  2800. {
  2801. "name": "illuminate/routing",
  2802. "version": "v6.20.24",
  2803. "source": {
  2804. "type": "git",
  2805. "url": "https://github.com/illuminate/routing.git",
  2806. "reference": "a38bc28ef7d6b09c2c5793d04e4d822bea21e18c"
  2807. },
  2808. "dist": {
  2809. "type": "zip",
  2810. "url": "https://api.github.com/repos/illuminate/routing/zipball/a38bc28ef7d6b09c2c5793d04e4d822bea21e18c",
  2811. "reference": "a38bc28ef7d6b09c2c5793d04e4d822bea21e18c",
  2812. "shasum": "",
  2813. "mirrors": [
  2814. {
  2815. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2816. "preferred": true
  2817. }
  2818. ]
  2819. },
  2820. "require": {
  2821. "ext-json": "*",
  2822. "illuminate/container": "^6.0",
  2823. "illuminate/contracts": "^6.0",
  2824. "illuminate/http": "^6.0",
  2825. "illuminate/pipeline": "^6.0",
  2826. "illuminate/session": "^6.0",
  2827. "illuminate/support": "^6.0",
  2828. "php": "^7.2.5|^8.0",
  2829. "symfony/debug": "^4.3.4",
  2830. "symfony/http-foundation": "^4.3.4",
  2831. "symfony/http-kernel": "^4.3.4",
  2832. "symfony/routing": "^4.3.4"
  2833. },
  2834. "suggest": {
  2835. "illuminate/console": "Required to use the make commands (^6.0).",
  2836. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  2837. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2)."
  2838. },
  2839. "type": "library",
  2840. "extra": {
  2841. "branch-alias": {
  2842. "dev-master": "6.x-dev"
  2843. }
  2844. },
  2845. "autoload": {
  2846. "psr-4": {
  2847. "Illuminate\\Routing\\": ""
  2848. }
  2849. },
  2850. "notification-url": "https://packagist.org/downloads/",
  2851. "license": [
  2852. "MIT"
  2853. ],
  2854. "authors": [
  2855. {
  2856. "name": "Taylor Otwell",
  2857. "email": "taylor@laravel.com"
  2858. }
  2859. ],
  2860. "description": "The Illuminate Routing package.",
  2861. "homepage": "https://laravel.com",
  2862. "time": "2020-10-27T19:50:31+00:00"
  2863. },
  2864. {
  2865. "name": "illuminate/session",
  2866. "version": "v6.20.24",
  2867. "source": {
  2868. "type": "git",
  2869. "url": "https://github.com/illuminate/session.git",
  2870. "reference": "3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03"
  2871. },
  2872. "dist": {
  2873. "type": "zip",
  2874. "url": "https://api.github.com/repos/illuminate/session/zipball/3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03",
  2875. "reference": "3103f1fb446f9c3e7d7c0deb8810a8c8d1d22c03",
  2876. "shasum": "",
  2877. "mirrors": [
  2878. {
  2879. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2880. "preferred": true
  2881. }
  2882. ]
  2883. },
  2884. "require": {
  2885. "ext-json": "*",
  2886. "illuminate/contracts": "^6.0",
  2887. "illuminate/filesystem": "^6.0",
  2888. "illuminate/support": "^6.0",
  2889. "php": "^7.2.5|^8.0",
  2890. "symfony/finder": "^4.3.4",
  2891. "symfony/http-foundation": "^4.3.4"
  2892. },
  2893. "suggest": {
  2894. "illuminate/console": "Required to use the session:table command (^6.0)."
  2895. },
  2896. "type": "library",
  2897. "extra": {
  2898. "branch-alias": {
  2899. "dev-master": "6.x-dev"
  2900. }
  2901. },
  2902. "autoload": {
  2903. "psr-4": {
  2904. "Illuminate\\Session\\": ""
  2905. }
  2906. },
  2907. "notification-url": "https://packagist.org/downloads/",
  2908. "license": [
  2909. "MIT"
  2910. ],
  2911. "authors": [
  2912. {
  2913. "name": "Taylor Otwell",
  2914. "email": "taylor@laravel.com"
  2915. }
  2916. ],
  2917. "description": "The Illuminate Session package.",
  2918. "homepage": "https://laravel.com",
  2919. "time": "2020-10-27T15:05:51+00:00"
  2920. },
  2921. {
  2922. "name": "illuminate/support",
  2923. "version": "v6.20.24",
  2924. "source": {
  2925. "type": "git",
  2926. "url": "https://github.com/illuminate/support.git",
  2927. "reference": "566e3dcfb0e3973ed8cd86ddb4ad4ef33a84fedf"
  2928. },
  2929. "dist": {
  2930. "type": "zip",
  2931. "url": "https://api.github.com/repos/illuminate/support/zipball/566e3dcfb0e3973ed8cd86ddb4ad4ef33a84fedf",
  2932. "reference": "566e3dcfb0e3973ed8cd86ddb4ad4ef33a84fedf",
  2933. "shasum": "",
  2934. "mirrors": [
  2935. {
  2936. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  2937. "preferred": true
  2938. }
  2939. ]
  2940. },
  2941. "require": {
  2942. "doctrine/inflector": "^1.4|^2.0",
  2943. "ext-json": "*",
  2944. "ext-mbstring": "*",
  2945. "illuminate/contracts": "^6.0",
  2946. "nesbot/carbon": "^2.31",
  2947. "php": "^7.2.5|^8.0"
  2948. },
  2949. "conflict": {
  2950. "tightenco/collect": "<5.5.33"
  2951. },
  2952. "suggest": {
  2953. "illuminate/filesystem": "Required to use the composer class (^6.0).",
  2954. "moontoast/math": "Required to use ordered UUIDs (^1.1).",
  2955. "ramsey/uuid": "Required to use Str::uuid() (^3.7).",
  2956. "symfony/process": "Required to use the composer class (^4.3.4).",
  2957. "symfony/var-dumper": "Required to use the dd function (^4.3.4).",
  2958. "vlucas/phpdotenv": "Required to use the Env class and env helper (^3.3)."
  2959. },
  2960. "type": "library",
  2961. "extra": {
  2962. "branch-alias": {
  2963. "dev-master": "6.x-dev"
  2964. }
  2965. },
  2966. "autoload": {
  2967. "psr-4": {
  2968. "Illuminate\\Support\\": ""
  2969. },
  2970. "files": [
  2971. "helpers.php"
  2972. ]
  2973. },
  2974. "notification-url": "https://packagist.org/downloads/",
  2975. "license": [
  2976. "MIT"
  2977. ],
  2978. "authors": [
  2979. {
  2980. "name": "Taylor Otwell",
  2981. "email": "taylor@laravel.com"
  2982. }
  2983. ],
  2984. "description": "The Illuminate Support package.",
  2985. "homepage": "https://laravel.com",
  2986. "time": "2021-03-12T13:52:50+00:00"
  2987. },
  2988. {
  2989. "name": "illuminate/translation",
  2990. "version": "v6.20.24",
  2991. "source": {
  2992. "type": "git",
  2993. "url": "https://github.com/illuminate/translation.git",
  2994. "reference": "717fad58c8451b86c7b5644bc652430a3369d7b3"
  2995. },
  2996. "dist": {
  2997. "type": "zip",
  2998. "url": "https://api.github.com/repos/illuminate/translation/zipball/717fad58c8451b86c7b5644bc652430a3369d7b3",
  2999. "reference": "717fad58c8451b86c7b5644bc652430a3369d7b3",
  3000. "shasum": "",
  3001. "mirrors": [
  3002. {
  3003. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3004. "preferred": true
  3005. }
  3006. ]
  3007. },
  3008. "require": {
  3009. "ext-json": "*",
  3010. "illuminate/contracts": "^6.0",
  3011. "illuminate/filesystem": "^6.0",
  3012. "illuminate/support": "^6.0",
  3013. "php": "^7.2.5|^8.0"
  3014. },
  3015. "type": "library",
  3016. "extra": {
  3017. "branch-alias": {
  3018. "dev-master": "6.x-dev"
  3019. }
  3020. },
  3021. "autoload": {
  3022. "psr-4": {
  3023. "Illuminate\\Translation\\": ""
  3024. }
  3025. },
  3026. "notification-url": "https://packagist.org/downloads/",
  3027. "license": [
  3028. "MIT"
  3029. ],
  3030. "authors": [
  3031. {
  3032. "name": "Taylor Otwell",
  3033. "email": "taylor@laravel.com"
  3034. }
  3035. ],
  3036. "description": "The Illuminate Translation package.",
  3037. "homepage": "https://laravel.com",
  3038. "time": "2020-10-27T15:05:51+00:00"
  3039. },
  3040. {
  3041. "name": "illuminate/validation",
  3042. "version": "v6.20.24",
  3043. "source": {
  3044. "type": "git",
  3045. "url": "https://github.com/illuminate/validation.git",
  3046. "reference": "90e2dfd53ca89192cdd06ada89d3a48cda3aeee2"
  3047. },
  3048. "dist": {
  3049. "type": "zip",
  3050. "url": "https://api.github.com/repos/illuminate/validation/zipball/90e2dfd53ca89192cdd06ada89d3a48cda3aeee2",
  3051. "reference": "90e2dfd53ca89192cdd06ada89d3a48cda3aeee2",
  3052. "shasum": "",
  3053. "mirrors": [
  3054. {
  3055. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3056. "preferred": true
  3057. }
  3058. ]
  3059. },
  3060. "require": {
  3061. "egulias/email-validator": "^2.1.10",
  3062. "ext-json": "*",
  3063. "illuminate/container": "^6.0",
  3064. "illuminate/contracts": "^6.0",
  3065. "illuminate/support": "^6.0",
  3066. "illuminate/translation": "^6.0",
  3067. "php": "^7.2.5|^8.0",
  3068. "symfony/http-foundation": "^4.3.4"
  3069. },
  3070. "suggest": {
  3071. "illuminate/database": "Required to use the database presence verifier (^6.0)."
  3072. },
  3073. "type": "library",
  3074. "extra": {
  3075. "branch-alias": {
  3076. "dev-master": "6.x-dev"
  3077. }
  3078. },
  3079. "autoload": {
  3080. "psr-4": {
  3081. "Illuminate\\Validation\\": ""
  3082. }
  3083. },
  3084. "notification-url": "https://packagist.org/downloads/",
  3085. "license": [
  3086. "MIT"
  3087. ],
  3088. "authors": [
  3089. {
  3090. "name": "Taylor Otwell",
  3091. "email": "taylor@laravel.com"
  3092. }
  3093. ],
  3094. "description": "The Illuminate Validation package.",
  3095. "homepage": "https://laravel.com",
  3096. "time": "2021-04-14T11:58:24+00:00"
  3097. },
  3098. {
  3099. "name": "illuminate/view",
  3100. "version": "v6.20.24",
  3101. "source": {
  3102. "type": "git",
  3103. "url": "https://github.com/illuminate/view.git",
  3104. "reference": "4a3a6da059af652bd11a2c5a0dcaefc0a80ea5c1"
  3105. },
  3106. "dist": {
  3107. "type": "zip",
  3108. "url": "https://api.github.com/repos/illuminate/view/zipball/4a3a6da059af652bd11a2c5a0dcaefc0a80ea5c1",
  3109. "reference": "4a3a6da059af652bd11a2c5a0dcaefc0a80ea5c1",
  3110. "shasum": "",
  3111. "mirrors": [
  3112. {
  3113. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3114. "preferred": true
  3115. }
  3116. ]
  3117. },
  3118. "require": {
  3119. "ext-json": "*",
  3120. "illuminate/container": "^6.0",
  3121. "illuminate/contracts": "^6.0",
  3122. "illuminate/events": "^6.0",
  3123. "illuminate/filesystem": "^6.0",
  3124. "illuminate/support": "^6.0",
  3125. "php": "^7.2.5|^8.0",
  3126. "symfony/debug": "^4.3.4"
  3127. },
  3128. "type": "library",
  3129. "extra": {
  3130. "branch-alias": {
  3131. "dev-master": "6.x-dev"
  3132. }
  3133. },
  3134. "autoload": {
  3135. "psr-4": {
  3136. "Illuminate\\View\\": ""
  3137. }
  3138. },
  3139. "notification-url": "https://packagist.org/downloads/",
  3140. "license": [
  3141. "MIT"
  3142. ],
  3143. "authors": [
  3144. {
  3145. "name": "Taylor Otwell",
  3146. "email": "taylor@laravel.com"
  3147. }
  3148. ],
  3149. "description": "The Illuminate View package.",
  3150. "homepage": "https://laravel.com",
  3151. "time": "2021-02-01T14:20:21+00:00"
  3152. },
  3153. {
  3154. "name": "intervention/image",
  3155. "version": "2.5.1",
  3156. "source": {
  3157. "type": "git",
  3158. "url": "https://github.com/Intervention/image.git",
  3159. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e"
  3160. },
  3161. "dist": {
  3162. "type": "zip",
  3163. "url": "https://api.github.com/repos/Intervention/image/zipball/abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  3164. "reference": "abbf18d5ab8367f96b3205ca3c89fb2fa598c69e",
  3165. "shasum": "",
  3166. "mirrors": [
  3167. {
  3168. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3169. "preferred": true
  3170. }
  3171. ]
  3172. },
  3173. "require": {
  3174. "ext-fileinfo": "*",
  3175. "guzzlehttp/psr7": "~1.1",
  3176. "php": ">=5.4.0"
  3177. },
  3178. "require-dev": {
  3179. "mockery/mockery": "~0.9.2",
  3180. "phpunit/phpunit": "^4.8 || ^5.7"
  3181. },
  3182. "suggest": {
  3183. "ext-gd": "to use GD library based image processing.",
  3184. "ext-imagick": "to use Imagick based image processing.",
  3185. "intervention/imagecache": "Caching extension for the Intervention Image library"
  3186. },
  3187. "type": "library",
  3188. "extra": {
  3189. "branch-alias": {
  3190. "dev-master": "2.4-dev"
  3191. },
  3192. "laravel": {
  3193. "providers": [
  3194. "Intervention\\Image\\ImageServiceProvider"
  3195. ],
  3196. "aliases": {
  3197. "Image": "Intervention\\Image\\Facades\\Image"
  3198. }
  3199. }
  3200. },
  3201. "autoload": {
  3202. "psr-4": {
  3203. "Intervention\\Image\\": "src/Intervention/Image"
  3204. }
  3205. },
  3206. "notification-url": "https://packagist.org/downloads/",
  3207. "license": [
  3208. "MIT"
  3209. ],
  3210. "authors": [
  3211. {
  3212. "name": "Oliver Vogel",
  3213. "email": "oliver@olivervogel.com",
  3214. "homepage": "http://olivervogel.com/"
  3215. }
  3216. ],
  3217. "description": "Image handling and manipulation library with support for Laravel integration",
  3218. "homepage": "http://image.intervention.io/",
  3219. "keywords": [
  3220. "gd",
  3221. "image",
  3222. "imagick",
  3223. "laravel",
  3224. "thumbnail",
  3225. "watermark"
  3226. ],
  3227. "time": "2019-11-02T09:15:47+00:00"
  3228. },
  3229. {
  3230. "name": "jaybizzle/crawler-detect",
  3231. "version": "v1.2.105",
  3232. "source": {
  3233. "type": "git",
  3234. "url": "https://github.com/JayBizzle/Crawler-Detect.git",
  3235. "reference": "719c1ed49224857800c3dc40838b6b761d046105"
  3236. },
  3237. "dist": {
  3238. "type": "zip",
  3239. "url": "https://api.github.com/repos/JayBizzle/Crawler-Detect/zipball/719c1ed49224857800c3dc40838b6b761d046105",
  3240. "reference": "719c1ed49224857800c3dc40838b6b761d046105",
  3241. "shasum": "",
  3242. "mirrors": [
  3243. {
  3244. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3245. "preferred": true
  3246. }
  3247. ]
  3248. },
  3249. "require": {
  3250. "php": ">=5.3.0"
  3251. },
  3252. "require-dev": {
  3253. "phpunit/phpunit": "^4.8|^5.5|^6.5|^9.4"
  3254. },
  3255. "type": "library",
  3256. "autoload": {
  3257. "psr-4": {
  3258. "Jaybizzle\\CrawlerDetect\\": "src/"
  3259. }
  3260. },
  3261. "notification-url": "https://packagist.org/downloads/",
  3262. "license": [
  3263. "MIT"
  3264. ],
  3265. "authors": [
  3266. {
  3267. "name": "Mark Beech",
  3268. "email": "m@rkbee.ch",
  3269. "role": "Developer"
  3270. }
  3271. ],
  3272. "description": "CrawlerDetect is a PHP class for detecting bots/crawlers/spiders via the user agent",
  3273. "homepage": "https://github.com/JayBizzle/Crawler-Detect/",
  3274. "keywords": [
  3275. "crawler",
  3276. "crawler detect",
  3277. "crawler detector",
  3278. "crawlerdetect",
  3279. "php crawler detect"
  3280. ],
  3281. "time": "2021-03-03T20:55:48+00:00"
  3282. },
  3283. {
  3284. "name": "jenssegers/agent",
  3285. "version": "v2.6.4",
  3286. "source": {
  3287. "type": "git",
  3288. "url": "https://github.com/jenssegers/agent.git",
  3289. "reference": "daa11c43729510b3700bc34d414664966b03bffe"
  3290. },
  3291. "dist": {
  3292. "type": "zip",
  3293. "url": "https://api.github.com/repos/jenssegers/agent/zipball/daa11c43729510b3700bc34d414664966b03bffe",
  3294. "reference": "daa11c43729510b3700bc34d414664966b03bffe",
  3295. "shasum": "",
  3296. "mirrors": [
  3297. {
  3298. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3299. "preferred": true
  3300. }
  3301. ]
  3302. },
  3303. "require": {
  3304. "jaybizzle/crawler-detect": "^1.2",
  3305. "mobiledetect/mobiledetectlib": "^2.7.6",
  3306. "php": ">=5.6"
  3307. },
  3308. "require-dev": {
  3309. "php-coveralls/php-coveralls": "^2.1",
  3310. "phpunit/phpunit": "^5.0|^6.0|^7.0"
  3311. },
  3312. "suggest": {
  3313. "illuminate/support": "Required for laravel service providers"
  3314. },
  3315. "type": "library",
  3316. "extra": {
  3317. "branch-alias": {
  3318. "dev-master": "3.0-dev"
  3319. },
  3320. "laravel": {
  3321. "providers": [
  3322. "Jenssegers\\Agent\\AgentServiceProvider"
  3323. ],
  3324. "aliases": {
  3325. "Agent": "Jenssegers\\Agent\\Facades\\Agent"
  3326. }
  3327. }
  3328. },
  3329. "autoload": {
  3330. "psr-4": {
  3331. "Jenssegers\\Agent\\": "src/"
  3332. }
  3333. },
  3334. "notification-url": "https://packagist.org/downloads/",
  3335. "license": [
  3336. "MIT"
  3337. ],
  3338. "authors": [
  3339. {
  3340. "name": "Jens Segers",
  3341. "homepage": "https://jenssegers.com"
  3342. }
  3343. ],
  3344. "description": "Desktop/mobile user agent parser with support for Laravel, based on Mobiledetect",
  3345. "homepage": "https://github.com/jenssegers/agent",
  3346. "keywords": [
  3347. "Agent",
  3348. "browser",
  3349. "desktop",
  3350. "laravel",
  3351. "mobile",
  3352. "platform",
  3353. "user agent",
  3354. "useragent"
  3355. ],
  3356. "time": "2020-06-13T08:05:20+00:00"
  3357. },
  3358. {
  3359. "name": "justinrainbow/json-schema",
  3360. "version": "5.2.10",
  3361. "source": {
  3362. "type": "git",
  3363. "url": "https://github.com/justinrainbow/json-schema.git",
  3364. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b"
  3365. },
  3366. "dist": {
  3367. "type": "zip",
  3368. "url": "https://api.github.com/repos/justinrainbow/json-schema/zipball/2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  3369. "reference": "2ba9c8c862ecd5510ed16c6340aa9f6eadb4f31b",
  3370. "shasum": "",
  3371. "mirrors": [
  3372. {
  3373. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3374. "preferred": true
  3375. }
  3376. ]
  3377. },
  3378. "require": {
  3379. "php": ">=5.3.3"
  3380. },
  3381. "require-dev": {
  3382. "friendsofphp/php-cs-fixer": "~2.2.20||~2.15.1",
  3383. "json-schema/json-schema-test-suite": "1.2.0",
  3384. "phpunit/phpunit": "^4.8.35"
  3385. },
  3386. "bin": [
  3387. "bin/validate-json"
  3388. ],
  3389. "type": "library",
  3390. "extra": {
  3391. "branch-alias": {
  3392. "dev-master": "5.0.x-dev"
  3393. }
  3394. },
  3395. "autoload": {
  3396. "psr-4": {
  3397. "JsonSchema\\": "src/JsonSchema/"
  3398. }
  3399. },
  3400. "notification-url": "https://packagist.org/downloads/",
  3401. "license": [
  3402. "MIT"
  3403. ],
  3404. "authors": [
  3405. {
  3406. "name": "Bruno Prieto Reis",
  3407. "email": "bruno.p.reis@gmail.com"
  3408. },
  3409. {
  3410. "name": "Justin Rainbow",
  3411. "email": "justin.rainbow@gmail.com"
  3412. },
  3413. {
  3414. "name": "Igor Wiedler",
  3415. "email": "igor@wiedler.ch"
  3416. },
  3417. {
  3418. "name": "Robert Schönthal",
  3419. "email": "seroscho@googlemail.com"
  3420. }
  3421. ],
  3422. "description": "A library to validate a json schema.",
  3423. "homepage": "https://github.com/justinrainbow/json-schema",
  3424. "keywords": [
  3425. "json",
  3426. "schema"
  3427. ],
  3428. "time": "2020-05-27T16:41:55+00:00"
  3429. },
  3430. {
  3431. "name": "khanamiryan/qrcode-detector-decoder",
  3432. "version": "1.0.5",
  3433. "source": {
  3434. "type": "git",
  3435. "url": "https://github.com/khanamiryan/php-qrcode-detector-decoder.git",
  3436. "reference": "6c8c23003a87ecd7458807cd49372b1fb590d1f5"
  3437. },
  3438. "dist": {
  3439. "type": "zip",
  3440. "url": "https://api.github.com/repos/khanamiryan/php-qrcode-detector-decoder/zipball/6c8c23003a87ecd7458807cd49372b1fb590d1f5",
  3441. "reference": "6c8c23003a87ecd7458807cd49372b1fb590d1f5",
  3442. "shasum": "",
  3443. "mirrors": [
  3444. {
  3445. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3446. "preferred": true
  3447. }
  3448. ]
  3449. },
  3450. "require": {
  3451. "php": ">=5.6"
  3452. },
  3453. "require-dev": {
  3454. "phpunit/phpunit": "^5.7 | ^7.5 | ^8.0 | ^9.0"
  3455. },
  3456. "type": "library",
  3457. "autoload": {
  3458. "psr-4": {
  3459. "Zxing\\": "lib/"
  3460. },
  3461. "files": [
  3462. "lib/Common/customFunctions.php"
  3463. ]
  3464. },
  3465. "notification-url": "https://packagist.org/downloads/",
  3466. "license": [
  3467. "MIT"
  3468. ],
  3469. "authors": [
  3470. {
  3471. "name": "Ashot Khanamiryan",
  3472. "email": "a.khanamiryan@gmail.com",
  3473. "homepage": "https://github.com/khanamiryan",
  3474. "role": "Developer"
  3475. }
  3476. ],
  3477. "description": "QR code decoder / reader",
  3478. "homepage": "https://github.com/khanamiryan/php-qrcode-detector-decoder/",
  3479. "keywords": [
  3480. "barcode",
  3481. "qr",
  3482. "zxing"
  3483. ],
  3484. "time": "2021-04-20T18:34:35+00:00"
  3485. },
  3486. {
  3487. "name": "laravel/lumen-framework",
  3488. "version": "v6.3.5",
  3489. "source": {
  3490. "type": "git",
  3491. "url": "https://github.com/laravel/lumen-framework.git",
  3492. "reference": "74d61ebf4f022a874bcea560054a2a2050d0e75d"
  3493. },
  3494. "dist": {
  3495. "type": "zip",
  3496. "url": "https://api.github.com/repos/laravel/lumen-framework/zipball/74d61ebf4f022a874bcea560054a2a2050d0e75d",
  3497. "reference": "74d61ebf4f022a874bcea560054a2a2050d0e75d",
  3498. "shasum": "",
  3499. "mirrors": [
  3500. {
  3501. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3502. "preferred": true
  3503. }
  3504. ]
  3505. },
  3506. "require": {
  3507. "dragonmantank/cron-expression": "^2.0",
  3508. "illuminate/auth": "^6.0",
  3509. "illuminate/broadcasting": "^6.0",
  3510. "illuminate/bus": "^6.0",
  3511. "illuminate/cache": "^6.0",
  3512. "illuminate/config": "^6.0",
  3513. "illuminate/container": "^6.0",
  3514. "illuminate/contracts": "^6.0",
  3515. "illuminate/database": "^6.0",
  3516. "illuminate/encryption": "^6.0",
  3517. "illuminate/events": "^6.0",
  3518. "illuminate/filesystem": "^6.0",
  3519. "illuminate/hashing": "^6.0",
  3520. "illuminate/http": "^6.0",
  3521. "illuminate/log": "^6.0",
  3522. "illuminate/pagination": "^6.0",
  3523. "illuminate/pipeline": "^6.0",
  3524. "illuminate/queue": "^6.0",
  3525. "illuminate/support": "^6.0",
  3526. "illuminate/translation": "^6.0",
  3527. "illuminate/validation": "^6.0",
  3528. "illuminate/view": "^6.0",
  3529. "nikic/fast-route": "^1.3",
  3530. "php": "^7.2",
  3531. "symfony/http-foundation": "^4.3",
  3532. "symfony/http-kernel": "^4.3",
  3533. "symfony/var-dumper": "^4.3",
  3534. "vlucas/phpdotenv": "^3.3"
  3535. },
  3536. "require-dev": {
  3537. "mockery/mockery": "^1.0",
  3538. "phpunit/phpunit": "^7.5|^8.0"
  3539. },
  3540. "suggest": {
  3541. "laravel/tinker": "Required to use the tinker console command (^2.0).",
  3542. "nyholm/psr7": "Required to use PSR-7 bridging features (^1.2).",
  3543. "symfony/psr-http-message-bridge": "Required to use PSR-7 bridging features (^1.2)."
  3544. },
  3545. "type": "library",
  3546. "extra": {
  3547. "branch-alias": {
  3548. "dev-master": "6.x-dev"
  3549. }
  3550. },
  3551. "autoload": {
  3552. "psr-4": {
  3553. "Laravel\\Lumen\\": "src/"
  3554. },
  3555. "files": [
  3556. "src/helpers.php"
  3557. ]
  3558. },
  3559. "notification-url": "https://packagist.org/downloads/",
  3560. "license": [
  3561. "MIT"
  3562. ],
  3563. "authors": [
  3564. {
  3565. "name": "Taylor Otwell",
  3566. "email": "taylorotwell@gmail.com"
  3567. }
  3568. ],
  3569. "description": "The Laravel Lumen Framework.",
  3570. "homepage": "https://lumen.laravel.com",
  3571. "keywords": [
  3572. "framework",
  3573. "laravel",
  3574. "lumen"
  3575. ],
  3576. "time": "2020-03-13T20:24:43+00:00"
  3577. },
  3578. {
  3579. "name": "lcobucci/jwt",
  3580. "version": "3.3.3",
  3581. "source": {
  3582. "type": "git",
  3583. "url": "https://github.com/lcobucci/jwt.git",
  3584. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773"
  3585. },
  3586. "dist": {
  3587. "type": "zip",
  3588. "url": "https://api.github.com/repos/lcobucci/jwt/zipball/c1123697f6a2ec29162b82f170dd4a491f524773",
  3589. "reference": "c1123697f6a2ec29162b82f170dd4a491f524773",
  3590. "shasum": "",
  3591. "mirrors": [
  3592. {
  3593. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3594. "preferred": true
  3595. }
  3596. ]
  3597. },
  3598. "require": {
  3599. "ext-mbstring": "*",
  3600. "ext-openssl": "*",
  3601. "php": "^5.6 || ^7.0"
  3602. },
  3603. "require-dev": {
  3604. "mikey179/vfsstream": "~1.5",
  3605. "phpmd/phpmd": "~2.2",
  3606. "phpunit/php-invoker": "~1.1",
  3607. "phpunit/phpunit": "^5.7 || ^7.3",
  3608. "squizlabs/php_codesniffer": "~2.3"
  3609. },
  3610. "type": "library",
  3611. "extra": {
  3612. "branch-alias": {
  3613. "dev-master": "3.1-dev"
  3614. }
  3615. },
  3616. "autoload": {
  3617. "psr-4": {
  3618. "Lcobucci\\JWT\\": "src"
  3619. }
  3620. },
  3621. "notification-url": "https://packagist.org/downloads/",
  3622. "license": [
  3623. "BSD-3-Clause"
  3624. ],
  3625. "authors": [
  3626. {
  3627. "name": "Luís Otávio Cobucci Oblonczyk",
  3628. "email": "lcobucci@gmail.com",
  3629. "role": "Developer"
  3630. }
  3631. ],
  3632. "description": "A simple library to work with JSON Web Token and JSON Web Signature",
  3633. "keywords": [
  3634. "JWS",
  3635. "jwt"
  3636. ],
  3637. "time": "2020-08-20T13:22:28+00:00"
  3638. },
  3639. {
  3640. "name": "league/flysystem",
  3641. "version": "1.1.3",
  3642. "source": {
  3643. "type": "git",
  3644. "url": "https://github.com/thephpleague/flysystem.git",
  3645. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a"
  3646. },
  3647. "dist": {
  3648. "type": "zip",
  3649. "url": "https://api.github.com/repos/thephpleague/flysystem/zipball/9be3b16c877d477357c015cec057548cf9b2a14a",
  3650. "reference": "9be3b16c877d477357c015cec057548cf9b2a14a",
  3651. "shasum": "",
  3652. "mirrors": [
  3653. {
  3654. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3655. "preferred": true
  3656. }
  3657. ]
  3658. },
  3659. "require": {
  3660. "ext-fileinfo": "*",
  3661. "league/mime-type-detection": "^1.3",
  3662. "php": "^7.2.5 || ^8.0"
  3663. },
  3664. "conflict": {
  3665. "league/flysystem-sftp": "<1.0.6"
  3666. },
  3667. "require-dev": {
  3668. "phpspec/prophecy": "^1.11.1",
  3669. "phpunit/phpunit": "^8.5.8"
  3670. },
  3671. "suggest": {
  3672. "ext-fileinfo": "Required for MimeType",
  3673. "ext-ftp": "Allows you to use FTP server storage",
  3674. "ext-openssl": "Allows you to use FTPS server storage",
  3675. "league/flysystem-aws-s3-v2": "Allows you to use S3 storage with AWS SDK v2",
  3676. "league/flysystem-aws-s3-v3": "Allows you to use S3 storage with AWS SDK v3",
  3677. "league/flysystem-azure": "Allows you to use Windows Azure Blob storage",
  3678. "league/flysystem-cached-adapter": "Flysystem adapter decorator for metadata caching",
  3679. "league/flysystem-eventable-filesystem": "Allows you to use EventableFilesystem",
  3680. "league/flysystem-rackspace": "Allows you to use Rackspace Cloud Files",
  3681. "league/flysystem-sftp": "Allows you to use SFTP server storage via phpseclib",
  3682. "league/flysystem-webdav": "Allows you to use WebDAV storage",
  3683. "league/flysystem-ziparchive": "Allows you to use ZipArchive adapter",
  3684. "spatie/flysystem-dropbox": "Allows you to use Dropbox storage",
  3685. "srmklive/flysystem-dropbox-v2": "Allows you to use Dropbox storage for PHP 5 applications"
  3686. },
  3687. "type": "library",
  3688. "extra": {
  3689. "branch-alias": {
  3690. "dev-master": "1.1-dev"
  3691. }
  3692. },
  3693. "autoload": {
  3694. "psr-4": {
  3695. "League\\Flysystem\\": "src/"
  3696. }
  3697. },
  3698. "notification-url": "https://packagist.org/downloads/",
  3699. "license": [
  3700. "MIT"
  3701. ],
  3702. "authors": [
  3703. {
  3704. "name": "Frank de Jonge",
  3705. "email": "info@frenky.net"
  3706. }
  3707. ],
  3708. "description": "Filesystem abstraction: Many filesystems, one API.",
  3709. "keywords": [
  3710. "Cloud Files",
  3711. "WebDAV",
  3712. "abstraction",
  3713. "aws",
  3714. "cloud",
  3715. "copy.com",
  3716. "dropbox",
  3717. "file systems",
  3718. "files",
  3719. "filesystem",
  3720. "filesystems",
  3721. "ftp",
  3722. "rackspace",
  3723. "remote",
  3724. "s3",
  3725. "sftp",
  3726. "storage"
  3727. ],
  3728. "time": "2020-08-23T07:39:11+00:00"
  3729. },
  3730. {
  3731. "name": "league/fractal",
  3732. "version": "0.17.0",
  3733. "source": {
  3734. "type": "git",
  3735. "url": "https://github.com/thephpleague/fractal.git",
  3736. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e"
  3737. },
  3738. "dist": {
  3739. "type": "zip",
  3740. "url": "https://api.github.com/repos/thephpleague/fractal/zipball/a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  3741. "reference": "a0b350824f22fc2fdde2500ce9d6851a3f275b0e",
  3742. "shasum": "",
  3743. "mirrors": [
  3744. {
  3745. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3746. "preferred": true
  3747. }
  3748. ]
  3749. },
  3750. "require": {
  3751. "php": ">=5.4"
  3752. },
  3753. "require-dev": {
  3754. "doctrine/orm": "^2.5",
  3755. "illuminate/contracts": "~5.0",
  3756. "mockery/mockery": "~0.9",
  3757. "pagerfanta/pagerfanta": "~1.0.0",
  3758. "phpunit/phpunit": "~4.0",
  3759. "squizlabs/php_codesniffer": "~1.5",
  3760. "zendframework/zend-paginator": "~2.3"
  3761. },
  3762. "suggest": {
  3763. "illuminate/pagination": "The Illuminate Pagination component.",
  3764. "pagerfanta/pagerfanta": "Pagerfanta Paginator",
  3765. "zendframework/zend-paginator": "Zend Framework Paginator"
  3766. },
  3767. "type": "library",
  3768. "extra": {
  3769. "branch-alias": {
  3770. "dev-master": "0.13-dev"
  3771. }
  3772. },
  3773. "autoload": {
  3774. "psr-4": {
  3775. "League\\Fractal\\": "src"
  3776. }
  3777. },
  3778. "notification-url": "https://packagist.org/downloads/",
  3779. "license": [
  3780. "MIT"
  3781. ],
  3782. "authors": [
  3783. {
  3784. "name": "Phil Sturgeon",
  3785. "email": "me@philsturgeon.uk",
  3786. "homepage": "http://philsturgeon.uk/",
  3787. "role": "Developer"
  3788. }
  3789. ],
  3790. "description": "Handle the output of complex data structures ready for API output.",
  3791. "homepage": "http://fractal.thephpleague.com/",
  3792. "keywords": [
  3793. "api",
  3794. "json",
  3795. "league",
  3796. "rest"
  3797. ],
  3798. "time": "2017-06-12T11:04:56+00:00"
  3799. },
  3800. {
  3801. "name": "league/mime-type-detection",
  3802. "version": "1.7.0",
  3803. "source": {
  3804. "type": "git",
  3805. "url": "https://github.com/thephpleague/mime-type-detection.git",
  3806. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3"
  3807. },
  3808. "dist": {
  3809. "type": "zip",
  3810. "url": "https://api.github.com/repos/thephpleague/mime-type-detection/zipball/3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  3811. "reference": "3b9dff8aaf7323590c1d2e443db701eb1f9aa0d3",
  3812. "shasum": "",
  3813. "mirrors": [
  3814. {
  3815. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3816. "preferred": true
  3817. }
  3818. ]
  3819. },
  3820. "require": {
  3821. "ext-fileinfo": "*",
  3822. "php": "^7.2 || ^8.0"
  3823. },
  3824. "require-dev": {
  3825. "friendsofphp/php-cs-fixer": "^2.18",
  3826. "phpstan/phpstan": "^0.12.68",
  3827. "phpunit/phpunit": "^8.5.8 || ^9.3"
  3828. },
  3829. "type": "library",
  3830. "autoload": {
  3831. "psr-4": {
  3832. "League\\MimeTypeDetection\\": "src"
  3833. }
  3834. },
  3835. "notification-url": "https://packagist.org/downloads/",
  3836. "license": [
  3837. "MIT"
  3838. ],
  3839. "authors": [
  3840. {
  3841. "name": "Frank de Jonge",
  3842. "email": "info@frankdejonge.nl"
  3843. }
  3844. ],
  3845. "description": "Mime-type detection for Flysystem",
  3846. "time": "2021-01-18T20:58:21+00:00"
  3847. },
  3848. {
  3849. "name": "mobiledetect/mobiledetectlib",
  3850. "version": "2.8.37",
  3851. "source": {
  3852. "type": "git",
  3853. "url": "https://github.com/serbanghita/Mobile-Detect.git",
  3854. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7"
  3855. },
  3856. "dist": {
  3857. "type": "zip",
  3858. "url": "https://api.github.com/repos/serbanghita/Mobile-Detect/zipball/9841e3c46f5bd0739b53aed8ac677fa712943df7",
  3859. "reference": "9841e3c46f5bd0739b53aed8ac677fa712943df7",
  3860. "shasum": "",
  3861. "mirrors": [
  3862. {
  3863. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3864. "preferred": true
  3865. }
  3866. ]
  3867. },
  3868. "require": {
  3869. "php": ">=5.0.0"
  3870. },
  3871. "require-dev": {
  3872. "phpunit/phpunit": "~4.8.35||~5.7"
  3873. },
  3874. "type": "library",
  3875. "autoload": {
  3876. "classmap": [
  3877. "Mobile_Detect.php"
  3878. ],
  3879. "psr-0": {
  3880. "Detection": "namespaced/"
  3881. }
  3882. },
  3883. "notification-url": "https://packagist.org/downloads/",
  3884. "license": [
  3885. "MIT"
  3886. ],
  3887. "authors": [
  3888. {
  3889. "name": "Serban Ghita",
  3890. "email": "serbanghita@gmail.com",
  3891. "homepage": "http://mobiledetect.net",
  3892. "role": "Developer"
  3893. }
  3894. ],
  3895. "description": "Mobile_Detect is a lightweight PHP class for detecting mobile devices. It uses the User-Agent string combined with specific HTTP headers to detect the mobile environment.",
  3896. "homepage": "https://github.com/serbanghita/Mobile-Detect",
  3897. "keywords": [
  3898. "detect mobile devices",
  3899. "mobile",
  3900. "mobile detect",
  3901. "mobile detector",
  3902. "php mobile detect"
  3903. ],
  3904. "time": "2021-02-19T21:22:57+00:00"
  3905. },
  3906. {
  3907. "name": "monolog/monolog",
  3908. "version": "2.2.0",
  3909. "source": {
  3910. "type": "git",
  3911. "url": "https://github.com/Seldaek/monolog.git",
  3912. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084"
  3913. },
  3914. "dist": {
  3915. "type": "zip",
  3916. "url": "https://api.github.com/repos/Seldaek/monolog/zipball/1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3917. "reference": "1cb1cde8e8dd0f70cc0fe51354a59acad9302084",
  3918. "shasum": "",
  3919. "mirrors": [
  3920. {
  3921. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  3922. "preferred": true
  3923. }
  3924. ]
  3925. },
  3926. "require": {
  3927. "php": ">=7.2",
  3928. "psr/log": "^1.0.1"
  3929. },
  3930. "provide": {
  3931. "psr/log-implementation": "1.0.0"
  3932. },
  3933. "require-dev": {
  3934. "aws/aws-sdk-php": "^2.4.9 || ^3.0",
  3935. "doctrine/couchdb": "~1.0@dev",
  3936. "elasticsearch/elasticsearch": "^7",
  3937. "graylog2/gelf-php": "^1.4.2",
  3938. "mongodb/mongodb": "^1.8",
  3939. "php-amqplib/php-amqplib": "~2.4",
  3940. "php-console/php-console": "^3.1.3",
  3941. "phpspec/prophecy": "^1.6.1",
  3942. "phpstan/phpstan": "^0.12.59",
  3943. "phpunit/phpunit": "^8.5",
  3944. "predis/predis": "^1.1",
  3945. "rollbar/rollbar": "^1.3",
  3946. "ruflin/elastica": ">=0.90 <7.0.1",
  3947. "swiftmailer/swiftmailer": "^5.3|^6.0"
  3948. },
  3949. "suggest": {
  3950. "aws/aws-sdk-php": "Allow sending log messages to AWS services like DynamoDB",
  3951. "doctrine/couchdb": "Allow sending log messages to a CouchDB server",
  3952. "elasticsearch/elasticsearch": "Allow sending log messages to an Elasticsearch server via official client",
  3953. "ext-amqp": "Allow sending log messages to an AMQP server (1.0+ required)",
  3954. "ext-mbstring": "Allow to work properly with unicode symbols",
  3955. "ext-mongodb": "Allow sending log messages to a MongoDB server (via driver)",
  3956. "graylog2/gelf-php": "Allow sending log messages to a GrayLog2 server",
  3957. "mongodb/mongodb": "Allow sending log messages to a MongoDB server (via library)",
  3958. "php-amqplib/php-amqplib": "Allow sending log messages to an AMQP server using php-amqplib",
  3959. "php-console/php-console": "Allow sending log messages to Google Chrome",
  3960. "rollbar/rollbar": "Allow sending log messages to Rollbar",
  3961. "ruflin/elastica": "Allow sending log messages to an Elastic Search server"
  3962. },
  3963. "type": "library",
  3964. "extra": {
  3965. "branch-alias": {
  3966. "dev-main": "2.x-dev"
  3967. }
  3968. },
  3969. "autoload": {
  3970. "psr-4": {
  3971. "Monolog\\": "src/Monolog"
  3972. }
  3973. },
  3974. "notification-url": "https://packagist.org/downloads/",
  3975. "license": [
  3976. "MIT"
  3977. ],
  3978. "authors": [
  3979. {
  3980. "name": "Jordi Boggiano",
  3981. "email": "j.boggiano@seld.be",
  3982. "homepage": "https://seld.be"
  3983. }
  3984. ],
  3985. "description": "Sends your logs to files, sockets, inboxes, databases and various web services",
  3986. "homepage": "https://github.com/Seldaek/monolog",
  3987. "keywords": [
  3988. "log",
  3989. "logging",
  3990. "psr-3"
  3991. ],
  3992. "time": "2020-12-14T13:15:25+00:00"
  3993. },
  3994. {
  3995. "name": "myclabs/php-enum",
  3996. "version": "1.6.6",
  3997. "source": {
  3998. "type": "git",
  3999. "url": "https://github.com/myclabs/php-enum.git",
  4000. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e"
  4001. },
  4002. "dist": {
  4003. "type": "zip",
  4004. "url": "https://api.github.com/repos/myclabs/php-enum/zipball/32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  4005. "reference": "32c4202886c51fbe5cc3a7c34ec5c9a4a790345e",
  4006. "shasum": "",
  4007. "mirrors": [
  4008. {
  4009. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4010. "preferred": true
  4011. }
  4012. ]
  4013. },
  4014. "require": {
  4015. "ext-json": "*",
  4016. "php": ">=5.4"
  4017. },
  4018. "require-dev": {
  4019. "phpunit/phpunit": "^4.8.35|^5.7|^6.0",
  4020. "squizlabs/php_codesniffer": "1.*"
  4021. },
  4022. "type": "library",
  4023. "autoload": {
  4024. "psr-4": {
  4025. "MyCLabs\\Enum\\": "src/"
  4026. }
  4027. },
  4028. "notification-url": "https://packagist.org/downloads/",
  4029. "license": [
  4030. "MIT"
  4031. ],
  4032. "authors": [
  4033. {
  4034. "name": "PHP Enum contributors",
  4035. "homepage": "https://github.com/myclabs/php-enum/graphs/contributors"
  4036. }
  4037. ],
  4038. "description": "PHP Enum implementation",
  4039. "homepage": "http://github.com/myclabs/php-enum",
  4040. "keywords": [
  4041. "enum"
  4042. ],
  4043. "support": {
  4044. "issues": "https://github.com/myclabs/php-enum/issues",
  4045. "source": "https://github.com/myclabs/php-enum/tree/master"
  4046. },
  4047. "time": "2019-02-04T21:18:49+00:00"
  4048. },
  4049. {
  4050. "name": "namshi/jose",
  4051. "version": "7.2.3",
  4052. "source": {
  4053. "type": "git",
  4054. "url": "https://github.com/namshi/jose.git",
  4055. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff"
  4056. },
  4057. "dist": {
  4058. "type": "zip",
  4059. "url": "https://api.github.com/repos/namshi/jose/zipball/89a24d7eb3040e285dd5925fcad992378b82bcff",
  4060. "reference": "89a24d7eb3040e285dd5925fcad992378b82bcff",
  4061. "shasum": "",
  4062. "mirrors": [
  4063. {
  4064. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4065. "preferred": true
  4066. }
  4067. ]
  4068. },
  4069. "require": {
  4070. "ext-date": "*",
  4071. "ext-hash": "*",
  4072. "ext-json": "*",
  4073. "ext-pcre": "*",
  4074. "ext-spl": "*",
  4075. "php": ">=5.5",
  4076. "symfony/polyfill-php56": "^1.0"
  4077. },
  4078. "require-dev": {
  4079. "phpseclib/phpseclib": "^2.0",
  4080. "phpunit/phpunit": "^4.5|^5.0",
  4081. "satooshi/php-coveralls": "^1.0"
  4082. },
  4083. "suggest": {
  4084. "ext-openssl": "Allows to use OpenSSL as crypto engine.",
  4085. "phpseclib/phpseclib": "Allows to use Phpseclib as crypto engine, use version ^2.0."
  4086. },
  4087. "type": "library",
  4088. "autoload": {
  4089. "psr-4": {
  4090. "Namshi\\JOSE\\": "src/Namshi/JOSE/"
  4091. }
  4092. },
  4093. "notification-url": "https://packagist.org/downloads/",
  4094. "license": [
  4095. "MIT"
  4096. ],
  4097. "authors": [
  4098. {
  4099. "name": "Alessandro Nadalin",
  4100. "email": "alessandro.nadalin@gmail.com"
  4101. },
  4102. {
  4103. "name": "Alessandro Cinelli (cirpo)",
  4104. "email": "alessandro.cinelli@gmail.com"
  4105. }
  4106. ],
  4107. "description": "JSON Object Signing and Encryption library for PHP.",
  4108. "keywords": [
  4109. "JSON Web Signature",
  4110. "JSON Web Token",
  4111. "JWS",
  4112. "json",
  4113. "jwt",
  4114. "token"
  4115. ],
  4116. "time": "2016-12-05T07:27:31+00:00"
  4117. },
  4118. {
  4119. "name": "nesbot/carbon",
  4120. "version": "2.46.0",
  4121. "source": {
  4122. "type": "git",
  4123. "url": "https://github.com/briannesbitt/Carbon.git",
  4124. "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4"
  4125. },
  4126. "dist": {
  4127. "type": "zip",
  4128. "url": "https://api.github.com/repos/briannesbitt/Carbon/zipball/2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4",
  4129. "reference": "2fd2c4a77d58a4e95234c8a61c5df1f157a91bf4",
  4130. "shasum": "",
  4131. "mirrors": [
  4132. {
  4133. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4134. "preferred": true
  4135. }
  4136. ]
  4137. },
  4138. "require": {
  4139. "ext-json": "*",
  4140. "php": "^7.1.8 || ^8.0",
  4141. "symfony/polyfill-mbstring": "^1.0",
  4142. "symfony/translation": "^3.4 || ^4.0 || ^5.0"
  4143. },
  4144. "require-dev": {
  4145. "doctrine/orm": "^2.7",
  4146. "friendsofphp/php-cs-fixer": "^2.14 || ^3.0",
  4147. "kylekatarnls/multi-tester": "^2.0",
  4148. "phpmd/phpmd": "^2.9",
  4149. "phpstan/extension-installer": "^1.0",
  4150. "phpstan/phpstan": "^0.12.54",
  4151. "phpunit/phpunit": "^7.5.20 || ^8.5.14",
  4152. "squizlabs/php_codesniffer": "^3.4"
  4153. },
  4154. "bin": [
  4155. "bin/carbon"
  4156. ],
  4157. "type": "library",
  4158. "extra": {
  4159. "branch-alias": {
  4160. "dev-master": "2.x-dev",
  4161. "dev-3.x": "3.x-dev"
  4162. },
  4163. "laravel": {
  4164. "providers": [
  4165. "Carbon\\Laravel\\ServiceProvider"
  4166. ]
  4167. },
  4168. "phpstan": {
  4169. "includes": [
  4170. "extension.neon"
  4171. ]
  4172. }
  4173. },
  4174. "autoload": {
  4175. "psr-4": {
  4176. "Carbon\\": "src/Carbon/"
  4177. }
  4178. },
  4179. "notification-url": "https://packagist.org/downloads/",
  4180. "license": [
  4181. "MIT"
  4182. ],
  4183. "authors": [
  4184. {
  4185. "name": "Brian Nesbitt",
  4186. "email": "brian@nesbot.com",
  4187. "homepage": "http://nesbot.com"
  4188. },
  4189. {
  4190. "name": "kylekatarnls",
  4191. "homepage": "http://github.com/kylekatarnls"
  4192. }
  4193. ],
  4194. "description": "An API extension for DateTime that supports 281 different languages.",
  4195. "homepage": "http://carbon.nesbot.com",
  4196. "keywords": [
  4197. "date",
  4198. "datetime",
  4199. "time"
  4200. ],
  4201. "time": "2021-02-24T17:30:44+00:00"
  4202. },
  4203. {
  4204. "name": "nikic/fast-route",
  4205. "version": "v1.3.0",
  4206. "source": {
  4207. "type": "git",
  4208. "url": "https://github.com/nikic/FastRoute.git",
  4209. "reference": "181d480e08d9476e61381e04a71b34dc0432e812"
  4210. },
  4211. "dist": {
  4212. "type": "zip",
  4213. "url": "https://api.github.com/repos/nikic/FastRoute/zipball/181d480e08d9476e61381e04a71b34dc0432e812",
  4214. "reference": "181d480e08d9476e61381e04a71b34dc0432e812",
  4215. "shasum": "",
  4216. "mirrors": [
  4217. {
  4218. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4219. "preferred": true
  4220. }
  4221. ]
  4222. },
  4223. "require": {
  4224. "php": ">=5.4.0"
  4225. },
  4226. "require-dev": {
  4227. "phpunit/phpunit": "^4.8.35|~5.7"
  4228. },
  4229. "type": "library",
  4230. "autoload": {
  4231. "psr-4": {
  4232. "FastRoute\\": "src/"
  4233. },
  4234. "files": [
  4235. "src/functions.php"
  4236. ]
  4237. },
  4238. "notification-url": "https://packagist.org/downloads/",
  4239. "license": [
  4240. "BSD-3-Clause"
  4241. ],
  4242. "authors": [
  4243. {
  4244. "name": "Nikita Popov",
  4245. "email": "nikic@php.net"
  4246. }
  4247. ],
  4248. "description": "Fast request router for PHP",
  4249. "keywords": [
  4250. "router",
  4251. "routing"
  4252. ],
  4253. "time": "2018-02-13T20:26:39+00:00"
  4254. },
  4255. {
  4256. "name": "opis/closure",
  4257. "version": "3.6.2",
  4258. "source": {
  4259. "type": "git",
  4260. "url": "https://github.com/opis/closure.git",
  4261. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6"
  4262. },
  4263. "dist": {
  4264. "type": "zip",
  4265. "url": "https://api.github.com/repos/opis/closure/zipball/06e2ebd25f2869e54a306dda991f7db58066f7f6",
  4266. "reference": "06e2ebd25f2869e54a306dda991f7db58066f7f6",
  4267. "shasum": "",
  4268. "mirrors": [
  4269. {
  4270. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4271. "preferred": true
  4272. }
  4273. ]
  4274. },
  4275. "require": {
  4276. "php": "^5.4 || ^7.0 || ^8.0"
  4277. },
  4278. "require-dev": {
  4279. "jeremeamia/superclosure": "^2.0",
  4280. "phpunit/phpunit": "^4.0 || ^5.0 || ^6.0 || ^7.0 || ^8.0 || ^9.0"
  4281. },
  4282. "type": "library",
  4283. "extra": {
  4284. "branch-alias": {
  4285. "dev-master": "3.6.x-dev"
  4286. }
  4287. },
  4288. "autoload": {
  4289. "psr-4": {
  4290. "Opis\\Closure\\": "src/"
  4291. },
  4292. "files": [
  4293. "functions.php"
  4294. ]
  4295. },
  4296. "notification-url": "https://packagist.org/downloads/",
  4297. "license": [
  4298. "MIT"
  4299. ],
  4300. "authors": [
  4301. {
  4302. "name": "Marius Sarca",
  4303. "email": "marius.sarca@gmail.com"
  4304. },
  4305. {
  4306. "name": "Sorin Sarca",
  4307. "email": "sarca_sorin@hotmail.com"
  4308. }
  4309. ],
  4310. "description": "A library that can be used to serialize closures (anonymous functions) and arbitrary objects.",
  4311. "homepage": "https://opis.io/closure",
  4312. "keywords": [
  4313. "anonymous functions",
  4314. "closure",
  4315. "function",
  4316. "serializable",
  4317. "serialization",
  4318. "serialize"
  4319. ],
  4320. "time": "2021-04-09T13:42:10+00:00"
  4321. },
  4322. {
  4323. "name": "overtrue/easy-sms",
  4324. "version": "1.3.2",
  4325. "source": {
  4326. "type": "git",
  4327. "url": "https://github.com/overtrue/easy-sms.git",
  4328. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee"
  4329. },
  4330. "dist": {
  4331. "type": "zip",
  4332. "url": "https://api.github.com/repos/overtrue/easy-sms/zipball/daa0b4308ec0e3c112888c288d14d473be6aabee",
  4333. "reference": "daa0b4308ec0e3c112888c288d14d473be6aabee",
  4334. "shasum": "",
  4335. "mirrors": [
  4336. {
  4337. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4338. "preferred": true
  4339. }
  4340. ]
  4341. },
  4342. "require": {
  4343. "ext-json": "*",
  4344. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  4345. "php": ">=5.6"
  4346. },
  4347. "require-dev": {
  4348. "mockery/mockery": "1.3.1",
  4349. "phpunit/phpunit": "^5.7 || ^7.5"
  4350. },
  4351. "type": "library",
  4352. "autoload": {
  4353. "psr-4": {
  4354. "Overtrue\\EasySms\\": "src"
  4355. }
  4356. },
  4357. "notification-url": "https://packagist.org/downloads/",
  4358. "license": [
  4359. "MIT"
  4360. ],
  4361. "authors": [
  4362. {
  4363. "name": "overtrue",
  4364. "email": "i@overtrue.me"
  4365. }
  4366. ],
  4367. "description": "The easiest way to send short message.",
  4368. "time": "2021-01-22T06:52:59+00:00"
  4369. },
  4370. {
  4371. "name": "overtrue/laravel-wechat",
  4372. "version": "5.1.0",
  4373. "source": {
  4374. "type": "git",
  4375. "url": "https://github.com/overtrue/laravel-wechat.git",
  4376. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8"
  4377. },
  4378. "dist": {
  4379. "type": "zip",
  4380. "url": "https://api.github.com/repos/overtrue/laravel-wechat/zipball/1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4381. "reference": "1bc59aa52cf6bae2f4f388e9f20f7893305f2fe8",
  4382. "shasum": "",
  4383. "mirrors": [
  4384. {
  4385. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4386. "preferred": true
  4387. }
  4388. ]
  4389. },
  4390. "require": {
  4391. "illuminate/container": "^5.1 || ^6.0 || ^7.0 || ^8.0",
  4392. "overtrue/wechat": "^4.0"
  4393. },
  4394. "require-dev": {
  4395. "friendsofphp/php-cs-fixer": "^2.16",
  4396. "laravel/framework": "^8.5"
  4397. },
  4398. "type": "library",
  4399. "extra": {
  4400. "laravel": {
  4401. "providers": [
  4402. "Overtrue\\LaravelWeChat\\ServiceProvider"
  4403. ],
  4404. "aliases": {
  4405. "EasyWeChat": "Overtrue\\LaravelWeChat\\Facade"
  4406. }
  4407. }
  4408. },
  4409. "autoload": {
  4410. "psr-4": {
  4411. "Overtrue\\LaravelWeChat\\": "src/"
  4412. }
  4413. },
  4414. "notification-url": "https://packagist.org/downloads/",
  4415. "license": [
  4416. "MIT"
  4417. ],
  4418. "authors": [
  4419. {
  4420. "name": "overtrue",
  4421. "email": "anzhengchao@gmail.com"
  4422. }
  4423. ],
  4424. "description": "微信 SDK for Laravel",
  4425. "keywords": [
  4426. "laravel",
  4427. "sdk",
  4428. "wechat",
  4429. "weixin"
  4430. ],
  4431. "time": "2020-09-27T08:32:30+00:00"
  4432. },
  4433. {
  4434. "name": "overtrue/socialite",
  4435. "version": "2.0.23",
  4436. "source": {
  4437. "type": "git",
  4438. "url": "https://github.com/overtrue/socialite.git",
  4439. "reference": "0bc60597b589592243f074a4d9016aabd2e9cfb2"
  4440. },
  4441. "dist": {
  4442. "type": "zip",
  4443. "url": "https://api.github.com/repos/overtrue/socialite/zipball/0bc60597b589592243f074a4d9016aabd2e9cfb2",
  4444. "reference": "0bc60597b589592243f074a4d9016aabd2e9cfb2",
  4445. "shasum": "",
  4446. "mirrors": [
  4447. {
  4448. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4449. "preferred": true
  4450. }
  4451. ]
  4452. },
  4453. "require": {
  4454. "ext-json": "*",
  4455. "guzzlehttp/guzzle": "^5.0|^6.0|^7.0",
  4456. "php": ">=5.6",
  4457. "symfony/http-foundation": "^2.7|^3.0|^4.0|^5.0"
  4458. },
  4459. "require-dev": {
  4460. "mockery/mockery": "~1.2",
  4461. "phpunit/phpunit": "~6"
  4462. },
  4463. "type": "library",
  4464. "autoload": {
  4465. "psr-4": {
  4466. "Overtrue\\Socialite\\": "src/"
  4467. }
  4468. },
  4469. "notification-url": "https://packagist.org/downloads/",
  4470. "license": [
  4471. "MIT"
  4472. ],
  4473. "authors": [
  4474. {
  4475. "name": "overtrue",
  4476. "email": "anzhengchao@gmail.com"
  4477. }
  4478. ],
  4479. "description": "A collection of OAuth 2 packages that extracts from laravel/socialite.",
  4480. "keywords": [
  4481. "login",
  4482. "oauth",
  4483. "qq",
  4484. "social",
  4485. "wechat",
  4486. "weibo"
  4487. ],
  4488. "time": "2020-12-14T03:30:08+00:00"
  4489. },
  4490. {
  4491. "name": "overtrue/wechat",
  4492. "version": "4.4.0",
  4493. "source": {
  4494. "type": "git",
  4495. "url": "https://github.com/w7corp/easywechat.git",
  4496. "reference": "20bdd3fe8056ee9297692caf53bd131be8079ee6"
  4497. },
  4498. "dist": {
  4499. "type": "zip",
  4500. "url": "https://api.github.com/repos/w7corp/easywechat/zipball/20bdd3fe8056ee9297692caf53bd131be8079ee6",
  4501. "reference": "20bdd3fe8056ee9297692caf53bd131be8079ee6",
  4502. "shasum": "",
  4503. "mirrors": [
  4504. {
  4505. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4506. "preferred": true
  4507. }
  4508. ]
  4509. },
  4510. "require": {
  4511. "easywechat-composer/easywechat-composer": "^1.1",
  4512. "ext-fileinfo": "*",
  4513. "ext-openssl": "*",
  4514. "ext-simplexml": "*",
  4515. "guzzlehttp/guzzle": "^6.2 || ^7.0",
  4516. "monolog/monolog": "^1.22 || ^2.0",
  4517. "overtrue/socialite": "~2.0",
  4518. "php": ">=7.2",
  4519. "pimple/pimple": "^3.0",
  4520. "psr/simple-cache": "^1.0",
  4521. "symfony/cache": "^3.3 || ^4.3 || ^5.0",
  4522. "symfony/event-dispatcher": "^4.3 || ^5.0",
  4523. "symfony/http-foundation": "^2.7 || ^3.0 || ^4.0 || ^5.0",
  4524. "symfony/psr-http-message-bridge": "^0.3 || ^1.0 || ^2.0"
  4525. },
  4526. "require-dev": {
  4527. "friendsofphp/php-cs-fixer": "^2.15",
  4528. "mikey179/vfsstream": "^1.6",
  4529. "mockery/mockery": "^1.2.3",
  4530. "phpstan/phpstan": "^0.12.0",
  4531. "phpunit/phpunit": "^7.5"
  4532. },
  4533. "type": "library",
  4534. "autoload": {
  4535. "psr-4": {
  4536. "EasyWeChat\\": "src/"
  4537. },
  4538. "files": [
  4539. "src/Kernel/Support/Helpers.php",
  4540. "src/Kernel/Helpers.php"
  4541. ]
  4542. },
  4543. "notification-url": "https://packagist.org/downloads/",
  4544. "license": [
  4545. "MIT"
  4546. ],
  4547. "authors": [
  4548. {
  4549. "name": "overtrue",
  4550. "email": "anzhengchao@gmail.com"
  4551. }
  4552. ],
  4553. "description": "微信SDK",
  4554. "keywords": [
  4555. "easywechat",
  4556. "sdk",
  4557. "wechat",
  4558. "weixin",
  4559. "weixin-sdk"
  4560. ],
  4561. "time": "2020-12-30T06:39:40+00:00"
  4562. },
  4563. {
  4564. "name": "phpdocumentor/reflection-common",
  4565. "version": "2.2.0",
  4566. "source": {
  4567. "type": "git",
  4568. "url": "https://github.com/phpDocumentor/ReflectionCommon.git",
  4569. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b"
  4570. },
  4571. "dist": {
  4572. "type": "zip",
  4573. "url": "https://api.github.com/repos/phpDocumentor/ReflectionCommon/zipball/1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4574. "reference": "1d01c49d4ed62f25aa84a747ad35d5a16924662b",
  4575. "shasum": "",
  4576. "mirrors": [
  4577. {
  4578. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4579. "preferred": true
  4580. }
  4581. ]
  4582. },
  4583. "require": {
  4584. "php": "^7.2 || ^8.0"
  4585. },
  4586. "type": "library",
  4587. "extra": {
  4588. "branch-alias": {
  4589. "dev-2.x": "2.x-dev"
  4590. }
  4591. },
  4592. "autoload": {
  4593. "psr-4": {
  4594. "phpDocumentor\\Reflection\\": "src/"
  4595. }
  4596. },
  4597. "notification-url": "https://packagist.org/downloads/",
  4598. "license": [
  4599. "MIT"
  4600. ],
  4601. "authors": [
  4602. {
  4603. "name": "Jaap van Otterdijk",
  4604. "email": "opensource@ijaap.nl"
  4605. }
  4606. ],
  4607. "description": "Common reflection classes used by phpdocumentor to reflect the code structure",
  4608. "homepage": "http://www.phpdoc.org",
  4609. "keywords": [
  4610. "FQSEN",
  4611. "phpDocumentor",
  4612. "phpdoc",
  4613. "reflection",
  4614. "static analysis"
  4615. ],
  4616. "support": {
  4617. "issues": "https://github.com/phpDocumentor/ReflectionCommon/issues",
  4618. "source": "https://github.com/phpDocumentor/ReflectionCommon/tree/2.x"
  4619. },
  4620. "time": "2020-06-27T09:03:43+00:00"
  4621. },
  4622. {
  4623. "name": "phpdocumentor/reflection-docblock",
  4624. "version": "4.3.4",
  4625. "source": {
  4626. "type": "git",
  4627. "url": "https://github.com/phpDocumentor/ReflectionDocBlock.git",
  4628. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c"
  4629. },
  4630. "dist": {
  4631. "type": "zip",
  4632. "url": "https://api.github.com/repos/phpDocumentor/ReflectionDocBlock/zipball/da3fd972d6bafd628114f7e7e036f45944b62e9c",
  4633. "reference": "da3fd972d6bafd628114f7e7e036f45944b62e9c",
  4634. "shasum": "",
  4635. "mirrors": [
  4636. {
  4637. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4638. "preferred": true
  4639. }
  4640. ]
  4641. },
  4642. "require": {
  4643. "php": "^7.0",
  4644. "phpdocumentor/reflection-common": "^1.0.0 || ^2.0.0",
  4645. "phpdocumentor/type-resolver": "~0.4 || ^1.0.0",
  4646. "webmozart/assert": "^1.0"
  4647. },
  4648. "require-dev": {
  4649. "doctrine/instantiator": "^1.0.5",
  4650. "mockery/mockery": "^1.0",
  4651. "phpdocumentor/type-resolver": "0.4.*",
  4652. "phpunit/phpunit": "^6.4"
  4653. },
  4654. "type": "library",
  4655. "extra": {
  4656. "branch-alias": {
  4657. "dev-master": "4.x-dev"
  4658. }
  4659. },
  4660. "autoload": {
  4661. "psr-4": {
  4662. "phpDocumentor\\Reflection\\": [
  4663. "src/"
  4664. ]
  4665. }
  4666. },
  4667. "notification-url": "https://packagist.org/downloads/",
  4668. "license": [
  4669. "MIT"
  4670. ],
  4671. "authors": [
  4672. {
  4673. "name": "Mike van Riel",
  4674. "email": "me@mikevanriel.com"
  4675. }
  4676. ],
  4677. "description": "With this component, a library can provide support for annotations via DocBlocks or otherwise retrieve information that is embedded in a DocBlock.",
  4678. "support": {
  4679. "issues": "https://github.com/phpDocumentor/ReflectionDocBlock/issues",
  4680. "source": "https://github.com/phpDocumentor/ReflectionDocBlock/tree/release/4.x"
  4681. },
  4682. "time": "2019-12-28T18:55:12+00:00"
  4683. },
  4684. {
  4685. "name": "phpdocumentor/type-resolver",
  4686. "version": "1.6.1",
  4687. "source": {
  4688. "type": "git",
  4689. "url": "https://github.com/phpDocumentor/TypeResolver.git",
  4690. "reference": "77a32518733312af16a44300404e945338981de3"
  4691. },
  4692. "dist": {
  4693. "type": "zip",
  4694. "url": "https://api.github.com/repos/phpDocumentor/TypeResolver/zipball/77a32518733312af16a44300404e945338981de3",
  4695. "reference": "77a32518733312af16a44300404e945338981de3",
  4696. "shasum": "",
  4697. "mirrors": [
  4698. {
  4699. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4700. "preferred": true
  4701. }
  4702. ]
  4703. },
  4704. "require": {
  4705. "php": "^7.2 || ^8.0",
  4706. "phpdocumentor/reflection-common": "^2.0"
  4707. },
  4708. "require-dev": {
  4709. "ext-tokenizer": "*",
  4710. "psalm/phar": "^4.8"
  4711. },
  4712. "type": "library",
  4713. "extra": {
  4714. "branch-alias": {
  4715. "dev-1.x": "1.x-dev"
  4716. }
  4717. },
  4718. "autoload": {
  4719. "psr-4": {
  4720. "phpDocumentor\\Reflection\\": "src"
  4721. }
  4722. },
  4723. "notification-url": "https://packagist.org/downloads/",
  4724. "license": [
  4725. "MIT"
  4726. ],
  4727. "authors": [
  4728. {
  4729. "name": "Mike van Riel",
  4730. "email": "me@mikevanriel.com"
  4731. }
  4732. ],
  4733. "description": "A PSR-5 based resolver of Class names, Types and Structural Element Names",
  4734. "support": {
  4735. "issues": "https://github.com/phpDocumentor/TypeResolver/issues",
  4736. "source": "https://github.com/phpDocumentor/TypeResolver/tree/1.6.1"
  4737. },
  4738. "time": "2022-03-15T21:29:03+00:00"
  4739. },
  4740. {
  4741. "name": "phpoption/phpoption",
  4742. "version": "1.7.5",
  4743. "source": {
  4744. "type": "git",
  4745. "url": "https://github.com/schmittjoh/php-option.git",
  4746. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525"
  4747. },
  4748. "dist": {
  4749. "type": "zip",
  4750. "url": "https://api.github.com/repos/schmittjoh/php-option/zipball/994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4751. "reference": "994ecccd8f3283ecf5ac33254543eb0ac946d525",
  4752. "shasum": "",
  4753. "mirrors": [
  4754. {
  4755. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4756. "preferred": true
  4757. }
  4758. ]
  4759. },
  4760. "require": {
  4761. "php": "^5.5.9 || ^7.0 || ^8.0"
  4762. },
  4763. "require-dev": {
  4764. "bamarni/composer-bin-plugin": "^1.4.1",
  4765. "phpunit/phpunit": "^4.8.35 || ^5.7.27 || ^6.5.6 || ^7.0 || ^8.0 || ^9.0"
  4766. },
  4767. "type": "library",
  4768. "extra": {
  4769. "branch-alias": {
  4770. "dev-master": "1.7-dev"
  4771. }
  4772. },
  4773. "autoload": {
  4774. "psr-4": {
  4775. "PhpOption\\": "src/PhpOption/"
  4776. }
  4777. },
  4778. "notification-url": "https://packagist.org/downloads/",
  4779. "license": [
  4780. "Apache-2.0"
  4781. ],
  4782. "authors": [
  4783. {
  4784. "name": "Johannes M. Schmitt",
  4785. "email": "schmittjoh@gmail.com"
  4786. },
  4787. {
  4788. "name": "Graham Campbell",
  4789. "email": "graham@alt-three.com"
  4790. }
  4791. ],
  4792. "description": "Option Type for PHP",
  4793. "keywords": [
  4794. "language",
  4795. "option",
  4796. "php",
  4797. "type"
  4798. ],
  4799. "time": "2020-07-20T17:29:33+00:00"
  4800. },
  4801. {
  4802. "name": "pimple/pimple",
  4803. "version": "v3.4.0",
  4804. "source": {
  4805. "type": "git",
  4806. "url": "https://github.com/silexphp/Pimple.git",
  4807. "reference": "86406047271859ffc13424a048541f4531f53601"
  4808. },
  4809. "dist": {
  4810. "type": "zip",
  4811. "url": "https://api.github.com/repos/silexphp/Pimple/zipball/86406047271859ffc13424a048541f4531f53601",
  4812. "reference": "86406047271859ffc13424a048541f4531f53601",
  4813. "shasum": "",
  4814. "mirrors": [
  4815. {
  4816. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4817. "preferred": true
  4818. }
  4819. ]
  4820. },
  4821. "require": {
  4822. "php": ">=7.2.5",
  4823. "psr/container": "^1.1"
  4824. },
  4825. "require-dev": {
  4826. "symfony/phpunit-bridge": "^5.0"
  4827. },
  4828. "type": "library",
  4829. "extra": {
  4830. "branch-alias": {
  4831. "dev-master": "3.4.x-dev"
  4832. }
  4833. },
  4834. "autoload": {
  4835. "psr-0": {
  4836. "Pimple": "src/"
  4837. }
  4838. },
  4839. "notification-url": "https://packagist.org/downloads/",
  4840. "license": [
  4841. "MIT"
  4842. ],
  4843. "authors": [
  4844. {
  4845. "name": "Fabien Potencier",
  4846. "email": "fabien@symfony.com"
  4847. }
  4848. ],
  4849. "description": "Pimple, a simple Dependency Injection Container",
  4850. "homepage": "https://pimple.symfony.com",
  4851. "keywords": [
  4852. "container",
  4853. "dependency injection"
  4854. ],
  4855. "time": "2021-03-06T08:28:00+00:00"
  4856. },
  4857. {
  4858. "name": "psr/cache",
  4859. "version": "1.0.1",
  4860. "source": {
  4861. "type": "git",
  4862. "url": "https://github.com/php-fig/cache.git",
  4863. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8"
  4864. },
  4865. "dist": {
  4866. "type": "zip",
  4867. "url": "https://api.github.com/repos/php-fig/cache/zipball/d11b50ad223250cf17b86e38383413f5a6764bf8",
  4868. "reference": "d11b50ad223250cf17b86e38383413f5a6764bf8",
  4869. "shasum": "",
  4870. "mirrors": [
  4871. {
  4872. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4873. "preferred": true
  4874. }
  4875. ]
  4876. },
  4877. "require": {
  4878. "php": ">=5.3.0"
  4879. },
  4880. "type": "library",
  4881. "extra": {
  4882. "branch-alias": {
  4883. "dev-master": "1.0.x-dev"
  4884. }
  4885. },
  4886. "autoload": {
  4887. "psr-4": {
  4888. "Psr\\Cache\\": "src/"
  4889. }
  4890. },
  4891. "notification-url": "https://packagist.org/downloads/",
  4892. "license": [
  4893. "MIT"
  4894. ],
  4895. "authors": [
  4896. {
  4897. "name": "PHP-FIG",
  4898. "homepage": "http://www.php-fig.org/"
  4899. }
  4900. ],
  4901. "description": "Common interface for caching libraries",
  4902. "keywords": [
  4903. "cache",
  4904. "psr",
  4905. "psr-6"
  4906. ],
  4907. "support": {
  4908. "source": "https://github.com/php-fig/cache/tree/master"
  4909. },
  4910. "time": "2016-08-06T20:24:11+00:00"
  4911. },
  4912. {
  4913. "name": "psr/container",
  4914. "version": "1.1.1",
  4915. "source": {
  4916. "type": "git",
  4917. "url": "https://github.com/php-fig/container.git",
  4918. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf"
  4919. },
  4920. "dist": {
  4921. "type": "zip",
  4922. "url": "https://api.github.com/repos/php-fig/container/zipball/8622567409010282b7aeebe4bb841fe98b58dcaf",
  4923. "reference": "8622567409010282b7aeebe4bb841fe98b58dcaf",
  4924. "shasum": "",
  4925. "mirrors": [
  4926. {
  4927. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  4928. "preferred": true
  4929. }
  4930. ]
  4931. },
  4932. "require": {
  4933. "php": ">=7.2.0"
  4934. },
  4935. "type": "library",
  4936. "autoload": {
  4937. "psr-4": {
  4938. "Psr\\Container\\": "src/"
  4939. }
  4940. },
  4941. "notification-url": "https://packagist.org/downloads/",
  4942. "license": [
  4943. "MIT"
  4944. ],
  4945. "authors": [
  4946. {
  4947. "name": "PHP-FIG",
  4948. "homepage": "https://www.php-fig.org/"
  4949. }
  4950. ],
  4951. "description": "Common Container Interface (PHP FIG PSR-11)",
  4952. "homepage": "https://github.com/php-fig/container",
  4953. "keywords": [
  4954. "PSR-11",
  4955. "container",
  4956. "container-interface",
  4957. "container-interop",
  4958. "psr"
  4959. ],
  4960. "support": {
  4961. "issues": "https://github.com/php-fig/container/issues",
  4962. "source": "https://github.com/php-fig/container/tree/1.1.1"
  4963. },
  4964. "time": "2021-03-05T17:36:06+00:00"
  4965. },
  4966. {
  4967. "name": "psr/http-message",
  4968. "version": "1.0.1",
  4969. "source": {
  4970. "type": "git",
  4971. "url": "https://github.com/php-fig/http-message.git",
  4972. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363"
  4973. },
  4974. "dist": {
  4975. "type": "zip",
  4976. "url": "https://api.github.com/repos/php-fig/http-message/zipball/f6561bf28d520154e4b0ec72be95418abe6d9363",
  4977. "reference": "f6561bf28d520154e4b0ec72be95418abe6d9363",
  4978. "shasum": "",
  4979. "mirrors": [
  4980. {
  4981. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  4982. "preferred": true
  4983. }
  4984. ]
  4985. },
  4986. "require": {
  4987. "php": ">=5.3.0"
  4988. },
  4989. "type": "library",
  4990. "extra": {
  4991. "branch-alias": {
  4992. "dev-master": "1.0.x-dev"
  4993. }
  4994. },
  4995. "autoload": {
  4996. "psr-4": {
  4997. "Psr\\Http\\Message\\": "src/"
  4998. }
  4999. },
  5000. "notification-url": "https://packagist.org/downloads/",
  5001. "license": [
  5002. "MIT"
  5003. ],
  5004. "authors": [
  5005. {
  5006. "name": "PHP-FIG",
  5007. "homepage": "http://www.php-fig.org/"
  5008. }
  5009. ],
  5010. "description": "Common interface for HTTP messages",
  5011. "homepage": "https://github.com/php-fig/http-message",
  5012. "keywords": [
  5013. "http",
  5014. "http-message",
  5015. "psr",
  5016. "psr-7",
  5017. "request",
  5018. "response"
  5019. ],
  5020. "time": "2016-08-06T14:39:51+00:00"
  5021. },
  5022. {
  5023. "name": "psr/log",
  5024. "version": "1.1.4",
  5025. "source": {
  5026. "type": "git",
  5027. "url": "https://github.com/php-fig/log.git",
  5028. "reference": "d49695b909c3b7628b6289db5479a1c204601f11"
  5029. },
  5030. "dist": {
  5031. "type": "zip",
  5032. "url": "https://api.github.com/repos/php-fig/log/zipball/d49695b909c3b7628b6289db5479a1c204601f11",
  5033. "reference": "d49695b909c3b7628b6289db5479a1c204601f11",
  5034. "shasum": "",
  5035. "mirrors": [
  5036. {
  5037. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5038. "preferred": true
  5039. }
  5040. ]
  5041. },
  5042. "require": {
  5043. "php": ">=5.3.0"
  5044. },
  5045. "type": "library",
  5046. "extra": {
  5047. "branch-alias": {
  5048. "dev-master": "1.1.x-dev"
  5049. }
  5050. },
  5051. "autoload": {
  5052. "psr-4": {
  5053. "Psr\\Log\\": "Psr/Log/"
  5054. }
  5055. },
  5056. "notification-url": "https://packagist.org/downloads/",
  5057. "license": [
  5058. "MIT"
  5059. ],
  5060. "authors": [
  5061. {
  5062. "name": "PHP-FIG",
  5063. "homepage": "https://www.php-fig.org/"
  5064. }
  5065. ],
  5066. "description": "Common interface for logging libraries",
  5067. "homepage": "https://github.com/php-fig/log",
  5068. "keywords": [
  5069. "log",
  5070. "psr",
  5071. "psr-3"
  5072. ],
  5073. "support": {
  5074. "source": "https://github.com/php-fig/log/tree/1.1.4"
  5075. },
  5076. "time": "2021-05-03T11:20:27+00:00"
  5077. },
  5078. {
  5079. "name": "psr/simple-cache",
  5080. "version": "1.0.1",
  5081. "source": {
  5082. "type": "git",
  5083. "url": "https://github.com/php-fig/simple-cache.git",
  5084. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b"
  5085. },
  5086. "dist": {
  5087. "type": "zip",
  5088. "url": "https://api.github.com/repos/php-fig/simple-cache/zipball/408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5089. "reference": "408d5eafb83c57f6365a3ca330ff23aa4a5fa39b",
  5090. "shasum": "",
  5091. "mirrors": [
  5092. {
  5093. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5094. "preferred": true
  5095. }
  5096. ]
  5097. },
  5098. "require": {
  5099. "php": ">=5.3.0"
  5100. },
  5101. "type": "library",
  5102. "extra": {
  5103. "branch-alias": {
  5104. "dev-master": "1.0.x-dev"
  5105. }
  5106. },
  5107. "autoload": {
  5108. "psr-4": {
  5109. "Psr\\SimpleCache\\": "src/"
  5110. }
  5111. },
  5112. "notification-url": "https://packagist.org/downloads/",
  5113. "license": [
  5114. "MIT"
  5115. ],
  5116. "authors": [
  5117. {
  5118. "name": "PHP-FIG",
  5119. "homepage": "http://www.php-fig.org/"
  5120. }
  5121. ],
  5122. "description": "Common interfaces for simple caching",
  5123. "keywords": [
  5124. "cache",
  5125. "caching",
  5126. "psr",
  5127. "psr-16",
  5128. "simple-cache"
  5129. ],
  5130. "time": "2017-10-23T01:57:42+00:00"
  5131. },
  5132. {
  5133. "name": "qiniu/php-sdk",
  5134. "version": "v7.7.0",
  5135. "source": {
  5136. "type": "git",
  5137. "url": "https://github.com/qiniu/php-sdk.git",
  5138. "reference": "dde03fc55de64815412f8ccfe24e1bd21564a6f1"
  5139. },
  5140. "dist": {
  5141. "type": "zip",
  5142. "url": "https://api.github.com/repos/qiniu/php-sdk/zipball/dde03fc55de64815412f8ccfe24e1bd21564a6f1",
  5143. "reference": "dde03fc55de64815412f8ccfe24e1bd21564a6f1",
  5144. "shasum": "",
  5145. "mirrors": [
  5146. {
  5147. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5148. "preferred": true
  5149. }
  5150. ]
  5151. },
  5152. "require": {
  5153. "myclabs/php-enum": "1.6.6",
  5154. "php": ">=5.3.3"
  5155. },
  5156. "require-dev": {
  5157. "paragonie/random_compat": ">=2",
  5158. "phpunit/phpunit": "~4.0",
  5159. "squizlabs/php_codesniffer": "~3.6"
  5160. },
  5161. "type": "library",
  5162. "autoload": {
  5163. "files": [
  5164. "src/Qiniu/functions.php"
  5165. ],
  5166. "psr-4": {
  5167. "Qiniu\\": "src/Qiniu"
  5168. }
  5169. },
  5170. "notification-url": "https://packagist.org/downloads/",
  5171. "license": [
  5172. "MIT"
  5173. ],
  5174. "authors": [
  5175. {
  5176. "name": "Qiniu",
  5177. "email": "sdk@qiniu.com",
  5178. "homepage": "http://www.qiniu.com"
  5179. }
  5180. ],
  5181. "description": "Qiniu Resource (Cloud) Storage SDK for PHP",
  5182. "homepage": "http://developer.qiniu.com/",
  5183. "keywords": [
  5184. "cloud",
  5185. "qiniu",
  5186. "sdk",
  5187. "storage"
  5188. ],
  5189. "support": {
  5190. "issues": "https://github.com/qiniu/php-sdk/issues",
  5191. "source": "https://github.com/qiniu/php-sdk/tree/v7.7.0"
  5192. },
  5193. "time": "2022-09-02T10:53:05+00:00"
  5194. },
  5195. {
  5196. "name": "ralouphie/getallheaders",
  5197. "version": "3.0.3",
  5198. "source": {
  5199. "type": "git",
  5200. "url": "https://github.com/ralouphie/getallheaders.git",
  5201. "reference": "120b605dfeb996808c31b6477290a714d356e822"
  5202. },
  5203. "dist": {
  5204. "type": "zip",
  5205. "url": "https://api.github.com/repos/ralouphie/getallheaders/zipball/120b605dfeb996808c31b6477290a714d356e822",
  5206. "reference": "120b605dfeb996808c31b6477290a714d356e822",
  5207. "shasum": "",
  5208. "mirrors": [
  5209. {
  5210. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5211. "preferred": true
  5212. }
  5213. ]
  5214. },
  5215. "require": {
  5216. "php": ">=5.6"
  5217. },
  5218. "require-dev": {
  5219. "php-coveralls/php-coveralls": "^2.1",
  5220. "phpunit/phpunit": "^5 || ^6.5"
  5221. },
  5222. "type": "library",
  5223. "autoload": {
  5224. "files": [
  5225. "src/getallheaders.php"
  5226. ]
  5227. },
  5228. "notification-url": "https://packagist.org/downloads/",
  5229. "license": [
  5230. "MIT"
  5231. ],
  5232. "authors": [
  5233. {
  5234. "name": "Ralph Khattar",
  5235. "email": "ralph.khattar@gmail.com"
  5236. }
  5237. ],
  5238. "description": "A polyfill for getallheaders.",
  5239. "time": "2019-03-08T08:55:37+00:00"
  5240. },
  5241. {
  5242. "name": "react/promise",
  5243. "version": "v2.8.0",
  5244. "source": {
  5245. "type": "git",
  5246. "url": "https://github.com/reactphp/promise.git",
  5247. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4"
  5248. },
  5249. "dist": {
  5250. "type": "zip",
  5251. "url": "https://api.github.com/repos/reactphp/promise/zipball/f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  5252. "reference": "f3cff96a19736714524ca0dd1d4130de73dbbbc4",
  5253. "shasum": "",
  5254. "mirrors": [
  5255. {
  5256. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5257. "preferred": true
  5258. }
  5259. ]
  5260. },
  5261. "require": {
  5262. "php": ">=5.4.0"
  5263. },
  5264. "require-dev": {
  5265. "phpunit/phpunit": "^7.0 || ^6.5 || ^5.7 || ^4.8.36"
  5266. },
  5267. "type": "library",
  5268. "autoload": {
  5269. "psr-4": {
  5270. "React\\Promise\\": "src/"
  5271. },
  5272. "files": [
  5273. "src/functions_include.php"
  5274. ]
  5275. },
  5276. "notification-url": "https://packagist.org/downloads/",
  5277. "license": [
  5278. "MIT"
  5279. ],
  5280. "authors": [
  5281. {
  5282. "name": "Jan Sorgalla",
  5283. "email": "jsorgalla@gmail.com"
  5284. }
  5285. ],
  5286. "description": "A lightweight implementation of CommonJS Promises/A for PHP",
  5287. "keywords": [
  5288. "promise",
  5289. "promises"
  5290. ],
  5291. "time": "2020-05-12T15:16:56+00:00"
  5292. },
  5293. {
  5294. "name": "seld/jsonlint",
  5295. "version": "1.8.3",
  5296. "source": {
  5297. "type": "git",
  5298. "url": "https://github.com/Seldaek/jsonlint.git",
  5299. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57"
  5300. },
  5301. "dist": {
  5302. "type": "zip",
  5303. "url": "https://api.github.com/repos/Seldaek/jsonlint/zipball/9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  5304. "reference": "9ad6ce79c342fbd44df10ea95511a1b24dee5b57",
  5305. "shasum": "",
  5306. "mirrors": [
  5307. {
  5308. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5309. "preferred": true
  5310. }
  5311. ]
  5312. },
  5313. "require": {
  5314. "php": "^5.3 || ^7.0 || ^8.0"
  5315. },
  5316. "require-dev": {
  5317. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.0"
  5318. },
  5319. "bin": [
  5320. "bin/jsonlint"
  5321. ],
  5322. "type": "library",
  5323. "autoload": {
  5324. "psr-4": {
  5325. "Seld\\JsonLint\\": "src/Seld/JsonLint/"
  5326. }
  5327. },
  5328. "notification-url": "https://packagist.org/downloads/",
  5329. "license": [
  5330. "MIT"
  5331. ],
  5332. "authors": [
  5333. {
  5334. "name": "Jordi Boggiano",
  5335. "email": "j.boggiano@seld.be",
  5336. "homepage": "http://seld.be"
  5337. }
  5338. ],
  5339. "description": "JSON Linter",
  5340. "keywords": [
  5341. "json",
  5342. "linter",
  5343. "parser",
  5344. "validator"
  5345. ],
  5346. "time": "2020-11-11T09:19:24+00:00"
  5347. },
  5348. {
  5349. "name": "seld/phar-utils",
  5350. "version": "1.1.1",
  5351. "source": {
  5352. "type": "git",
  5353. "url": "https://github.com/Seldaek/phar-utils.git",
  5354. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796"
  5355. },
  5356. "dist": {
  5357. "type": "zip",
  5358. "url": "https://api.github.com/repos/Seldaek/phar-utils/zipball/8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  5359. "reference": "8674b1d84ffb47cc59a101f5d5a3b61e87d23796",
  5360. "shasum": "",
  5361. "mirrors": [
  5362. {
  5363. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5364. "preferred": true
  5365. }
  5366. ]
  5367. },
  5368. "require": {
  5369. "php": ">=5.3"
  5370. },
  5371. "type": "library",
  5372. "extra": {
  5373. "branch-alias": {
  5374. "dev-master": "1.x-dev"
  5375. }
  5376. },
  5377. "autoload": {
  5378. "psr-4": {
  5379. "Seld\\PharUtils\\": "src/"
  5380. }
  5381. },
  5382. "notification-url": "https://packagist.org/downloads/",
  5383. "license": [
  5384. "MIT"
  5385. ],
  5386. "authors": [
  5387. {
  5388. "name": "Jordi Boggiano",
  5389. "email": "j.boggiano@seld.be"
  5390. }
  5391. ],
  5392. "description": "PHAR file format utilities, for when PHP phars you up",
  5393. "keywords": [
  5394. "phar"
  5395. ],
  5396. "time": "2020-07-07T18:42:57+00:00"
  5397. },
  5398. {
  5399. "name": "symfony/cache",
  5400. "version": "v5.2.6",
  5401. "source": {
  5402. "type": "git",
  5403. "url": "https://github.com/symfony/cache.git",
  5404. "reference": "093d69bb10c959553c8beb828b8d4ea250a247dd"
  5405. },
  5406. "dist": {
  5407. "type": "zip",
  5408. "url": "https://api.github.com/repos/symfony/cache/zipball/093d69bb10c959553c8beb828b8d4ea250a247dd",
  5409. "reference": "093d69bb10c959553c8beb828b8d4ea250a247dd",
  5410. "shasum": "",
  5411. "mirrors": [
  5412. {
  5413. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5414. "preferred": true
  5415. }
  5416. ]
  5417. },
  5418. "require": {
  5419. "php": ">=7.2.5",
  5420. "psr/cache": "^1.0|^2.0",
  5421. "psr/log": "^1.1",
  5422. "symfony/cache-contracts": "^1.1.7|^2",
  5423. "symfony/polyfill-php80": "^1.15",
  5424. "symfony/service-contracts": "^1.1|^2",
  5425. "symfony/var-exporter": "^4.4|^5.0"
  5426. },
  5427. "conflict": {
  5428. "doctrine/dbal": "<2.10",
  5429. "symfony/dependency-injection": "<4.4",
  5430. "symfony/http-kernel": "<4.4",
  5431. "symfony/var-dumper": "<4.4"
  5432. },
  5433. "provide": {
  5434. "psr/cache-implementation": "1.0|2.0",
  5435. "psr/simple-cache-implementation": "1.0",
  5436. "symfony/cache-implementation": "1.0|2.0"
  5437. },
  5438. "require-dev": {
  5439. "cache/integration-tests": "dev-master",
  5440. "doctrine/cache": "^1.6",
  5441. "doctrine/dbal": "^2.10|^3.0",
  5442. "predis/predis": "^1.1",
  5443. "psr/simple-cache": "^1.0",
  5444. "symfony/config": "^4.4|^5.0",
  5445. "symfony/dependency-injection": "^4.4|^5.0",
  5446. "symfony/filesystem": "^4.4|^5.0",
  5447. "symfony/http-kernel": "^4.4|^5.0",
  5448. "symfony/messenger": "^4.4|^5.0",
  5449. "symfony/var-dumper": "^4.4|^5.0"
  5450. },
  5451. "type": "library",
  5452. "autoload": {
  5453. "psr-4": {
  5454. "Symfony\\Component\\Cache\\": ""
  5455. },
  5456. "exclude-from-classmap": [
  5457. "/Tests/"
  5458. ]
  5459. },
  5460. "notification-url": "https://packagist.org/downloads/",
  5461. "license": [
  5462. "MIT"
  5463. ],
  5464. "authors": [
  5465. {
  5466. "name": "Nicolas Grekas",
  5467. "email": "p@tchwork.com"
  5468. },
  5469. {
  5470. "name": "Symfony Community",
  5471. "homepage": "https://symfony.com/contributors"
  5472. }
  5473. ],
  5474. "description": "Provides an extended PSR-6, PSR-16 (and tags) implementation",
  5475. "homepage": "https://symfony.com",
  5476. "keywords": [
  5477. "caching",
  5478. "psr6"
  5479. ],
  5480. "time": "2021-03-16T09:10:13+00:00"
  5481. },
  5482. {
  5483. "name": "symfony/cache-contracts",
  5484. "version": "v2.5.2",
  5485. "source": {
  5486. "type": "git",
  5487. "url": "https://github.com/symfony/cache-contracts.git",
  5488. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc"
  5489. },
  5490. "dist": {
  5491. "type": "zip",
  5492. "url": "https://api.github.com/repos/symfony/cache-contracts/zipball/64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  5493. "reference": "64be4a7acb83b6f2bf6de9a02cee6dad41277ebc",
  5494. "shasum": "",
  5495. "mirrors": [
  5496. {
  5497. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5498. "preferred": true
  5499. }
  5500. ]
  5501. },
  5502. "require": {
  5503. "php": ">=7.2.5",
  5504. "psr/cache": "^1.0|^2.0|^3.0"
  5505. },
  5506. "suggest": {
  5507. "symfony/cache-implementation": ""
  5508. },
  5509. "type": "library",
  5510. "extra": {
  5511. "branch-alias": {
  5512. "dev-main": "2.5-dev"
  5513. },
  5514. "thanks": {
  5515. "name": "symfony/contracts",
  5516. "url": "https://github.com/symfony/contracts"
  5517. }
  5518. },
  5519. "autoload": {
  5520. "psr-4": {
  5521. "Symfony\\Contracts\\Cache\\": ""
  5522. }
  5523. },
  5524. "notification-url": "https://packagist.org/downloads/",
  5525. "license": [
  5526. "MIT"
  5527. ],
  5528. "authors": [
  5529. {
  5530. "name": "Nicolas Grekas",
  5531. "email": "p@tchwork.com"
  5532. },
  5533. {
  5534. "name": "Symfony Community",
  5535. "homepage": "https://symfony.com/contributors"
  5536. }
  5537. ],
  5538. "description": "Generic abstractions related to caching",
  5539. "homepage": "https://symfony.com",
  5540. "keywords": [
  5541. "abstractions",
  5542. "contracts",
  5543. "decoupling",
  5544. "interfaces",
  5545. "interoperability",
  5546. "standards"
  5547. ],
  5548. "support": {
  5549. "source": "https://github.com/symfony/cache-contracts/tree/v2.5.2"
  5550. },
  5551. "funding": [
  5552. {
  5553. "url": "https://symfony.com/sponsor",
  5554. "type": "custom"
  5555. },
  5556. {
  5557. "url": "https://github.com/fabpot",
  5558. "type": "github"
  5559. },
  5560. {
  5561. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5562. "type": "tidelift"
  5563. }
  5564. ],
  5565. "time": "2022-01-02T09:53:40+00:00"
  5566. },
  5567. {
  5568. "name": "symfony/console",
  5569. "version": "v4.4.48",
  5570. "source": {
  5571. "type": "git",
  5572. "url": "https://github.com/symfony/console.git",
  5573. "reference": "8e70c1cab07ac641b885ce80385b9824a293c623"
  5574. },
  5575. "dist": {
  5576. "type": "zip",
  5577. "url": "https://api.github.com/repos/symfony/console/zipball/8e70c1cab07ac641b885ce80385b9824a293c623",
  5578. "reference": "8e70c1cab07ac641b885ce80385b9824a293c623",
  5579. "shasum": "",
  5580. "mirrors": [
  5581. {
  5582. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5583. "preferred": true
  5584. }
  5585. ]
  5586. },
  5587. "require": {
  5588. "php": ">=7.1.3",
  5589. "symfony/polyfill-mbstring": "~1.0",
  5590. "symfony/polyfill-php73": "^1.8",
  5591. "symfony/polyfill-php80": "^1.16",
  5592. "symfony/service-contracts": "^1.1|^2"
  5593. },
  5594. "conflict": {
  5595. "psr/log": ">=3",
  5596. "symfony/dependency-injection": "<3.4",
  5597. "symfony/event-dispatcher": "<4.3|>=5",
  5598. "symfony/lock": "<4.4",
  5599. "symfony/process": "<3.3"
  5600. },
  5601. "provide": {
  5602. "psr/log-implementation": "1.0|2.0"
  5603. },
  5604. "require-dev": {
  5605. "psr/log": "^1|^2",
  5606. "symfony/config": "^3.4|^4.0|^5.0",
  5607. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5608. "symfony/event-dispatcher": "^4.3",
  5609. "symfony/lock": "^4.4|^5.0",
  5610. "symfony/process": "^3.4|^4.0|^5.0",
  5611. "symfony/var-dumper": "^4.3|^5.0"
  5612. },
  5613. "suggest": {
  5614. "psr/log": "For using the console logger",
  5615. "symfony/event-dispatcher": "",
  5616. "symfony/lock": "",
  5617. "symfony/process": ""
  5618. },
  5619. "type": "library",
  5620. "autoload": {
  5621. "psr-4": {
  5622. "Symfony\\Component\\Console\\": ""
  5623. },
  5624. "exclude-from-classmap": [
  5625. "/Tests/"
  5626. ]
  5627. },
  5628. "notification-url": "https://packagist.org/downloads/",
  5629. "license": [
  5630. "MIT"
  5631. ],
  5632. "authors": [
  5633. {
  5634. "name": "Fabien Potencier",
  5635. "email": "fabien@symfony.com"
  5636. },
  5637. {
  5638. "name": "Symfony Community",
  5639. "homepage": "https://symfony.com/contributors"
  5640. }
  5641. ],
  5642. "description": "Eases the creation of beautiful and testable command line interfaces",
  5643. "homepage": "https://symfony.com",
  5644. "support": {
  5645. "source": "https://github.com/symfony/console/tree/v4.4.48"
  5646. },
  5647. "funding": [
  5648. {
  5649. "url": "https://symfony.com/sponsor",
  5650. "type": "custom"
  5651. },
  5652. {
  5653. "url": "https://github.com/fabpot",
  5654. "type": "github"
  5655. },
  5656. {
  5657. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5658. "type": "tidelift"
  5659. }
  5660. ],
  5661. "time": "2022-10-26T16:02:45+00:00"
  5662. },
  5663. {
  5664. "name": "symfony/debug",
  5665. "version": "v4.4.41",
  5666. "source": {
  5667. "type": "git",
  5668. "url": "https://github.com/symfony/debug.git",
  5669. "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5"
  5670. },
  5671. "dist": {
  5672. "type": "zip",
  5673. "url": "https://api.github.com/repos/symfony/debug/zipball/6637e62480b60817b9a6984154a533e8e64c6bd5",
  5674. "reference": "6637e62480b60817b9a6984154a533e8e64c6bd5",
  5675. "shasum": "",
  5676. "mirrors": [
  5677. {
  5678. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5679. "preferred": true
  5680. }
  5681. ]
  5682. },
  5683. "require": {
  5684. "php": ">=7.1.3",
  5685. "psr/log": "^1|^2|^3"
  5686. },
  5687. "conflict": {
  5688. "symfony/http-kernel": "<3.4"
  5689. },
  5690. "require-dev": {
  5691. "symfony/http-kernel": "^3.4|^4.0|^5.0"
  5692. },
  5693. "type": "library",
  5694. "autoload": {
  5695. "psr-4": {
  5696. "Symfony\\Component\\Debug\\": ""
  5697. },
  5698. "exclude-from-classmap": [
  5699. "/Tests/"
  5700. ]
  5701. },
  5702. "notification-url": "https://packagist.org/downloads/",
  5703. "license": [
  5704. "MIT"
  5705. ],
  5706. "authors": [
  5707. {
  5708. "name": "Fabien Potencier",
  5709. "email": "fabien@symfony.com"
  5710. },
  5711. {
  5712. "name": "Symfony Community",
  5713. "homepage": "https://symfony.com/contributors"
  5714. }
  5715. ],
  5716. "description": "Provides tools to ease debugging PHP code",
  5717. "homepage": "https://symfony.com",
  5718. "support": {
  5719. "source": "https://github.com/symfony/debug/tree/v4.4.41"
  5720. },
  5721. "funding": [
  5722. {
  5723. "url": "https://symfony.com/sponsor",
  5724. "type": "custom"
  5725. },
  5726. {
  5727. "url": "https://github.com/fabpot",
  5728. "type": "github"
  5729. },
  5730. {
  5731. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5732. "type": "tidelift"
  5733. }
  5734. ],
  5735. "abandoned": "symfony/error-handler",
  5736. "time": "2022-04-12T15:19:55+00:00"
  5737. },
  5738. {
  5739. "name": "symfony/deprecation-contracts",
  5740. "version": "v2.5.2",
  5741. "source": {
  5742. "type": "git",
  5743. "url": "https://github.com/symfony/deprecation-contracts.git",
  5744. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66"
  5745. },
  5746. "dist": {
  5747. "type": "zip",
  5748. "url": "https://api.github.com/repos/symfony/deprecation-contracts/zipball/e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5749. "reference": "e8b495ea28c1d97b5e0c121748d6f9b53d075c66",
  5750. "shasum": "",
  5751. "mirrors": [
  5752. {
  5753. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5754. "preferred": true
  5755. }
  5756. ]
  5757. },
  5758. "require": {
  5759. "php": ">=7.1"
  5760. },
  5761. "type": "library",
  5762. "extra": {
  5763. "branch-alias": {
  5764. "dev-main": "2.5-dev"
  5765. },
  5766. "thanks": {
  5767. "name": "symfony/contracts",
  5768. "url": "https://github.com/symfony/contracts"
  5769. }
  5770. },
  5771. "autoload": {
  5772. "files": [
  5773. "function.php"
  5774. ]
  5775. },
  5776. "notification-url": "https://packagist.org/downloads/",
  5777. "license": [
  5778. "MIT"
  5779. ],
  5780. "authors": [
  5781. {
  5782. "name": "Nicolas Grekas",
  5783. "email": "p@tchwork.com"
  5784. },
  5785. {
  5786. "name": "Symfony Community",
  5787. "homepage": "https://symfony.com/contributors"
  5788. }
  5789. ],
  5790. "description": "A generic function and convention to trigger deprecation notices",
  5791. "homepage": "https://symfony.com",
  5792. "support": {
  5793. "source": "https://github.com/symfony/deprecation-contracts/tree/v2.5.2"
  5794. },
  5795. "funding": [
  5796. {
  5797. "url": "https://symfony.com/sponsor",
  5798. "type": "custom"
  5799. },
  5800. {
  5801. "url": "https://github.com/fabpot",
  5802. "type": "github"
  5803. },
  5804. {
  5805. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  5806. "type": "tidelift"
  5807. }
  5808. ],
  5809. "time": "2022-01-02T09:53:40+00:00"
  5810. },
  5811. {
  5812. "name": "symfony/error-handler",
  5813. "version": "v4.4.21",
  5814. "source": {
  5815. "type": "git",
  5816. "url": "https://github.com/symfony/error-handler.git",
  5817. "reference": "48e81a375525872e788c2418430f54150d935810"
  5818. },
  5819. "dist": {
  5820. "type": "zip",
  5821. "url": "https://api.github.com/repos/symfony/error-handler/zipball/48e81a375525872e788c2418430f54150d935810",
  5822. "reference": "48e81a375525872e788c2418430f54150d935810",
  5823. "shasum": "",
  5824. "mirrors": [
  5825. {
  5826. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5827. "preferred": true
  5828. }
  5829. ]
  5830. },
  5831. "require": {
  5832. "php": ">=7.1.3",
  5833. "psr/log": "~1.0",
  5834. "symfony/debug": "^4.4.5",
  5835. "symfony/polyfill-php80": "^1.15",
  5836. "symfony/var-dumper": "^4.4|^5.0"
  5837. },
  5838. "require-dev": {
  5839. "symfony/http-kernel": "^4.4|^5.0",
  5840. "symfony/serializer": "^4.4|^5.0"
  5841. },
  5842. "type": "library",
  5843. "autoload": {
  5844. "psr-4": {
  5845. "Symfony\\Component\\ErrorHandler\\": ""
  5846. },
  5847. "exclude-from-classmap": [
  5848. "/Tests/"
  5849. ]
  5850. },
  5851. "notification-url": "https://packagist.org/downloads/",
  5852. "license": [
  5853. "MIT"
  5854. ],
  5855. "authors": [
  5856. {
  5857. "name": "Fabien Potencier",
  5858. "email": "fabien@symfony.com"
  5859. },
  5860. {
  5861. "name": "Symfony Community",
  5862. "homepage": "https://symfony.com/contributors"
  5863. }
  5864. ],
  5865. "description": "Provides tools to manage errors and ease debugging PHP code",
  5866. "homepage": "https://symfony.com",
  5867. "time": "2021-03-08T10:28:40+00:00"
  5868. },
  5869. {
  5870. "name": "symfony/event-dispatcher",
  5871. "version": "v4.4.20",
  5872. "source": {
  5873. "type": "git",
  5874. "url": "https://github.com/symfony/event-dispatcher.git",
  5875. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c"
  5876. },
  5877. "dist": {
  5878. "type": "zip",
  5879. "url": "https://api.github.com/repos/symfony/event-dispatcher/zipball/c352647244bd376bf7d31efbd5401f13f50dad0c",
  5880. "reference": "c352647244bd376bf7d31efbd5401f13f50dad0c",
  5881. "shasum": "",
  5882. "mirrors": [
  5883. {
  5884. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  5885. "preferred": true
  5886. }
  5887. ]
  5888. },
  5889. "require": {
  5890. "php": ">=7.1.3",
  5891. "symfony/event-dispatcher-contracts": "^1.1"
  5892. },
  5893. "conflict": {
  5894. "symfony/dependency-injection": "<3.4"
  5895. },
  5896. "provide": {
  5897. "psr/event-dispatcher-implementation": "1.0",
  5898. "symfony/event-dispatcher-implementation": "1.1"
  5899. },
  5900. "require-dev": {
  5901. "psr/log": "~1.0",
  5902. "symfony/config": "^3.4|^4.0|^5.0",
  5903. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  5904. "symfony/error-handler": "~3.4|~4.4",
  5905. "symfony/expression-language": "^3.4|^4.0|^5.0",
  5906. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  5907. "symfony/service-contracts": "^1.1|^2",
  5908. "symfony/stopwatch": "^3.4|^4.0|^5.0"
  5909. },
  5910. "suggest": {
  5911. "symfony/dependency-injection": "",
  5912. "symfony/http-kernel": ""
  5913. },
  5914. "type": "library",
  5915. "autoload": {
  5916. "psr-4": {
  5917. "Symfony\\Component\\EventDispatcher\\": ""
  5918. },
  5919. "exclude-from-classmap": [
  5920. "/Tests/"
  5921. ]
  5922. },
  5923. "notification-url": "https://packagist.org/downloads/",
  5924. "license": [
  5925. "MIT"
  5926. ],
  5927. "authors": [
  5928. {
  5929. "name": "Fabien Potencier",
  5930. "email": "fabien@symfony.com"
  5931. },
  5932. {
  5933. "name": "Symfony Community",
  5934. "homepage": "https://symfony.com/contributors"
  5935. }
  5936. ],
  5937. "description": "Provides tools that allow your application components to communicate with each other by dispatching events and listening to them",
  5938. "homepage": "https://symfony.com",
  5939. "time": "2021-01-27T09:09:26+00:00"
  5940. },
  5941. {
  5942. "name": "symfony/event-dispatcher-contracts",
  5943. "version": "v1.1.13",
  5944. "source": {
  5945. "type": "git",
  5946. "url": "https://github.com/symfony/event-dispatcher-contracts.git",
  5947. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e"
  5948. },
  5949. "dist": {
  5950. "type": "zip",
  5951. "url": "https://api.github.com/repos/symfony/event-dispatcher-contracts/zipball/1d5cd762abaa6b2a4169d3e77610193a7157129e",
  5952. "reference": "1d5cd762abaa6b2a4169d3e77610193a7157129e",
  5953. "shasum": "",
  5954. "mirrors": [
  5955. {
  5956. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  5957. "preferred": true
  5958. }
  5959. ]
  5960. },
  5961. "require": {
  5962. "php": ">=7.1.3"
  5963. },
  5964. "suggest": {
  5965. "psr/event-dispatcher": "",
  5966. "symfony/event-dispatcher-implementation": ""
  5967. },
  5968. "type": "library",
  5969. "extra": {
  5970. "branch-alias": {
  5971. "dev-main": "1.1-dev"
  5972. },
  5973. "thanks": {
  5974. "name": "symfony/contracts",
  5975. "url": "https://github.com/symfony/contracts"
  5976. }
  5977. },
  5978. "autoload": {
  5979. "psr-4": {
  5980. "Symfony\\Contracts\\EventDispatcher\\": ""
  5981. }
  5982. },
  5983. "notification-url": "https://packagist.org/downloads/",
  5984. "license": [
  5985. "MIT"
  5986. ],
  5987. "authors": [
  5988. {
  5989. "name": "Nicolas Grekas",
  5990. "email": "p@tchwork.com"
  5991. },
  5992. {
  5993. "name": "Symfony Community",
  5994. "homepage": "https://symfony.com/contributors"
  5995. }
  5996. ],
  5997. "description": "Generic abstractions related to dispatching event",
  5998. "homepage": "https://symfony.com",
  5999. "keywords": [
  6000. "abstractions",
  6001. "contracts",
  6002. "decoupling",
  6003. "interfaces",
  6004. "interoperability",
  6005. "standards"
  6006. ],
  6007. "support": {
  6008. "source": "https://github.com/symfony/event-dispatcher-contracts/tree/v1.1.13"
  6009. },
  6010. "funding": [
  6011. {
  6012. "url": "https://symfony.com/sponsor",
  6013. "type": "custom"
  6014. },
  6015. {
  6016. "url": "https://github.com/fabpot",
  6017. "type": "github"
  6018. },
  6019. {
  6020. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6021. "type": "tidelift"
  6022. }
  6023. ],
  6024. "time": "2022-01-02T09:41:36+00:00"
  6025. },
  6026. {
  6027. "name": "symfony/filesystem",
  6028. "version": "v5.2.6",
  6029. "source": {
  6030. "type": "git",
  6031. "url": "https://github.com/symfony/filesystem.git",
  6032. "reference": "8c86a82f51658188119e62cff0a050a12d09836f"
  6033. },
  6034. "dist": {
  6035. "type": "zip",
  6036. "url": "https://api.github.com/repos/symfony/filesystem/zipball/8c86a82f51658188119e62cff0a050a12d09836f",
  6037. "reference": "8c86a82f51658188119e62cff0a050a12d09836f",
  6038. "shasum": "",
  6039. "mirrors": [
  6040. {
  6041. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6042. "preferred": true
  6043. }
  6044. ]
  6045. },
  6046. "require": {
  6047. "php": ">=7.2.5",
  6048. "symfony/polyfill-ctype": "~1.8"
  6049. },
  6050. "type": "library",
  6051. "autoload": {
  6052. "psr-4": {
  6053. "Symfony\\Component\\Filesystem\\": ""
  6054. },
  6055. "exclude-from-classmap": [
  6056. "/Tests/"
  6057. ]
  6058. },
  6059. "notification-url": "https://packagist.org/downloads/",
  6060. "license": [
  6061. "MIT"
  6062. ],
  6063. "authors": [
  6064. {
  6065. "name": "Fabien Potencier",
  6066. "email": "fabien@symfony.com"
  6067. },
  6068. {
  6069. "name": "Symfony Community",
  6070. "homepage": "https://symfony.com/contributors"
  6071. }
  6072. ],
  6073. "description": "Provides basic utilities for the filesystem",
  6074. "homepage": "https://symfony.com",
  6075. "time": "2021-03-28T14:30:26+00:00"
  6076. },
  6077. {
  6078. "name": "symfony/finder",
  6079. "version": "v4.4.20",
  6080. "source": {
  6081. "type": "git",
  6082. "url": "https://github.com/symfony/finder.git",
  6083. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6"
  6084. },
  6085. "dist": {
  6086. "type": "zip",
  6087. "url": "https://api.github.com/repos/symfony/finder/zipball/2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  6088. "reference": "2543795ab1570df588b9bbd31e1a2bd7037b94f6",
  6089. "shasum": "",
  6090. "mirrors": [
  6091. {
  6092. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6093. "preferred": true
  6094. }
  6095. ]
  6096. },
  6097. "require": {
  6098. "php": ">=7.1.3"
  6099. },
  6100. "type": "library",
  6101. "autoload": {
  6102. "psr-4": {
  6103. "Symfony\\Component\\Finder\\": ""
  6104. },
  6105. "exclude-from-classmap": [
  6106. "/Tests/"
  6107. ]
  6108. },
  6109. "notification-url": "https://packagist.org/downloads/",
  6110. "license": [
  6111. "MIT"
  6112. ],
  6113. "authors": [
  6114. {
  6115. "name": "Fabien Potencier",
  6116. "email": "fabien@symfony.com"
  6117. },
  6118. {
  6119. "name": "Symfony Community",
  6120. "homepage": "https://symfony.com/contributors"
  6121. }
  6122. ],
  6123. "description": "Finds files and directories via an intuitive fluent interface",
  6124. "homepage": "https://symfony.com",
  6125. "time": "2021-02-12T10:48:09+00:00"
  6126. },
  6127. {
  6128. "name": "symfony/http-client-contracts",
  6129. "version": "v2.5.2",
  6130. "source": {
  6131. "type": "git",
  6132. "url": "https://github.com/symfony/http-client-contracts.git",
  6133. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70"
  6134. },
  6135. "dist": {
  6136. "type": "zip",
  6137. "url": "https://api.github.com/repos/symfony/http-client-contracts/zipball/ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  6138. "reference": "ba6a9f0e8f3edd190520ee3b9a958596b6ca2e70",
  6139. "shasum": "",
  6140. "mirrors": [
  6141. {
  6142. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6143. "preferred": true
  6144. }
  6145. ]
  6146. },
  6147. "require": {
  6148. "php": ">=7.2.5"
  6149. },
  6150. "suggest": {
  6151. "symfony/http-client-implementation": ""
  6152. },
  6153. "type": "library",
  6154. "extra": {
  6155. "branch-alias": {
  6156. "dev-main": "2.5-dev"
  6157. },
  6158. "thanks": {
  6159. "name": "symfony/contracts",
  6160. "url": "https://github.com/symfony/contracts"
  6161. }
  6162. },
  6163. "autoload": {
  6164. "psr-4": {
  6165. "Symfony\\Contracts\\HttpClient\\": ""
  6166. }
  6167. },
  6168. "notification-url": "https://packagist.org/downloads/",
  6169. "license": [
  6170. "MIT"
  6171. ],
  6172. "authors": [
  6173. {
  6174. "name": "Nicolas Grekas",
  6175. "email": "p@tchwork.com"
  6176. },
  6177. {
  6178. "name": "Symfony Community",
  6179. "homepage": "https://symfony.com/contributors"
  6180. }
  6181. ],
  6182. "description": "Generic abstractions related to HTTP clients",
  6183. "homepage": "https://symfony.com",
  6184. "keywords": [
  6185. "abstractions",
  6186. "contracts",
  6187. "decoupling",
  6188. "interfaces",
  6189. "interoperability",
  6190. "standards"
  6191. ],
  6192. "support": {
  6193. "source": "https://github.com/symfony/http-client-contracts/tree/v2.5.2"
  6194. },
  6195. "funding": [
  6196. {
  6197. "url": "https://symfony.com/sponsor",
  6198. "type": "custom"
  6199. },
  6200. {
  6201. "url": "https://github.com/fabpot",
  6202. "type": "github"
  6203. },
  6204. {
  6205. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6206. "type": "tidelift"
  6207. }
  6208. ],
  6209. "time": "2022-04-12T15:48:08+00:00"
  6210. },
  6211. {
  6212. "name": "symfony/http-foundation",
  6213. "version": "v4.4.20",
  6214. "source": {
  6215. "type": "git",
  6216. "url": "https://github.com/symfony/http-foundation.git",
  6217. "reference": "02d968647fe61b2f419a8dc70c468a9d30a48d3a"
  6218. },
  6219. "dist": {
  6220. "type": "zip",
  6221. "url": "https://api.github.com/repos/symfony/http-foundation/zipball/02d968647fe61b2f419a8dc70c468a9d30a48d3a",
  6222. "reference": "02d968647fe61b2f419a8dc70c468a9d30a48d3a",
  6223. "shasum": "",
  6224. "mirrors": [
  6225. {
  6226. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6227. "preferred": true
  6228. }
  6229. ]
  6230. },
  6231. "require": {
  6232. "php": ">=7.1.3",
  6233. "symfony/mime": "^4.3|^5.0",
  6234. "symfony/polyfill-mbstring": "~1.1",
  6235. "symfony/polyfill-php80": "^1.15"
  6236. },
  6237. "require-dev": {
  6238. "predis/predis": "~1.0",
  6239. "symfony/expression-language": "^3.4|^4.0|^5.0"
  6240. },
  6241. "type": "library",
  6242. "autoload": {
  6243. "psr-4": {
  6244. "Symfony\\Component\\HttpFoundation\\": ""
  6245. },
  6246. "exclude-from-classmap": [
  6247. "/Tests/"
  6248. ]
  6249. },
  6250. "notification-url": "https://packagist.org/downloads/",
  6251. "license": [
  6252. "MIT"
  6253. ],
  6254. "authors": [
  6255. {
  6256. "name": "Fabien Potencier",
  6257. "email": "fabien@symfony.com"
  6258. },
  6259. {
  6260. "name": "Symfony Community",
  6261. "homepage": "https://symfony.com/contributors"
  6262. }
  6263. ],
  6264. "description": "Defines an object-oriented layer for the HTTP specification",
  6265. "homepage": "https://symfony.com",
  6266. "time": "2021-02-25T17:11:33+00:00"
  6267. },
  6268. {
  6269. "name": "symfony/http-kernel",
  6270. "version": "v4.4.21",
  6271. "source": {
  6272. "type": "git",
  6273. "url": "https://github.com/symfony/http-kernel.git",
  6274. "reference": "0248214120d00c5f44f1cd5d9ad65f0b38459333"
  6275. },
  6276. "dist": {
  6277. "type": "zip",
  6278. "url": "https://api.github.com/repos/symfony/http-kernel/zipball/0248214120d00c5f44f1cd5d9ad65f0b38459333",
  6279. "reference": "0248214120d00c5f44f1cd5d9ad65f0b38459333",
  6280. "shasum": "",
  6281. "mirrors": [
  6282. {
  6283. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6284. "preferred": true
  6285. }
  6286. ]
  6287. },
  6288. "require": {
  6289. "php": ">=7.1.3",
  6290. "psr/log": "~1.0",
  6291. "symfony/error-handler": "^4.4",
  6292. "symfony/event-dispatcher": "^4.4",
  6293. "symfony/http-client-contracts": "^1.1|^2",
  6294. "symfony/http-foundation": "^4.4|^5.0",
  6295. "symfony/polyfill-ctype": "^1.8",
  6296. "symfony/polyfill-php73": "^1.9",
  6297. "symfony/polyfill-php80": "^1.15"
  6298. },
  6299. "conflict": {
  6300. "symfony/browser-kit": "<4.3",
  6301. "symfony/config": "<3.4",
  6302. "symfony/console": ">=5",
  6303. "symfony/dependency-injection": "<4.3",
  6304. "symfony/translation": "<4.2",
  6305. "twig/twig": "<1.43|<2.13,>=2"
  6306. },
  6307. "provide": {
  6308. "psr/log-implementation": "1.0"
  6309. },
  6310. "require-dev": {
  6311. "psr/cache": "^1.0|^2.0|^3.0",
  6312. "symfony/browser-kit": "^4.3|^5.0",
  6313. "symfony/config": "^3.4|^4.0|^5.0",
  6314. "symfony/console": "^3.4|^4.0",
  6315. "symfony/css-selector": "^3.4|^4.0|^5.0",
  6316. "symfony/dependency-injection": "^4.3|^5.0",
  6317. "symfony/dom-crawler": "^3.4|^4.0|^5.0",
  6318. "symfony/expression-language": "^3.4|^4.0|^5.0",
  6319. "symfony/finder": "^3.4|^4.0|^5.0",
  6320. "symfony/process": "^3.4|^4.0|^5.0",
  6321. "symfony/routing": "^3.4|^4.0|^5.0",
  6322. "symfony/stopwatch": "^3.4|^4.0|^5.0",
  6323. "symfony/templating": "^3.4|^4.0|^5.0",
  6324. "symfony/translation": "^4.2|^5.0",
  6325. "symfony/translation-contracts": "^1.1|^2",
  6326. "twig/twig": "^1.43|^2.13|^3.0.4"
  6327. },
  6328. "suggest": {
  6329. "symfony/browser-kit": "",
  6330. "symfony/config": "",
  6331. "symfony/console": "",
  6332. "symfony/dependency-injection": ""
  6333. },
  6334. "type": "library",
  6335. "autoload": {
  6336. "psr-4": {
  6337. "Symfony\\Component\\HttpKernel\\": ""
  6338. },
  6339. "exclude-from-classmap": [
  6340. "/Tests/"
  6341. ]
  6342. },
  6343. "notification-url": "https://packagist.org/downloads/",
  6344. "license": [
  6345. "MIT"
  6346. ],
  6347. "authors": [
  6348. {
  6349. "name": "Fabien Potencier",
  6350. "email": "fabien@symfony.com"
  6351. },
  6352. {
  6353. "name": "Symfony Community",
  6354. "homepage": "https://symfony.com/contributors"
  6355. }
  6356. ],
  6357. "description": "Provides a structured process for converting a Request into a Response",
  6358. "homepage": "https://symfony.com",
  6359. "time": "2021-03-29T05:11:04+00:00"
  6360. },
  6361. {
  6362. "name": "symfony/mime",
  6363. "version": "v5.2.6",
  6364. "source": {
  6365. "type": "git",
  6366. "url": "https://github.com/symfony/mime.git",
  6367. "reference": "1b2092244374cbe48ae733673f2ca0818b37197b"
  6368. },
  6369. "dist": {
  6370. "type": "zip",
  6371. "url": "https://api.github.com/repos/symfony/mime/zipball/1b2092244374cbe48ae733673f2ca0818b37197b",
  6372. "reference": "1b2092244374cbe48ae733673f2ca0818b37197b",
  6373. "shasum": "",
  6374. "mirrors": [
  6375. {
  6376. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6377. "preferred": true
  6378. }
  6379. ]
  6380. },
  6381. "require": {
  6382. "php": ">=7.2.5",
  6383. "symfony/deprecation-contracts": "^2.1",
  6384. "symfony/polyfill-intl-idn": "^1.10",
  6385. "symfony/polyfill-mbstring": "^1.0",
  6386. "symfony/polyfill-php80": "^1.15"
  6387. },
  6388. "conflict": {
  6389. "egulias/email-validator": "~3.0.0",
  6390. "phpdocumentor/reflection-docblock": "<3.2.2",
  6391. "phpdocumentor/type-resolver": "<1.4.0",
  6392. "symfony/mailer": "<4.4"
  6393. },
  6394. "require-dev": {
  6395. "egulias/email-validator": "^2.1.10|^3.1",
  6396. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  6397. "symfony/dependency-injection": "^4.4|^5.0",
  6398. "symfony/property-access": "^4.4|^5.1",
  6399. "symfony/property-info": "^4.4|^5.1",
  6400. "symfony/serializer": "^5.2"
  6401. },
  6402. "type": "library",
  6403. "autoload": {
  6404. "psr-4": {
  6405. "Symfony\\Component\\Mime\\": ""
  6406. },
  6407. "exclude-from-classmap": [
  6408. "/Tests/"
  6409. ]
  6410. },
  6411. "notification-url": "https://packagist.org/downloads/",
  6412. "license": [
  6413. "MIT"
  6414. ],
  6415. "authors": [
  6416. {
  6417. "name": "Fabien Potencier",
  6418. "email": "fabien@symfony.com"
  6419. },
  6420. {
  6421. "name": "Symfony Community",
  6422. "homepage": "https://symfony.com/contributors"
  6423. }
  6424. ],
  6425. "description": "Allows manipulating MIME messages",
  6426. "homepage": "https://symfony.com",
  6427. "keywords": [
  6428. "mime",
  6429. "mime-type"
  6430. ],
  6431. "time": "2021-03-12T13:18:39+00:00"
  6432. },
  6433. {
  6434. "name": "symfony/options-resolver",
  6435. "version": "v5.2.4",
  6436. "source": {
  6437. "type": "git",
  6438. "url": "https://github.com/symfony/options-resolver.git",
  6439. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce"
  6440. },
  6441. "dist": {
  6442. "type": "zip",
  6443. "url": "https://api.github.com/repos/symfony/options-resolver/zipball/5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  6444. "reference": "5d0f633f9bbfcf7ec642a2b5037268e61b0a62ce",
  6445. "shasum": "",
  6446. "mirrors": [
  6447. {
  6448. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6449. "preferred": true
  6450. }
  6451. ]
  6452. },
  6453. "require": {
  6454. "php": ">=7.2.5",
  6455. "symfony/deprecation-contracts": "^2.1",
  6456. "symfony/polyfill-php73": "~1.0",
  6457. "symfony/polyfill-php80": "^1.15"
  6458. },
  6459. "type": "library",
  6460. "autoload": {
  6461. "psr-4": {
  6462. "Symfony\\Component\\OptionsResolver\\": ""
  6463. },
  6464. "exclude-from-classmap": [
  6465. "/Tests/"
  6466. ]
  6467. },
  6468. "notification-url": "https://packagist.org/downloads/",
  6469. "license": [
  6470. "MIT"
  6471. ],
  6472. "authors": [
  6473. {
  6474. "name": "Fabien Potencier",
  6475. "email": "fabien@symfony.com"
  6476. },
  6477. {
  6478. "name": "Symfony Community",
  6479. "homepage": "https://symfony.com/contributors"
  6480. }
  6481. ],
  6482. "description": "Provides an improved replacement for the array_replace PHP function",
  6483. "homepage": "https://symfony.com",
  6484. "keywords": [
  6485. "config",
  6486. "configuration",
  6487. "options"
  6488. ],
  6489. "time": "2021-01-27T12:56:27+00:00"
  6490. },
  6491. {
  6492. "name": "symfony/polyfill-ctype",
  6493. "version": "v1.27.0",
  6494. "source": {
  6495. "type": "git",
  6496. "url": "https://github.com/symfony/polyfill-ctype.git",
  6497. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a"
  6498. },
  6499. "dist": {
  6500. "type": "zip",
  6501. "url": "https://api.github.com/repos/symfony/polyfill-ctype/zipball/5bbc823adecdae860bb64756d639ecfec17b050a",
  6502. "reference": "5bbc823adecdae860bb64756d639ecfec17b050a",
  6503. "shasum": "",
  6504. "mirrors": [
  6505. {
  6506. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6507. "preferred": true
  6508. }
  6509. ]
  6510. },
  6511. "require": {
  6512. "php": ">=7.1"
  6513. },
  6514. "provide": {
  6515. "ext-ctype": "*"
  6516. },
  6517. "suggest": {
  6518. "ext-ctype": "For best performance"
  6519. },
  6520. "type": "library",
  6521. "extra": {
  6522. "branch-alias": {
  6523. "dev-main": "1.27-dev"
  6524. },
  6525. "thanks": {
  6526. "name": "symfony/polyfill",
  6527. "url": "https://github.com/symfony/polyfill"
  6528. }
  6529. },
  6530. "autoload": {
  6531. "files": [
  6532. "bootstrap.php"
  6533. ],
  6534. "psr-4": {
  6535. "Symfony\\Polyfill\\Ctype\\": ""
  6536. }
  6537. },
  6538. "notification-url": "https://packagist.org/downloads/",
  6539. "license": [
  6540. "MIT"
  6541. ],
  6542. "authors": [
  6543. {
  6544. "name": "Gert de Pagter",
  6545. "email": "BackEndTea@gmail.com"
  6546. },
  6547. {
  6548. "name": "Symfony Community",
  6549. "homepage": "https://symfony.com/contributors"
  6550. }
  6551. ],
  6552. "description": "Symfony polyfill for ctype functions",
  6553. "homepage": "https://symfony.com",
  6554. "keywords": [
  6555. "compatibility",
  6556. "ctype",
  6557. "polyfill",
  6558. "portable"
  6559. ],
  6560. "support": {
  6561. "source": "https://github.com/symfony/polyfill-ctype/tree/v1.27.0"
  6562. },
  6563. "funding": [
  6564. {
  6565. "url": "https://symfony.com/sponsor",
  6566. "type": "custom"
  6567. },
  6568. {
  6569. "url": "https://github.com/fabpot",
  6570. "type": "github"
  6571. },
  6572. {
  6573. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6574. "type": "tidelift"
  6575. }
  6576. ],
  6577. "time": "2022-11-03T14:55:06+00:00"
  6578. },
  6579. {
  6580. "name": "symfony/polyfill-intl-grapheme",
  6581. "version": "v1.27.0",
  6582. "source": {
  6583. "type": "git",
  6584. "url": "https://github.com/symfony/polyfill-intl-grapheme.git",
  6585. "reference": "511a08c03c1960e08a883f4cffcacd219b758354"
  6586. },
  6587. "dist": {
  6588. "type": "zip",
  6589. "url": "https://api.github.com/repos/symfony/polyfill-intl-grapheme/zipball/511a08c03c1960e08a883f4cffcacd219b758354",
  6590. "reference": "511a08c03c1960e08a883f4cffcacd219b758354",
  6591. "shasum": "",
  6592. "mirrors": [
  6593. {
  6594. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6595. "preferred": true
  6596. }
  6597. ]
  6598. },
  6599. "require": {
  6600. "php": ">=7.1"
  6601. },
  6602. "suggest": {
  6603. "ext-intl": "For best performance"
  6604. },
  6605. "type": "library",
  6606. "extra": {
  6607. "branch-alias": {
  6608. "dev-main": "1.27-dev"
  6609. },
  6610. "thanks": {
  6611. "name": "symfony/polyfill",
  6612. "url": "https://github.com/symfony/polyfill"
  6613. }
  6614. },
  6615. "autoload": {
  6616. "files": [
  6617. "bootstrap.php"
  6618. ],
  6619. "psr-4": {
  6620. "Symfony\\Polyfill\\Intl\\Grapheme\\": ""
  6621. }
  6622. },
  6623. "notification-url": "https://packagist.org/downloads/",
  6624. "license": [
  6625. "MIT"
  6626. ],
  6627. "authors": [
  6628. {
  6629. "name": "Nicolas Grekas",
  6630. "email": "p@tchwork.com"
  6631. },
  6632. {
  6633. "name": "Symfony Community",
  6634. "homepage": "https://symfony.com/contributors"
  6635. }
  6636. ],
  6637. "description": "Symfony polyfill for intl's grapheme_* functions",
  6638. "homepage": "https://symfony.com",
  6639. "keywords": [
  6640. "compatibility",
  6641. "grapheme",
  6642. "intl",
  6643. "polyfill",
  6644. "portable",
  6645. "shim"
  6646. ],
  6647. "support": {
  6648. "source": "https://github.com/symfony/polyfill-intl-grapheme/tree/v1.27.0"
  6649. },
  6650. "funding": [
  6651. {
  6652. "url": "https://symfony.com/sponsor",
  6653. "type": "custom"
  6654. },
  6655. {
  6656. "url": "https://github.com/fabpot",
  6657. "type": "github"
  6658. },
  6659. {
  6660. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6661. "type": "tidelift"
  6662. }
  6663. ],
  6664. "time": "2022-11-03T14:55:06+00:00"
  6665. },
  6666. {
  6667. "name": "symfony/polyfill-intl-idn",
  6668. "version": "v1.22.1",
  6669. "source": {
  6670. "type": "git",
  6671. "url": "https://github.com/symfony/polyfill-intl-idn.git",
  6672. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483"
  6673. },
  6674. "dist": {
  6675. "type": "zip",
  6676. "url": "https://api.github.com/repos/symfony/polyfill-intl-idn/zipball/2d63434d922daf7da8dd863e7907e67ee3031483",
  6677. "reference": "2d63434d922daf7da8dd863e7907e67ee3031483",
  6678. "shasum": "",
  6679. "mirrors": [
  6680. {
  6681. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6682. "preferred": true
  6683. }
  6684. ]
  6685. },
  6686. "require": {
  6687. "php": ">=7.1",
  6688. "symfony/polyfill-intl-normalizer": "^1.10",
  6689. "symfony/polyfill-php72": "^1.10"
  6690. },
  6691. "suggest": {
  6692. "ext-intl": "For best performance"
  6693. },
  6694. "type": "library",
  6695. "extra": {
  6696. "branch-alias": {
  6697. "dev-main": "1.22-dev"
  6698. },
  6699. "thanks": {
  6700. "name": "symfony/polyfill",
  6701. "url": "https://github.com/symfony/polyfill"
  6702. }
  6703. },
  6704. "autoload": {
  6705. "psr-4": {
  6706. "Symfony\\Polyfill\\Intl\\Idn\\": ""
  6707. },
  6708. "files": [
  6709. "bootstrap.php"
  6710. ]
  6711. },
  6712. "notification-url": "https://packagist.org/downloads/",
  6713. "license": [
  6714. "MIT"
  6715. ],
  6716. "authors": [
  6717. {
  6718. "name": "Laurent Bassin",
  6719. "email": "laurent@bassin.info"
  6720. },
  6721. {
  6722. "name": "Trevor Rowbotham",
  6723. "email": "trevor.rowbotham@pm.me"
  6724. },
  6725. {
  6726. "name": "Symfony Community",
  6727. "homepage": "https://symfony.com/contributors"
  6728. }
  6729. ],
  6730. "description": "Symfony polyfill for intl's idn_to_ascii and idn_to_utf8 functions",
  6731. "homepage": "https://symfony.com",
  6732. "keywords": [
  6733. "compatibility",
  6734. "idn",
  6735. "intl",
  6736. "polyfill",
  6737. "portable",
  6738. "shim"
  6739. ],
  6740. "time": "2021-01-22T09:19:47+00:00"
  6741. },
  6742. {
  6743. "name": "symfony/polyfill-intl-normalizer",
  6744. "version": "v1.27.0",
  6745. "source": {
  6746. "type": "git",
  6747. "url": "https://github.com/symfony/polyfill-intl-normalizer.git",
  6748. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6"
  6749. },
  6750. "dist": {
  6751. "type": "zip",
  6752. "url": "https://api.github.com/repos/symfony/polyfill-intl-normalizer/zipball/19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6753. "reference": "19bd1e4fcd5b91116f14d8533c57831ed00571b6",
  6754. "shasum": "",
  6755. "mirrors": [
  6756. {
  6757. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6758. "preferred": true
  6759. }
  6760. ]
  6761. },
  6762. "require": {
  6763. "php": ">=7.1"
  6764. },
  6765. "suggest": {
  6766. "ext-intl": "For best performance"
  6767. },
  6768. "type": "library",
  6769. "extra": {
  6770. "branch-alias": {
  6771. "dev-main": "1.27-dev"
  6772. },
  6773. "thanks": {
  6774. "name": "symfony/polyfill",
  6775. "url": "https://github.com/symfony/polyfill"
  6776. }
  6777. },
  6778. "autoload": {
  6779. "files": [
  6780. "bootstrap.php"
  6781. ],
  6782. "psr-4": {
  6783. "Symfony\\Polyfill\\Intl\\Normalizer\\": ""
  6784. },
  6785. "classmap": [
  6786. "Resources/stubs"
  6787. ]
  6788. },
  6789. "notification-url": "https://packagist.org/downloads/",
  6790. "license": [
  6791. "MIT"
  6792. ],
  6793. "authors": [
  6794. {
  6795. "name": "Nicolas Grekas",
  6796. "email": "p@tchwork.com"
  6797. },
  6798. {
  6799. "name": "Symfony Community",
  6800. "homepage": "https://symfony.com/contributors"
  6801. }
  6802. ],
  6803. "description": "Symfony polyfill for intl's Normalizer class and related functions",
  6804. "homepage": "https://symfony.com",
  6805. "keywords": [
  6806. "compatibility",
  6807. "intl",
  6808. "normalizer",
  6809. "polyfill",
  6810. "portable",
  6811. "shim"
  6812. ],
  6813. "support": {
  6814. "source": "https://github.com/symfony/polyfill-intl-normalizer/tree/v1.27.0"
  6815. },
  6816. "funding": [
  6817. {
  6818. "url": "https://symfony.com/sponsor",
  6819. "type": "custom"
  6820. },
  6821. {
  6822. "url": "https://github.com/fabpot",
  6823. "type": "github"
  6824. },
  6825. {
  6826. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6827. "type": "tidelift"
  6828. }
  6829. ],
  6830. "time": "2022-11-03T14:55:06+00:00"
  6831. },
  6832. {
  6833. "name": "symfony/polyfill-mbstring",
  6834. "version": "v1.27.0",
  6835. "source": {
  6836. "type": "git",
  6837. "url": "https://github.com/symfony/polyfill-mbstring.git",
  6838. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534"
  6839. },
  6840. "dist": {
  6841. "type": "zip",
  6842. "url": "https://api.github.com/repos/symfony/polyfill-mbstring/zipball/8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6843. "reference": "8ad114f6b39e2c98a8b0e3bd907732c207c2b534",
  6844. "shasum": "",
  6845. "mirrors": [
  6846. {
  6847. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  6848. "preferred": true
  6849. }
  6850. ]
  6851. },
  6852. "require": {
  6853. "php": ">=7.1"
  6854. },
  6855. "provide": {
  6856. "ext-mbstring": "*"
  6857. },
  6858. "suggest": {
  6859. "ext-mbstring": "For best performance"
  6860. },
  6861. "type": "library",
  6862. "extra": {
  6863. "branch-alias": {
  6864. "dev-main": "1.27-dev"
  6865. },
  6866. "thanks": {
  6867. "name": "symfony/polyfill",
  6868. "url": "https://github.com/symfony/polyfill"
  6869. }
  6870. },
  6871. "autoload": {
  6872. "files": [
  6873. "bootstrap.php"
  6874. ],
  6875. "psr-4": {
  6876. "Symfony\\Polyfill\\Mbstring\\": ""
  6877. }
  6878. },
  6879. "notification-url": "https://packagist.org/downloads/",
  6880. "license": [
  6881. "MIT"
  6882. ],
  6883. "authors": [
  6884. {
  6885. "name": "Nicolas Grekas",
  6886. "email": "p@tchwork.com"
  6887. },
  6888. {
  6889. "name": "Symfony Community",
  6890. "homepage": "https://symfony.com/contributors"
  6891. }
  6892. ],
  6893. "description": "Symfony polyfill for the Mbstring extension",
  6894. "homepage": "https://symfony.com",
  6895. "keywords": [
  6896. "compatibility",
  6897. "mbstring",
  6898. "polyfill",
  6899. "portable",
  6900. "shim"
  6901. ],
  6902. "support": {
  6903. "source": "https://github.com/symfony/polyfill-mbstring/tree/v1.27.0"
  6904. },
  6905. "funding": [
  6906. {
  6907. "url": "https://symfony.com/sponsor",
  6908. "type": "custom"
  6909. },
  6910. {
  6911. "url": "https://github.com/fabpot",
  6912. "type": "github"
  6913. },
  6914. {
  6915. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  6916. "type": "tidelift"
  6917. }
  6918. ],
  6919. "time": "2022-11-03T14:55:06+00:00"
  6920. },
  6921. {
  6922. "name": "symfony/polyfill-php56",
  6923. "version": "v1.20.0",
  6924. "source": {
  6925. "type": "git",
  6926. "url": "https://github.com/symfony/polyfill-php56.git",
  6927. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675"
  6928. },
  6929. "dist": {
  6930. "type": "zip",
  6931. "url": "https://api.github.com/repos/symfony/polyfill-php56/zipball/54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6932. "reference": "54b8cd7e6c1643d78d011f3be89f3ef1f9f4c675",
  6933. "shasum": "",
  6934. "mirrors": [
  6935. {
  6936. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6937. "preferred": true
  6938. }
  6939. ]
  6940. },
  6941. "require": {
  6942. "php": ">=7.1"
  6943. },
  6944. "type": "metapackage",
  6945. "extra": {
  6946. "branch-alias": {
  6947. "dev-main": "1.20-dev"
  6948. },
  6949. "thanks": {
  6950. "name": "symfony/polyfill",
  6951. "url": "https://github.com/symfony/polyfill"
  6952. }
  6953. },
  6954. "notification-url": "https://packagist.org/downloads/",
  6955. "license": [
  6956. "MIT"
  6957. ],
  6958. "authors": [
  6959. {
  6960. "name": "Nicolas Grekas",
  6961. "email": "p@tchwork.com"
  6962. },
  6963. {
  6964. "name": "Symfony Community",
  6965. "homepage": "https://symfony.com/contributors"
  6966. }
  6967. ],
  6968. "description": "Symfony polyfill backporting some PHP 5.6+ features to lower PHP versions",
  6969. "homepage": "https://symfony.com",
  6970. "keywords": [
  6971. "compatibility",
  6972. "polyfill",
  6973. "portable",
  6974. "shim"
  6975. ],
  6976. "time": "2020-10-23T14:02:19+00:00"
  6977. },
  6978. {
  6979. "name": "symfony/polyfill-php72",
  6980. "version": "v1.22.1",
  6981. "source": {
  6982. "type": "git",
  6983. "url": "https://github.com/symfony/polyfill-php72.git",
  6984. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9"
  6985. },
  6986. "dist": {
  6987. "type": "zip",
  6988. "url": "https://api.github.com/repos/symfony/polyfill-php72/zipball/cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6989. "reference": "cc6e6f9b39fe8075b3dabfbaf5b5f645ae1340c9",
  6990. "shasum": "",
  6991. "mirrors": [
  6992. {
  6993. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  6994. "preferred": true
  6995. }
  6996. ]
  6997. },
  6998. "require": {
  6999. "php": ">=7.1"
  7000. },
  7001. "type": "library",
  7002. "extra": {
  7003. "branch-alias": {
  7004. "dev-main": "1.22-dev"
  7005. },
  7006. "thanks": {
  7007. "name": "symfony/polyfill",
  7008. "url": "https://github.com/symfony/polyfill"
  7009. }
  7010. },
  7011. "autoload": {
  7012. "psr-4": {
  7013. "Symfony\\Polyfill\\Php72\\": ""
  7014. },
  7015. "files": [
  7016. "bootstrap.php"
  7017. ]
  7018. },
  7019. "notification-url": "https://packagist.org/downloads/",
  7020. "license": [
  7021. "MIT"
  7022. ],
  7023. "authors": [
  7024. {
  7025. "name": "Nicolas Grekas",
  7026. "email": "p@tchwork.com"
  7027. },
  7028. {
  7029. "name": "Symfony Community",
  7030. "homepage": "https://symfony.com/contributors"
  7031. }
  7032. ],
  7033. "description": "Symfony polyfill backporting some PHP 7.2+ features to lower PHP versions",
  7034. "homepage": "https://symfony.com",
  7035. "keywords": [
  7036. "compatibility",
  7037. "polyfill",
  7038. "portable",
  7039. "shim"
  7040. ],
  7041. "time": "2021-01-07T16:49:33+00:00"
  7042. },
  7043. {
  7044. "name": "symfony/polyfill-php73",
  7045. "version": "v1.27.0",
  7046. "source": {
  7047. "type": "git",
  7048. "url": "https://github.com/symfony/polyfill-php73.git",
  7049. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9"
  7050. },
  7051. "dist": {
  7052. "type": "zip",
  7053. "url": "https://api.github.com/repos/symfony/polyfill-php73/zipball/9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  7054. "reference": "9e8ecb5f92152187c4799efd3c96b78ccab18ff9",
  7055. "shasum": "",
  7056. "mirrors": [
  7057. {
  7058. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7059. "preferred": true
  7060. }
  7061. ]
  7062. },
  7063. "require": {
  7064. "php": ">=7.1"
  7065. },
  7066. "type": "library",
  7067. "extra": {
  7068. "branch-alias": {
  7069. "dev-main": "1.27-dev"
  7070. },
  7071. "thanks": {
  7072. "name": "symfony/polyfill",
  7073. "url": "https://github.com/symfony/polyfill"
  7074. }
  7075. },
  7076. "autoload": {
  7077. "files": [
  7078. "bootstrap.php"
  7079. ],
  7080. "psr-4": {
  7081. "Symfony\\Polyfill\\Php73\\": ""
  7082. },
  7083. "classmap": [
  7084. "Resources/stubs"
  7085. ]
  7086. },
  7087. "notification-url": "https://packagist.org/downloads/",
  7088. "license": [
  7089. "MIT"
  7090. ],
  7091. "authors": [
  7092. {
  7093. "name": "Nicolas Grekas",
  7094. "email": "p@tchwork.com"
  7095. },
  7096. {
  7097. "name": "Symfony Community",
  7098. "homepage": "https://symfony.com/contributors"
  7099. }
  7100. ],
  7101. "description": "Symfony polyfill backporting some PHP 7.3+ features to lower PHP versions",
  7102. "homepage": "https://symfony.com",
  7103. "keywords": [
  7104. "compatibility",
  7105. "polyfill",
  7106. "portable",
  7107. "shim"
  7108. ],
  7109. "support": {
  7110. "source": "https://github.com/symfony/polyfill-php73/tree/v1.27.0"
  7111. },
  7112. "funding": [
  7113. {
  7114. "url": "https://symfony.com/sponsor",
  7115. "type": "custom"
  7116. },
  7117. {
  7118. "url": "https://github.com/fabpot",
  7119. "type": "github"
  7120. },
  7121. {
  7122. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7123. "type": "tidelift"
  7124. }
  7125. ],
  7126. "time": "2022-11-03T14:55:06+00:00"
  7127. },
  7128. {
  7129. "name": "symfony/polyfill-php80",
  7130. "version": "v1.27.0",
  7131. "source": {
  7132. "type": "git",
  7133. "url": "https://github.com/symfony/polyfill-php80.git",
  7134. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936"
  7135. },
  7136. "dist": {
  7137. "type": "zip",
  7138. "url": "https://api.github.com/repos/symfony/polyfill-php80/zipball/7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  7139. "reference": "7a6ff3f1959bb01aefccb463a0f2cd3d3d2fd936",
  7140. "shasum": "",
  7141. "mirrors": [
  7142. {
  7143. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7144. "preferred": true
  7145. }
  7146. ]
  7147. },
  7148. "require": {
  7149. "php": ">=7.1"
  7150. },
  7151. "type": "library",
  7152. "extra": {
  7153. "branch-alias": {
  7154. "dev-main": "1.27-dev"
  7155. },
  7156. "thanks": {
  7157. "name": "symfony/polyfill",
  7158. "url": "https://github.com/symfony/polyfill"
  7159. }
  7160. },
  7161. "autoload": {
  7162. "files": [
  7163. "bootstrap.php"
  7164. ],
  7165. "psr-4": {
  7166. "Symfony\\Polyfill\\Php80\\": ""
  7167. },
  7168. "classmap": [
  7169. "Resources/stubs"
  7170. ]
  7171. },
  7172. "notification-url": "https://packagist.org/downloads/",
  7173. "license": [
  7174. "MIT"
  7175. ],
  7176. "authors": [
  7177. {
  7178. "name": "Ion Bazan",
  7179. "email": "ion.bazan@gmail.com"
  7180. },
  7181. {
  7182. "name": "Nicolas Grekas",
  7183. "email": "p@tchwork.com"
  7184. },
  7185. {
  7186. "name": "Symfony Community",
  7187. "homepage": "https://symfony.com/contributors"
  7188. }
  7189. ],
  7190. "description": "Symfony polyfill backporting some PHP 8.0+ features to lower PHP versions",
  7191. "homepage": "https://symfony.com",
  7192. "keywords": [
  7193. "compatibility",
  7194. "polyfill",
  7195. "portable",
  7196. "shim"
  7197. ],
  7198. "support": {
  7199. "source": "https://github.com/symfony/polyfill-php80/tree/v1.27.0"
  7200. },
  7201. "funding": [
  7202. {
  7203. "url": "https://symfony.com/sponsor",
  7204. "type": "custom"
  7205. },
  7206. {
  7207. "url": "https://github.com/fabpot",
  7208. "type": "github"
  7209. },
  7210. {
  7211. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7212. "type": "tidelift"
  7213. }
  7214. ],
  7215. "time": "2022-11-03T14:55:06+00:00"
  7216. },
  7217. {
  7218. "name": "symfony/process",
  7219. "version": "v4.4.20",
  7220. "source": {
  7221. "type": "git",
  7222. "url": "https://github.com/symfony/process.git",
  7223. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a"
  7224. },
  7225. "dist": {
  7226. "type": "zip",
  7227. "url": "https://api.github.com/repos/symfony/process/zipball/7e950b6366d4da90292c2e7fa820b3c1842b965a",
  7228. "reference": "7e950b6366d4da90292c2e7fa820b3c1842b965a",
  7229. "shasum": "",
  7230. "mirrors": [
  7231. {
  7232. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7233. "preferred": true
  7234. }
  7235. ]
  7236. },
  7237. "require": {
  7238. "php": ">=7.1.3"
  7239. },
  7240. "type": "library",
  7241. "autoload": {
  7242. "psr-4": {
  7243. "Symfony\\Component\\Process\\": ""
  7244. },
  7245. "exclude-from-classmap": [
  7246. "/Tests/"
  7247. ]
  7248. },
  7249. "notification-url": "https://packagist.org/downloads/",
  7250. "license": [
  7251. "MIT"
  7252. ],
  7253. "authors": [
  7254. {
  7255. "name": "Fabien Potencier",
  7256. "email": "fabien@symfony.com"
  7257. },
  7258. {
  7259. "name": "Symfony Community",
  7260. "homepage": "https://symfony.com/contributors"
  7261. }
  7262. ],
  7263. "description": "Executes commands in sub-processes",
  7264. "homepage": "https://symfony.com",
  7265. "time": "2021-01-27T09:09:26+00:00"
  7266. },
  7267. {
  7268. "name": "symfony/property-access",
  7269. "version": "v5.2.4",
  7270. "source": {
  7271. "type": "git",
  7272. "url": "https://github.com/symfony/property-access.git",
  7273. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3"
  7274. },
  7275. "dist": {
  7276. "type": "zip",
  7277. "url": "https://api.github.com/repos/symfony/property-access/zipball/3af8ed262bd3217512a13b023981fe68f36ad5f3",
  7278. "reference": "3af8ed262bd3217512a13b023981fe68f36ad5f3",
  7279. "shasum": "",
  7280. "mirrors": [
  7281. {
  7282. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7283. "preferred": true
  7284. }
  7285. ]
  7286. },
  7287. "require": {
  7288. "php": ">=7.2.5",
  7289. "symfony/deprecation-contracts": "^2.1",
  7290. "symfony/polyfill-php80": "^1.15",
  7291. "symfony/property-info": "^5.2"
  7292. },
  7293. "require-dev": {
  7294. "symfony/cache": "^4.4|^5.0"
  7295. },
  7296. "suggest": {
  7297. "psr/cache-implementation": "To cache access methods."
  7298. },
  7299. "type": "library",
  7300. "autoload": {
  7301. "psr-4": {
  7302. "Symfony\\Component\\PropertyAccess\\": ""
  7303. },
  7304. "exclude-from-classmap": [
  7305. "/Tests/"
  7306. ]
  7307. },
  7308. "notification-url": "https://packagist.org/downloads/",
  7309. "license": [
  7310. "MIT"
  7311. ],
  7312. "authors": [
  7313. {
  7314. "name": "Fabien Potencier",
  7315. "email": "fabien@symfony.com"
  7316. },
  7317. {
  7318. "name": "Symfony Community",
  7319. "homepage": "https://symfony.com/contributors"
  7320. }
  7321. ],
  7322. "description": "Provides functions to read and write from/to an object or array using a simple string notation",
  7323. "homepage": "https://symfony.com",
  7324. "keywords": [
  7325. "access",
  7326. "array",
  7327. "extraction",
  7328. "index",
  7329. "injection",
  7330. "object",
  7331. "property",
  7332. "property path",
  7333. "reflection"
  7334. ],
  7335. "time": "2021-01-27T10:15:41+00:00"
  7336. },
  7337. {
  7338. "name": "symfony/property-info",
  7339. "version": "v5.2.4",
  7340. "source": {
  7341. "type": "git",
  7342. "url": "https://github.com/symfony/property-info.git",
  7343. "reference": "7185bbc74e6f49c3f1b5936b4d9e4ca133921189"
  7344. },
  7345. "dist": {
  7346. "type": "zip",
  7347. "url": "https://api.github.com/repos/symfony/property-info/zipball/7185bbc74e6f49c3f1b5936b4d9e4ca133921189",
  7348. "reference": "7185bbc74e6f49c3f1b5936b4d9e4ca133921189",
  7349. "shasum": "",
  7350. "mirrors": [
  7351. {
  7352. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7353. "preferred": true
  7354. }
  7355. ]
  7356. },
  7357. "require": {
  7358. "php": ">=7.2.5",
  7359. "symfony/deprecation-contracts": "^2.1",
  7360. "symfony/polyfill-php80": "^1.15",
  7361. "symfony/string": "^5.1"
  7362. },
  7363. "conflict": {
  7364. "phpdocumentor/reflection-docblock": "<3.2.2",
  7365. "phpdocumentor/type-resolver": "<1.4.0",
  7366. "symfony/dependency-injection": "<4.4"
  7367. },
  7368. "require-dev": {
  7369. "doctrine/annotations": "^1.10.4",
  7370. "phpdocumentor/reflection-docblock": "^3.0|^4.0|^5.0",
  7371. "symfony/cache": "^4.4|^5.0",
  7372. "symfony/dependency-injection": "^4.4|^5.0",
  7373. "symfony/serializer": "^4.4|^5.0"
  7374. },
  7375. "suggest": {
  7376. "phpdocumentor/reflection-docblock": "To use the PHPDoc",
  7377. "psr/cache-implementation": "To cache results",
  7378. "symfony/doctrine-bridge": "To use Doctrine metadata",
  7379. "symfony/serializer": "To use Serializer metadata"
  7380. },
  7381. "type": "library",
  7382. "autoload": {
  7383. "psr-4": {
  7384. "Symfony\\Component\\PropertyInfo\\": ""
  7385. },
  7386. "exclude-from-classmap": [
  7387. "/Tests/"
  7388. ]
  7389. },
  7390. "notification-url": "https://packagist.org/downloads/",
  7391. "license": [
  7392. "MIT"
  7393. ],
  7394. "authors": [
  7395. {
  7396. "name": "Kévin Dunglas",
  7397. "email": "dunglas@gmail.com"
  7398. },
  7399. {
  7400. "name": "Symfony Community",
  7401. "homepage": "https://symfony.com/contributors"
  7402. }
  7403. ],
  7404. "description": "Extracts information about PHP class' properties using metadata of popular sources",
  7405. "homepage": "https://symfony.com",
  7406. "keywords": [
  7407. "doctrine",
  7408. "phpdoc",
  7409. "property",
  7410. "symfony",
  7411. "type",
  7412. "validator"
  7413. ],
  7414. "time": "2021-02-17T15:24:54+00:00"
  7415. },
  7416. {
  7417. "name": "symfony/psr-http-message-bridge",
  7418. "version": "v2.1.0",
  7419. "source": {
  7420. "type": "git",
  7421. "url": "https://github.com/symfony/psr-http-message-bridge.git",
  7422. "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d"
  7423. },
  7424. "dist": {
  7425. "type": "zip",
  7426. "url": "https://api.github.com/repos/symfony/psr-http-message-bridge/zipball/81db2d4ae86e9f0049828d9343a72b9523884e5d",
  7427. "reference": "81db2d4ae86e9f0049828d9343a72b9523884e5d",
  7428. "shasum": "",
  7429. "mirrors": [
  7430. {
  7431. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7432. "preferred": true
  7433. }
  7434. ]
  7435. },
  7436. "require": {
  7437. "php": ">=7.1",
  7438. "psr/http-message": "^1.0",
  7439. "symfony/http-foundation": "^4.4 || ^5.0"
  7440. },
  7441. "require-dev": {
  7442. "nyholm/psr7": "^1.1",
  7443. "psr/log": "^1.1",
  7444. "symfony/browser-kit": "^4.4 || ^5.0",
  7445. "symfony/config": "^4.4 || ^5.0",
  7446. "symfony/event-dispatcher": "^4.4 || ^5.0",
  7447. "symfony/framework-bundle": "^4.4 || ^5.0",
  7448. "symfony/http-kernel": "^4.4 || ^5.0",
  7449. "symfony/phpunit-bridge": "^4.4.19 || ^5.2"
  7450. },
  7451. "suggest": {
  7452. "nyholm/psr7": "For a super lightweight PSR-7/17 implementation"
  7453. },
  7454. "type": "symfony-bridge",
  7455. "extra": {
  7456. "branch-alias": {
  7457. "dev-main": "2.1-dev"
  7458. }
  7459. },
  7460. "autoload": {
  7461. "psr-4": {
  7462. "Symfony\\Bridge\\PsrHttpMessage\\": ""
  7463. },
  7464. "exclude-from-classmap": [
  7465. "/Tests/"
  7466. ]
  7467. },
  7468. "notification-url": "https://packagist.org/downloads/",
  7469. "license": [
  7470. "MIT"
  7471. ],
  7472. "authors": [
  7473. {
  7474. "name": "Fabien Potencier",
  7475. "email": "fabien@symfony.com"
  7476. },
  7477. {
  7478. "name": "Symfony Community",
  7479. "homepage": "http://symfony.com/contributors"
  7480. }
  7481. ],
  7482. "description": "PSR HTTP message bridge",
  7483. "homepage": "http://symfony.com",
  7484. "keywords": [
  7485. "http",
  7486. "http-message",
  7487. "psr-17",
  7488. "psr-7"
  7489. ],
  7490. "time": "2021-02-17T10:35:25+00:00"
  7491. },
  7492. {
  7493. "name": "symfony/routing",
  7494. "version": "v4.4.20",
  7495. "source": {
  7496. "type": "git",
  7497. "url": "https://github.com/symfony/routing.git",
  7498. "reference": "69919991c845b34626664ddc9b3aef9d09d2a5df"
  7499. },
  7500. "dist": {
  7501. "type": "zip",
  7502. "url": "https://api.github.com/repos/symfony/routing/zipball/69919991c845b34626664ddc9b3aef9d09d2a5df",
  7503. "reference": "69919991c845b34626664ddc9b3aef9d09d2a5df",
  7504. "shasum": "",
  7505. "mirrors": [
  7506. {
  7507. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7508. "preferred": true
  7509. }
  7510. ]
  7511. },
  7512. "require": {
  7513. "php": ">=7.1.3"
  7514. },
  7515. "conflict": {
  7516. "symfony/config": "<4.2",
  7517. "symfony/dependency-injection": "<3.4",
  7518. "symfony/yaml": "<3.4"
  7519. },
  7520. "require-dev": {
  7521. "doctrine/annotations": "^1.10.4",
  7522. "psr/log": "~1.0",
  7523. "symfony/config": "^4.2|^5.0",
  7524. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7525. "symfony/expression-language": "^3.4|^4.0|^5.0",
  7526. "symfony/http-foundation": "^3.4|^4.0|^5.0",
  7527. "symfony/yaml": "^3.4|^4.0|^5.0"
  7528. },
  7529. "suggest": {
  7530. "doctrine/annotations": "For using the annotation loader",
  7531. "symfony/config": "For using the all-in-one router or any loader",
  7532. "symfony/expression-language": "For using expression matching",
  7533. "symfony/http-foundation": "For using a Symfony Request object",
  7534. "symfony/yaml": "For using the YAML loader"
  7535. },
  7536. "type": "library",
  7537. "autoload": {
  7538. "psr-4": {
  7539. "Symfony\\Component\\Routing\\": ""
  7540. },
  7541. "exclude-from-classmap": [
  7542. "/Tests/"
  7543. ]
  7544. },
  7545. "notification-url": "https://packagist.org/downloads/",
  7546. "license": [
  7547. "MIT"
  7548. ],
  7549. "authors": [
  7550. {
  7551. "name": "Fabien Potencier",
  7552. "email": "fabien@symfony.com"
  7553. },
  7554. {
  7555. "name": "Symfony Community",
  7556. "homepage": "https://symfony.com/contributors"
  7557. }
  7558. ],
  7559. "description": "Maps an HTTP request to a set of configuration variables",
  7560. "homepage": "https://symfony.com",
  7561. "keywords": [
  7562. "router",
  7563. "routing",
  7564. "uri",
  7565. "url"
  7566. ],
  7567. "time": "2021-02-22T15:37:04+00:00"
  7568. },
  7569. {
  7570. "name": "symfony/service-contracts",
  7571. "version": "v2.5.2",
  7572. "source": {
  7573. "type": "git",
  7574. "url": "https://github.com/symfony/service-contracts.git",
  7575. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c"
  7576. },
  7577. "dist": {
  7578. "type": "zip",
  7579. "url": "https://api.github.com/repos/symfony/service-contracts/zipball/4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7580. "reference": "4b426aac47d6427cc1a1d0f7e2ac724627f5966c",
  7581. "shasum": "",
  7582. "mirrors": [
  7583. {
  7584. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7585. "preferred": true
  7586. }
  7587. ]
  7588. },
  7589. "require": {
  7590. "php": ">=7.2.5",
  7591. "psr/container": "^1.1",
  7592. "symfony/deprecation-contracts": "^2.1|^3"
  7593. },
  7594. "conflict": {
  7595. "ext-psr": "<1.1|>=2"
  7596. },
  7597. "suggest": {
  7598. "symfony/service-implementation": ""
  7599. },
  7600. "type": "library",
  7601. "extra": {
  7602. "branch-alias": {
  7603. "dev-main": "2.5-dev"
  7604. },
  7605. "thanks": {
  7606. "name": "symfony/contracts",
  7607. "url": "https://github.com/symfony/contracts"
  7608. }
  7609. },
  7610. "autoload": {
  7611. "psr-4": {
  7612. "Symfony\\Contracts\\Service\\": ""
  7613. }
  7614. },
  7615. "notification-url": "https://packagist.org/downloads/",
  7616. "license": [
  7617. "MIT"
  7618. ],
  7619. "authors": [
  7620. {
  7621. "name": "Nicolas Grekas",
  7622. "email": "p@tchwork.com"
  7623. },
  7624. {
  7625. "name": "Symfony Community",
  7626. "homepage": "https://symfony.com/contributors"
  7627. }
  7628. ],
  7629. "description": "Generic abstractions related to writing services",
  7630. "homepage": "https://symfony.com",
  7631. "keywords": [
  7632. "abstractions",
  7633. "contracts",
  7634. "decoupling",
  7635. "interfaces",
  7636. "interoperability",
  7637. "standards"
  7638. ],
  7639. "support": {
  7640. "source": "https://github.com/symfony/service-contracts/tree/v2.5.2"
  7641. },
  7642. "funding": [
  7643. {
  7644. "url": "https://symfony.com/sponsor",
  7645. "type": "custom"
  7646. },
  7647. {
  7648. "url": "https://github.com/fabpot",
  7649. "type": "github"
  7650. },
  7651. {
  7652. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7653. "type": "tidelift"
  7654. }
  7655. ],
  7656. "time": "2022-05-30T19:17:29+00:00"
  7657. },
  7658. {
  7659. "name": "symfony/string",
  7660. "version": "v5.4.15",
  7661. "source": {
  7662. "type": "git",
  7663. "url": "https://github.com/symfony/string.git",
  7664. "reference": "571334ce9f687e3e6af72db4d3b2a9431e4fd9ed"
  7665. },
  7666. "dist": {
  7667. "type": "zip",
  7668. "url": "https://api.github.com/repos/symfony/string/zipball/571334ce9f687e3e6af72db4d3b2a9431e4fd9ed",
  7669. "reference": "571334ce9f687e3e6af72db4d3b2a9431e4fd9ed",
  7670. "shasum": "",
  7671. "mirrors": [
  7672. {
  7673. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7674. "preferred": true
  7675. }
  7676. ]
  7677. },
  7678. "require": {
  7679. "php": ">=7.2.5",
  7680. "symfony/polyfill-ctype": "~1.8",
  7681. "symfony/polyfill-intl-grapheme": "~1.0",
  7682. "symfony/polyfill-intl-normalizer": "~1.0",
  7683. "symfony/polyfill-mbstring": "~1.0",
  7684. "symfony/polyfill-php80": "~1.15"
  7685. },
  7686. "conflict": {
  7687. "symfony/translation-contracts": ">=3.0"
  7688. },
  7689. "require-dev": {
  7690. "symfony/error-handler": "^4.4|^5.0|^6.0",
  7691. "symfony/http-client": "^4.4|^5.0|^6.0",
  7692. "symfony/translation-contracts": "^1.1|^2",
  7693. "symfony/var-exporter": "^4.4|^5.0|^6.0"
  7694. },
  7695. "type": "library",
  7696. "autoload": {
  7697. "files": [
  7698. "Resources/functions.php"
  7699. ],
  7700. "psr-4": {
  7701. "Symfony\\Component\\String\\": ""
  7702. },
  7703. "exclude-from-classmap": [
  7704. "/Tests/"
  7705. ]
  7706. },
  7707. "notification-url": "https://packagist.org/downloads/",
  7708. "license": [
  7709. "MIT"
  7710. ],
  7711. "authors": [
  7712. {
  7713. "name": "Nicolas Grekas",
  7714. "email": "p@tchwork.com"
  7715. },
  7716. {
  7717. "name": "Symfony Community",
  7718. "homepage": "https://symfony.com/contributors"
  7719. }
  7720. ],
  7721. "description": "Provides an object-oriented API to strings and deals with bytes, UTF-8 code points and grapheme clusters in a unified way",
  7722. "homepage": "https://symfony.com",
  7723. "keywords": [
  7724. "grapheme",
  7725. "i18n",
  7726. "string",
  7727. "unicode",
  7728. "utf-8",
  7729. "utf8"
  7730. ],
  7731. "support": {
  7732. "source": "https://github.com/symfony/string/tree/v5.4.15"
  7733. },
  7734. "funding": [
  7735. {
  7736. "url": "https://symfony.com/sponsor",
  7737. "type": "custom"
  7738. },
  7739. {
  7740. "url": "https://github.com/fabpot",
  7741. "type": "github"
  7742. },
  7743. {
  7744. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7745. "type": "tidelift"
  7746. }
  7747. ],
  7748. "time": "2022-10-05T15:16:54+00:00"
  7749. },
  7750. {
  7751. "name": "symfony/translation",
  7752. "version": "v4.4.21",
  7753. "source": {
  7754. "type": "git",
  7755. "url": "https://github.com/symfony/translation.git",
  7756. "reference": "eb8f5428cc3b40d6dffe303b195b084f1c5fbd14"
  7757. },
  7758. "dist": {
  7759. "type": "zip",
  7760. "url": "https://api.github.com/repos/symfony/translation/zipball/eb8f5428cc3b40d6dffe303b195b084f1c5fbd14",
  7761. "reference": "eb8f5428cc3b40d6dffe303b195b084f1c5fbd14",
  7762. "shasum": "",
  7763. "mirrors": [
  7764. {
  7765. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7766. "preferred": true
  7767. }
  7768. ]
  7769. },
  7770. "require": {
  7771. "php": ">=7.1.3",
  7772. "symfony/polyfill-mbstring": "~1.0",
  7773. "symfony/translation-contracts": "^1.1.6|^2"
  7774. },
  7775. "conflict": {
  7776. "symfony/config": "<3.4",
  7777. "symfony/dependency-injection": "<3.4",
  7778. "symfony/http-kernel": "<4.4",
  7779. "symfony/yaml": "<3.4"
  7780. },
  7781. "provide": {
  7782. "symfony/translation-implementation": "1.0|2.0"
  7783. },
  7784. "require-dev": {
  7785. "psr/log": "~1.0",
  7786. "symfony/config": "^3.4|^4.0|^5.0",
  7787. "symfony/console": "^3.4|^4.0|^5.0",
  7788. "symfony/dependency-injection": "^3.4|^4.0|^5.0",
  7789. "symfony/finder": "~2.8|~3.0|~4.0|^5.0",
  7790. "symfony/http-kernel": "^4.4",
  7791. "symfony/intl": "^3.4|^4.0|^5.0",
  7792. "symfony/service-contracts": "^1.1.2|^2",
  7793. "symfony/yaml": "^3.4|^4.0|^5.0"
  7794. },
  7795. "suggest": {
  7796. "psr/log-implementation": "To use logging capability in translator",
  7797. "symfony/config": "",
  7798. "symfony/yaml": ""
  7799. },
  7800. "type": "library",
  7801. "autoload": {
  7802. "psr-4": {
  7803. "Symfony\\Component\\Translation\\": ""
  7804. },
  7805. "exclude-from-classmap": [
  7806. "/Tests/"
  7807. ]
  7808. },
  7809. "notification-url": "https://packagist.org/downloads/",
  7810. "license": [
  7811. "MIT"
  7812. ],
  7813. "authors": [
  7814. {
  7815. "name": "Fabien Potencier",
  7816. "email": "fabien@symfony.com"
  7817. },
  7818. {
  7819. "name": "Symfony Community",
  7820. "homepage": "https://symfony.com/contributors"
  7821. }
  7822. ],
  7823. "description": "Provides tools to internationalize your application",
  7824. "homepage": "https://symfony.com",
  7825. "time": "2021-03-23T16:25:01+00:00"
  7826. },
  7827. {
  7828. "name": "symfony/translation-contracts",
  7829. "version": "v2.5.2",
  7830. "source": {
  7831. "type": "git",
  7832. "url": "https://github.com/symfony/translation-contracts.git",
  7833. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe"
  7834. },
  7835. "dist": {
  7836. "type": "zip",
  7837. "url": "https://api.github.com/repos/symfony/translation-contracts/zipball/136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7838. "reference": "136b19dd05cdf0709db6537d058bcab6dd6e2dbe",
  7839. "shasum": "",
  7840. "mirrors": [
  7841. {
  7842. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  7843. "preferred": true
  7844. }
  7845. ]
  7846. },
  7847. "require": {
  7848. "php": ">=7.2.5"
  7849. },
  7850. "suggest": {
  7851. "symfony/translation-implementation": ""
  7852. },
  7853. "type": "library",
  7854. "extra": {
  7855. "branch-alias": {
  7856. "dev-main": "2.5-dev"
  7857. },
  7858. "thanks": {
  7859. "name": "symfony/contracts",
  7860. "url": "https://github.com/symfony/contracts"
  7861. }
  7862. },
  7863. "autoload": {
  7864. "psr-4": {
  7865. "Symfony\\Contracts\\Translation\\": ""
  7866. }
  7867. },
  7868. "notification-url": "https://packagist.org/downloads/",
  7869. "license": [
  7870. "MIT"
  7871. ],
  7872. "authors": [
  7873. {
  7874. "name": "Nicolas Grekas",
  7875. "email": "p@tchwork.com"
  7876. },
  7877. {
  7878. "name": "Symfony Community",
  7879. "homepage": "https://symfony.com/contributors"
  7880. }
  7881. ],
  7882. "description": "Generic abstractions related to translation",
  7883. "homepage": "https://symfony.com",
  7884. "keywords": [
  7885. "abstractions",
  7886. "contracts",
  7887. "decoupling",
  7888. "interfaces",
  7889. "interoperability",
  7890. "standards"
  7891. ],
  7892. "support": {
  7893. "source": "https://github.com/symfony/translation-contracts/tree/v2.5.2"
  7894. },
  7895. "funding": [
  7896. {
  7897. "url": "https://symfony.com/sponsor",
  7898. "type": "custom"
  7899. },
  7900. {
  7901. "url": "https://github.com/fabpot",
  7902. "type": "github"
  7903. },
  7904. {
  7905. "url": "https://tidelift.com/funding/github/packagist/symfony/symfony",
  7906. "type": "tidelift"
  7907. }
  7908. ],
  7909. "time": "2022-06-27T16:58:25+00:00"
  7910. },
  7911. {
  7912. "name": "symfony/var-dumper",
  7913. "version": "v4.4.21",
  7914. "source": {
  7915. "type": "git",
  7916. "url": "https://github.com/symfony/var-dumper.git",
  7917. "reference": "0da0e174f728996f5d5072d6a9f0a42259dbc806"
  7918. },
  7919. "dist": {
  7920. "type": "zip",
  7921. "url": "https://api.github.com/repos/symfony/var-dumper/zipball/0da0e174f728996f5d5072d6a9f0a42259dbc806",
  7922. "reference": "0da0e174f728996f5d5072d6a9f0a42259dbc806",
  7923. "shasum": "",
  7924. "mirrors": [
  7925. {
  7926. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  7927. "preferred": true
  7928. }
  7929. ]
  7930. },
  7931. "require": {
  7932. "php": ">=7.1.3",
  7933. "symfony/polyfill-mbstring": "~1.0",
  7934. "symfony/polyfill-php72": "~1.5",
  7935. "symfony/polyfill-php80": "^1.15"
  7936. },
  7937. "conflict": {
  7938. "phpunit/phpunit": "<4.8.35|<5.4.3,>=5.0",
  7939. "symfony/console": "<3.4"
  7940. },
  7941. "require-dev": {
  7942. "ext-iconv": "*",
  7943. "symfony/console": "^3.4|^4.0|^5.0",
  7944. "symfony/process": "^4.4|^5.0",
  7945. "twig/twig": "^1.43|^2.13|^3.0.4"
  7946. },
  7947. "suggest": {
  7948. "ext-iconv": "To convert non-UTF-8 strings to UTF-8 (or symfony/polyfill-iconv in case ext-iconv cannot be used).",
  7949. "ext-intl": "To show region name in time zone dump",
  7950. "symfony/console": "To use the ServerDumpCommand and/or the bin/var-dump-server script"
  7951. },
  7952. "bin": [
  7953. "Resources/bin/var-dump-server"
  7954. ],
  7955. "type": "library",
  7956. "autoload": {
  7957. "files": [
  7958. "Resources/functions/dump.php"
  7959. ],
  7960. "psr-4": {
  7961. "Symfony\\Component\\VarDumper\\": ""
  7962. },
  7963. "exclude-from-classmap": [
  7964. "/Tests/"
  7965. ]
  7966. },
  7967. "notification-url": "https://packagist.org/downloads/",
  7968. "license": [
  7969. "MIT"
  7970. ],
  7971. "authors": [
  7972. {
  7973. "name": "Nicolas Grekas",
  7974. "email": "p@tchwork.com"
  7975. },
  7976. {
  7977. "name": "Symfony Community",
  7978. "homepage": "https://symfony.com/contributors"
  7979. }
  7980. ],
  7981. "description": "Provides mechanisms for walking through any arbitrary PHP variable",
  7982. "homepage": "https://symfony.com",
  7983. "keywords": [
  7984. "debug",
  7985. "dump"
  7986. ],
  7987. "time": "2021-03-27T19:49:03+00:00"
  7988. },
  7989. {
  7990. "name": "symfony/var-exporter",
  7991. "version": "v5.2.4",
  7992. "source": {
  7993. "type": "git",
  7994. "url": "https://github.com/symfony/var-exporter.git",
  7995. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307"
  7996. },
  7997. "dist": {
  7998. "type": "zip",
  7999. "url": "https://api.github.com/repos/symfony/var-exporter/zipball/5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  8000. "reference": "5aed4875ab514c8cb9b6ff4772baa25fa4c10307",
  8001. "shasum": "",
  8002. "mirrors": [
  8003. {
  8004. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8005. "preferred": true
  8006. }
  8007. ]
  8008. },
  8009. "require": {
  8010. "php": ">=7.2.5",
  8011. "symfony/polyfill-php80": "^1.15"
  8012. },
  8013. "require-dev": {
  8014. "symfony/var-dumper": "^4.4.9|^5.0.9"
  8015. },
  8016. "type": "library",
  8017. "autoload": {
  8018. "psr-4": {
  8019. "Symfony\\Component\\VarExporter\\": ""
  8020. },
  8021. "exclude-from-classmap": [
  8022. "/Tests/"
  8023. ]
  8024. },
  8025. "notification-url": "https://packagist.org/downloads/",
  8026. "license": [
  8027. "MIT"
  8028. ],
  8029. "authors": [
  8030. {
  8031. "name": "Nicolas Grekas",
  8032. "email": "p@tchwork.com"
  8033. },
  8034. {
  8035. "name": "Symfony Community",
  8036. "homepage": "https://symfony.com/contributors"
  8037. }
  8038. ],
  8039. "description": "Allows exporting any serializable PHP data structure to plain PHP code",
  8040. "homepage": "https://symfony.com",
  8041. "keywords": [
  8042. "clone",
  8043. "construct",
  8044. "export",
  8045. "hydrate",
  8046. "instantiate",
  8047. "serialize"
  8048. ],
  8049. "time": "2021-01-27T10:01:46+00:00"
  8050. },
  8051. {
  8052. "name": "tencentcloud/tencentcloud-sdk-php",
  8053. "version": "3.0.370",
  8054. "source": {
  8055. "type": "git",
  8056. "url": "https://github.com/TencentCloud/tencentcloud-sdk-php.git",
  8057. "reference": "c691a5abb20bfcddc332d210a75d1d31f95f31b4"
  8058. },
  8059. "dist": {
  8060. "type": "zip",
  8061. "url": "https://api.github.com/repos/TencentCloud/tencentcloud-sdk-php/zipball/c691a5abb20bfcddc332d210a75d1d31f95f31b4",
  8062. "reference": "c691a5abb20bfcddc332d210a75d1d31f95f31b4",
  8063. "shasum": "",
  8064. "mirrors": [
  8065. {
  8066. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8067. "preferred": true
  8068. }
  8069. ]
  8070. },
  8071. "require": {
  8072. "guzzlehttp/guzzle": "^6.3 || ^7.0.1",
  8073. "guzzlehttp/psr7": "^1.4",
  8074. "php": ">=5.6.0"
  8075. },
  8076. "type": "library",
  8077. "autoload": {
  8078. "classmap": [
  8079. "src/QcloudApi/QcloudApi.php"
  8080. ],
  8081. "psr-4": {
  8082. "TencentCloud\\": "./src/TencentCloud"
  8083. }
  8084. },
  8085. "notification-url": "https://packagist.org/downloads/",
  8086. "license": [
  8087. "Apache-2.0"
  8088. ],
  8089. "authors": [
  8090. {
  8091. "name": "coolli",
  8092. "email": "tencentcloudapi@tencent.com",
  8093. "homepage": "https://cloud.tencent.com/document/sdk/PHP",
  8094. "role": "Developer"
  8095. }
  8096. ],
  8097. "description": "TencentCloudApi php sdk",
  8098. "homepage": "https://github.com/TencentCloud/tencentcloud-sdk-php",
  8099. "time": "2021-04-21T00:25:28+00:00"
  8100. },
  8101. {
  8102. "name": "tymon/jwt-auth",
  8103. "version": "1.0.0-rc.5",
  8104. "source": {
  8105. "type": "git",
  8106. "url": "https://github.com/tymondesigns/jwt-auth.git",
  8107. "reference": "103739700dc0358039a33b5bc91247570bb83529"
  8108. },
  8109. "dist": {
  8110. "type": "zip",
  8111. "url": "https://api.github.com/repos/tymondesigns/jwt-auth/zipball/103739700dc0358039a33b5bc91247570bb83529",
  8112. "reference": "103739700dc0358039a33b5bc91247570bb83529",
  8113. "shasum": "",
  8114. "mirrors": [
  8115. {
  8116. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8117. "preferred": true
  8118. }
  8119. ]
  8120. },
  8121. "require": {
  8122. "illuminate/auth": "^5.1|^6",
  8123. "illuminate/contracts": "^5.1|^6",
  8124. "illuminate/http": "^5.1|^6",
  8125. "illuminate/support": "^5.1|^6",
  8126. "lcobucci/jwt": "^3.2",
  8127. "namshi/jose": "^7.0",
  8128. "nesbot/carbon": "^1.0|^2.0",
  8129. "php": "^5.5.9|^7.0"
  8130. },
  8131. "require-dev": {
  8132. "cartalyst/sentinel": "^2|^3",
  8133. "illuminate/console": "^5.1|^6",
  8134. "illuminate/database": "^5.1|^6",
  8135. "illuminate/routing": "^5.1|^6",
  8136. "mockery/mockery": ">=0.9.9",
  8137. "phpunit/phpunit": "~4.8|~6.0"
  8138. },
  8139. "type": "library",
  8140. "extra": {
  8141. "branch-alias": {
  8142. "dev-develop": "1.0-dev"
  8143. },
  8144. "laravel": {
  8145. "aliases": {
  8146. "JWTAuth": "Tymon\\JWTAuth\\Facades\\JWTAuth",
  8147. "JWTFactory": "Tymon\\JWTAuth\\Facades\\JWTFactory"
  8148. },
  8149. "providers": [
  8150. "Tymon\\JWTAuth\\Providers\\LaravelServiceProvider"
  8151. ]
  8152. }
  8153. },
  8154. "autoload": {
  8155. "psr-4": {
  8156. "Tymon\\JWTAuth\\": "src/"
  8157. }
  8158. },
  8159. "notification-url": "https://packagist.org/downloads/",
  8160. "license": [
  8161. "MIT"
  8162. ],
  8163. "authors": [
  8164. {
  8165. "name": "Sean Tymon",
  8166. "email": "tymon148@gmail.com",
  8167. "homepage": "https://tymon.xyz",
  8168. "role": "Developer"
  8169. }
  8170. ],
  8171. "description": "JSON Web Token Authentication for Laravel and Lumen",
  8172. "homepage": "https://github.com/tymondesigns/jwt-auth",
  8173. "keywords": [
  8174. "Authentication",
  8175. "JSON Web Token",
  8176. "auth",
  8177. "jwt",
  8178. "laravel"
  8179. ],
  8180. "time": "2019-09-09T03:33:47+00:00"
  8181. },
  8182. {
  8183. "name": "vlucas/phpdotenv",
  8184. "version": "v3.6.8",
  8185. "source": {
  8186. "type": "git",
  8187. "url": "https://github.com/vlucas/phpdotenv.git",
  8188. "reference": "5e679f7616db829358341e2d5cccbd18773bdab8"
  8189. },
  8190. "dist": {
  8191. "type": "zip",
  8192. "url": "https://api.github.com/repos/vlucas/phpdotenv/zipball/5e679f7616db829358341e2d5cccbd18773bdab8",
  8193. "reference": "5e679f7616db829358341e2d5cccbd18773bdab8",
  8194. "shasum": "",
  8195. "mirrors": [
  8196. {
  8197. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8198. "preferred": true
  8199. }
  8200. ]
  8201. },
  8202. "require": {
  8203. "php": "^5.4 || ^7.0 || ^8.0",
  8204. "phpoption/phpoption": "^1.5.2",
  8205. "symfony/polyfill-ctype": "^1.17"
  8206. },
  8207. "require-dev": {
  8208. "ext-filter": "*",
  8209. "ext-pcre": "*",
  8210. "phpunit/phpunit": "^4.8.36 || ^5.7.27 || ^6.5.14 || ^7.5.20"
  8211. },
  8212. "suggest": {
  8213. "ext-filter": "Required to use the boolean validator.",
  8214. "ext-pcre": "Required to use most of the library."
  8215. },
  8216. "type": "library",
  8217. "extra": {
  8218. "branch-alias": {
  8219. "dev-master": "3.6-dev"
  8220. }
  8221. },
  8222. "autoload": {
  8223. "psr-4": {
  8224. "Dotenv\\": "src/"
  8225. }
  8226. },
  8227. "notification-url": "https://packagist.org/downloads/",
  8228. "license": [
  8229. "BSD-3-Clause"
  8230. ],
  8231. "authors": [
  8232. {
  8233. "name": "Graham Campbell",
  8234. "email": "graham@alt-three.com",
  8235. "homepage": "https://gjcampbell.co.uk/"
  8236. },
  8237. {
  8238. "name": "Vance Lucas",
  8239. "email": "vance@vancelucas.com",
  8240. "homepage": "https://vancelucas.com/"
  8241. }
  8242. ],
  8243. "description": "Loads environment variables from `.env` to `getenv()`, `$_ENV` and `$_SERVER` automagically.",
  8244. "keywords": [
  8245. "dotenv",
  8246. "env",
  8247. "environment"
  8248. ],
  8249. "time": "2021-01-20T14:39:46+00:00"
  8250. },
  8251. {
  8252. "name": "webmozart/assert",
  8253. "version": "1.11.0",
  8254. "source": {
  8255. "type": "git",
  8256. "url": "https://github.com/webmozarts/assert.git",
  8257. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991"
  8258. },
  8259. "dist": {
  8260. "type": "zip",
  8261. "url": "https://api.github.com/repos/webmozarts/assert/zipball/11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8262. "reference": "11cb2199493b2f8a3b53e7f19068fc6aac760991",
  8263. "shasum": "",
  8264. "mirrors": [
  8265. {
  8266. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  8267. "preferred": true
  8268. }
  8269. ]
  8270. },
  8271. "require": {
  8272. "ext-ctype": "*",
  8273. "php": "^7.2 || ^8.0"
  8274. },
  8275. "conflict": {
  8276. "phpstan/phpstan": "<0.12.20",
  8277. "vimeo/psalm": "<4.6.1 || 4.6.2"
  8278. },
  8279. "require-dev": {
  8280. "phpunit/phpunit": "^8.5.13"
  8281. },
  8282. "type": "library",
  8283. "extra": {
  8284. "branch-alias": {
  8285. "dev-master": "1.10-dev"
  8286. }
  8287. },
  8288. "autoload": {
  8289. "psr-4": {
  8290. "Webmozart\\Assert\\": "src/"
  8291. }
  8292. },
  8293. "notification-url": "https://packagist.org/downloads/",
  8294. "license": [
  8295. "MIT"
  8296. ],
  8297. "authors": [
  8298. {
  8299. "name": "Bernhard Schussek",
  8300. "email": "bschussek@gmail.com"
  8301. }
  8302. ],
  8303. "description": "Assertions to validate method input/output with nice error messages.",
  8304. "keywords": [
  8305. "assert",
  8306. "check",
  8307. "validate"
  8308. ],
  8309. "support": {
  8310. "issues": "https://github.com/webmozarts/assert/issues",
  8311. "source": "https://github.com/webmozarts/assert/tree/1.11.0"
  8312. },
  8313. "time": "2022-06-03T18:03:27+00:00"
  8314. }
  8315. ],
  8316. "packages-dev": [
  8317. {
  8318. "name": "doctrine/instantiator",
  8319. "version": "1.4.0",
  8320. "source": {
  8321. "type": "git",
  8322. "url": "https://github.com/doctrine/instantiator.git",
  8323. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b"
  8324. },
  8325. "dist": {
  8326. "type": "zip",
  8327. "url": "https://api.github.com/repos/doctrine/instantiator/zipball/d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8328. "reference": "d56bf6102915de5702778fe20f2de3b2fe570b5b",
  8329. "shasum": "",
  8330. "mirrors": [
  8331. {
  8332. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8333. "preferred": true
  8334. }
  8335. ]
  8336. },
  8337. "require": {
  8338. "php": "^7.1 || ^8.0"
  8339. },
  8340. "require-dev": {
  8341. "doctrine/coding-standard": "^8.0",
  8342. "ext-pdo": "*",
  8343. "ext-phar": "*",
  8344. "phpbench/phpbench": "^0.13 || 1.0.0-alpha2",
  8345. "phpstan/phpstan": "^0.12",
  8346. "phpstan/phpstan-phpunit": "^0.12",
  8347. "phpunit/phpunit": "^7.0 || ^8.0 || ^9.0"
  8348. },
  8349. "type": "library",
  8350. "autoload": {
  8351. "psr-4": {
  8352. "Doctrine\\Instantiator\\": "src/Doctrine/Instantiator/"
  8353. }
  8354. },
  8355. "notification-url": "https://packagist.org/downloads/",
  8356. "license": [
  8357. "MIT"
  8358. ],
  8359. "authors": [
  8360. {
  8361. "name": "Marco Pivetta",
  8362. "email": "ocramius@gmail.com",
  8363. "homepage": "https://ocramius.github.io/"
  8364. }
  8365. ],
  8366. "description": "A small, lightweight utility to instantiate objects in PHP without invoking their constructors",
  8367. "homepage": "https://www.doctrine-project.org/projects/instantiator.html",
  8368. "keywords": [
  8369. "constructor",
  8370. "instantiate"
  8371. ],
  8372. "time": "2020-11-10T18:47:58+00:00"
  8373. },
  8374. {
  8375. "name": "fzaninotto/faker",
  8376. "version": "v1.9.2",
  8377. "source": {
  8378. "type": "git",
  8379. "url": "https://github.com/fzaninotto/Faker.git",
  8380. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e"
  8381. },
  8382. "dist": {
  8383. "type": "zip",
  8384. "url": "https://api.github.com/repos/fzaninotto/Faker/zipball/848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8385. "reference": "848d8125239d7dbf8ab25cb7f054f1a630e68c2e",
  8386. "shasum": "",
  8387. "mirrors": [
  8388. {
  8389. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8390. "preferred": true
  8391. }
  8392. ]
  8393. },
  8394. "require": {
  8395. "php": "^5.3.3 || ^7.0"
  8396. },
  8397. "require-dev": {
  8398. "ext-intl": "*",
  8399. "phpunit/phpunit": "^4.8.35 || ^5.7",
  8400. "squizlabs/php_codesniffer": "^2.9.2"
  8401. },
  8402. "type": "library",
  8403. "extra": {
  8404. "branch-alias": {
  8405. "dev-master": "1.9-dev"
  8406. }
  8407. },
  8408. "autoload": {
  8409. "psr-4": {
  8410. "Faker\\": "src/Faker/"
  8411. }
  8412. },
  8413. "notification-url": "https://packagist.org/downloads/",
  8414. "license": [
  8415. "MIT"
  8416. ],
  8417. "authors": [
  8418. {
  8419. "name": "François Zaninotto"
  8420. }
  8421. ],
  8422. "description": "Faker is a PHP library that generates fake data for you.",
  8423. "keywords": [
  8424. "data",
  8425. "faker",
  8426. "fixtures"
  8427. ],
  8428. "abandoned": true,
  8429. "time": "2020-12-11T09:56:16+00:00"
  8430. },
  8431. {
  8432. "name": "hamcrest/hamcrest-php",
  8433. "version": "v2.0.1",
  8434. "source": {
  8435. "type": "git",
  8436. "url": "https://github.com/hamcrest/hamcrest-php.git",
  8437. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3"
  8438. },
  8439. "dist": {
  8440. "type": "zip",
  8441. "url": "https://api.github.com/repos/hamcrest/hamcrest-php/zipball/8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8442. "reference": "8c3d0a3f6af734494ad8f6fbbee0ba92422859f3",
  8443. "shasum": "",
  8444. "mirrors": [
  8445. {
  8446. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8447. "preferred": true
  8448. }
  8449. ]
  8450. },
  8451. "require": {
  8452. "php": "^5.3|^7.0|^8.0"
  8453. },
  8454. "replace": {
  8455. "cordoval/hamcrest-php": "*",
  8456. "davedevelopment/hamcrest-php": "*",
  8457. "kodova/hamcrest-php": "*"
  8458. },
  8459. "require-dev": {
  8460. "phpunit/php-file-iterator": "^1.4 || ^2.0",
  8461. "phpunit/phpunit": "^4.8.36 || ^5.7 || ^6.5 || ^7.0"
  8462. },
  8463. "type": "library",
  8464. "extra": {
  8465. "branch-alias": {
  8466. "dev-master": "2.1-dev"
  8467. }
  8468. },
  8469. "autoload": {
  8470. "classmap": [
  8471. "hamcrest"
  8472. ]
  8473. },
  8474. "notification-url": "https://packagist.org/downloads/",
  8475. "license": [
  8476. "BSD-3-Clause"
  8477. ],
  8478. "description": "This is the PHP port of Hamcrest Matchers",
  8479. "keywords": [
  8480. "test"
  8481. ],
  8482. "time": "2020-07-09T08:09:16+00:00"
  8483. },
  8484. {
  8485. "name": "mockery/mockery",
  8486. "version": "1.4.3",
  8487. "source": {
  8488. "type": "git",
  8489. "url": "https://github.com/mockery/mockery.git",
  8490. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea"
  8491. },
  8492. "dist": {
  8493. "type": "zip",
  8494. "url": "https://api.github.com/repos/mockery/mockery/zipball/d1339f64479af1bee0e82a0413813fe5345a54ea",
  8495. "reference": "d1339f64479af1bee0e82a0413813fe5345a54ea",
  8496. "shasum": "",
  8497. "mirrors": [
  8498. {
  8499. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8500. "preferred": true
  8501. }
  8502. ]
  8503. },
  8504. "require": {
  8505. "hamcrest/hamcrest-php": "^2.0.1",
  8506. "lib-pcre": ">=7.0",
  8507. "php": "^7.3 || ^8.0"
  8508. },
  8509. "conflict": {
  8510. "phpunit/phpunit": "<8.0"
  8511. },
  8512. "require-dev": {
  8513. "phpunit/phpunit": "^8.5 || ^9.3"
  8514. },
  8515. "type": "library",
  8516. "extra": {
  8517. "branch-alias": {
  8518. "dev-master": "1.4.x-dev"
  8519. }
  8520. },
  8521. "autoload": {
  8522. "psr-0": {
  8523. "Mockery": "library/"
  8524. }
  8525. },
  8526. "notification-url": "https://packagist.org/downloads/",
  8527. "license": [
  8528. "BSD-3-Clause"
  8529. ],
  8530. "authors": [
  8531. {
  8532. "name": "Pádraic Brady",
  8533. "email": "padraic.brady@gmail.com",
  8534. "homepage": "http://blog.astrumfutura.com"
  8535. },
  8536. {
  8537. "name": "Dave Marshall",
  8538. "email": "dave.marshall@atstsolutions.co.uk",
  8539. "homepage": "http://davedevelopment.co.uk"
  8540. }
  8541. ],
  8542. "description": "Mockery is a simple yet flexible PHP mock object framework",
  8543. "homepage": "https://github.com/mockery/mockery",
  8544. "keywords": [
  8545. "BDD",
  8546. "TDD",
  8547. "library",
  8548. "mock",
  8549. "mock objects",
  8550. "mockery",
  8551. "stub",
  8552. "test",
  8553. "test double",
  8554. "testing"
  8555. ],
  8556. "time": "2021-02-24T09:51:49+00:00"
  8557. },
  8558. {
  8559. "name": "myclabs/deep-copy",
  8560. "version": "1.10.2",
  8561. "source": {
  8562. "type": "git",
  8563. "url": "https://github.com/myclabs/DeepCopy.git",
  8564. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220"
  8565. },
  8566. "dist": {
  8567. "type": "zip",
  8568. "url": "https://api.github.com/repos/myclabs/DeepCopy/zipball/776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8569. "reference": "776f831124e9c62e1a2c601ecc52e776d8bb7220",
  8570. "shasum": "",
  8571. "mirrors": [
  8572. {
  8573. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8574. "preferred": true
  8575. }
  8576. ]
  8577. },
  8578. "require": {
  8579. "php": "^7.1 || ^8.0"
  8580. },
  8581. "replace": {
  8582. "myclabs/deep-copy": "self.version"
  8583. },
  8584. "require-dev": {
  8585. "doctrine/collections": "^1.0",
  8586. "doctrine/common": "^2.6",
  8587. "phpunit/phpunit": "^7.1"
  8588. },
  8589. "type": "library",
  8590. "autoload": {
  8591. "psr-4": {
  8592. "DeepCopy\\": "src/DeepCopy/"
  8593. },
  8594. "files": [
  8595. "src/DeepCopy/deep_copy.php"
  8596. ]
  8597. },
  8598. "notification-url": "https://packagist.org/downloads/",
  8599. "license": [
  8600. "MIT"
  8601. ],
  8602. "description": "Create deep copies (clones) of your objects",
  8603. "keywords": [
  8604. "clone",
  8605. "copy",
  8606. "duplicate",
  8607. "object",
  8608. "object graph"
  8609. ],
  8610. "time": "2020-11-13T09:40:50+00:00"
  8611. },
  8612. {
  8613. "name": "phar-io/manifest",
  8614. "version": "2.0.1",
  8615. "source": {
  8616. "type": "git",
  8617. "url": "https://github.com/phar-io/manifest.git",
  8618. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133"
  8619. },
  8620. "dist": {
  8621. "type": "zip",
  8622. "url": "https://api.github.com/repos/phar-io/manifest/zipball/85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8623. "reference": "85265efd3af7ba3ca4b2a2c34dbfc5788dd29133",
  8624. "shasum": "",
  8625. "mirrors": [
  8626. {
  8627. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8628. "preferred": true
  8629. }
  8630. ]
  8631. },
  8632. "require": {
  8633. "ext-dom": "*",
  8634. "ext-phar": "*",
  8635. "ext-xmlwriter": "*",
  8636. "phar-io/version": "^3.0.1",
  8637. "php": "^7.2 || ^8.0"
  8638. },
  8639. "type": "library",
  8640. "extra": {
  8641. "branch-alias": {
  8642. "dev-master": "2.0.x-dev"
  8643. }
  8644. },
  8645. "autoload": {
  8646. "classmap": [
  8647. "src/"
  8648. ]
  8649. },
  8650. "notification-url": "https://packagist.org/downloads/",
  8651. "license": [
  8652. "BSD-3-Clause"
  8653. ],
  8654. "authors": [
  8655. {
  8656. "name": "Arne Blankerts",
  8657. "email": "arne@blankerts.de",
  8658. "role": "Developer"
  8659. },
  8660. {
  8661. "name": "Sebastian Heuer",
  8662. "email": "sebastian@phpeople.de",
  8663. "role": "Developer"
  8664. },
  8665. {
  8666. "name": "Sebastian Bergmann",
  8667. "email": "sebastian@phpunit.de",
  8668. "role": "Developer"
  8669. }
  8670. ],
  8671. "description": "Component for reading phar.io manifest information from a PHP Archive (PHAR)",
  8672. "time": "2020-06-27T14:33:11+00:00"
  8673. },
  8674. {
  8675. "name": "phar-io/version",
  8676. "version": "3.1.0",
  8677. "source": {
  8678. "type": "git",
  8679. "url": "https://github.com/phar-io/version.git",
  8680. "reference": "bae7c545bef187884426f042434e561ab1ddb182"
  8681. },
  8682. "dist": {
  8683. "type": "zip",
  8684. "url": "https://api.github.com/repos/phar-io/version/zipball/bae7c545bef187884426f042434e561ab1ddb182",
  8685. "reference": "bae7c545bef187884426f042434e561ab1ddb182",
  8686. "shasum": "",
  8687. "mirrors": [
  8688. {
  8689. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8690. "preferred": true
  8691. }
  8692. ]
  8693. },
  8694. "require": {
  8695. "php": "^7.2 || ^8.0"
  8696. },
  8697. "type": "library",
  8698. "autoload": {
  8699. "classmap": [
  8700. "src/"
  8701. ]
  8702. },
  8703. "notification-url": "https://packagist.org/downloads/",
  8704. "license": [
  8705. "BSD-3-Clause"
  8706. ],
  8707. "authors": [
  8708. {
  8709. "name": "Arne Blankerts",
  8710. "email": "arne@blankerts.de",
  8711. "role": "Developer"
  8712. },
  8713. {
  8714. "name": "Sebastian Heuer",
  8715. "email": "sebastian@phpeople.de",
  8716. "role": "Developer"
  8717. },
  8718. {
  8719. "name": "Sebastian Bergmann",
  8720. "email": "sebastian@phpunit.de",
  8721. "role": "Developer"
  8722. }
  8723. ],
  8724. "description": "Library for handling version information and constraints",
  8725. "time": "2021-02-23T14:00:09+00:00"
  8726. },
  8727. {
  8728. "name": "phpspec/prophecy",
  8729. "version": "v1.10.3",
  8730. "source": {
  8731. "type": "git",
  8732. "url": "https://github.com/phpspec/prophecy.git",
  8733. "reference": "451c3cd1418cf640de218914901e51b064abb093"
  8734. },
  8735. "dist": {
  8736. "type": "zip",
  8737. "url": "https://api.github.com/repos/phpspec/prophecy/zipball/451c3cd1418cf640de218914901e51b064abb093",
  8738. "reference": "451c3cd1418cf640de218914901e51b064abb093",
  8739. "shasum": "",
  8740. "mirrors": [
  8741. {
  8742. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8743. "preferred": true
  8744. }
  8745. ]
  8746. },
  8747. "require": {
  8748. "doctrine/instantiator": "^1.0.2",
  8749. "php": "^5.3|^7.0",
  8750. "phpdocumentor/reflection-docblock": "^2.0|^3.0.2|^4.0|^5.0",
  8751. "sebastian/comparator": "^1.2.3|^2.0|^3.0|^4.0",
  8752. "sebastian/recursion-context": "^1.0|^2.0|^3.0|^4.0"
  8753. },
  8754. "require-dev": {
  8755. "phpspec/phpspec": "^2.5 || ^3.2",
  8756. "phpunit/phpunit": "^4.8.35 || ^5.7 || ^6.5 || ^7.1"
  8757. },
  8758. "type": "library",
  8759. "extra": {
  8760. "branch-alias": {
  8761. "dev-master": "1.10.x-dev"
  8762. }
  8763. },
  8764. "autoload": {
  8765. "psr-4": {
  8766. "Prophecy\\": "src/Prophecy"
  8767. }
  8768. },
  8769. "notification-url": "https://packagist.org/downloads/",
  8770. "license": [
  8771. "MIT"
  8772. ],
  8773. "authors": [
  8774. {
  8775. "name": "Konstantin Kudryashov",
  8776. "email": "ever.zet@gmail.com",
  8777. "homepage": "http://everzet.com"
  8778. },
  8779. {
  8780. "name": "Marcello Duarte",
  8781. "email": "marcello.duarte@gmail.com"
  8782. }
  8783. ],
  8784. "description": "Highly opinionated mocking framework for PHP 5.3+",
  8785. "homepage": "https://github.com/phpspec/prophecy",
  8786. "keywords": [
  8787. "Double",
  8788. "Dummy",
  8789. "fake",
  8790. "mock",
  8791. "spy",
  8792. "stub"
  8793. ],
  8794. "time": "2020-03-05T15:02:03+00:00"
  8795. },
  8796. {
  8797. "name": "phpunit/php-code-coverage",
  8798. "version": "7.0.14",
  8799. "source": {
  8800. "type": "git",
  8801. "url": "https://github.com/sebastianbergmann/php-code-coverage.git",
  8802. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c"
  8803. },
  8804. "dist": {
  8805. "type": "zip",
  8806. "url": "https://api.github.com/repos/sebastianbergmann/php-code-coverage/zipball/bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8807. "reference": "bb7c9a210c72e4709cdde67f8b7362f672f2225c",
  8808. "shasum": "",
  8809. "mirrors": [
  8810. {
  8811. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8812. "preferred": true
  8813. }
  8814. ]
  8815. },
  8816. "require": {
  8817. "ext-dom": "*",
  8818. "ext-xmlwriter": "*",
  8819. "php": ">=7.2",
  8820. "phpunit/php-file-iterator": "^2.0.2",
  8821. "phpunit/php-text-template": "^1.2.1",
  8822. "phpunit/php-token-stream": "^3.1.1 || ^4.0",
  8823. "sebastian/code-unit-reverse-lookup": "^1.0.1",
  8824. "sebastian/environment": "^4.2.2",
  8825. "sebastian/version": "^2.0.1",
  8826. "theseer/tokenizer": "^1.1.3"
  8827. },
  8828. "require-dev": {
  8829. "phpunit/phpunit": "^8.2.2"
  8830. },
  8831. "suggest": {
  8832. "ext-xdebug": "^2.7.2"
  8833. },
  8834. "type": "library",
  8835. "extra": {
  8836. "branch-alias": {
  8837. "dev-master": "7.0-dev"
  8838. }
  8839. },
  8840. "autoload": {
  8841. "classmap": [
  8842. "src/"
  8843. ]
  8844. },
  8845. "notification-url": "https://packagist.org/downloads/",
  8846. "license": [
  8847. "BSD-3-Clause"
  8848. ],
  8849. "authors": [
  8850. {
  8851. "name": "Sebastian Bergmann",
  8852. "email": "sebastian@phpunit.de",
  8853. "role": "lead"
  8854. }
  8855. ],
  8856. "description": "Library that provides collection, processing, and rendering functionality for PHP code coverage information.",
  8857. "homepage": "https://github.com/sebastianbergmann/php-code-coverage",
  8858. "keywords": [
  8859. "coverage",
  8860. "testing",
  8861. "xunit"
  8862. ],
  8863. "time": "2020-12-02T13:39:03+00:00"
  8864. },
  8865. {
  8866. "name": "phpunit/php-file-iterator",
  8867. "version": "2.0.3",
  8868. "source": {
  8869. "type": "git",
  8870. "url": "https://github.com/sebastianbergmann/php-file-iterator.git",
  8871. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357"
  8872. },
  8873. "dist": {
  8874. "type": "zip",
  8875. "url": "https://api.github.com/repos/sebastianbergmann/php-file-iterator/zipball/4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8876. "reference": "4b49fb70f067272b659ef0174ff9ca40fdaa6357",
  8877. "shasum": "",
  8878. "mirrors": [
  8879. {
  8880. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8881. "preferred": true
  8882. }
  8883. ]
  8884. },
  8885. "require": {
  8886. "php": ">=7.1"
  8887. },
  8888. "require-dev": {
  8889. "phpunit/phpunit": "^8.5"
  8890. },
  8891. "type": "library",
  8892. "extra": {
  8893. "branch-alias": {
  8894. "dev-master": "2.0.x-dev"
  8895. }
  8896. },
  8897. "autoload": {
  8898. "classmap": [
  8899. "src/"
  8900. ]
  8901. },
  8902. "notification-url": "https://packagist.org/downloads/",
  8903. "license": [
  8904. "BSD-3-Clause"
  8905. ],
  8906. "authors": [
  8907. {
  8908. "name": "Sebastian Bergmann",
  8909. "email": "sebastian@phpunit.de",
  8910. "role": "lead"
  8911. }
  8912. ],
  8913. "description": "FilterIterator implementation that filters files based on a list of suffixes.",
  8914. "homepage": "https://github.com/sebastianbergmann/php-file-iterator/",
  8915. "keywords": [
  8916. "filesystem",
  8917. "iterator"
  8918. ],
  8919. "time": "2020-11-30T08:25:21+00:00"
  8920. },
  8921. {
  8922. "name": "phpunit/php-text-template",
  8923. "version": "1.2.1",
  8924. "source": {
  8925. "type": "git",
  8926. "url": "https://github.com/sebastianbergmann/php-text-template.git",
  8927. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686"
  8928. },
  8929. "dist": {
  8930. "type": "zip",
  8931. "url": "https://api.github.com/repos/sebastianbergmann/php-text-template/zipball/31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8932. "reference": "31f8b717e51d9a2afca6c9f046f5d69fc27c8686",
  8933. "shasum": "",
  8934. "mirrors": [
  8935. {
  8936. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8937. "preferred": true
  8938. }
  8939. ]
  8940. },
  8941. "require": {
  8942. "php": ">=5.3.3"
  8943. },
  8944. "type": "library",
  8945. "autoload": {
  8946. "classmap": [
  8947. "src/"
  8948. ]
  8949. },
  8950. "notification-url": "https://packagist.org/downloads/",
  8951. "license": [
  8952. "BSD-3-Clause"
  8953. ],
  8954. "authors": [
  8955. {
  8956. "name": "Sebastian Bergmann",
  8957. "email": "sebastian@phpunit.de",
  8958. "role": "lead"
  8959. }
  8960. ],
  8961. "description": "Simple template engine.",
  8962. "homepage": "https://github.com/sebastianbergmann/php-text-template/",
  8963. "keywords": [
  8964. "template"
  8965. ],
  8966. "time": "2015-06-21T13:50:34+00:00"
  8967. },
  8968. {
  8969. "name": "phpunit/php-timer",
  8970. "version": "2.1.3",
  8971. "source": {
  8972. "type": "git",
  8973. "url": "https://github.com/sebastianbergmann/php-timer.git",
  8974. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662"
  8975. },
  8976. "dist": {
  8977. "type": "zip",
  8978. "url": "https://api.github.com/repos/sebastianbergmann/php-timer/zipball/2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  8979. "reference": "2454ae1765516d20c4ffe103d85a58a9a3bd5662",
  8980. "shasum": "",
  8981. "mirrors": [
  8982. {
  8983. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  8984. "preferred": true
  8985. }
  8986. ]
  8987. },
  8988. "require": {
  8989. "php": ">=7.1"
  8990. },
  8991. "require-dev": {
  8992. "phpunit/phpunit": "^8.5"
  8993. },
  8994. "type": "library",
  8995. "extra": {
  8996. "branch-alias": {
  8997. "dev-master": "2.1-dev"
  8998. }
  8999. },
  9000. "autoload": {
  9001. "classmap": [
  9002. "src/"
  9003. ]
  9004. },
  9005. "notification-url": "https://packagist.org/downloads/",
  9006. "license": [
  9007. "BSD-3-Clause"
  9008. ],
  9009. "authors": [
  9010. {
  9011. "name": "Sebastian Bergmann",
  9012. "email": "sebastian@phpunit.de",
  9013. "role": "lead"
  9014. }
  9015. ],
  9016. "description": "Utility class for timing",
  9017. "homepage": "https://github.com/sebastianbergmann/php-timer/",
  9018. "keywords": [
  9019. "timer"
  9020. ],
  9021. "time": "2020-11-30T08:20:02+00:00"
  9022. },
  9023. {
  9024. "name": "phpunit/php-token-stream",
  9025. "version": "4.0.4",
  9026. "source": {
  9027. "type": "git",
  9028. "url": "https://github.com/sebastianbergmann/php-token-stream.git",
  9029. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3"
  9030. },
  9031. "dist": {
  9032. "type": "zip",
  9033. "url": "https://api.github.com/repos/sebastianbergmann/php-token-stream/zipball/a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9034. "reference": "a853a0e183b9db7eed023d7933a858fa1c8d25a3",
  9035. "shasum": "",
  9036. "mirrors": [
  9037. {
  9038. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9039. "preferred": true
  9040. }
  9041. ]
  9042. },
  9043. "require": {
  9044. "ext-tokenizer": "*",
  9045. "php": "^7.3 || ^8.0"
  9046. },
  9047. "require-dev": {
  9048. "phpunit/phpunit": "^9.0"
  9049. },
  9050. "type": "library",
  9051. "extra": {
  9052. "branch-alias": {
  9053. "dev-master": "4.0-dev"
  9054. }
  9055. },
  9056. "autoload": {
  9057. "classmap": [
  9058. "src/"
  9059. ]
  9060. },
  9061. "notification-url": "https://packagist.org/downloads/",
  9062. "license": [
  9063. "BSD-3-Clause"
  9064. ],
  9065. "authors": [
  9066. {
  9067. "name": "Sebastian Bergmann",
  9068. "email": "sebastian@phpunit.de"
  9069. }
  9070. ],
  9071. "description": "Wrapper around PHP's tokenizer extension.",
  9072. "homepage": "https://github.com/sebastianbergmann/php-token-stream/",
  9073. "keywords": [
  9074. "tokenizer"
  9075. ],
  9076. "abandoned": true,
  9077. "time": "2020-08-04T08:28:15+00:00"
  9078. },
  9079. {
  9080. "name": "phpunit/phpunit",
  9081. "version": "8.5.15",
  9082. "source": {
  9083. "type": "git",
  9084. "url": "https://github.com/sebastianbergmann/phpunit.git",
  9085. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef"
  9086. },
  9087. "dist": {
  9088. "type": "zip",
  9089. "url": "https://api.github.com/repos/sebastianbergmann/phpunit/zipball/038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  9090. "reference": "038d4196d8e8cb405cd5e82cedfe413ad6eef9ef",
  9091. "shasum": "",
  9092. "mirrors": [
  9093. {
  9094. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9095. "preferred": true
  9096. }
  9097. ]
  9098. },
  9099. "require": {
  9100. "doctrine/instantiator": "^1.3.1",
  9101. "ext-dom": "*",
  9102. "ext-json": "*",
  9103. "ext-libxml": "*",
  9104. "ext-mbstring": "*",
  9105. "ext-xml": "*",
  9106. "ext-xmlwriter": "*",
  9107. "myclabs/deep-copy": "^1.10.0",
  9108. "phar-io/manifest": "^2.0.1",
  9109. "phar-io/version": "^3.0.2",
  9110. "php": ">=7.2",
  9111. "phpspec/prophecy": "^1.10.3",
  9112. "phpunit/php-code-coverage": "^7.0.12",
  9113. "phpunit/php-file-iterator": "^2.0.2",
  9114. "phpunit/php-text-template": "^1.2.1",
  9115. "phpunit/php-timer": "^2.1.2",
  9116. "sebastian/comparator": "^3.0.2",
  9117. "sebastian/diff": "^3.0.2",
  9118. "sebastian/environment": "^4.2.3",
  9119. "sebastian/exporter": "^3.1.2",
  9120. "sebastian/global-state": "^3.0.0",
  9121. "sebastian/object-enumerator": "^3.0.3",
  9122. "sebastian/resource-operations": "^2.0.1",
  9123. "sebastian/type": "^1.1.3",
  9124. "sebastian/version": "^2.0.1"
  9125. },
  9126. "require-dev": {
  9127. "ext-pdo": "*"
  9128. },
  9129. "suggest": {
  9130. "ext-soap": "*",
  9131. "ext-xdebug": "*",
  9132. "phpunit/php-invoker": "^2.0.0"
  9133. },
  9134. "bin": [
  9135. "phpunit"
  9136. ],
  9137. "type": "library",
  9138. "extra": {
  9139. "branch-alias": {
  9140. "dev-master": "8.5-dev"
  9141. }
  9142. },
  9143. "autoload": {
  9144. "classmap": [
  9145. "src/"
  9146. ]
  9147. },
  9148. "notification-url": "https://packagist.org/downloads/",
  9149. "license": [
  9150. "BSD-3-Clause"
  9151. ],
  9152. "authors": [
  9153. {
  9154. "name": "Sebastian Bergmann",
  9155. "email": "sebastian@phpunit.de",
  9156. "role": "lead"
  9157. }
  9158. ],
  9159. "description": "The PHP Unit Testing framework.",
  9160. "homepage": "https://phpunit.de/",
  9161. "keywords": [
  9162. "phpunit",
  9163. "testing",
  9164. "xunit"
  9165. ],
  9166. "time": "2021-03-17T07:27:54+00:00"
  9167. },
  9168. {
  9169. "name": "sebastian/code-unit-reverse-lookup",
  9170. "version": "1.0.2",
  9171. "source": {
  9172. "type": "git",
  9173. "url": "https://github.com/sebastianbergmann/code-unit-reverse-lookup.git",
  9174. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619"
  9175. },
  9176. "dist": {
  9177. "type": "zip",
  9178. "url": "https://api.github.com/repos/sebastianbergmann/code-unit-reverse-lookup/zipball/1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9179. "reference": "1de8cd5c010cb153fcd68b8d0f64606f523f7619",
  9180. "shasum": "",
  9181. "mirrors": [
  9182. {
  9183. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9184. "preferred": true
  9185. }
  9186. ]
  9187. },
  9188. "require": {
  9189. "php": ">=5.6"
  9190. },
  9191. "require-dev": {
  9192. "phpunit/phpunit": "^8.5"
  9193. },
  9194. "type": "library",
  9195. "extra": {
  9196. "branch-alias": {
  9197. "dev-master": "1.0.x-dev"
  9198. }
  9199. },
  9200. "autoload": {
  9201. "classmap": [
  9202. "src/"
  9203. ]
  9204. },
  9205. "notification-url": "https://packagist.org/downloads/",
  9206. "license": [
  9207. "BSD-3-Clause"
  9208. ],
  9209. "authors": [
  9210. {
  9211. "name": "Sebastian Bergmann",
  9212. "email": "sebastian@phpunit.de"
  9213. }
  9214. ],
  9215. "description": "Looks up which function or method a line of code belongs to",
  9216. "homepage": "https://github.com/sebastianbergmann/code-unit-reverse-lookup/",
  9217. "time": "2020-11-30T08:15:22+00:00"
  9218. },
  9219. {
  9220. "name": "sebastian/comparator",
  9221. "version": "3.0.3",
  9222. "source": {
  9223. "type": "git",
  9224. "url": "https://github.com/sebastianbergmann/comparator.git",
  9225. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758"
  9226. },
  9227. "dist": {
  9228. "type": "zip",
  9229. "url": "https://api.github.com/repos/sebastianbergmann/comparator/zipball/1071dfcef776a57013124ff35e1fc41ccd294758",
  9230. "reference": "1071dfcef776a57013124ff35e1fc41ccd294758",
  9231. "shasum": "",
  9232. "mirrors": [
  9233. {
  9234. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9235. "preferred": true
  9236. }
  9237. ]
  9238. },
  9239. "require": {
  9240. "php": ">=7.1",
  9241. "sebastian/diff": "^3.0",
  9242. "sebastian/exporter": "^3.1"
  9243. },
  9244. "require-dev": {
  9245. "phpunit/phpunit": "^8.5"
  9246. },
  9247. "type": "library",
  9248. "extra": {
  9249. "branch-alias": {
  9250. "dev-master": "3.0-dev"
  9251. }
  9252. },
  9253. "autoload": {
  9254. "classmap": [
  9255. "src/"
  9256. ]
  9257. },
  9258. "notification-url": "https://packagist.org/downloads/",
  9259. "license": [
  9260. "BSD-3-Clause"
  9261. ],
  9262. "authors": [
  9263. {
  9264. "name": "Sebastian Bergmann",
  9265. "email": "sebastian@phpunit.de"
  9266. },
  9267. {
  9268. "name": "Jeff Welch",
  9269. "email": "whatthejeff@gmail.com"
  9270. },
  9271. {
  9272. "name": "Volker Dusch",
  9273. "email": "github@wallbash.com"
  9274. },
  9275. {
  9276. "name": "Bernhard Schussek",
  9277. "email": "bschussek@2bepublished.at"
  9278. }
  9279. ],
  9280. "description": "Provides the functionality to compare PHP values for equality",
  9281. "homepage": "https://github.com/sebastianbergmann/comparator",
  9282. "keywords": [
  9283. "comparator",
  9284. "compare",
  9285. "equality"
  9286. ],
  9287. "time": "2020-11-30T08:04:30+00:00"
  9288. },
  9289. {
  9290. "name": "sebastian/diff",
  9291. "version": "3.0.3",
  9292. "source": {
  9293. "type": "git",
  9294. "url": "https://github.com/sebastianbergmann/diff.git",
  9295. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211"
  9296. },
  9297. "dist": {
  9298. "type": "zip",
  9299. "url": "https://api.github.com/repos/sebastianbergmann/diff/zipball/14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9300. "reference": "14f72dd46eaf2f2293cbe79c93cc0bc43161a211",
  9301. "shasum": "",
  9302. "mirrors": [
  9303. {
  9304. "url": "https://mirrors.aliyun.com/composer/dists/%package%/%reference%.%type%",
  9305. "preferred": true
  9306. }
  9307. ]
  9308. },
  9309. "require": {
  9310. "php": ">=7.1"
  9311. },
  9312. "require-dev": {
  9313. "phpunit/phpunit": "^7.5 || ^8.0",
  9314. "symfony/process": "^2 || ^3.3 || ^4"
  9315. },
  9316. "type": "library",
  9317. "extra": {
  9318. "branch-alias": {
  9319. "dev-master": "3.0-dev"
  9320. }
  9321. },
  9322. "autoload": {
  9323. "classmap": [
  9324. "src/"
  9325. ]
  9326. },
  9327. "notification-url": "https://packagist.org/downloads/",
  9328. "license": [
  9329. "BSD-3-Clause"
  9330. ],
  9331. "authors": [
  9332. {
  9333. "name": "Sebastian Bergmann",
  9334. "email": "sebastian@phpunit.de"
  9335. },
  9336. {
  9337. "name": "Kore Nordmann",
  9338. "email": "mail@kore-nordmann.de"
  9339. }
  9340. ],
  9341. "description": "Diff implementation",
  9342. "homepage": "https://github.com/sebastianbergmann/diff",
  9343. "keywords": [
  9344. "diff",
  9345. "udiff",
  9346. "unidiff",
  9347. "unified diff"
  9348. ],
  9349. "support": {
  9350. "issues": "https://github.com/sebastianbergmann/diff/issues",
  9351. "source": "https://github.com/sebastianbergmann/diff/tree/3.0.3"
  9352. },
  9353. "funding": [
  9354. {
  9355. "url": "https://github.com/sebastianbergmann",
  9356. "type": "github"
  9357. }
  9358. ],
  9359. "time": "2020-11-30T07:59:04+00:00"
  9360. },
  9361. {
  9362. "name": "sebastian/environment",
  9363. "version": "4.2.4",
  9364. "source": {
  9365. "type": "git",
  9366. "url": "https://github.com/sebastianbergmann/environment.git",
  9367. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0"
  9368. },
  9369. "dist": {
  9370. "type": "zip",
  9371. "url": "https://api.github.com/repos/sebastianbergmann/environment/zipball/d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9372. "reference": "d47bbbad83711771f167c72d4e3f25f7fcc1f8b0",
  9373. "shasum": "",
  9374. "mirrors": [
  9375. {
  9376. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9377. "preferred": true
  9378. }
  9379. ]
  9380. },
  9381. "require": {
  9382. "php": ">=7.1"
  9383. },
  9384. "require-dev": {
  9385. "phpunit/phpunit": "^7.5"
  9386. },
  9387. "suggest": {
  9388. "ext-posix": "*"
  9389. },
  9390. "type": "library",
  9391. "extra": {
  9392. "branch-alias": {
  9393. "dev-master": "4.2-dev"
  9394. }
  9395. },
  9396. "autoload": {
  9397. "classmap": [
  9398. "src/"
  9399. ]
  9400. },
  9401. "notification-url": "https://packagist.org/downloads/",
  9402. "license": [
  9403. "BSD-3-Clause"
  9404. ],
  9405. "authors": [
  9406. {
  9407. "name": "Sebastian Bergmann",
  9408. "email": "sebastian@phpunit.de"
  9409. }
  9410. ],
  9411. "description": "Provides functionality to handle HHVM/PHP environments",
  9412. "homepage": "http://www.github.com/sebastianbergmann/environment",
  9413. "keywords": [
  9414. "Xdebug",
  9415. "environment",
  9416. "hhvm"
  9417. ],
  9418. "time": "2020-11-30T07:53:42+00:00"
  9419. },
  9420. {
  9421. "name": "sebastian/exporter",
  9422. "version": "3.1.3",
  9423. "source": {
  9424. "type": "git",
  9425. "url": "https://github.com/sebastianbergmann/exporter.git",
  9426. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e"
  9427. },
  9428. "dist": {
  9429. "type": "zip",
  9430. "url": "https://api.github.com/repos/sebastianbergmann/exporter/zipball/6b853149eab67d4da22291d36f5b0631c0fd856e",
  9431. "reference": "6b853149eab67d4da22291d36f5b0631c0fd856e",
  9432. "shasum": "",
  9433. "mirrors": [
  9434. {
  9435. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9436. "preferred": true
  9437. }
  9438. ]
  9439. },
  9440. "require": {
  9441. "php": ">=7.0",
  9442. "sebastian/recursion-context": "^3.0"
  9443. },
  9444. "require-dev": {
  9445. "ext-mbstring": "*",
  9446. "phpunit/phpunit": "^6.0"
  9447. },
  9448. "type": "library",
  9449. "extra": {
  9450. "branch-alias": {
  9451. "dev-master": "3.1.x-dev"
  9452. }
  9453. },
  9454. "autoload": {
  9455. "classmap": [
  9456. "src/"
  9457. ]
  9458. },
  9459. "notification-url": "https://packagist.org/downloads/",
  9460. "license": [
  9461. "BSD-3-Clause"
  9462. ],
  9463. "authors": [
  9464. {
  9465. "name": "Sebastian Bergmann",
  9466. "email": "sebastian@phpunit.de"
  9467. },
  9468. {
  9469. "name": "Jeff Welch",
  9470. "email": "whatthejeff@gmail.com"
  9471. },
  9472. {
  9473. "name": "Volker Dusch",
  9474. "email": "github@wallbash.com"
  9475. },
  9476. {
  9477. "name": "Adam Harvey",
  9478. "email": "aharvey@php.net"
  9479. },
  9480. {
  9481. "name": "Bernhard Schussek",
  9482. "email": "bschussek@gmail.com"
  9483. }
  9484. ],
  9485. "description": "Provides the functionality to export PHP variables for visualization",
  9486. "homepage": "http://www.github.com/sebastianbergmann/exporter",
  9487. "keywords": [
  9488. "export",
  9489. "exporter"
  9490. ],
  9491. "time": "2020-11-30T07:47:53+00:00"
  9492. },
  9493. {
  9494. "name": "sebastian/global-state",
  9495. "version": "3.0.1",
  9496. "source": {
  9497. "type": "git",
  9498. "url": "https://github.com/sebastianbergmann/global-state.git",
  9499. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b"
  9500. },
  9501. "dist": {
  9502. "type": "zip",
  9503. "url": "https://api.github.com/repos/sebastianbergmann/global-state/zipball/474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9504. "reference": "474fb9edb7ab891665d3bfc6317f42a0a150454b",
  9505. "shasum": "",
  9506. "mirrors": [
  9507. {
  9508. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9509. "preferred": true
  9510. }
  9511. ]
  9512. },
  9513. "require": {
  9514. "php": ">=7.2",
  9515. "sebastian/object-reflector": "^1.1.1",
  9516. "sebastian/recursion-context": "^3.0"
  9517. },
  9518. "require-dev": {
  9519. "ext-dom": "*",
  9520. "phpunit/phpunit": "^8.0"
  9521. },
  9522. "suggest": {
  9523. "ext-uopz": "*"
  9524. },
  9525. "type": "library",
  9526. "extra": {
  9527. "branch-alias": {
  9528. "dev-master": "3.0-dev"
  9529. }
  9530. },
  9531. "autoload": {
  9532. "classmap": [
  9533. "src/"
  9534. ]
  9535. },
  9536. "notification-url": "https://packagist.org/downloads/",
  9537. "license": [
  9538. "BSD-3-Clause"
  9539. ],
  9540. "authors": [
  9541. {
  9542. "name": "Sebastian Bergmann",
  9543. "email": "sebastian@phpunit.de"
  9544. }
  9545. ],
  9546. "description": "Snapshotting of global state",
  9547. "homepage": "http://www.github.com/sebastianbergmann/global-state",
  9548. "keywords": [
  9549. "global state"
  9550. ],
  9551. "time": "2020-11-30T07:43:24+00:00"
  9552. },
  9553. {
  9554. "name": "sebastian/object-enumerator",
  9555. "version": "3.0.4",
  9556. "source": {
  9557. "type": "git",
  9558. "url": "https://github.com/sebastianbergmann/object-enumerator.git",
  9559. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2"
  9560. },
  9561. "dist": {
  9562. "type": "zip",
  9563. "url": "https://api.github.com/repos/sebastianbergmann/object-enumerator/zipball/e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9564. "reference": "e67f6d32ebd0c749cf9d1dbd9f226c727043cdf2",
  9565. "shasum": "",
  9566. "mirrors": [
  9567. {
  9568. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9569. "preferred": true
  9570. }
  9571. ]
  9572. },
  9573. "require": {
  9574. "php": ">=7.0",
  9575. "sebastian/object-reflector": "^1.1.1",
  9576. "sebastian/recursion-context": "^3.0"
  9577. },
  9578. "require-dev": {
  9579. "phpunit/phpunit": "^6.0"
  9580. },
  9581. "type": "library",
  9582. "extra": {
  9583. "branch-alias": {
  9584. "dev-master": "3.0.x-dev"
  9585. }
  9586. },
  9587. "autoload": {
  9588. "classmap": [
  9589. "src/"
  9590. ]
  9591. },
  9592. "notification-url": "https://packagist.org/downloads/",
  9593. "license": [
  9594. "BSD-3-Clause"
  9595. ],
  9596. "authors": [
  9597. {
  9598. "name": "Sebastian Bergmann",
  9599. "email": "sebastian@phpunit.de"
  9600. }
  9601. ],
  9602. "description": "Traverses array structures and object graphs to enumerate all referenced objects",
  9603. "homepage": "https://github.com/sebastianbergmann/object-enumerator/",
  9604. "time": "2020-11-30T07:40:27+00:00"
  9605. },
  9606. {
  9607. "name": "sebastian/object-reflector",
  9608. "version": "1.1.2",
  9609. "source": {
  9610. "type": "git",
  9611. "url": "https://github.com/sebastianbergmann/object-reflector.git",
  9612. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d"
  9613. },
  9614. "dist": {
  9615. "type": "zip",
  9616. "url": "https://api.github.com/repos/sebastianbergmann/object-reflector/zipball/9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9617. "reference": "9b8772b9cbd456ab45d4a598d2dd1a1bced6363d",
  9618. "shasum": "",
  9619. "mirrors": [
  9620. {
  9621. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9622. "preferred": true
  9623. }
  9624. ]
  9625. },
  9626. "require": {
  9627. "php": ">=7.0"
  9628. },
  9629. "require-dev": {
  9630. "phpunit/phpunit": "^6.0"
  9631. },
  9632. "type": "library",
  9633. "extra": {
  9634. "branch-alias": {
  9635. "dev-master": "1.1-dev"
  9636. }
  9637. },
  9638. "autoload": {
  9639. "classmap": [
  9640. "src/"
  9641. ]
  9642. },
  9643. "notification-url": "https://packagist.org/downloads/",
  9644. "license": [
  9645. "BSD-3-Clause"
  9646. ],
  9647. "authors": [
  9648. {
  9649. "name": "Sebastian Bergmann",
  9650. "email": "sebastian@phpunit.de"
  9651. }
  9652. ],
  9653. "description": "Allows reflection of object attributes, including inherited and non-public ones",
  9654. "homepage": "https://github.com/sebastianbergmann/object-reflector/",
  9655. "time": "2020-11-30T07:37:18+00:00"
  9656. },
  9657. {
  9658. "name": "sebastian/recursion-context",
  9659. "version": "3.0.1",
  9660. "source": {
  9661. "type": "git",
  9662. "url": "https://github.com/sebastianbergmann/recursion-context.git",
  9663. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb"
  9664. },
  9665. "dist": {
  9666. "type": "zip",
  9667. "url": "https://api.github.com/repos/sebastianbergmann/recursion-context/zipball/367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9668. "reference": "367dcba38d6e1977be014dc4b22f47a484dac7fb",
  9669. "shasum": "",
  9670. "mirrors": [
  9671. {
  9672. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9673. "preferred": true
  9674. }
  9675. ]
  9676. },
  9677. "require": {
  9678. "php": ">=7.0"
  9679. },
  9680. "require-dev": {
  9681. "phpunit/phpunit": "^6.0"
  9682. },
  9683. "type": "library",
  9684. "extra": {
  9685. "branch-alias": {
  9686. "dev-master": "3.0.x-dev"
  9687. }
  9688. },
  9689. "autoload": {
  9690. "classmap": [
  9691. "src/"
  9692. ]
  9693. },
  9694. "notification-url": "https://packagist.org/downloads/",
  9695. "license": [
  9696. "BSD-3-Clause"
  9697. ],
  9698. "authors": [
  9699. {
  9700. "name": "Sebastian Bergmann",
  9701. "email": "sebastian@phpunit.de"
  9702. },
  9703. {
  9704. "name": "Jeff Welch",
  9705. "email": "whatthejeff@gmail.com"
  9706. },
  9707. {
  9708. "name": "Adam Harvey",
  9709. "email": "aharvey@php.net"
  9710. }
  9711. ],
  9712. "description": "Provides functionality to recursively process PHP variables",
  9713. "homepage": "http://www.github.com/sebastianbergmann/recursion-context",
  9714. "time": "2020-11-30T07:34:24+00:00"
  9715. },
  9716. {
  9717. "name": "sebastian/resource-operations",
  9718. "version": "2.0.2",
  9719. "source": {
  9720. "type": "git",
  9721. "url": "https://github.com/sebastianbergmann/resource-operations.git",
  9722. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3"
  9723. },
  9724. "dist": {
  9725. "type": "zip",
  9726. "url": "https://api.github.com/repos/sebastianbergmann/resource-operations/zipball/31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9727. "reference": "31d35ca87926450c44eae7e2611d45a7a65ea8b3",
  9728. "shasum": "",
  9729. "mirrors": [
  9730. {
  9731. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9732. "preferred": true
  9733. }
  9734. ]
  9735. },
  9736. "require": {
  9737. "php": ">=7.1"
  9738. },
  9739. "type": "library",
  9740. "extra": {
  9741. "branch-alias": {
  9742. "dev-master": "2.0-dev"
  9743. }
  9744. },
  9745. "autoload": {
  9746. "classmap": [
  9747. "src/"
  9748. ]
  9749. },
  9750. "notification-url": "https://packagist.org/downloads/",
  9751. "license": [
  9752. "BSD-3-Clause"
  9753. ],
  9754. "authors": [
  9755. {
  9756. "name": "Sebastian Bergmann",
  9757. "email": "sebastian@phpunit.de"
  9758. }
  9759. ],
  9760. "description": "Provides a list of PHP built-in functions that operate on resources",
  9761. "homepage": "https://www.github.com/sebastianbergmann/resource-operations",
  9762. "time": "2020-11-30T07:30:19+00:00"
  9763. },
  9764. {
  9765. "name": "sebastian/type",
  9766. "version": "1.1.4",
  9767. "source": {
  9768. "type": "git",
  9769. "url": "https://github.com/sebastianbergmann/type.git",
  9770. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4"
  9771. },
  9772. "dist": {
  9773. "type": "zip",
  9774. "url": "https://api.github.com/repos/sebastianbergmann/type/zipball/0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  9775. "reference": "0150cfbc4495ed2df3872fb31b26781e4e077eb4",
  9776. "shasum": "",
  9777. "mirrors": [
  9778. {
  9779. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9780. "preferred": true
  9781. }
  9782. ]
  9783. },
  9784. "require": {
  9785. "php": ">=7.2"
  9786. },
  9787. "require-dev": {
  9788. "phpunit/phpunit": "^8.2"
  9789. },
  9790. "type": "library",
  9791. "extra": {
  9792. "branch-alias": {
  9793. "dev-master": "1.1-dev"
  9794. }
  9795. },
  9796. "autoload": {
  9797. "classmap": [
  9798. "src/"
  9799. ]
  9800. },
  9801. "notification-url": "https://packagist.org/downloads/",
  9802. "license": [
  9803. "BSD-3-Clause"
  9804. ],
  9805. "authors": [
  9806. {
  9807. "name": "Sebastian Bergmann",
  9808. "email": "sebastian@phpunit.de",
  9809. "role": "lead"
  9810. }
  9811. ],
  9812. "description": "Collection of value objects that represent the types of the PHP type system",
  9813. "homepage": "https://github.com/sebastianbergmann/type",
  9814. "time": "2020-11-30T07:25:11+00:00"
  9815. },
  9816. {
  9817. "name": "sebastian/version",
  9818. "version": "2.0.1",
  9819. "source": {
  9820. "type": "git",
  9821. "url": "https://github.com/sebastianbergmann/version.git",
  9822. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019"
  9823. },
  9824. "dist": {
  9825. "type": "zip",
  9826. "url": "https://api.github.com/repos/sebastianbergmann/version/zipball/99732be0ddb3361e16ad77b68ba41efc8e979019",
  9827. "reference": "99732be0ddb3361e16ad77b68ba41efc8e979019",
  9828. "shasum": "",
  9829. "mirrors": [
  9830. {
  9831. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9832. "preferred": true
  9833. }
  9834. ]
  9835. },
  9836. "require": {
  9837. "php": ">=5.6"
  9838. },
  9839. "type": "library",
  9840. "extra": {
  9841. "branch-alias": {
  9842. "dev-master": "2.0.x-dev"
  9843. }
  9844. },
  9845. "autoload": {
  9846. "classmap": [
  9847. "src/"
  9848. ]
  9849. },
  9850. "notification-url": "https://packagist.org/downloads/",
  9851. "license": [
  9852. "BSD-3-Clause"
  9853. ],
  9854. "authors": [
  9855. {
  9856. "name": "Sebastian Bergmann",
  9857. "email": "sebastian@phpunit.de",
  9858. "role": "lead"
  9859. }
  9860. ],
  9861. "description": "Library that helps with managing the version number of Git-hosted PHP projects",
  9862. "homepage": "https://github.com/sebastianbergmann/version",
  9863. "time": "2016-10-03T07:35:21+00:00"
  9864. },
  9865. {
  9866. "name": "theseer/tokenizer",
  9867. "version": "1.2.0",
  9868. "source": {
  9869. "type": "git",
  9870. "url": "https://github.com/theseer/tokenizer.git",
  9871. "reference": "75a63c33a8577608444246075ea0af0d052e452a"
  9872. },
  9873. "dist": {
  9874. "type": "zip",
  9875. "url": "https://api.github.com/repos/theseer/tokenizer/zipball/75a63c33a8577608444246075ea0af0d052e452a",
  9876. "reference": "75a63c33a8577608444246075ea0af0d052e452a",
  9877. "shasum": "",
  9878. "mirrors": [
  9879. {
  9880. "url": "https://mirrors.cloud.tencent.com/composer/dists/%package%/%reference%.%type%",
  9881. "preferred": true
  9882. }
  9883. ]
  9884. },
  9885. "require": {
  9886. "ext-dom": "*",
  9887. "ext-tokenizer": "*",
  9888. "ext-xmlwriter": "*",
  9889. "php": "^7.2 || ^8.0"
  9890. },
  9891. "type": "library",
  9892. "autoload": {
  9893. "classmap": [
  9894. "src/"
  9895. ]
  9896. },
  9897. "notification-url": "https://packagist.org/downloads/",
  9898. "license": [
  9899. "BSD-3-Clause"
  9900. ],
  9901. "authors": [
  9902. {
  9903. "name": "Arne Blankerts",
  9904. "email": "arne@blankerts.de",
  9905. "role": "Developer"
  9906. }
  9907. ],
  9908. "description": "A small library for converting tokenized PHP source code into XML and potentially other formats",
  9909. "time": "2020-07-12T23:59:07+00:00"
  9910. }
  9911. ],
  9912. "aliases": [],
  9913. "minimum-stability": "dev",
  9914. "stability-flags": [],
  9915. "prefer-stable": true,
  9916. "prefer-lowest": false,
  9917. "platform": {
  9918. "php": "^7.2"
  9919. },
  9920. "platform-dev": [],
  9921. "plugin-api-version": "2.3.0"
  9922. }