forked from stokic/authority
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
38 lines (38 loc) · 861 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": "machuga/authority",
"description": "A simple and flexible authorization system for PHP",
"license": "mit",
"authors": [
{
"name": "Matthew Machuga",
"email": "[email protected]"
},
{
"name": "Koen Schmeets",
"email": "[email protected]"
},
{
"name": "Jesse O'Brien",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"illuminate/events": "^10.4"
},
"require-dev": {
"phpunit/phpunit": "3.7.*",
"mockery/mockery": "0.7.*"
},
"minimum-stability": "stable",
"autoload": {
"psr-0": {
"Authority": "src/"
}
},
"extra": {
"branch-alias": {
"dev-master": "2.1.x-dev"
}
}
}