forked from schmittjoh/JMSTwigJsBundle
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.31 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.31 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
{
"name": "forknetwork/twig-js-bundle",
"type": "symfony-bundle",
"description": "Integrates twig.js into your Symfony2 application",
"keywords": ["templating"],
"homepage": "http://jmsyst.com/bundles/JMSTwigJsBundle",
"license": "Apache-2.0",
"authors": [
{
"name": "Rolf Babijn",
"email": "mailrolf@gmail.com"
},
{
"name": "Johannes M. Schmitt",
"email": "schmittjoh@gmail.com",
"role": "Legacy developer"
}
],
"require": {
"php": "^7.1",
"forknetwork/twig-js": "^4.0",
"symfony/config": "^3.0|^4.0",
"symfony/dependency-injection": "^3.0|^4.0",
"symfony/framework-bundle": "^3.0|^4.0",
"symfony/http-foundation": "^3.0|^4.0",
"symfony/http-kernel": "^3.0|^4.0",
"symfony/translation": "^3.0|^4.0",
"symfony/twig-bridge": "^3.0|^4.0"
},
"replace": {
"jms/twig-js-bundle": "*"
},
"require-dev": {
"phpunit/phpunit": "^7.1"
},
"autoload": {
"psr-4": { "JMS\\TwigJsBundle\\": "" },
"exclude-from-classmap": [
"/Tests/"
]
},
"scripts": {
"test": "phpunit"
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
}
}