-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
52 lines (52 loc) · 1.14 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
{
"name": "ccu-plus/authentication",
"description": "Provide API for core module to authenticate user for National Chung Cheng University students and alumnus.",
"keywords": ["ccu-plus"],
"version": "1.0.2",
"license": "AGPL-3.0-only",
"authors": [
{
"name": "bepsvpt",
"email": "[email protected]"
},
{
"name": "Lyrisbee",
"email": "[email protected]"
}
],
"require": {
"php": "^7.2",
"guzzlehttp/guzzle": "~6.3",
"illuminate/support": "~6.2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "~2.16",
"mockery/mockery": "~1.2",
"phpstan/phpstan": "~0.12",
"phpstan/phpstan-mockery": "~0.12",
"phpunit/phpunit": "~8.4"
},
"autoload": {
"psr-4": {
"CCUPLUS\\Authentication\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CCUPLUS\\Authentication\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"CCUPLUS\\Authentication\\ServiceProvider"
]
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}