-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
49 lines (49 loc) · 1.09 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
{
"name": "area17/twill-image",
"license": "Apache-2.0",
"authors": [
{
"name": "Patrick Vézina",
"email": "patrick@area17.com"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=7.2.5",
"area17/twill": "2.*|3.*",
"laravel/framework": "~5.6|~5.7|~5.8|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"spatie/laravel-view-models": "^1.3"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"A17\\Twill\\Image\\TwillImageServiceProvider"
],
"aliases": {
"TwillImage": "A17\\Twill\\Image\\Facades\\TwillImage",
"TwillStaticImage": "A17\\Twill\\Image\\Facades\\TwillStaticImage"
}
}
},
"autoload": {
"psr-4": {
"A17\\Twill\\Image\\": "src/"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"larastan/larastan": "^2.0",
"phpstan/phpstan": "^1.12"
},
"scripts": {
"lint": [
"vendor/bin/phpstan analyse -c phpstan.neon src"
]
}
}