-
Notifications
You must be signed in to change notification settings - Fork 5
/
Copy pathcomposer.json
executable file
·47 lines (47 loc) · 1.2 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": "nagy/permissions-handler",
"authors": [
{
"name": "mohamed nagy",
"email": "[email protected]"
}
],
"license": "MIT",
"autoload": {
"psr-4": { "PermissionsHandler\\": "src/" }
},
"autoload-dev": {
"psr-4": {
"PermissionsHandler\\Tests\\": "tests/"
}
},
"scripts":{
"test":"./vendor/bin/phpunit"
},
"require": {
"doctrine/annotations" : "1.4.*",
"doctrine/inflector": "^1.2"
},
"require-dev": {
"monolog/monolog": "^1.22",
"orchestra/testbench": "~3.3.0|~3.4.2|~3.5.0",
"phpunit/phpunit" : "^5.7|6.2",
"mockery/mockery": "^1.0"
},
"extra": {
"laravel": {
"providers": [
"PermissionsHandler\\PermissionsHandlerServiceProvider"
],
"aliases": {
"PermissionsHandler" : "PermissionsHandler\\Facades\\PermissionsHandlerFacade"
}
}
},
"post-package-install":[
"php artisan vendor:publish --tag=PermissionsHandler",
"php artisan migrate"
],
"minimum-stability" : "dev",
"prefer-stable" : true
}