-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.74 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.74 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
{
"name": "speicher210/cloudinary-bundle",
"description": "Bundle for Cloudinary PHP API library",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"cloudinary",
"symfony",
"bundle"
],
"authors": [
{
"name": "Dragos Protung",
"email": "dragos@protung.de",
"role": "Developer"
}
],
"homepage": "https://github.com/protung/cloudinary-bundle",
"require": {
"php": "~8.3.0 || ~8.4.0 || ~8.5.0",
"cloudinary/cloudinary_php": "^3.1.1",
"php-standard-library/php-standard-library": "^3.0.0 || ^4.0.0 || ^5.0.0 || ^6.0.0",
"symfony/console": "^6.4 || ^7.4 || ^8.0",
"symfony/finder": "^6.4 || ^7.4 || ^8.0",
"symfony/framework-bundle": "^6.4 || ^7.4 || ^8.0",
"symfony/yaml": "^6.4 || ^7.4 || ^8.0"
},
"require-dev": {
"doctrine/coding-standard": "^14.0.0",
"ergebnis/composer-normalize": "^2.50.0",
"php-standard-library/phpstan-extension": "^2.0.3",
"phpstan/phpstan": "^2.1.40",
"phpstan/phpstan-deprecation-rules": "^2.0.4",
"phpstan/phpstan-phpunit": "^2.0.16",
"phpstan/phpstan-strict-rules": "^2.0.10",
"phpstan/phpstan-symfony": "^2.0.15",
"phpunit/phpunit": "^12.5.14",
"roave/security-advisories": "dev-latest",
"twig/twig": "^3.23.0"
},
"suggest": {
"twig/twig": "Allow to use the cloudinary_url function/filter"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Speicher210\\CloudinaryBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Speicher210\\CloudinaryBundle\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"sort-packages": true
}
}