-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·35 lines (35 loc) · 968 Bytes
/
composer.json
File metadata and controls
executable file
·35 lines (35 loc) · 968 Bytes
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
{
"name": "swiftotter/driver",
"description": "A database task-runner that helps you to turn production database into a staging/development database sandbox",
"license": "Apache-2.0",
"type": "library",
"require": {
"php": "^7.4|^8.0",
"ext-pdo": "*",
"aws/aws-sdk-php": "^3.19",
"guzzlehttp/guzzle": "^6.2|^7.0",
"php-di/php-di": "^6.0",
"psr/log": "^1.0",
"symfony/console": "^4.4",
"symfony/event-dispatcher": "^4.0",
"symfony/yaml": ">=2.3"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"slevomat/coding-standard": "^8.5",
"squizlabs/php_codesniffer": "^3.7"
},
"bin": ["bin/driver"],
"autoload": {
"psr-4": {"Driver\\": "src/"}
},
"authors": [
{
"name": "SwiftOtter, Inc.",
"email": "[email protected]"
}
],
"config": {
"sort-packages": true
}
}