-
Notifications
You must be signed in to change notification settings - Fork 7
/
composer.json
40 lines (40 loc) · 1.04 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
{
"name": "phproberto/joomla-twig",
"description": "Twig 2.0 integration for Joomla!",
"license": "GPL-2.0",
"authors": [
{
"name": "Roberto Segura López",
"email": "[email protected]",
"homepage": "http://phproberto.com"
}
],
"require": {
"php": "^7.0"
},
"autoload": {
"psr-4": {
"Phproberto\\Joomla\\Twig\\": "extensions/libraries/twig/src/"
}
},
"autoload-dev": {
"psr-4": {
"Phproberto\\Joomla\\Twig\\Tests\\": "tests/tests"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8.35",
"joomla/coding-standards": "~2.0@alpha",
"squizlabs/php_codesniffer": "^2.8"
},
"scripts": {
"clean": "cd ./build && gulp clean",
"copy" : "cd ./build && gulp copy",
"cs" : "./vendor/bin/phpcs",
"dev": "cd ./build && gulp",
"release" : "cd ./build && gulp release",
"setup" : "cd ./build && npm install && cp gulp-config.dist.json gulp-config.json",
"test" : "./vendor/bin/phpunit",
"watch" : "cd ./build && gulp watch"
}
}