forked from code16/sharp
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 921 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
43
{
"name": "code16/sharp",
"description": "Let's call it a Laravel Content Management Framework",
"authors": [{
"name": "Philippe Lonchampt",
"email": "[email protected]"
}, {
"name": "Antoine Guingand",
"email": "[email protected]"
}],
"require": {
"php": ">=7.0.0",
"laravel/framework": "5.4.*|5.5.*|5.6.*|5.7.*",
"intervention/image": "^2.3"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~6.0|~7.0",
"doctrine/dbal": "~2.5",
"orchestra/testbench": "~3.4|~3.5|~3.6|~3.7"
},
"autoload": {
"files": [
"src/sharp_helper.php"
],
"psr-4": {
"Code16\\Sharp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Code16\\Sharp\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Code16\\Sharp\\SharpServiceProvider"
]
}
}
}