diff options
Diffstat (limited to 'composer.json')
-rw-r--r-- | composer.json | 22 |
1 files changed, 15 insertions, 7 deletions
diff --git a/composer.json b/composer.json index d27bea8..ab896e9 100644 --- a/composer.json +++ b/composer.json @@ -1,11 +1,6 @@ { "name": "matrix-php/matrix-php", "type": "project", - "autoload": { - "psr-4": { - "App\\": "src/" - } - }, "authors": [ { "name": "Daniel Weipert", @@ -13,8 +8,21 @@ } ], "require": { - "symfony/routing": "^7.3", + "symfony/dotenv": "^7.3", "symfony/http-foundation": "^7.3", - "symfony/dotenv": "^7.3" + "symfony/routing": "^7.3" + }, + "require-dev": { + "guzzlehttp/guzzle": "^7.9", + "phpunit/phpunit": "^12.3" + }, + "autoload": { + "psr-4": { + "App\\": "src/", + "Tests\\": "tests/" + } + }, + "scripts": { + "test": "phpunit --testdox tests" } } |