diff --git a/composer.json b/composer.json index 288294c..fb0e705 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,40 @@ { "name": "manuth/nuth.ch", "type": "silverstripe-recipe", - "description": "The source code of nuth.ch", "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": { "php": ">=5.6.0", "silverstripe/recipe-plugin": "^1.2", @@ -13,9 +45,6 @@ "phpunit/phpunit": "^5.7", "squizlabs/php_codesniffer": "*" }, - "scripts": { - "lint": "phpcs --report=csv ." - }, "extra": { "project-files-installed": [ "app/.htaccess", @@ -31,10 +60,5 @@ "install.php", "web.config" ] - }, - "config": { - "process-timeout": 600 - }, - "prefer-stable": true, - "minimum-stability": "dev" + } }