-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
125 lines (125 loc) · 2.75 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
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"name": "ekapusta/oauth2-esia-bundle",
"description": "Configuration and symfony services for ekapusta/oauth2-esia.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Alexander Ustimenko",
"email": "[email protected]"
}
],
"keywords": [
"oauth2",
"oauth2-provider",
"openid-connect",
"esia",
"symfony",
"bundle"
],
"require": {
"php": "^5.6 || ^7.0",
"ekapusta/oauth2-esia": "^1.4",
"symfony/config": "^2.8 || ^3 || ^4",
"symfony/dependency-injection": "^2.8 || ^3 || ^4",
"symfony/http-kernel": "^2.8 || ^3 || ^4"
},
"autoload": {
"psr-4": {
"Ekapusta\\OAuth2EsiaBundle\\" : "src"
}
},
"require-dev": {
"g1a/composer-test-scenarios": "^3.2",
"guzzlehttp/guzzle": "^6.3",
"monolog/monolog": "^1.23",
"phpunit/phpunit": "^5.7",
"squizlabs/php_codesniffer": "^2.7",
"symfony/framework-bundle": " ^2.8 || ^3 || ^4"
},
"autoload-dev": {
"psr-4": {
"Ekapusta\\OAuth2EsiaBundle\\Tests\\" : "tests"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "5.6"
}
},
"scripts": {
"cs": "phpcs --standard=PSR2 -n src",
"cbf": "phpcbf --standard=PSR2 -n src",
"unit": "phpunit --colors=always --debug",
"coverage": "/usr/bin/env phpdbg -qrr vendor/bin/phpunit --debug --coverage-html ./.coverage --coverage-text",
"fix": "php-cs-fixer fix",
"f": "@fix",
"clear-kernel-cache": "rm -rf tests/TestKernel/",
"lint": [
"find src -name '*.php' -print0 | xargs -0 -n1 php -l",
"find tests -name '*.php' -print0 | xargs -0 -n1 php -l"
],
"t": "@test",
"test": [
"@clear-kernel-cache",
"@lint",
"@unit",
"@cs"
],
"test2": [
"@composer scenario symfony2",
"@test"
],
"test3": [
"@composer scenario symfony3",
"@test"
],
"test4": [
"@composer scenario symfony4",
"mkdir -p vendor/symfony/polyfill-php70/Resources/stubs",
"@test"
]
},
"extra": {
"scenarios": {
"symfony2": {
"scenario-options": {
"create-lockfile": "false"
},
"require": {
"symfony/dependency-injection": "^2.8"
},
"config": {
"platform": {
"php": "5.6"
}
}
},
"symfony3": {
"require": {
"symfony/dependency-injection": "^3.0"
},
"config": {
"platform": {
"php": "5.6"
}
}
},
"symfony4": {
"scenario-options": {
"create-lockfile": "false"
},
"require": {
"symfony/dependency-injection": "^4.0"
},
"config": {
"platform": {
"php": "7.1.3"
}
}
}
}
}
}