forked from area17/twill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
82 lines (82 loc) · 2.19 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
{
"name": "area17/twill",
"type": "library",
"license": "Apache-2.0",
"description": "A collection of Laravel helpers, traits and classes to quickly create custom content management apps for our clients",
"keywords": [
"A17",
"twill",
"laravel",
"cms"
],
"homepage": "https://twill.io",
"authors": [
{
"name": "Quentin Renard",
"email": "[email protected]",
"homepage": "https://area17.com/about/quentin-renard",
"role": "Lead backend developer"
},
{
"name": "Antoine Doury",
"email": "[email protected]",
"homepage": "https://area17.com/about/antoine-doury",
"role": "Lead frontend developer"
},
{
"name": "Antonin Caudron",
"email": "[email protected]",
"homepage": "https://area17.com/about/antonin-caudron",
"role": "Frontend developer"
},
{
"name": "Fernando Petrelli",
"email": "[email protected]",
"homepage": "https://area17.com/about/fernando-petrelli",
"role": "Backend developer"
},
{
"name": "Gilbert Moufflet",
"email": "[email protected]",
"homepage": "https://area17.com/about/gilbert-moufflet",
"role": "Backend developer"
},
{
"name": "Mubashar Iqbal",
"email": "[email protected]",
"homepage": "http://mubs.me/",
"role": "Backend developer"
}
],
"require": {
"php": "^7.0",
"laravel/framework": "~5.3.0|~5.4.0|~5.5.0|~5.6.0|~5.7.0",
"dimsav/laravel-translatable": "^6.0.1|^7.0.0|^8.0.0|^9.0.0",
"cartalyst/tags": "^3.0.0|^4.0.0|^5.0.0|^6.0.0|^7.0.0",
"league/flysystem-aws-s3-v3": "^1.0.13",
"myclabs/php-enum": "^1.5.0",
"imgix/imgix-php": "^2.1.0",
"lsrur/inspector": "^1.0",
"barryvdh/laravel-debugbar": "^2.4|^3.1",
"guzzlehttp/guzzle": "^6.2",
"spatie/once": "^2.0.0",
"spatie/laravel-analytics": "^3.6",
"spatie/laravel-activitylog": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "~5.0|~6.0|~7.0"
},
"autoload": {
"psr-4": {
"A17\\Twill\\": "src/"
}
},
"extra": {
"laravel": {
"providers": [
"A17\\Twill\\TwillServiceProvider"
]
}
},
"minimum-stability": "stable"
}