-
Notifications
You must be signed in to change notification settings - Fork 12
/
Copy pathcomposer.json
35 lines (35 loc) · 1006 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
31
32
33
34
35
{
"require": {
"php": ">=8.1",
"symfony/panther": "^2.0",
"monolog/monolog": "^2.3",
"vlucas/phpdotenv": "^5.4",
"irazasyed/telegram-bot-sdk": "^3.4",
"ext-json": "*",
"ext-gd": "*"
},
"require-dev": {
"symfony/console": "^6.0",
"squizlabs/php_codesniffer": "^3.6",
"phpunit/phpunit": "^9.5",
"php-coveralls/php-coveralls": "^2.5",
"phpstan/phpstan": "^1.2"
},
"autoload": {
"psr-4": {
"WhatsappClient\\": "src"
}
},
"scripts" : {
"phpcs" : "phpcs --standard=PSR12 -n src",
"phpcbf" : "phpcbf --standard=PSR12 -n src",
"phpstan" : "phpstan analyse src --level 8",
"unit" : "phpunit --coverage-clover ./tests/log/clover.xml --colors=always",
"unit-html" : "phpunit --coverage-html ./tests/log/ --colors=always",
"test" : [
"@unit",
"@phpcs",
"@phpstan"
]
}
}