-
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) · 833 Bytes
/
Copy pathcomposer.json
File metadata and controls
27 lines (27 loc) · 833 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": "adriendupuis/exercise-cleaner",
"description": "Training exercises' steps manager and cleaner.",
"autoload": {
"psr-4": {"ExerciseCleaner\\": "src/"}
},
"require": {
"symfony/console": "^5.0",
"symfony/yaml": "^5.0"
},
"require-dev": {
"phpunit/phpunit": "^9.1",
"friendsofphp/php-cs-fixer": "^2.16"
},
"scripts": {
"test": [
"composer install --quiet --no-scripts",
"vendor/bin/phpunit --colors=always tests"
],
"conform": [
"composer install --quiet --no-scripts",
"vendor/bin/php-cs-fixer fix --rules=@Symfony src/",
"vendor/bin/php-cs-fixer fix --rules=@Symfony tests/"
],
"compile": "time php -d phar.readonly=Off compile-phar.php"
}
}