-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
41 lines (41 loc) · 1.03 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
{
"name": "dstockto/slartybartfast",
"description": "Artifact build and deploy tool",
"keywords": [
"build",
"deploy",
"artifacts"
],
"readme": "README.md",
"authors": [
{
"name": "David Stockton",
"email": "[email protected]",
"homepage": "https://davidstockton.dev",
"role": "developer"
}
],
"support": {
"email": "[email protected]"
},
"bin": "slarty.php",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.1|^8.2",
"symfony/console": "^6",
"illuminate/collections": "^v9.0.0|^v10.0.0",
"league/flysystem": "^3.0",
"league/flysystem-aws-s3-v3": "^3.0"
},
"require-dev": {
"roave/security-advisories": "dev-master",
"phpspec/phpspec": "^7.2.0",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"SlartyBartfast\\": "src/SlartyBartfast"
}
}
}