-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
57 lines (57 loc) · 1.58 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": "sensiolabs-de/storyblok-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for sensiolabs-de/storyblok-api",
"license": "MIT",
"authors": [
{
"name": "Silas Joisten",
"email": "silasjoisten@proton.me"
}
],
"require": {
"php": ">=8.3",
"oskarstark/enum-helper": "^1.5",
"psr/log": "^3.0",
"sensiolabs-de/storyblok-api": "^3.4.0",
"symfony/config": "^6.0 || ^7.0",
"symfony/dependency-injection": "^6.0 || ^7.0",
"symfony/framework-bundle": "^6.0 || ^7.0",
"symfony/http-client": "^6.0 || ^7.0",
"symfony/http-kernel": "^6.0 || ^7.0",
"symfony/monolog-bundle": "^3.10",
"thecodingmachine/safe": "^2.0",
"webmozart/assert": "^1.11"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.2",
"ergebnis/data-provider": "^3.2",
"ergebnis/php-cs-fixer-config": "^6.28",
"ergebnis/test-util": "^1.5",
"matthiasnoback/symfony-config-test": "^5.2",
"phpstan/extension-installer": "^1.0",
"phpstan/phpstan": "^1.0",
"phpstan/phpstan-webmozart-assert": "^1.0",
"phpunit/phpunit": "^9.0",
"symfony/event-dispatcher": "^6.0 || ^7.1",
"thecodingmachine/phpstan-safe-rule": "^1.0"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"ergebnis/composer-normalize": true,
"phpstan/extension-installer": true
}
},
"autoload": {
"psr-4": {
"SensioLabs\\Storyblok\\Bundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SensioLabs\\Storyblok\\Bundle\\Tests\\": "tests/"
}
},
"minimum-stability": "stable"
}