diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 32 |
1 files changed, 16 insertions, 16 deletions
diff --git a/composer.json b/composer.json index 362f08f..572247d 100644 --- a/composer.json +++ b/composer.json @@ -1,17 +1,9 @@ { "name": "phpmyadmin/phpmyadmin", - "type": "application", + "type": "project", "description": "MySQL web administration tool", "keywords": ["phpmyadmin","mysql","web"], "homepage": "https://www.phpmyadmin.net/", - "license": "GPL-2.0+", - "authors": [ - { - "name": "The phpMyAdmin Team", - "email": "developers@phpmyadmin.net", - "homepage": "https://www.phpmyadmin.net/team/" - } - ], "support": { "forum": "https://www.phpmyadmin.net/support/", "issues": "https://github.com/phpmyadmin/phpmyadmin/issues", @@ -19,12 +11,26 @@ "docs": "https://docs.phpmyadmin.net/", "source": "https://github.com/phpmyadmin/phpmyadmin" }, + "license": "GPL-2.0", + "authors": [ + { + "name": "The phpMyAdmin Team", + "email": "developers@phpmyadmin.net", + "homepage": "https://www.phpmyadmin.net/team/" + } + ], "non-feature-branches": ["RELEASE_.*"], "autoload": { "psr-4": { "PMA\\": "./" } }, + "repositories": [ + { + "type": "composer", + "url": "https://www.phpmyadmin.net" + } + ], "require": { "php": ">=5.5.0", "ext-mbstring": "*", @@ -56,11 +62,5 @@ "phpunit/phpunit-selenium": "~1.2", "squizlabs/php_codesniffer": "2.*", "phpmyadmin/coding-standard": ">=0.1.0" - }, - "repositories": [ - { - "type": "composer", - "url": "https://www.phpmyadmin.net" - } - ] + } } |