-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.5 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
{
"name": "kduma/s3-satis",
"description": "Extends composer/satis with S3 support",
"keywords": ["composer", "satis", "s3", "cli"],
"homepage": "https://github.com/kduma-OSS/CLI-s3-satis",
"type": "project",
"license": "MIT",
"support": {
"issues": "https://github.com/kduma-OSS/CLI-s3-satis/issues",
"source": "https://github.com/kduma-OSS/CLI-s3-satis"
},
"authors": [
{
"name": "Krystian Duma",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"composer/satis": "3.0.x-dev",
"laravel-zero/framework": "^10.3",
"league/flysystem-aws-s3-v3": "^3.22",
"nunomaduro/termwind": "^1.15.1",
"olvlvl/composer-attribute-collector": "^2.0.1"
},
"require-dev": {
"laravel/pint": "^1.13.7"
},
"autoload": {
"psr-4": {
"App\\": "app/"
},
"files": [
"vendor/attributes.php"
]
},
"config": {
"preferred-install": "dist",
"sort-packages": true,
"optimize-autoloader": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"composer/satis": true,
"olvlvl/composer-attribute-collector": true
}
},
"extra": {
"composer-attribute-collector": {
"include": [
"app"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"bin": ["s3-satis"]
}