Commit f308b09 1 parent 5c4e005 commit f308b09 Copy full SHA for f308b09
File tree 4 files changed +14
-10
lines changed
4 files changed +14
-10
lines changed Original file line number Diff line number Diff line change 1
1
language : php
2
2
3
3
php :
4
- - 5.6
5
4
- 7.0
6
5
- 7.1
6
+ - 7.2
7
7
8
8
matrix :
9
- allow_failures :
10
- - env : dependencies=lowest
11
9
include :
12
- - php : 5.6
13
- env : dependencies=highest
14
10
- php : 7.0
15
11
env : dependencies=highest
16
12
- php : 7.1
17
13
env : dependencies=highest
14
+ - php : 7.2
15
+ env : dependencies=highest
18
16
19
17
before_script :
20
18
- composer self-update -q
Original file line number Diff line number Diff line change 2
2
3
3
All Notable changes for the Laravel 5 IsoCodes Validation will be documented in this file
4
4
5
+ ## 2.0.0
6
+ - Laravel 5.5 compatibility with Auto-Discovery
7
+ - Require php 7.0+
8
+ - Upgrade to phpunit 6.5.x
9
+ - Add php 7.2 to travis-ci
10
+
5
11
## 1.2.0
6
12
Added support for following validation rules
7
13
- BSN
Original file line number Diff line number Diff line change @@ -19,7 +19,7 @@ A simple Laravel 5 wrapper for the [IsoCodes Validation library](https://github.
19
19
composer require pixelpeter/laravel5-isocodes-validation
20
20
```
21
21
22
- ### Step 2: Add the Service Provider
22
+ ### Step 2: Add the Service Provider (not needed with v2.x because of auto discovery)
23
23
Add the service provider in ` app/config/app.php `
24
24
``` php
25
25
'provider' => [
Original file line number Diff line number Diff line change 18
18
}
19
19
],
20
20
"require" : {
21
- "php" : " >=5.5.9 " ,
21
+ "php" : " ^7.0 " ,
22
22
"ronanguilloux/isocodes" : " ^2.1.1"
23
23
},
24
24
"autoload" : {
35
35
]
36
36
},
37
37
"require-dev" : {
38
- "phpunit/phpunit" : " ^5.7 " ,
39
- "mockery/mockery" : " ^0.9.4 " ,
38
+ "phpunit/phpunit" : " ^6.5 " ,
39
+ "mockery/mockery" : " ^1.0.0 " ,
40
40
"satooshi/php-coveralls" : " ^1.0" ,
41
- "laravel/laravel" : " 5.4 .*"
41
+ "laravel/laravel" : " 5.5 .*"
42
42
}
43
43
}
You can’t perform that action at this time.
0 commit comments