forked from activecollab/authentication
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
47 lines (47 loc) · 1.24 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
{
"name": "activecollab/authentication",
"type": "library",
"description": "Authenticate user",
"license": "MIT",
"keywords": [
"authentication",
"activecollab"
],
"homepage": "https://labs.activecollab.com",
"authors": [
{
"name": "Ilija Studen",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.6.0",
"ext-mbstring": "*",
"activecollab/cookies": "^1.0",
"activecollab/user": "^3.0",
"google/apiclient": "^1.1",
"guzzlehttp/psr7": "^1.2",
"ircmaxell/random-lib" : "^1.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^1.0",
"lightsaml/lightsaml": "^1.1",
"phpunit/phpunit": "^5.0",
"satooshi/php-coveralls": "^1.0",
"slim/slim": "~3.2"
},
"suggest": {
"lightsaml/lightsaml": "If you want to use SAML authentication you should manually install this package."
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"ActiveCollab\\Authentication\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"ActiveCollab\\Authentication\\Test\\": "test/src"
}
}
}