-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
30 lines (30 loc) · 930 Bytes
/
composer.json
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": "artack/symfony-ohdear-command",
"description": "Provides out of the box functionality for Oh Dear Scheduled tasks.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Patrick Landolt",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"symfony/console": "^6.0",
"symfony/http-client": "^6.0"
},
"autoload": {
"psr-4": {
"Artack\\SymfonyOhdearCommand\\": "src/"
}
},
"scripts": {
"phpcs": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix -vvv --diff --dry-run --allow-risky=yes --ansi",
"phpcs:fix": "tools/php-cs-fixer/vendor/bin/php-cs-fixer fix -vvv --allow-risky=yes --ansi"
},
"scripts-descriptions": {
"phpcs": "Runs coding style test suite",
"phpcs:fix": "Runs coding style test suite and fixes it"
}
}