-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
42 lines (42 loc) · 1007 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
39
40
41
42
{
"name": "owinteractive/manageable",
"authors": [
{
"name": "Fausto Rodrigues",
"email": "fausto.rodrigues@owinteractive.com"
}
],
"require": {
"laravel/framework": "5.4.*|5.5.*"
},
"require-dev": {
"phpunit/phpunit": "^4.8|^5.2",
"orchestra/testbench": "3.x",
"squizlabs/php_codesniffer": "^2.3"
},
"autoload": {
"psr-4": {
"Ow\\Manageable\\": "src/"
},
"classmap": [
"tests"
]
},
"extra": {
"laravel": {
"providers": [
"Ow\\Manageable\\ServiceProvider"
],
"aliases": {
"Manageable": "Ow\\Manageable\\Facade"
}
}
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=PSR2 src/",
"fix-style": "phpcbf -p --standard=PSR2 src/"
},
"minimum-stability": "dev",
"prefer-stable": true
}