-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.53 KB
/
composer.json
File metadata and controls
66 lines (66 loc) · 1.53 KB
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
{
"name": "azure-oss/storage-monorepo",
"description": "Azure Storage PHP SDK",
"keywords": ["azure", "storage", "php", "sdk"],
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"AzureOss\\Storage\\": "src/"
},
"files": [
"src/Common/aliases.php",
"src/Blob/aliases.php",
"src/BlobFlysystem/aliases.php"
]
},
"autoload-dev": {
"psr-4": {
"AzureOss\\Storage\\Tests\\": "tests/"
}
},
"authors": [
{
"name": "Brecht Vermeersch",
"email": "brechtvermeersch@outlook.be"
},
{
"name": "Pim Jansen",
"email": "pimjansen@gmail.com"
}
],
"require": {
"php": "^8.1",
"ext-curl": "*",
"ext-json": "*",
"ext-simplexml": "*",
"azure-oss/identity": "^1.0",
"caseyamcl/guzzle_retry_middleware": "^2.10",
"guzzlehttp/guzzle": "^7.8"
},
"require-dev": {
"ext-zlib": "*",
"guzzlehttp/test-server": "^0.1.0",
"laravel/pint": "1.20.0",
"league/flysystem-adapter-test-utilities": "^3.28",
"orchestra/testbench": "^8.27",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^10.5"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"scripts": {
"sync-packages": [
"@php .github/sync-package.php"
]
}
}