Skip to content

Commit 5764c18

Browse files
committed
ADDED : #24 : Add Scrutinizer Support
1 parent b7d5b75 commit 5764c18

File tree

2 files changed

+25
-2
lines changed

2 files changed

+25
-2
lines changed

.scrutinizer.yml

Lines changed: 24 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,24 @@
1+
filter:
2+
excluded_paths: [ 'vendor/*', 'tests/*', 'samples/*' ]
3+
4+
before_commands:
5+
- "composer install --prefer-source --dev"
6+
7+
tools:
8+
php_code_sniffer:
9+
enabled: true
10+
config:
11+
standard: PSR2
12+
php_mess_detector:
13+
enabled: true
14+
config:
15+
ruleset: phpmd.xml.dist
16+
external_code_coverage:
17+
enabled: true
18+
timeout: 900
19+
php_cpd: true
20+
# php_sim: # Temporarily disabled to allow focus on things other than duplicates
21+
# min_mass: 40
22+
php_pdepend: true
23+
php_analyzer: true
24+
sensiolabs_security_checker: true

tests/PhpPowerpoint/Tests/Style/AlignmentTest.php

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -16,8 +16,7 @@
1616
*
1717
* @coversDefaultClass PhpOffice\PhpPowerpoint\PhpPowerpoint
1818
*/
19-
class AlignmentTest
20-
extends \PHPUnit_Framework_TestCase
19+
class AlignmentTest extends \PHPUnit_Framework_TestCase
2120
{
2221
/**
2322
* Test create new instance

0 commit comments

Comments
 (0)