-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
54 lines (54 loc) · 1.26 KB
/
composer.json
File metadata and controls
54 lines (54 loc) · 1.26 KB
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
48
49
50
51
52
53
54
{
"name": "aventure-cloud/carisma",
"description": "REST API creation framework",
"keywords": ["laravel", "framework", "api"],
"license": "MIT",
"authors": [
{
"name": "Valerio Barbera",
"email": "valerio@aventuresrl.com"
}
],
"require": {
"php": ">=7.0.0",
"illuminate/console": "^5.7",
"illuminate/database": "^5.7",
"illuminate/http": "^5.7",
"illuminate/routing": "^5.7",
"illuminate/support": "^5.7",
"symfony/finder": "^4.2",
"symfony/console": "^4.2",
"illuminate/validation": "^5.7"
},
"autoload": {
"psr-4": {
"Carisma\\": "src/"
}
},
"require-dev": {
"phpunit/phpunit": "^5.5",
"fzaninotto/faker": "^1.6",
"mockery/mockery": "^0.9.5"
},
"autoload-dev": {
"psr-4": {
}
},
"scripts": {
},
"extra": {
"laravel": {
"providers": [
"Carisma\\ServiceProvider"
],
"aliases": {
"Carisma": "Carisma\\Facades\\Carisma"
}
}
},
"config": {
"preferred-install": "dist"
},
"minimum-stability": "dev",
"prefer-stable": true
}