-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
85 lines (83 loc) · 2.47 KB
/
composer.json
File metadata and controls
85 lines (83 loc) · 2.47 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
{
"name": "shapecode/twig-string-loader-bundle",
"description": "Adds a string loader to twig",
"keywords": [
"symfony",
"shapecode",
"twig",
"template",
"string",
"string loader",
"loader",
"bundle"
],
"type": "symfony-bundle",
"license": "MIT",
"homepage": "https://github.com/shapecode/twig-string-loader-bundle",
"support": {
"email": "support@shapecode.de",
"issues": "https://github.com/shapecode/twig-string-loader-bundle/issues",
"source": "https://github.com/shapecode/twig-string-loader-bundle/releases",
"wiki": "https://github.com/shapecode/twig-string-loader-bundle/wiki"
},
"authors": [
{
"name": "Nikita Loges",
"homepage": "https://loges.one",
"email": "dev@loges.one"
}
],
"require": {
"php": "^8.4",
"symfony/dependency-injection": "^7.4 || ^8.0",
"symfony/http-kernel": "^7.4 || ^8.0",
"symfony/config": "^7.4 || ^8.0",
"shapecode/twig-string-loader": "^2.0"
},
"require-dev": {
"doctrine/coding-standard": "^14.0",
"roave/security-advisories": "dev-master",
"squizlabs/php_codesniffer": "^4.0",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-deprecation-rules": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpunit/phpunit": "^12.5.3",
"symfony/var-dumper": "^8.0",
"shipmonk/composer-dependency-analyser": "^1.8.4"
},
"autoload": {
"psr-4": {
"Shapecode\\Bundle\\TwigStringLoaderBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Shapecode\\Bundle\\TwigStringLoaderBundle\\Tests\\": "tests/"
}
},
"scripts": {
"check": [
"@cda",
"@cs-check",
"@phpstan"
],
"phpstan": "./vendor/bin/phpstan analyse ./src",
"cda": "vendor/bin/composer-dependency-analyser --config=./composer-dependency-analyser.php",
"phpunit": "./vendor/bin/phpunit",
"cs-fix": "./vendor/bin/phpcbf",
"cs-check": "./vendor/bin/phpcs -s"
},
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}