-
Notifications
You must be signed in to change notification settings - Fork 23
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #28 from heathdutton/master
Update unit tests and support modern Laravel
- Loading branch information
Showing
11 changed files
with
105 additions
and
58 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,4 @@ | ||
.DS_Store | ||
vendor | ||
composer.lock | ||
composer.phar | ||
composer.phar |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,20 +1,33 @@ | ||
dist: trusty | ||
|
||
language: php | ||
|
||
php: | ||
- 5.4 | ||
- 5.5 | ||
- 5.6 | ||
- 7.0 | ||
- hhvm | ||
- 7.1 | ||
- 7.2 | ||
- 7.3 | ||
- 7.4 | ||
|
||
env: | ||
- COMPOSER_MEMORY_LIMIT=-1 | ||
|
||
before_script: | ||
- composer self-update | ||
- composer install --prefer-source --no-interaction --dev | ||
- | | ||
if [ "$TRAVIS_PHP_VERSION" == "5.5" ]; then | ||
echo using PHPUnit 4.8.36 | ||
curl -sSfL -o ~/.phpenv/versions/$TRAVIS_PHP_VERSION/bin/phpunit https://phar.phpunit.de/phpunit-4.8.36.phar; | ||
elif [ $(echo "$TRAVIS_PHP_VERSION >= 7.2" | bc -l) -eq 1 ]; then | ||
echo using PHPUnit 8.5.2 | ||
curl -sSfL -o ~/.phpenv/versions/$TRAVIS_PHP_VERSION/bin/phpunit https://phar.phpunit.de/phpunit-8.5.2.phar; | ||
fi | ||
script: phpunit | ||
|
||
matrix: | ||
allow_failures: | ||
- php: 5.6 | ||
- php: hhvm | ||
fast_finish: true |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,23 +1,21 @@ | ||
{ | ||
"name": "vtalbot/markdown", | ||
"description": "Markdown compiler for Laravel 4", | ||
"description": "Markdown compiler for Laravel 5", | ||
"keywords": ["laravel", "md", "markdown", "illuminate"], | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Vincent Talbot", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"authors": [{ | ||
"name": "Vincent Talbot", | ||
"email": "[email protected]" | ||
}], | ||
"require": { | ||
"laravel/framework": "~5.0", | ||
"michelf/php-markdown": "1.5.x" | ||
"laravel/framework": "^5||^6||^7||^8", | ||
"michelf/php-markdown": "^1.8" | ||
}, | ||
"require-dev": { | ||
"mockery/mockery": "0.9.0" | ||
}, | ||
"autoload": { | ||
"psr-0": {"VTalbot\\Markdown": "src/"} | ||
"psr-4": { "VTalbot\\Markdown\\": "src/" } | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
File renamed without changes.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters