Skip to content
This repository was archived by the owner on Nov 26, 2021. It is now read-only.

Commit f36db74

Browse files
committed
Merged latest changes from ipalaus
1 parent 42f170c commit f36db74

5 files changed

Lines changed: 11 additions & 9 deletions

File tree

.gitignore

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,6 @@
1+
/.idea
2+
/build
13
/vendor
24
composer.phar
35
composer.lock
4-
.DS_Store
6+
.DS_Store

README.md

Lines changed: 4 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@ Eloquent Geonames
44
[![Build Status](https://travis-ci.org/ipalaus/geonames.png?branch=master)](https://travis-ci.org/ipalaus/geonames)
55
[![Coverage Status](https://coveralls.io/repos/ipalaus/geonames/badge.png?branch=master)](https://coveralls.io/r/ipalaus/geonames?branch=master)
66

7-
A collection of Eloquent models and Commands to get all the power of GeoNames in Laravel 5.1.
7+
A collection of Eloquent models and Commands to get all the power of GeoNames in Laravel.
88

99
Installation
1010
------------
@@ -14,11 +14,13 @@ Add `ipalaus/geonames` as a requirement to composer.json:
1414
```javascript
1515
{
1616
"require": {
17-
"ipalaus/geonames": "1.0.*"
17+
"ipalaus/geonames": "3.0.*"
1818
}
1919
}
2020
```
2121

22+
**Note**: if you're using Laravel 5.1 you can use the version `"ipalaus/geonames": "2.0.*"`.
23+
2224
Update your packages with `composer update` or install with `composer install`.
2325

2426
Once you have installed the dependency, you need to register `geonames` in Laravel. Open your

build/.gitignore

Lines changed: 0 additions & 2 deletions
This file was deleted.

composer.json

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -22,11 +22,11 @@
2222
"illuminate/database": ">=5.1.0",
2323
"illuminate/filesystem": ">=5.1.0",
2424
"illuminate/support": ">=5.1.0",
25-
"symfony/process": "2.7.*"
25+
"symfony/process": "2.8.*|3.0.*"
2626
},
2727
"require-dev": {
28-
"mockery/mockery": "0.8.0",
29-
"phpunit/phpunit": "3.7.*"
28+
"mockery/mockery": "~0.9.2",
29+
"phpunit/phpunit": "~4.1"
3030
},
3131
"autoload": {
3232
"psr-4": {

tests/ImportCommandTest.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -336,4 +336,4 @@ public function line($string)
336336
//
337337
}
338338

339-
}
339+
}

0 commit comments

Comments
 (0)