-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
36 lines (36 loc) · 1 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
{
"name": "spryker-community/auth_remote_tokens",
"description": "Provide remote trusted openid-connect jwk",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"SprykerCommunity\\AuthRemoteTokens\\": "src/"
}
},
"authors": [
{
"name": "Dmytro Klyman",
"email": "sebastian.wagner@diva-e.com"
},
{
"name": "Sebastian Wagner",
"email": "dmytro.klyman@spryker.com"
}
],
"require-dev": {
"spryker/code-sniffer": "^0.17.18"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"cs-check": "phpcs -p -s --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/",
"cs-fix": "phpcbf -p --standard=vendor/spryker/code-sniffer/Spryker/ruleset.xml src/"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": false
}
}
}