-
Notifications
You must be signed in to change notification settings - Fork 49
/
composer.json
38 lines (38 loc) · 1018 Bytes
/
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
{
"name" : "sugarcrm/tidbit",
"description" : "Random data generator for Sugar",
"license" : "proprietary",
"version" : "2.0.0",
"keywords" : ["Sugar", "SugarCRM", "Tidbit"],
"homepage": "https://github.com/sugarcrm/tidbit",
"authors": [
{
"name": "SugarCRM",
"homepage": "http://www.sugarcrm.com"
}
],
"support": {
"wiki" : "https://github.com/sugarcrm/tidbit/wiki",
"source" : "https://github.com/sugarcrm/tidbit",
"issues" : "https://github.com/sugarcrm/tidbit/issues"
},
"require" : {
"php": ">=5.4"
},
"require-dev": {
"phpunit/phpunit": "4.*",
"squizlabs/php_codesniffer": "2.6"
},
"autoload" : {
"psr-4" : {
"Sugarcrm\\Tidbit\\": "src/",
"Sugarcrm\\Tidbit\\Tests\\": "tests/"
}
},
"scripts" : {
"check-style" : "./vendor/bin/phpcs --standard=./ruleset.xml",
"tests" : "./vendor/bin/phpunit",
"tests-ci" : "./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml"
},
"bin": ["bin/tidbit"]
}