-
Notifications
You must be signed in to change notification settings - Fork 8
/
Copy pathcomposer.json
44 lines (44 loc) · 1.27 KB
/
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
36
37
38
39
40
41
42
43
44
{
"name": "5pm-hdh/churchtools-api",
"description": "API-client for churchtools",
"type": "library",
"autoload": {
"psr-4": {
"CTApi\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"CTApi\\Test\\": "tests"
}
},
"require": {
"guzzlehttp/guzzle": "^7",
"php": ">=8.1",
"monolog/monolog": "^3",
"doctrine/cache": "^1.11"
},
"require-dev": {
"phpunit/phpunit": "9.5.5",
"phpstan/phpstan": "^1.10",
"friendsofphp/php-cs-fixer": "^3.46"
},
"license": "MIT",
"authors": [
{
"name": "Lukas Dumberger",
"email": "lukas.dumberger@gmail.com"
}
],
"scripts": {
"test-unit": "./vendor/bin/phpunit --testsuite unit",
"test-integration": "./vendor/bin/phpunit --testsuite integration",
"test-unit-w": "vendor\\bin\\phpunit.bat --testsuite unit",
"test-integration-w": "vendor\\bin\\phpunit.bat --testsuite integration",
"test-coverage-w": "vendor\\bin\\phpunit.bat --coverage-html .phpunit.cache/coverage-report",
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon --memory-limit 1G",
"phpstan-w": "vendor\\bin\\phpstan.bat analyse -c phpstan.neon --memory-limit 1G",
"php-cs-fixer": "vendor/bin/php-cs-fixer fix",
"docs-generator": "php docs/src/DocGenerator.php"
}
}