-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
88 lines (88 loc) · 2.53 KB
/
composer.json
File metadata and controls
88 lines (88 loc) · 2.53 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
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
{
"name": "21torr/storyblok",
"description": "A Symfony integration for the Storyblok headless CMS",
"license": "MIT",
"type": "symfony-bundle",
"authors": [
{
"name": "21TORR",
"homepage": "https://www.21torr.com/"
}
],
"require": {
"php": ">= 8.4",
"ext-ctype": "*",
"ext-dom": "*",
"ext-libxml": "*",
"21torr/bundle-helpers": "^2.3.1",
"21torr/cli": "^1.3",
"21torr/hosting": "^3.2 || ^4.0",
"21torr/snail": "^1.0.2",
"galbar/jsonpath": "^3.0",
"jfcherng/php-diff": "^6.16.2",
"psr/log": "^3.0",
"symfony/config": "^7.4 || ^8.0",
"symfony/console": "^7.4 || ^8.0",
"symfony/dependency-injection": "^7.4 || ^8.0",
"symfony/event-dispatcher": "^7.4 || ^8.0",
"symfony/filesystem": "^7.4 || ^8.0",
"symfony/finder": "^7.4 || ^8.0",
"symfony/framework-bundle": "^7.4 || ^8.0",
"symfony/http-client": "^7.4 || ^8.0",
"symfony/http-foundation": "^7.4 || ^8.0",
"symfony/http-kernel": "^7.4 || ^8.0",
"symfony/lock": "^7.4 || ^8.0",
"symfony/rate-limiter": "^7.4 || ^8.0",
"symfony/routing": "^7.4 || ^8.0",
"symfony/service-contracts": "^3.5",
"symfony/string": "^7.4 || ^8.0",
"symfony/validator": "^7.4 || ^8.0",
"ueberdosis/tiptap-php": "^1.3"
},
"require-dev": {
"21torr/janus": "^2.0.3",
"bamarni/composer-bin-plugin": "^1.8.2",
"phpunit/phpunit": "^12.2.5",
"roave/security-advisories": "dev-latest"
},
"autoload": {
"psr-4": {
"Torr\\Storyblok\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Torr\\Storyblok\\": "tests/"
}
},
"config": {
"allow-plugins": {
"21torr/janus": true,
"bamarni/composer-bin-plugin": true
},
"sort-packages": true
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true
},
"branch-alias": {
"5.x-dev": "5.99.x-dev"
}
},
"scripts": {
"fix-lint": [
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --ansi",
"vendor-bin/cs-fixer/vendor/bin/php-cs-fixer fix --diff --config vendor-bin/cs-fixer/vendor/21torr/php-cs-fixer/.php-cs-fixer.dist.php --allow-unsupported-php-version=yes --no-interaction --ansi"
],
"lint": [
"@composer bin c-norm normalize \"$(pwd)/composer.json\" --indent-style tab --indent-size 1 --dry-run --ansi",
"vendor-bin/cs-fixer/vendor/bin/php-cs-fixer check --diff --config vendor-bin/cs-fixer/vendor/21torr/php-cs-fixer/.php-cs-fixer.dist.php --allow-unsupported-php-version=yes --no-interaction --ansi"
],
"test": [
"phpunit",
"vendor-bin/phpstan/vendor/bin/phpstan analyze -c phpstan.neon . --ansi -v"
]
}
}