mirror of
https://github.com/Combodo/iTop.git
synced 2026-04-23 18:48:51 +02:00
* merging 3.0 into develop * N°5102 - Allow to send emails (eg. notifications) using GSuite SMTP and OAuth * migration to iTop 3.1 Co-authored-by: Eric Espie <eric.espie@combodo.com>
45 lines
1.1 KiB
JSON
45 lines
1.1 KiB
JSON
{
|
|
"name": "league/oauth2-google",
|
|
"description": "Google OAuth 2.0 Client Provider for The PHP League OAuth2-Client",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Woody Gilk",
|
|
"email": "woody.gilk@gmail.com",
|
|
"homepage": "http://shadowhand.me"
|
|
}
|
|
],
|
|
"keywords": [
|
|
"oauth",
|
|
"oauth2",
|
|
"client",
|
|
"authorization",
|
|
"authentication",
|
|
"google"
|
|
],
|
|
"minimum-stability": "stable",
|
|
"require": {
|
|
"league/oauth2-client": "^2.0"
|
|
},
|
|
"require-dev": {
|
|
"eloquent/phony-phpunit": "^2.0",
|
|
"phpunit/phpunit": "^6.0",
|
|
"php-coveralls/php-coveralls": "^2.1",
|
|
"squizlabs/php_codesniffer": "^2.0"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"League\\OAuth2\\Client\\": "src/"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"League\\OAuth2\\Client\\Test\\": "test/src/"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"test": "phpunit",
|
|
"check": "phpcs src --standard=psr2 -sp"
|
|
}
|
|
}
|