-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
31 lines (31 loc) · 979 Bytes
/
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
{
"name": "diglin/oauth2-oro-provider",
"description": "Symfony bundle - OAuth2 Oro Client provider",
"license": "MIT",
"authors": [
{
"name": "Sylvain Rayé",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1|^8.1",
"league/oauth2-client": "^2.4",
"symfony/config": "^4.4|^5.4|^6.1",
"symfony/http-kernel": "^4.4|^5.4|^6.1",
"symfony/dependency-injection": "^4.4|^5.4|^6.1"
},
"require-dev": {
"phpcompatibility/php-compatibility": "^9.3"
},
"type": "symfony-bundle",
"autoload": {
"psr-4": {
"Diglin\\OAuth2OroBundle\\": "src"
}
},
"scripts": {
"post-install-cmd": "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility",
"post-update-cmd" : "\"vendor/bin/phpcs\" --config-set installed_paths vendor/phpcompatibility/php-compatibility"
}
}