-
Notifications
You must be signed in to change notification settings - Fork 47
/
composer.json
63 lines (63 loc) · 1.4 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
58
59
60
61
62
63
{
"name": "uploadcare/uploadcare-php",
"description": "Uploadcare PHP integration handles uploads and further operations with files by wrapping Upload and REST APIs.",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Uploadcare, Inc",
"email": "[email protected]"
}
],
"keywords": [
"files",
"upload",
"cdn",
"uploadcare",
"image management",
"cloud"
],
"homepage": "https://uploadcare.com",
"support": {
"email": "[email protected]",
"issues": "https://github.com/uploadcare/uploadcare-php/issues"
},
"minimum-stability": "stable",
"require": {
"php": ">=7.4 || >=8.0",
"ext-curl": "*",
"ext-json": "*",
"guzzlehttp/guzzle": "^7.5",
"guzzlehttp/psr7": "^2.4",
"symfony/polyfill-php80": "^1.26",
"symfony/polyfill-uuid": "^1.26"
},
"require-dev": {
"fakerphp/faker": "^1.20",
"friendsofphp/php-cs-fixer": "^3.11",
"phpunit/phpunit": "^9.5",
"symfony/dotenv": "^5.4",
"symfony/var-dumper": "^5.4",
"vimeo/psalm": "^4.27"
},
"autoload": {
"psr-4": {
"Uploadcare\\": "./src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}