Skip to content
This repository was archived by the owner on Aug 28, 2022. It is now read-only.

feat: Upgrade to Laravel 9 #60

Open
wants to merge 5 commits into
base: main
Choose a base branch
from
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
16 changes: 8 additions & 8 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,20 +1,20 @@
# Laravel Strict

**Laravel** [`8`][laravel-8] + **Docker**
**Laravel** [`9`][laravel-8] + **Docker**
[`shrink/docker-php-api:8`][shrink/docker-php-api]

Laravel Strict is a
[<img src="https://laravel.com/img/favicon/favicon-32x32.png" height="12"> Laravel <sup>&neArr;</sup>][laravel]
install designed for building high quality containerised Laravel applications.

* **All HTTP requests served by Laravel** &mdash; ideal for an API
* Code quality enforced by [`vimeo/psalm`<sup>&neArr;</sup>][psalm] and
- **All HTTP requests served by Laravel** &mdash; ideal for an API
- Code quality enforced by [`vimeo/psalm`<sup>&neArr;</sup>][psalm] and
[`squizlabs/php_codesniffer`<sup>&neArr;</sup>][phpcs]
* Laravel configured with sane defaults and without boilerplate
* Continuous Delivery using [GitHub Actions][workflows] and the GitHub Container
- Laravel configured with sane defaults and without boilerplate
- Continuous Delivery using [GitHub Actions][workflows] and the GitHub Container
Registry
* [Development Environment](#development-environment) using Docker Compose
* [`Taskfile`<sup>&neArr;</sup>][task] with helpful development lifecycle
- [Development Environment](#development-environment) using Docker Compose
- [`Taskfile`<sup>&neArr;</sup>][task] with helpful development lifecycle
commands

:thought_balloon: **Laravel Strict is intended for projects with strict code
Expand Down Expand Up @@ -146,7 +146,7 @@ contents by overriding the volume configuration in their
in development by up to 10x

[laravel]: https://laravel.com
[laravel-8]: https://laravel.com/docs/8.x
[laravel-9]: https://laravel.com/docs/9.x
[shrink/docker-php-api]: https://github.com/shrink/docker-php-api
[psalm]: https://psalm.dev
[phpcs]: https://github.com/squizlabs/PHP_CodeSniffer
Expand Down
11 changes: 5 additions & 6 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,15 +4,14 @@
"description": "Add a project description here",
"license": "proprietary",
"require": {
"php": "^8",
"laravel/framework": "^8.0",
"php": "^8.0.2",
"laravel/framework": "^9.0",
"laravel/tinker": "^2.0",
"shrink/conductor-laravel": "^1.1.0"
"shrink/conductor-laravel": "^2"
},
"require-dev": {
"facade/ignition": "^2.3.6",
"nunomaduro/collision": "^5.0",
"phpunit/phpunit": "^8.5|^9.0",
"nunomaduro/collision": "^6.1",
"phpunit/phpunit": "^9.0",
"squizlabs/php_codesniffer": "^3.5",
"vimeo/psalm": "^4.3"
},
Expand Down
Loading