mirror of
https://github.com/shivammathur/setup-php.git
synced 2025-01-19 14:51:44 +07:00
30 lines
611 B
JSON
30 lines
611 B
JSON
{
|
|
"problemMatcher": [
|
|
{
|
|
"owner": "php_native_error",
|
|
"severity": "error",
|
|
"pattern": [
|
|
{
|
|
"regexp": "^(.*error):\\s+\\s+(.+) in (.+) on line (\\d+)$",
|
|
"code": 1,
|
|
"message": 2,
|
|
"file": 3,
|
|
"line": 4
|
|
}
|
|
]
|
|
}, {
|
|
"owner": "php_native_warning",
|
|
"severity": "warning",
|
|
"pattern": [
|
|
{
|
|
"regexp": "^(.*Warning|.*Deprecated|.*Notice):\\s+\\s+(.+) in (.+) on line (\\d+)$",
|
|
"code": 1,
|
|
"message": 2,
|
|
"file": 3,
|
|
"line": 4
|
|
}
|
|
]
|
|
}
|
|
]
|
|
}
|