-
Notifications
You must be signed in to change notification settings - Fork 183
/
composer.json
71 lines (71 loc) · 1.95 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
61
62
63
64
65
66
67
68
69
70
71
{
"name": "kbsali/redmine-api",
"version": "v2.7.0",
"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": {
"behat/behat": "^3.14",
"friendsofphp/php-cs-fixer": "^3.45",
"guzzlehttp/psr7": "^2",
"php-mock/php-mock-phpunit": "^2.6",
"phpstan/phpstan": "^1.10",
"phpunit/phpunit": "^9.5 || ^10.5"
},
"autoload": {
"psr-4": {
"Redmine\\": "src/Redmine/"
}
},
"autoload-dev": {
"psr-4": {
"Redmine\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"bdt": [
"Composer\\Config::disableProcessTimeout",
"@behat --format=progress --suite=redmine_50104",
"@behat --format=progress --suite=redmine_50010",
"@behat --format=progress --suite=redmine_40210"
],
"behat": "behat --config tests/Behat/behat.yml",
"codestyle": "php-cs-fixer fix",
"coverage": "phpunit --coverage-html=\".phpunit.cache/code-coverage\"",
"phpstan": "phpstan analyze --memory-limit 512M --configuration .phpstan.neon",
"phpunit": "phpunit",
"test": [
"@phpstan",
"@phpunit",
"@codestyle --dry-run --diff"
]
}
}