forked from kbsali/php-redmine-api
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
60 lines (60 loc) · 1.6 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "kbsali/redmine-api",
"type": "library",
"description": "Redmine API client",
"homepage": "https://github.com/kbsali/php-redmine-api",
"keywords": [
"redmine",
"api"
],
"license": "MIT",
"authors": [
{
"name": "Kevin Saliou",
"email": "[email protected]",
"homepage": "http://kevin.saliou.name"
},
{
"name": "Artur Weigandt",
"email": "[email protected]",
"homepage": "https://wlabs.de"
}
],
"require": {
"php": "^7.4 || ^8.0",
"ext-curl": "*",
"ext-simplexml": "*",
"ext-json": "*",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.45",
"phpunit/phpunit": "^9 || ^10.5",
"guzzlehttp/psr7": "^2",
"php-mock/php-mock-phpunit": "^2.6",
"phpstan/phpstan": "^1.10"
},
"autoload": {
"psr-4": {
"Redmine\\": "src/Redmine/"
}
},
"autoload-dev": {
"psr-4": {
"Redmine\\Tests\\": "tests/"
}
},
"scripts": {
"codestyle": "php-cs-fixer fix",
"coverage": "phpunit --coverage-html=\".phpunit.cache/code-coverage\"",
"end2end": "phpunit --configuration=\"phpunit-end2end.xml\"",
"phpstan": "phpstan analyze --memory-limit 512M --configuration .phpstan.neon",
"phpunit": "phpunit",
"test": [
"@phpstan",
"@phpunit",
"@codestyle --dry-run --diff"
]
}
}