Skip to content

Commit 1f66f04

Browse files
committed
extract HTMLParser class to use Diggin
1 parent 3e278b5 commit 1f66f04

22 files changed

+577
-7522
lines changed

.gitignore

+13
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,13 @@
1+
.buildpath
2+
.DS_Store
3+
.idea
4+
.project
5+
.settings/
6+
.*.sw*
7+
.*.un~
8+
build/
9+
composer.phar
10+
composer.lock
11+
nbproject
12+
tmp/
13+
vendor/

.travis.yml

+21
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
sudo: false
2+
3+
language: php
4+
5+
php:
6+
- 5.5
7+
- 5.6
8+
- 7.0
9+
- hhvm
10+
11+
install:
12+
- travis_retry composer install --no-interaction
13+
- composer info -i
14+
15+
script:
16+
- ./vendor/bin/phpunit --coverage-clover ./build/logs/clover.xml
17+
18+
matrix:
19+
fast_finish: true
20+
allow_failures:
21+
- php: hhvm

0 commit comments

Comments
 (0)