-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
51 lines (51 loc) · 1.22 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
{
"name": "jtl-software/opsgenie-client",
"type": "project",
"license": "proprietary",
"repositories": [
{
"type": "vcs",
"url": "git@gitlab.jtl-software.com:ea/lib.git"
}
],
"require": {
"php": "^8.2",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"phpunit/phpunit": "^10.4.2",
"friendsofphp/php-cs-fixer": "^3.40",
"phpstan/phpstan": "^1.10.46",
"rector/rector": "^0.18.11"
},
"autoload": {
"psr-4": {
"JTL\\OpsGenie\\Client\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"JTL\\OpsGenie\\Client\\": "tests"
}
},
"scripts": {
"tests": [
"composer phpcs",
"composer phpstan",
"composer phpunit",
"composer infection"
],
"phpunit": [
"vendor/bin/phpunit"
],
"phpstan": [
"vendor/bin/phpstan"
],
"phpcs": [
"vendor/bin/php-cs-fixer fix --config=./.php-cs-fixer.dist.php"
],
"phpcs-dry": [
"vendor/bin/php-cs-fixer fix --config=./.php-cs-fixer.dist.php --dry-run"
]
}
}