Skip to content

Commit cdb3633

Browse files
authored
Merge pull request #1360 from adfinis-forks/drop-gh-pages
Drop GitHub pages, switch to coveralls
2 parents 7f46d95 + 0b27bb9 commit cdb3633

File tree

5 files changed

+8
-46
lines changed

5 files changed

+8
-46
lines changed

.scrutinizer.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@ tools:
1919
config:
2020
ruleset: phpmd.xml.dist
2121
external_code_coverage:
22-
enabled: true
22+
enabled: false
2323
timeout: 1200
2424
php_cpd: true
2525
# php_sim: # Temporarily disabled to allow focus on things other than duplicates

.travis.yml

Lines changed: 3 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -54,8 +54,6 @@ script:
5454
## PHPDocumentor
5555
- if [ -z "$COVERAGE" ]; then ./vendor/bin/phpdoc -q -d ./src -t ./build/docs --ignore "*/src/PhpWord/Shared/*/*" --template="responsive-twig" ; fi
5656

57-
after_script:
58-
## PHPDocumentor
59-
- bash .travis_shell_after_success.sh
60-
## Scrutinizer
61-
- if [ -n "$COVERAGE" ]; then wget https://scrutinizer-ci.com/ocular.phar && php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml ; fi
57+
after_success:
58+
## Coveralls
59+
- if [ -n "$COVERAGE" ]; then travis_retry php vendor/bin/php-coveralls -v ; fi

.travis_shell_after_success.sh

Lines changed: 0 additions & 39 deletions
This file was deleted.

CHANGELOG.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -40,6 +40,8 @@ v0.15.0 (?? ??? 2018)
4040
- Remove zend-stdlib dependency @Trainmaster #1284
4141
- The default unit for `\PhpOffice\PhpWord\Style\Image` changed from `px` to `pt`.
4242

43+
### Miscelaneous
44+
- Drop GitHub pages, switch to coveralls for code coverage analysis @czosel #1360
4345

4446
v0.14.0 (29 Dec 2017)
4547
----------------------

composer.json

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@
7272
"phploc/phploc": "2.* || 3.* || 4.*",
7373
"dompdf/dompdf":"0.8.*",
7474
"tecnickcom/tcpdf": "6.*",
75-
"mpdf/mpdf": "5.* || 6.* || 7.*"
75+
"mpdf/mpdf": "5.* || 6.* || 7.*",
76+
"php-coveralls/php-coveralls": "1.1.0 || ^2.0"
7677
},
7778
"suggest": {
7879
"ext-zip": "Allows writing OOXML and ODF",

0 commit comments

Comments
 (0)