forked from area17/twill
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
81 lines (81 loc) · 2.26 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
{
"name": "area17/twill",
"type": "library",
"license": "Apache-2.0",
"description": "Twill is an open source CMS toolkit for Laravel that helps developers rapidly create a custom admin console that is intuitive, powerful and flexible.",
"keywords": [
"A17",
"twill",
"laravel",
"cms"
],
"homepage": "https://twill.io",
"authors": [
{
"name": "AREA 17",
"email": "[email protected]",
"homepage": "https://area17.com"
}
],
"support": {
"issues": "https://github.com/ifox/twill/issues/",
"docs": "https://twill.io/docs",
"chat": "https://spectrum.chat/twill"
},
"require": {
"php": "^7.1",
"ext-json": "*",
"ext-pdo": "*",
"astrotomic/laravel-translatable": "^11.5",
"cartalyst/tags": "^6.0|^7.0|^8.0|^9.0|^10.0",
"doctrine/dbal": "^2.9",
"guzzlehttp/guzzle": "^6.2",
"imgix/imgix-php": "^3.0",
"laravel/framework": "~5.6|~5.7|~5.8|^6.0|^7.0",
"laravel/socialite": "^4.2",
"laravel/ui": "^1.0|^2.0",
"league/flysystem-aws-s3-v3": "^1.0",
"league/glide-laravel": "^1.0",
"matthewbdaly/laravel-azure-storage": "^1.3",
"myclabs/php-enum": "^1.5",
"pragmarx/google2fa-qrcode": "^1.0",
"spatie/laravel-activitylog": "^2.5|^3.2",
"spatie/laravel-analytics": "^3.6",
"spatie/once": "^2.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"kalnoy/nestedset": "^5.0",
"nunomaduro/collision": "^3.0|^4.2",
"orchestra/testbench": "~3.3|~3.4|~3.5|~3.6|~3.7|~3.8|^4.0|^5.0",
"phpunit/phpunit": "~5.0|~6.0|~7.0|~8.0|~9.0"
},
"autoload": {
"psr-4": {
"A17\\Twill\\": "src/",
"A17\\Twill\\Tests\\Unit\\": "tests/unit",
"A17\\Twill\\Tests\\Integration\\": "tests/integration",
"App\\": "vendor/orchestra/testbench-core/laravel/app"
}
},
"scripts": {
"test:phpunit": "vendor/bin/phpunit",
"test:analyse": "php -d memory_limit=-1 vendor/bin/phpstan analyse",
"test:syntax": "vendor/bin/php-cs-fixer --dry-run --rules=-@PSR1 fix src",
"test": [
"@test:syntax",
"@test:phpunit"
]
},
"extra": {
"laravel": {
"providers": [
"A17\\Twill\\TwillServiceProvider"
]
}
},
"minimum-stability": "stable",
"config": {
"sort-packages": true
}
}