-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
27 lines (27 loc) · 839 Bytes
/
composer.json
File metadata and controls
27 lines (27 loc) · 839 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
{
"name": "ragnarok/lyngvi",
"autoload": {
"psr-4": {
"Ragnarok\\Lyngvi\\": "src/"
}
},
"require": {
"ragnarok/fenrir": "dev-feature/http-0.0.4@dev",
"discord-php/http": "@dev",
"vlucas/phpdotenv": "^5.5",
"monolog/monolog": "^3.2",
"nesbot/carbon": "^2.66"
},
"require-dev": {
"phpunit/phpunit": "^10.0",
"mockery/mockery": "^1.5",
"squizlabs/php_codesniffer": "^3.7",
"symfony/var-dumper": "^7.0"
},
"scripts": {
"cs": "./vendor/bin/phpcs --standard=PSR12 src tests",
"csf": "./vendor/bin/phpcbf --standard=PSR12 src tests",
"test": "./vendor/bin/phpunit",
"test-coverage": "php -d xdebug.mode=coverage ./vendor/bin/phpunit --coverage-html .phpunit.cache/cov-html"
}
}