-
Notifications
You must be signed in to change notification settings - Fork 40
/
composer.json
72 lines (72 loc) · 2.17 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "andersundsehr/aus-driver-amazon-s3",
"type": "typo3-cms-extension",
"description": "Provides a FAL driver for the Amazon Web Service AWS S3.",
"support": {
"source": "https://github.com/andersundsehr/aus_driver_amazon_s3.git",
"issues": "https://github.com/andersundsehr/aus_driver_amazon_s3/issues",
"docs": "https://docs.typo3.org/p/andersundsehr/aus-driver-amazon-s3/master/en-us/"
},
"license": "LGPL-3.0-or-later",
"require": {
"php": ">=7.4",
"typo3/cms-core": "^11.5.6 || ^12.4.5",
"aws/aws-sdk-php": "^3.288"
},
"require-dev": {
"pluswerk/grumphp-config": "^5.0",
"typo3/testing-framework": "^7.0",
"phpspec/prophecy": "dev-master",
"phpspec/prophecy-phpunit": "dev-master",
"saschaegerer/phpstan-typo3": "^1.8.9",
"ssch/typo3-rector": "^1.3.5"
},
"autoload": {
"psr-4": {
"AUS\\AusDriverAmazonS3\\": "Classes/"
}
},
"autoload-dev": {
"psr-4": {
"AUS\\AusDriverAmazonS3\\Tests\\": "Tests/"
}
},
"replace": {
"typo3-ter/aus_driver_amazon_s3": "self.version",
"typo3-ter/aus-driver-amazon-s3": "self.version"
},
"config": {
"vendor-dir": ".Build/vendor",
"bin-dir": ".Build/bin",
"allow-plugins": {
"typo3/class-alias-loader": true,
"typo3/cms-composer-installers": true,
"phpstan/extension-installer": true,
"phpro/grumphp": true,
"pluswerk/grumphp-config": true,
"ergebnis/composer-normalize": true
}
},
"scripts": {
"setupTest": [
"mkdir -p .Build/Web/typo3conf/ && ln -sfn ../../../../ .Build/Web/typo3conf/ext"
],
"test": [
"@setupTest",
"./Build/Scripts/runTests.sh -p '8.2' -s composerInstall && ./Build/Scripts/runTests.sh -p '8.2' -s composerValidate && ./Build/Scripts/runTests.sh -p '8.2' -s unit && ./Build/Scripts/runTests.sh -p '8.2' -s lint"
]
},
"extra": {
"typo3/cms": {
"extension-key": "aus_driver_amazon_s3",
"cms-package-dir": "{$vendor-dir}/typo3/cms",
"web-dir": ".Build/Web"
},
"pluswerk/grumphp-config": {
"auto-setting": true
},
"grumphp": {
"config-default-path": "vendor/pluswerk/grumphp-config/grumphp.yml"
}
}
}