-
Notifications
You must be signed in to change notification settings - Fork 6
/
composer.json
52 lines (52 loc) · 1.48 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
{
"name": "phproberto/joomla-entity",
"description": "Entities for Joomla!",
"keywords": ["joomla", "entity", "orm"],
"homepage": "https://github.com/phproberto/joomla-entity",
"license": "LGPL-2.1+",
"authors": [
{
"name": "Roberto Segura López",
"email": "[email protected]",
"homepage": "http://phproberto.com"
}
],
"config": {
"process-timeout":0
},
"require": {
"php": "^7.0"
},
"autoload": {
"psr-4": {
"Phproberto\\Joomla\\Entity\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Phproberto\\Joomla\\Entity\\Tests\\": "tests/tests"
}
},
"require-dev": {
"phpunit/phpunit": "^4.8.35",
"joomla/coding-standards": "~2.0@alpha",
"squizlabs/php_codesniffer": "^2.8"
},
"extra": {
"branch-alias": {
"dev-master": "2.0-dev"
}
},
"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",
"testFailFast" : "./vendor/bin/phpunit --stop-on-failure",
"testWithCoverage" : "./vendor/bin/phpunit --coverage-html tests/coverage",
"watch" : "cd ./build && gulp watch"
}
}