Update gitignore

This commit is contained in:
Laurent Destailleur 2020-12-07 21:10:10 +01:00
parent 6abf1b6ac2
commit f738c875d8
3 changed files with 32 additions and 28 deletions

4
composer.lock generated
View File

@ -217,7 +217,7 @@
}, },
{ {
"name": "nnnick/chartjs", "name": "nnnick/chartjs",
"version": "v2.9.3", "version": "v2.9.4",
"source": { "source": {
"type": "git", "type": "git",
"url": "https://github.com/chartjs/Chart.js.git", "url": "https://github.com/chartjs/Chart.js.git",
@ -315,7 +315,7 @@
"time": "2015-05-01T07:00:55+00:00" "time": "2015-05-01T07:00:55+00:00"
}, },
{ {
"name": "psr/log", "name": "Psr/log",
"version": "1.1.3", "version": "1.1.3",
"source": { "source": {
"type": "git", "type": "git",

View File

@ -1,8 +1,13 @@
.github
/_book /_book
/coverage /coverage
/custom /custom
/dist /dist
/docs/index.md /docs
/samples
/scripts
/src
/test
/gh-pages /gh-pages
/jsdoc /jsdoc
/node_modules /node_modules

View File

@ -1,26 +1,25 @@
{ {
"name": "nnnick/chartjs", "name" : "nnnick/chartjs",
"type": "library", "type" : "library",
"description": "Simple HTML5 charts using the canvas element.", "description" : "Simple HTML5 charts using the canvas element.",
"keywords": [ "keywords" : [
"chart", "chart",
"js" "js"
], ],
"homepage": "https://www.chartjs.org/", "homepage" : "https://www.chartjs.org/",
"license": "MIT", "license" : "MIT",
"authors": [ "authors" : [{
{ "name" : "NICK DOWNIE",
"name": "NICK DOWNIE", "email" : "hello@nickdownie.com"
"email": "hello@nickdownie.com" }
} ],
], "require" : {
"require": { "php" : ">=5.3.3"
"php": ">=5.3.3" },
}, "minimum-stability" : "stable",
"minimum-stability": "stable", "extra" : {
"extra": { "branch-alias" : {
"branch-alias": { "release/2.0" : "v2.0-dev"
"release/2.0": "v2.0-dev" }
} }
} }
}