Skip to content

Commit bfc443b

Browse files
committed
Merge pull request #15 from ashnazg/make-build
Make travis build
2 parents beb96a4 + 4a9ddd1 commit bfc443b

File tree

2 files changed

+26
-1
lines changed

2 files changed

+26
-1
lines changed

.travis.yml

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
language: php
2+
php:
3+
- 5.3.3
4+
- 5.3
5+
- 5.4
6+
7+
script:
8+
- vendor/phpunit/phpunit/composer/bin/phpunit
9+
10+
before_script:
11+
- sudo apt-get -qq update > /dev/null
12+
- phpenv rehash > /dev/null
13+
- composer selfupdate --quiet
14+
- composer install --dev
15+
- vendor/phpunit/phpunit/composer/bin/phpunit
16+
- composer update --dev
17+
18+
notifications:
19+
irc: "irc.freenode.org#phpdocumentor"
20+
email:
21+
22+

composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,5 +11,8 @@
1111
},
1212
"autoload": {
1313
"psr-0": {"phpDocumentor": ["src/"]}
14+
},
15+
"require-dev": {
16+
"phpunit/phpunit": "*@stable"
1417
}
15-
}
18+
}

0 commit comments

Comments
 (0)