-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
30 lines (30 loc) · 817 Bytes
/
composer.json
File metadata and controls
30 lines (30 loc) · 817 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
28
29
30
{
"name": "valb/php.rpg-playground",
"autoload": {
"psr-4": {
"RPGPlayground\\": "src/",
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "valb-mig",
"email": "valb.mig@gmail.com"
}
],
"require-dev": {
"phpunit/phpunit": "^13.0",
"carthage-software/mago": "^1.13.2"
},
"scripts": {
"test": "php -d pcov.enabled=1 ./vendor/bin/phpunit --colors=always --display-warnings",
"test:coverage": "php -d pcov.enabled=1 ./vendor/bin/phpunit --coverage-html coverage/ --coverage-text"
},
"require": {
"symfony/console": "^8.0",
"symfony/var-dumper": "^8.0",
"monolog/monolog": "^3.10",
"azjezz/psl": "^4.3",
"valb/eco": "^4.0"
}
}