-
Notifications
You must be signed in to change notification settings - Fork 37
/
composer.json
72 lines (72 loc) · 2.23 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
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
{
"name": "noiselabs/smarty-bundle",
"type": "symfony-bundle",
"description": "This Symfony bundle provides integration for the Smarty3 template engine.",
"keywords": ["templating", "smarty", "symfony", "noiselabs"],
"homepage": "https://smartybundle.readthedocs.io/",
"license": "LGPL-3.0",
"authors": [
{
"name": "Vítor Brandão",
"email": "[email protected]",
"homepage": "https://noiselabs.io"
},
{
"name": "Community contributions",
"homepage": "https://github.com/noiselabs/SmartyBundle/contributors"
}
],
"support": {
"docs": "https://smartybundle.readthedocs.io/en/latest/",
"forum": "https://gitter.im/noiselabs/SmartyBundle",
"irc": "irc://irc.freenode.org/noiselabs",
"issues": "https://github.com/noiselabs/SmartyBundle/issues"
},
"config": {
"sort-packages": true
},
"require": {
"php": "^7.1|^8",
"ext-intl": "*",
"ext-simplexml": "*",
"smarty/smarty": "^3.1.40",
"symfony/framework-bundle": "^4|^5",
"symfony/polyfill-php80": "^1.23",
"symfony/templating": "^4|^5"
},
"require-dev": {
"phpunit/phpunit": "*",
"symfony/asset": "^4|^5",
"symfony/browser-kit": "^4|^5",
"symfony/console": "^4|^5",
"symfony/css-selector": "^4|^5",
"symfony/expression-language": "^4|^5",
"symfony/phpunit-bridge": "^5",
"symfony/security": "^3.4.48|^4|^5",
"symfony/security-acl": "^3|^4|^5",
"symfony/translation": "^4|^5",
"symfony/yaml": "^4|^5"
},
"autoload": {
"psr-4": {
"NoiseLabs\\Bundle\\SmartyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"NoiseLabs\\Bundle\\SmartyBundle\\Tests\\": "tests/"
}
},
"extra": {
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"scripts": {
"test": "XDEBUG_MODE=coverage phpunit",
"test-with-coverage": "@test --coverage-text",
"test-unit": "@test --testsuite=unit",
"test-functional": "@test --testsuite=functional",
"server:start": "@php -v"
}
}