Skip to content

Commit 0a4d86e

Browse files
author
Gianluca Arbezzano
committed
Merge pull request #43 from gianarb/feature/phpunit-conf
Maintenance refactoring
2 parents 30409ae + 3c49e19 commit 0a4d86e

18 files changed

+2122
-24
lines changed

.gitignore

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
tests/*.expect
22
tests/*.result
3+
tests/.test_fs
34
build/
45
vendor/
56
phpctags

.travis.yml

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
language: php
2+
3+
php:
4+
- 5.3
5+
- 5.4
6+
- 5.5
7+
- 5.6
8+
- 7
9+
- hhvm
10+
11+
before_script:
12+
- composer self-update
13+
- composer install
14+
15+
script:
16+
- vendor/bin/phpunit
17+
18+
branches:
19+
only:
20+
- master
21+
- develop

README.md

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,6 @@
11
phpctags
22
========
3+
[![Build Status](https://travis-ci.org/vim-php/phpctags.svg)](https://travis-ci.org/vim-php/phpctags)
34

45
An enhanced php [ctags](http://ctags.sourceforge.net/) index file generator
56
compatible with http://ctags.sourceforge.net/FORMAT.

composer.json

Lines changed: 8 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -7,8 +7,16 @@
77
"php": ">=5.3",
88
"nikic/php-parser": "*"
99
},
10+
"require-dev": {
11+
"phpunit/phpunit": "~4"
12+
},
1013
"autoload": {
1114
"classmap": ["PHPCtags.class.php"]
1215
},
16+
"autoload-dev": {
17+
"psr-4": {
18+
"tests\\PHPCTags\\": "tests/"
19+
}
20+
},
1321
"bin": ["phpctags"]
1422
}

0 commit comments

Comments
 (0)