File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 3737 run : |
3838 bin/phpstan analyse src/ --level=max -c phpstan.neon
3939 bin/rector process --dry-run
40+ bin/structarmed analyze
4041 - name : " Run test suite"
4142 run : " mkdir -p build/logs && bin/kahlan --coverage=4 --reporter=verbose --clover=build/logs/clover.xml"
4243 - name : Upload coverage to Codecov
Original file line number Diff line number Diff line change 3232 "laminas/laminas-mvc" : " <3.0"
3333 },
3434 "require-dev" : {
35+ "boundwize/structarmed" : " ^0.0.3" ,
3536 "kahlan/kahlan" : " ^6.0" ,
3637 "laminas/laminas-coding-standard" : " ^3.0" ,
3738 "laminas/laminas-mvc" : " ^3.8" ,
Original file line number Diff line number Diff line change 44
55 <!-- Paths to check -->
66 <file >src</file >
7+ <file >rector.php</file >
8+ <file >structarmed.php</file >
79</ruleset >
Original file line number Diff line number Diff line change 1313 __DIR__ . '/config ' ,
1414 __DIR__ . '/src ' ,
1515 __DIR__ . '/spec ' ,
16- __DIR__ . '/rector.php '
1716 ])
1817 ->withRootFiles ()
1918 ->withSkip ([
Original file line number Diff line number Diff line change 1+ <?php
2+
3+ declare (strict_types=1 );
4+
5+ use Boundwize \StructArmed \Architecture ;
6+ use Boundwize \StructArmed \Preset \Preset ;
7+
8+ return Architecture::define ()
9+ ->withPreset (Preset::PSR4 (sourcePaths: ['src ' , 'spec ' ]));
You can’t perform that action at this time.
0 commit comments