composer.lock 238 KB

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