Skip to content

Commit d411a2b

Browse files
committed
2 parents fd9e6bd + e6a969a commit d411a2b

29 files changed

+798
-235
lines changed

.gitignore

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,2 +1,2 @@
11
.idea
2-
vendor
2+
vendor

.travis.yml

Lines changed: 13 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,17 +3,26 @@ php:
33
- 5.3.3
44
- 5.3
55
- 5.4
6+
- 5.5
7+
- 5.6
8+
- hhvm
9+
- hhvm-nightly
10+
11+
matrix:
12+
allow_failures:
13+
- php: hhvm
14+
- php: hhvm-nightly
615

716
script:
8-
- vendor/phpunit/phpunit/composer/bin/phpunit
17+
- vendor/bin/phpunit
918

1019
before_script:
1120
- sudo apt-get -qq update > /dev/null
1221
- phpenv rehash > /dev/null
1322
- composer selfupdate --quiet
14-
- composer install --dev
15-
- vendor/phpunit/phpunit/composer/bin/phpunit
16-
- composer update --dev
23+
- composer install --no-interaction --prefer-source --dev
24+
- vendor/bin/phpunit
25+
- composer update --no-interaction --prefer-source --dev
1726

1827
notifications:
1928
irc: "irc.freenode.org#phpdocumentor"

LICENSE

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
The MIT License (MIT)
2+
3+
Copyright (c) 2010 Mike van Riel
4+
5+
Permission is hereby granted, free of charge, to any person obtaining a copy
6+
of this software and associated documentation files (the "Software"), to deal
7+
in the Software without restriction, including without limitation the rights
8+
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
9+
copies of the Software, and to permit persons to whom the Software is
10+
furnished to do so, subject to the following conditions:
11+
12+
The above copyright notice and this permission notice shall be included in
13+
all copies or substantial portions of the Software.
14+
15+
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
16+
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
17+
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
18+
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
19+
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
20+
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN
21+
THE SOFTWARE.

composer.json

Lines changed: 10 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -8,13 +8,19 @@
88
"require": {
99
"php": ">=5.3.3"
1010
},
11-
"suggest": {
12-
"dflydev/markdown": "1.0.*"
13-
},
1411
"autoload": {
1512
"psr-0": {"Barryvdh": ["src/"]}
1613
},
1714
"require-dev": {
18-
"phpunit/phpunit": "3.7.*@stable"
15+
"phpunit/phpunit": "~4.0,<4.5"
16+
},
17+
"suggest": {
18+
"dflydev/markdown": "~1.0",
19+
"erusev/parsedown": "~1.0"
20+
},
21+
"extra": {
22+
"branch-alias": {
23+
"dev-master": "2.0.x-dev"
24+
}
1925
}
2026
}

0 commit comments

Comments
 (0)