-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
49 lines (49 loc) · 1.06 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
{
"name": "laraplug/user-module",
"type": "asgard-module",
"description": "User module for AsgardCMS. Handles the authentication and authorisation as well as the user management.",
"keywords": [
"asgardcms",
"user",
"authentication",
"authorisation"
],
"license": "MIT",
"authors": [
{
"name": "Nicolas Widart",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Darron Park",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": ">=7.0.0",
"composer/installers": "~1.0",
"ramsey/uuid": "^3.4"
},
"require-dev": {
"phpunit/phpunit": "~6.0",
"orchestra/testbench": "3.5.*",
"scrutinizer/ocular": "~1.1",
"fzaninotto/faker": "~1.5",
"mockery/mockery": "^0.9.4"
},
"autoload": {
"psr-4": {
"Modules\\User\\": ".",
"Modules\\": "Modules/"
}
},
"autoload-dev": {
"psr-4": {
"Modules\\User\\Tests\\": "Tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}