-
Notifications
You must be signed in to change notification settings - Fork 46
/
composer.json
33 lines (33 loc) · 945 Bytes
/
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
{
"name": "10up/windows-azure-storage",
"description": "Use the Microsoft Azure Storage service to host your website's media files.",
"type": "wordpress-plugin",
"keywords": [],
"homepage": "https://github.com/10up/windows-azure-storage",
"license": "BSD-2-Clause",
"authors": [
{
"name": "10up",
"email": "[email protected]",
"homepage": "https://10up.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"require": {
"php": ">=8.0",
"microsoft/azure-storage-blob": "1.5.3",
"microsoft/azure-storage-common": "1.5.2"
},
"require-dev": {
"10up/phpcs-composer": "dev-master"
},
"scripts": {
"phpcs:compat": "vendor/bin/phpcs windows-azure-storage.php includes/ -p --standard=PHPCompatibilityWP --extensions=php --runtime-set testVersion 8.0-"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}