Skip to content
This repository was archived by the owner on Jan 18, 2018. It is now read-only.

Commit b9a100e

Browse files
0.3 wip
1 parent 3988ac0 commit b9a100e

4 files changed

Lines changed: 17 additions & 31 deletions

File tree

.travis.yml

Lines changed: 6 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -3,16 +3,18 @@ language: php
33
php:
44
- 5.4
55
- 5.5
6+
- 5.6
7+
- hhvm
68

79
before_script:
810
- composer self-update
911
- composer install --no-interaction --prefer-source --dev
1012
- mkdir -p build/logs
1113

1214
script:
13-
- vendor/bin/phpunit --coverage-clover build/logs/clover.xml
15+
- vendor/bin/phpunit --verbose --coverage-clover build/logs/clover.xml
1416

1517
after_success:
16-
- wget https://scrutinizer-ci.com/ocular.phar
17-
- php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml
18-
- php vendor/bin/coveralls -v
18+
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "5.5" ]; then wget https://scrutinizer-ci.com/ocular.phar; fi;'
19+
- bash -c 'if [ "$TRAVIS_PHP_VERSION" == "5.5" ]; then php ocular.phar code-coverage:upload --format=php-clover build/logs/clover.xml; fi;'
20+
- bash -c 'if [ "$TRAVIS_PHP_VERSION" != "hhvm" ]; then php vendor/bin/coveralls -v; fi;'

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,11 @@ CHANGE LOG
22
==========
33

44

5+
## V0.3 Alpha (Upcoming)
6+
7+
* PHP 5.6 and HHVM compatibility
8+
9+
510
## V0.2.1 Alpha (08/02/2014)
611

712
* PSR-4 autoloading

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -26,7 +26,7 @@ Laravel Navigation is a navigation bar generator for [Laravel 4.1](http://larave
2626

2727
## System Requirements
2828

29-
* PHP 5.4.7+ or PHP 5.5+ is required.
29+
* PHP 5.4.7+ or HHVM 2.4+ is required.
3030
* You will need [Laravel 4.1](http://laravel.com) because this package is designed for it.
3131
* You will need [Composer](https://getcomposer.org) installed to load the dependencies of Laravel Navigation.
3232

@@ -35,7 +35,7 @@ Laravel Navigation is a navigation bar generator for [Laravel 4.1](http://larave
3535

3636
Please check the system requirements before installing Laravel Navigation.
3737

38-
To get the latest version of Laravel Navigation, simply require `"graham-campbell/navigation": "0.2.*@alpha"` in your `composer.json` file. You'll then need to run `composer install` or `composer update` to download it and have the autoloader updated.
38+
To get the latest version of Laravel Navigation, simply require `"graham-campbell/navigation": "0.3.*@dev"` in your `composer.json` file. You'll then need to run `composer install` or `composer update` to download it and have the autoloader updated.
3939

4040
You will need to register the [Laravel HTMLMin](https://github.com/GrahamCampbell/Laravel-HTMLMin) service provider before you attempt to load the Laravel Navigation service provider. Open up `app/config/app.php` and add the following to the `providers` key.
4141

@@ -70,7 +70,7 @@ This option (`'view'`) defines the view to use for the navigation bar. The defau
7070
There is currently no usage documentation besides the [API Documentation](http://grahamcampbell.github.io/Laravel-Navigation
7171
) for Laravel Navigation.
7272

73-
You may see an example of implementation in [CMS Core](https://github.com/GrahamCampbell/CMS-Core).
73+
You may see an example of implementation in [Bootstrap CMS](https://github.com/GrahamCampbell/Bootstrap-CMS).
7474

7575

7676
## Updating Your Fork

composer.json

Lines changed: 3 additions & 24 deletions
Original file line numberDiff line numberDiff line change
@@ -9,36 +9,15 @@
99
"email": "graham@mineuk.com"
1010
}
1111
],
12-
"repositories": [
13-
{
14-
"type": "package",
15-
"package": {
16-
"name": "sebastianbergmann/phpcov",
17-
"version": "1.1.0",
18-
"dist": {
19-
"url": "https://github.com/sebastianbergmann/phpcov/archive/1.1.0.zip",
20-
"type": "zip"
21-
},
22-
"source": {
23-
"url": "https://github.com/sebastianbergmann/phpcov.git",
24-
"type": "git",
25-
"reference": "1.1.0"
26-
},
27-
"bin": [
28-
"phpcov.php"
29-
]
30-
}
31-
}
32-
],
3312
"require": {
3413
"php": ">=5.4.7",
3514
"laravel/framework": "4.1.*",
3615
"symfony/config": "2.4.*",
3716
"symfony/filesystem": "2.4.*",
38-
"graham-campbell/htmlmin": "1.0.*"
17+
"graham-campbell/htmlmin": "1.1.*"
3918
},
4019
"require-dev": {
41-
"graham-campbell/testbench": "0.2.*"
20+
"graham-campbell/testbench": "0.3.*"
4221
},
4322
"autoload": {
4423
"psr-4": {
@@ -48,7 +27,7 @@
4827
},
4928
"extra": {
5029
"branch-alias": {
51-
"dev-master": "0.2-dev"
30+
"dev-master": "0.3-dev"
5231
}
5332
},
5433
"minimum-stability": "dev",

0 commit comments

Comments
 (0)