Add additional info to the composer.json file

This commit is contained in:
Manuel Thalmann 2019-04-11 10:46:37 +02:00
parent d598c120ae
commit 9f8a6e65e9

View file

@ -1,8 +1,40 @@
{ {
"name": "manuth/nuth.ch", "name": "manuth/nuth.ch",
"type": "silverstripe-recipe", "type": "silverstripe-recipe",
"description": "The source code of nuth.ch",
"version": "1.0", "version": "1.0",
"description": "The source code of nuth.ch",
"authors": [
{
"name": "Manuel Thalmann",
"email": "m@nuth.ch",
"homepage": "https://nuth.ch/"
}
],
"license": "MIT",
"keywords": [
"Homepage",
"Website",
"m@nuth",
"SilverStripe"
],
"repositories": [
{
"type": "git",
"url": "https://git.nuth.ch/manuth/nuth.ch.git"
}
],
"support": {
"issues": "https://git.nuth.ch/manuth/nuth.ch/issues"
},
"homepage": "https://nuth.ch/",
"scripts": {
"lint": "phpcs --report=csv ."
},
"config": {
"process-timeout": 600
},
"prefer-stable": true,
"minimum-stability": "dev",
"require": { "require": {
"php": ">=5.6.0", "php": ">=5.6.0",
"silverstripe/recipe-plugin": "^1.2", "silverstripe/recipe-plugin": "^1.2",
@ -13,9 +45,6 @@
"phpunit/phpunit": "^5.7", "phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "*" "squizlabs/php_codesniffer": "*"
}, },
"scripts": {
"lint": "phpcs --report=csv ."
},
"extra": { "extra": {
"project-files-installed": [ "project-files-installed": [
"app/.htaccess", "app/.htaccess",
@ -31,10 +60,5 @@
"install.php", "install.php",
"web.config" "web.config"
] ]
}, }
"config": {
"process-timeout": 600
},
"prefer-stable": true,
"minimum-stability": "dev"
} }