-
Notifications
You must be signed in to change notification settings - Fork 15
/
FACT-Finder-PHP-Library.sublime-project
56 lines (54 loc) · 1.5 KB
/
FACT-Finder-PHP-Library.sublime-project
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
53
54
55
56
{
"folders":
[
{
"path": "."
}
],
"settings":
{
"rulers": [80, 120],
"default_encoding": "UTF-8",
"default_line_ending": "unix",
"ensure_newline_at_eof_on_save": true,
"todo": {
"folder_exclude_patterns": [
"log4php",
"report"
],
"file_exclude_patterns": [
"Pimple.php"
]
},
"trim_trailing_white_space_on_save": true
},
"build_systems":
[
{
"name": "FACT-Finder PHP Library",
"cmd": ["phpunit",
"--configuration", "phpunit.xml",
"."],
"shell": "true",
"file_regex": "^(?:Notice|Warning|Error|Fatal error|Parse error|Exception):(?=.*in (.*) on line (\\d+)())? ((?:(?! in ).)*)",
"working_dir": "$project_path/tests",
"variants": [
{
"name": "Run",
"cmd": ["phpunit",
"--configuration", "phpunit-coverage.xml",
"."]
},
{
"name": "PHPDoc",
"cmd": ["phpdoc",
"-d", "src/FACTFinder",
"-t", "docs",
"--template", "clean",
"--sourcecode"],
"working_dir": "$project_path"
}
]
}
]
}