Skip to content

Commit b120318

Browse files
committed
Laravel 6 Support
1 parent 5d0019b commit b120318

File tree

4 files changed

+786
-1080
lines changed

4 files changed

+786
-1080
lines changed

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
language: php
22
php:
3-
- '7.1'
43
- '7.2'
4+
- '7.3'
55
before_script: composer install

changelog.md

+2-1
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,8 @@
22

33
All notable changes to `otp` will be documented in this file.
44

5-
## Version 1.0
5+
## Version 2.0
66

77
### Added
8+
- Laravel 6 Support
89
- Everything

composer.json

+6-4
Original file line numberDiff line numberDiff line change
@@ -12,12 +12,14 @@
1212
"homepage": "https://github.com/tzsk/otp",
1313
"keywords": ["Laravel", "php", "otp"],
1414
"require": {
15-
"illuminate/support": "~5"
15+
"illuminate/support": "~5.7|~5.8|^6.0",
16+
"php" : "~7.2"
1617
},
1718
"require-dev": {
18-
"phpunit/phpunit": "~7.0",
19+
"phpunit/phpunit": "^8.0",
20+
"squizlabs/php_codesniffer": "^3.0",
21+
"orchestra/testbench": "~3.7|~3.8|^4.0",
1922
"mockery/mockery": "^1.1",
20-
"orchestra/testbench": "~3.0",
2123
"sempro/phpunit-pretty-print": "^1.0"
2224
},
2325
"autoload": {
@@ -27,7 +29,7 @@
2729
},
2830
"autoload-dev": {
2931
"psr-4": {
30-
"Tzsk\\Otp\\Tests\\": "tests"
32+
"Tzsk\\Otp\\Tests\\": "tests/"
3133
}
3234
},
3335
"scripts": {

0 commit comments

Comments
 (0)