diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 27 |
1 files changed, 24 insertions, 3 deletions
diff --git a/composer.json b/composer.json index 34fe9a5dc..4c950d5d4 100644 --- a/composer.json +++ b/composer.json @@ -1,5 +1,26 @@ { - "require-dev": { - "phpunit/php-code-coverage": "^4.0" - } + "description": "FileBin", + "name": "bluewind/filebin", + "type": "project", + "homepage": "https://github.com/Bluewind/filebin", + "license": "AGPLv3", + "support": { + "forum": "https://github.com/Bluewind/filebin", + "source": "https://github.com/Bluewind/filebin" + }, + "require": { + "php": ">=7.0", + "ext-gd": "*", + "ext-exif": "*", + "ext-fileinfo": "*", + "ext-phar": "*", + "ext-mbstring": "*" + }, + "suggest": { + "paragonie/random_compat": "Provides better randomness in PHP 5.x" + }, + "require-dev": { + "phpunit/php-code-coverage": "^9 || ^10", + "ext-xdebug": "*" + } } |