-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
36 lines (36 loc) · 1.32 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
{
"version": "1.1.0",
"scripts": {
"autoload": "composer dump-autoload",
"cs:check": "php-cs-fixer fix --dry-run --diff",
"cs:fix": "php-cs-fixer fix"
},
"require": {
"vlucas/phpdotenv": "^5.3",
"aws/aws-sdk-php": "^3.188",
"guzzlehttp/guzzle": "^7.4",
"monolog/monolog": "^2.3"
},
"autoload": {
"psr-4": {
"MigrationS3NC\\": "lib/",
"MigrationS3NC\\Configuration\\": "lib/Configuration",
"MigrationS3NC\\Db\\": "lib/Db",
"MigrationS3NC\\Db\\Mapper\\" : "lib/Db/Mapper",
"MigrationS3NC\\Db\\Pdo\\" : "lib/Db/Pdo",
"MigrationS3NC\\Exceptions\\": "lib/Exceptions",
"MigrationS3NC\\File\\" : "lib/File",
"MigrationS3NC\\Interfaces\\": "lib/Interfaces",
"MigrationS3NC\\Iterator\\": "lib/Iterators",
"MigrationS3NC\\Logger\\": "lib/Logger",
"MigrationS3NC\\Managers\\": "lib/Managers",
"MigrationS3NC\\Managers\\File\\": "lib/Managers/File",
"MigrationS3NC\\Managers\\S3\\": "lib/Managers/S3",
"MigrationS3NC\\Managers\\Storage\\": "lib/Managers/Storage",
"MigrationS3NC\\Service\\": "lib/Service"
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13"
}
}