-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.4 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
{
"name": "ecphp/cns-client-bundle",
"description": "CNS Client - Corporate Notification Service Client",
"license": "BSD-3-Clause",
"type": "symfony-bundle",
"keywords": [
"CNS"
],
"require": {
"php": ">= 7.4",
"ext-json": "*",
"symfony/http-client-contracts": "^2.4 || ^3.4"
},
"require-dev": {
"ecphp/php-conventions": "^1",
"phpstan/phpstan-symfony": "^1.1",
"phpunit/phpunit": "^9.5",
"roave/security-advisories": "dev-latest",
"symfony/http-client": "^5.4",
"symfony/http-foundation": "^5.4",
"symfony/mime": "^5.4",
"symfony/monolog-bundle": "^3.7"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"EcPhp\\CnsClientBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\EcPhp\\CnsClientBundle\\": "tests/"
}
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true,
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true,
"phpro/grumphp": true
}
},
"scripts": {
"changelog-unreleased": "auto-changelog -c .auto-changelog -u",
"changelog-version": "auto-changelog -c .auto-changelog -v",
"grumphp": "./vendor/bin/grumphp run"
}
}