Skip to content

Commit 948d506

Browse files
authored
Add Laravel 7.x support (#64)
Add Laravel 7.x support
1 parent f863c6d commit 948d506

File tree

8 files changed

+14
-79
lines changed

8 files changed

+14
-79
lines changed

.gitattributes

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,6 @@
55
/tests export-ignore
66
/.gitattributes export-ignore
77
/.gitignore export-ignore
8-
/.php_cs export-ignore
98
/.scrutinizer.yml export-ignore
109
/.styleci.yml export-ignore
1110
/.travis.yml export-ignore

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,5 @@
11
/node_modules
22
/vendor
3-
.php_cs.cache
43
.phpunit.result.cache
54
composer.lock
65
composer.phar

.php_cs

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

.travis.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,7 @@ php:
44
- 7.1
55
- 7.2
66
- 7.3
7+
- 7.4
78

89
env:
910
global:

CHANGELOG.md

Lines changed: 9 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,6 +4,12 @@ All notable changes to `cybercog/laravel-paket` will be documented in this file.
44

55
## [Unreleased]
66

7+
## [1.5.2]
8+
9+
### Added
10+
11+
- ([#64]) Add Laravel 7.x support
12+
713
## [1.5.1]
814

915
### Fixed
@@ -64,14 +70,16 @@ All notable changes to `cybercog/laravel-paket` will be documented in this file.
6470

6571
- Initial release
6672

67-
[Unreleased]: https://github.com/cybercog/laravel-paket/compare/1.5.1...master
73+
[Unreleased]: https://github.com/cybercog/laravel-paket/compare/1.5.2...master
74+
[1.5.2]: https://github.com/cybercog/laravel-paket/compare/1.5.1...1.5.2
6875
[1.5.1]: https://github.com/cybercog/laravel-paket/compare/1.5.0...1.5.1
6976
[1.5.0]: https://github.com/cybercog/laravel-paket/compare/1.4.0...1.5.0
7077
[1.4.0]: https://github.com/cybercog/laravel-paket/compare/1.3.0...1.4.0
7178
[1.3.0]: https://github.com/cybercog/laravel-paket/compare/1.2.0...1.3.0
7279
[1.2.0]: https://github.com/cybercog/laravel-paket/compare/1.1.0...1.2.0
7380
[1.1.0]: https://github.com/cybercog/laravel-paket/compare/1.0.0...1.1.0
7481

82+
[#64]: https://github.com/cybercog/laravel-paket/pull/64
7583
[#61]: https://github.com/cybercog/laravel-paket/pull/61
7684
[#58]: https://github.com/cybercog/laravel-paket/pull/58
7785
[#55]: https://github.com/cybercog/laravel-paket/pull/55

CONTRIBUTING.md

Lines changed: 1 addition & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -19,11 +19,7 @@ Due to time constraints, we are not always able to respond as quickly as we woul
1919

2020
## Coding Guidelines
2121

22-
This project comes with a configuration file for php-cs-fixer (.php_cs) that you can use to (re)format your sourcecode for compliance with this project's coding guidelines:
23-
24-
```shell script
25-
$ vendor/bin/php-cs-fixer fix
26-
```
22+
This project follows [PSR-12 coding style guide](https://www.php-fig.org/psr/psr-12/).
2723

2824
## PHPUnit tests
2925

composer.json

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -40,14 +40,13 @@
4040
"require": {
4141
"php": "^7.1.3",
4242
"ext-json": "*",
43-
"illuminate/support": "5.6.*|5.7.*|5.8.*|^6.0",
43+
"illuminate/support": "^5.6|^6.0|^7.0",
4444
"mcstreetguy/composer-parser": "^1.1"
4545
},
4646
"require-dev": {
47-
"friendsofphp/php-cs-fixer": "^2.10",
4847
"mockery/mockery": "^1.0",
49-
"orchestra/testbench": "~3.6.0|~3.7.0|~3.8.0|^4.0",
50-
"phpunit/phpunit": "^7.5|^8.0"
48+
"orchestra/testbench": "^3.6|^4.0|^5.0",
49+
"phpunit/phpunit": "^7.5|^8.0|^9.0"
5150
},
5251
"autoload": {
5352
"psr-4": {

src/Console/Commands/Setup.php

Lines changed: 0 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -14,14 +14,11 @@
1414
namespace Cog\Laravel\Paket\Console\Commands;
1515

1616
use Illuminate\Console\Command;
17-
use Illuminate\Console\DetectsApplicationNamespace;
1817
use Illuminate\Support\Facades\File;
1918
use Symfony\Component\Console\Input\InputOption;
2019

2120
final class Setup extends Command
2221
{
23-
use DetectsApplicationNamespace;
24-
2522
protected $name = 'paket:setup';
2623

2724
protected $description = 'Set up all of the Paket resources';

0 commit comments

Comments
 (0)