-
-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
92 lines (92 loc) · 2.97 KB
/
composer.json
File metadata and controls
92 lines (92 loc) · 2.97 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
89
90
91
92
{
"name": "shapecode/twig-template-event-bundle",
"description": "Possibility to add code in a twig template dynamically",
"keywords": [
"shapecode",
"twig",
"template",
"event",
"injection",
"event listener",
"dispatcher",
"bundle"
],
"type": "symfony-bundle",
"license": "MIT",
"homepage": "https://github.com/shapecode/twig-template-event-bundle",
"support": {
"email": "support@shapecode.de",
"issues": "https://github.com/shapecode/twig-template-event-bundle/issues",
"source": "https://github.com/shapecode/twig-template-event-bundle/releases",
"wiki": "https://github.com/shapecode/twig-template-event-bundle/wiki"
},
"authors": [
{
"name": "Nikita Loges",
"homepage": "https://loges.one",
"email": "dev@loges.one"
}
],
"require": {
"php": "^8.4",
"symfony/config": "^7.4 || ^8.0",
"symfony/http-kernel": "^7.4 || ^8.0",
"symfony/dependency-injection": "^7.4 || ^8.0",
"symfony/event-dispatcher": "^7.4 || ^8.0",
"symfony/event-dispatcher-contracts": "^3.6",
"symfony/http-foundation": "^7.4 || ^8.0",
"symfony/service-contracts": "^3.6",
"twig/twig": "^3.22"
},
"require-dev": {
"doctrine/coding-standard": "^14.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^4.0.1",
"phpstan/phpstan": "^2.1.33",
"phpstan/phpstan-deprecation-rules": "^2.0.3",
"phpstan/phpstan-phpunit": "^2.0.10",
"phpstan/phpstan-strict-rules": "^2.0.7",
"phpunit/phpunit": "^12.5.3",
"symfony/var-dumper": "^8.0",
"dg/bypass-finals": "^1.9",
"shipmonk/composer-dependency-analyser": "^1.8.4",
"shapecode/twig-string-loader": "^2.0"
},
"autoload": {
"psr-4": {
"Shapecode\\Bundle\\TwigTemplateEventBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shapecode\\Bundle\\TwigTemplateEventBundle\\Tests\\": "tests/"
}
},
"scripts": {
"check": [
"@cda",
"@cs-check",
"@phpstan",
"@phpunit"
],
"phpstan": "./vendor/bin/phpstan analyse",
"cda": "vendor/bin/composer-dependency-analyser --config=./composer-dependency-analyser.php",
"phpstan-update-baseline": "phpstan analyse --ansi --generate-baseline phpstan-baseline.neon",
"phpunit": "./vendor/bin/phpunit",
"cs-fix": "./vendor/bin/phpcbf",
"cs-check": "./vendor/bin/phpcs -s"
},
"extra": {
"branch-alias": {
"dev-master": "5.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"icanhazstring/composer-unused": true
}
}
}