-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
57 lines (57 loc) · 1.24 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
{
"name": "const-cloudinary/cld_transformation_builder_php",
"version": "1.0.0",
"description": "Cloudinary Transformation Builder PHP SDK",
"keywords": [
"cloudinary",
"sdk",
"cloud",
"image management",
"cdn"
],
"type": "library",
"homepage": "https://github.com/cloudinary/cloudinary_php",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Cloudinary",
"homepage": "https://github.com/cloudinary/cloudinary_php/graphs/contributors"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/cloudinary/cloudinary_php/issues"
},
"require": {
"php": ">=5.6.0",
"guzzlehttp/guzzle": "^6|^7",
"shrikeh/teapot": "^1|^2",
"ext-json": "*",
"monolog/monolog": "^1|^2",
"psr/log" : "^1|^2|^3"
},
"require-dev": {
"phpunit/phpunit": "^5",
"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/"
}
}
}