Skip to content

Commit

Permalink
Merge pull request #5 from olssonm/dev
Browse files Browse the repository at this point in the history
Update for Laravel 5.4
  • Loading branch information
olssonm authored Feb 1, 2017
2 parents f9be099 + ccb9b37 commit 308120b
Show file tree
Hide file tree
Showing 5 changed files with 14 additions and 11 deletions.
4 changes: 2 additions & 2 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,6 @@ php:

before_script:
- travis_retry composer self-update
- travis_retry composer install --prefer-dist --no-interaction
- travis_retry composer install --no-interaction

script: phpunit
script: composer test
2 changes: 1 addition & 1 deletion LICENSE.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# The MIT License (MIT)

Copyright (c) 2016 Marcus Olsson <hello@marcusolsson.me>
Copyright (c) 2017 Marcus Olsson <contact@marcusolsson.me>

> Permission is hereby granted, free of charge, to any person obtaining a copy
> of this software and associated documentation files (the "Software"), to deal
Expand Down
14 changes: 8 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,17 +11,18 @@
"authors": [
{
"name": "Marcus Olsson",
"email": "hello@marcusolsson.me",
"email": "contact@marcusolsson.me",
"homepage": "https://marcusolsson.me"
}
],
"require": {
"illuminate/support": "~5.3",
"illuminate/support": "~5.4",
"php" : ">=5.3.0"
},
"require-dev": {
"phpunit/phpunit" : "4.*",
"orchestra/testbench": "~3.3"
"phpunit/phpunit" : "5.7.*",
"orchestra/testbench": "~3.4",
"orchestra/testbench-browser-kit": "~3.4"
},
"autoload": {
"psr-4": {
Expand All @@ -38,8 +39,9 @@
},
"extra": {
"branch-alias": {
"dev-master": "2.x-dev"
"dev-master": "3.x-dev"
}
},
"minimum-stability": "stable"
"minimum-stability": "dev",
"prefer-stable": true
}
3 changes: 2 additions & 1 deletion readme.md
Original file line number Diff line number Diff line change
Expand Up @@ -14,6 +14,7 @@ All this package does is to add a route for `/humans.txt` and the associated vie
:---------|:----------
5.2.x | 1.x
5.3.x | 2.x
5.4.x | 3.x

## Install

Expand Down Expand Up @@ -73,7 +74,7 @@ $ phpunit

The MIT License (MIT). Please see [License File](LICENSE.md) for more information.

© 2016 [Marcus Olsson](https://marcusolsson.me).
© 2017 [Marcus Olsson](https://marcusolsson.me).

[ico-version]: https://img.shields.io/packagist/v/olssonm/l5-humans.svg?style=flat-square
[ico-license]: https://img.shields.io/badge/license-MIT-brightgreen.svg?style=flat-square
Expand Down
2 changes: 1 addition & 1 deletion tests/HumansTest.php
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

use Artisan;

class HumansTest extends \Orchestra\Testbench\TestCase {
class HumansTest extends \Orchestra\Testbench\BrowserKit\TestCase {

/**
* Setup
Expand Down

0 comments on commit 308120b

Please sign in to comment.