-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
56 lines (56 loc) · 1.47 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
{
"name": "chialab/object-storage",
"description": "A collection of adapters for various object storage services.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Chialab srl",
"email": "[email protected]"
}
],
"require": {
"php": "~8.1",
"guzzlehttp/promises": "^1.5",
"psr/http-message": "^1.0",
"guzzlehttp/psr7": "^2.2",
"webmozart/assert": "^1.10",
"aws/aws-sdk-php": "^3.222"
},
"require-dev": {
"phpunit/phpunit": "^11.2",
"phpstan/phpstan": "^1.11",
"cakephp/cakephp-codesniffer": "^5.1",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan-webmozart-assert": "^1.2",
"phpstan/phpstan-phpunit": "^1.4"
},
"autoload": {
"psr-4": {
"Chialab\\ObjectStorage\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Chialab\\ObjectStorage\\Test\\TestCase\\": "tests/TestCase"
}
},
"scripts": {
"check": [
"@test",
"@stan",
"@cs-check"
],
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"stan": "phpstan analyse --memory-limit=-1",
"test": "@unit",
"unit": "phpunit --colors=always"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true
}
}
}