forked from schmittjoh/twig.js
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
executable file
·45 lines (44 loc) · 1.08 KB
/
composer.json
File metadata and controls
executable file
·45 lines (44 loc) · 1.08 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
{
"name": "forknetwork/twig-js",
"type": "library",
"description": "twig.js, flexible, secure, and high-performance templating engine for Javascript",
"keywords": ["templating"],
"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",
"ext-json": "*",
"twig/twig": "^2.7.1"
},
"require-dev": {
"dnode/dnode": "~0.2",
"phpunit/phpunit": "^7.0",
"squizlabs/php_codesniffer": "~1.0"
},
"replace": {
"jms/twig-js": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": { "TwigJs\\": "src/TwigJs/" }
},
"autoload-dev": {
"psr-4": { "TwigJs\\Tests\\": "tests//TwigJs/Tests/" }
},
"extra": {
"branch-alias": {
"dev-master": "4.0-dev"
}
}
}