composer.lock 281 KB

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