diff options
author | gmponos <gmponos@gmail.com> | 2017-01-03 21:36:53 +0200 |
---|---|---|
committer | Andreas Gohr <andi@splitbrain.org> | 2017-01-04 16:59:58 +0100 |
commit | f2161a33cedcc2fe9d7012847c3506c205474cfa (patch) | |
tree | af2af744ca082c5d90102f95bf6cf521874c73fd /composer.json | |
parent | f413b7a86ebec0aca526d4f8c8ad8cd8f8d64747 (diff) | |
download | dokuwiki-f2161a33cedcc2fe9d7012847c3506c205474cfa.tar.gz dokuwiki-f2161a33cedcc2fe9d7012847c3506c205474cfa.zip |
Extending composer.json file to include more info and more packages
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/composer.json b/composer.json index e73f5dde4..1f150a1b0 100644 --- a/composer.json +++ b/composer.json @@ -1,8 +1,19 @@ { + "name": "splitbrain/dokuwiki", + "description": "DokuWiki is a simple to use and highly versatile Open Source wiki software that doesn't require a database", + "homepage": "https://www.dokuwiki.org", + "type": "project", + "license": "GPL v2", "require": { + "php": ">=5.3", "splitbrain/php-archive": "~1.0", "easybook/geshi": "~1.0", "phpseclib/phpseclib": "~2.0", "paragonie/random_compat": "^2.0" - } + }, + "suggest": { + "squizlabs/php_codesniffer": "PHP_CodeSniffer tokenizes PHP, JavaScript and CSS files and detects violations of a defined set of coding standards.", + "phpunit/phpunit": "Allows automated tests to be run without system-wide install." + }, + "prefer-stable": true } |