-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
38 lines (38 loc) · 945 Bytes
/
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
{
"name": "bristol-su/assign-roles",
"description": "A module for the Bristol SU Portal Project to assign roles to members of groups",
"license": "MIT",
"minimum-stability": "dev",
"prefer-stable": true,
"authors": [
{
"name": "Toby Twigger",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"bristol-su/support": "^5.0.0"
},
"require-dev": {
"orchestra/testbench": "^6.19",
"phpspec/prophecy-phpunit": "^2.0"
},
"autoload": {
"psr-4": {
"BristolSU\\Module\\AssignRoles\\": "app/"
}
},
"autoload-dev": {
"psr-4": {
"BristolSU\\Module\\Tests\\AssignRoles\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"BristolSU\\Module\\AssignRoles\\ModuleServiceProvider"
]
}
}
}