-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
42 lines (42 loc) · 1.48 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
{
"name": "happyr/google-site-authenticator-bundle",
"type": "symfony-bundle",
"description": "Authenticate your website (not your users) with Google API. Can be used instead as Domain-Wide Delegation of Authority",
"keywords": ["Domain-Wide Delegation", "Authentication", "Google", "Site-wide", "Domain-Wide", "API"],
"homepage": "http://developer.happyr.com",
"license": "MIT",
"authors": [
{
"name": "Tobias Nyholm",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1",
"psr/cache": "^1.0",
"psr/cache-implementation": "^1.0",
"google/apiclient": "~1.1, <=1.1.7",
"symfony/config": "^4.4 || ^5.0",
"symfony/dependency-injection": "^4.4 || ^5.0",
"symfony/event-dispatcher": "^4.4 || ^5.0",
"symfony/http-kernel": "^4.4 || ^5.0",
"symfony/framework-bundle": "^4.4 || ^5.0"
},
"require-dev": {
"cache/void-adapter": "^1.0",
"phpunit/phpunit": "^4.5 || ^5.4",
"cache/adapter-bundle": "^1.0",
"symfony/filesystem": "^4.4 || ^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^1.0",
"symfony/browser-kit": "^4.4 || ^5.0"
},
"autoload": {
"psr-4": {
"Happyr\\GoogleSiteAuthenticatorBundle\\": ""
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-ci": "vendor/bin/phpunit --coverage-text --coverage-clover=build/coverage.xml"
}
}