-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
53 lines (53 loc) · 1.16 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
{
"name": "cloudinary/transformation-builder-sdk",
"version": "1.5.0",
"description": "Cloudinary PHP Transformation Builder SDK",
"keywords": [
"cloudinary",
"sdk",
"cloud",
"image management",
"cdn"
],
"type": "library",
"homepage": "https://github.com/cloudinary/php-transformation-builder-sdk",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Cloudinary",
"homepage": "https://github.com/cloudinary/php-transformation-builder-sdk/graphs/contributors"
}
],
"support": {
"email": "info@cloudinary.com",
"issues": "https://github.com/cloudinary/php-transformation-builder-sdk/issues"
},
"require": {
"php": ">=5.6.0",
"ext-json": "*"
},
"require-dev": {
"symfony/phpunit-bridge": "^5.2",
"phpmd/phpmd": "*",
"squizlabs/php_codesniffer": "3.*",
"friendsofphp/php-cs-fixer": "*",
"ext-dom": "*",
"ext-libxml": "*",
"ext-zip": "*",
"consolidation/robo": "~1"
},
"autoload": {
"classmap": [
"src"
]
},
"autoload-dev": {
"classmap": [
"tests"
],
"psr-4": {
"Cloudinary\\Test\\": "tests/"
}
}
}