-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
44 lines (44 loc) · 1.13 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
{
"name": "connectum/ronin",
"description": "Laravel ACL package. Roles & Scopes for the Laravel's native Auth",
"keywords": ["laravel", "eloquent", "roles", "scopes", "permissions", "acl", "auth"],
"license": "MIT",
"homepage": "https://ronin.connectum.io",
"authors": [
{
"name": "Mirza Pasic",
"email": "[email protected]"
}
],
"require": {
"php": ">=5.4.0",
"illuminate/support": "~5.0"
},
"require-dev": {
"illuminate/cookie": "~5.0",
"illuminate/database": "~5.0",
"illuminate/http": "~5.0",
"illuminate/session": "~5.0",
"mockery/mockery": "~0.9",
"phpunit/phpunit": "~5.0",
"orchestra/testbench": "^3.3",
"codeclimate/php-test-reporter": "^0.3.2"
},
"autoload": {
"classmap": [
"database",
"tests/RoninTestCase.php"
],
"psr-4": {
"Connectum\\Ronin\\": "src/",
"Connectum\\Tests\\Ronin\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"coverage": "vendor/bin/phpunit --coverage-text",
"report": "vendor/bin/phpunit --coverage-html ./report"
},
"minimum-stability": "dev",
"prefer-stable": true
}