composer.lock 317 KB

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