Skip to content

Commit

Permalink
Merge pull request #27 from bristol-su/develop
Browse files Browse the repository at this point in the history
PHP 8 & Laravel 8 support
  • Loading branch information
tobytwigger authored Aug 5, 2021
2 parents 8a50be1 + 8361b18 commit 248f861
Show file tree
Hide file tree
Showing 38 changed files with 4,715 additions and 2,829 deletions.
7 changes: 6 additions & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
x # Changelog
# Changelog

All notable changes to this project will be documented in this file.

Expand All @@ -7,6 +7,11 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0

## [Unreleased]

## [3.0.0] - (05/08/2021)

### Changed
- Upgrades to use Laravel 8

## [2.1.5] - (16/06/2020)

### Removed
Expand Down
83 changes: 41 additions & 42 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,45 +1,44 @@
{
"name": "bristol-su/control",
"description": "An implementation of the control contracts",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Toby Twigger",
"email": "[email protected]"
}
],
"require": {
"php": "^7.4",
"ext-json": "*",
"guzzlehttp/guzzle": "^6.5"
},
"require-dev": {
"orchestra/testbench": "^4.0",
"phpstan/phpstan": "^0.12.8",
"phpspec/prophecy-phpunit": "2.0.0",
"brianium/paratest": "^4.0"
},
"extra": {
"laravel": {
"dont-discover": [],
"providers": [
"BristolSU\\ControlDB\\ControlDBServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"BristolSU\\ControlDB\\": "src/"
},
"classmap": [
"database/seeds/",
"database/factories/"
]
},
"autoload-dev": {
"psr-4": {
"BristolSU\\Tests\\ControlDB\\": "tests/"
}
"name": "bristol-su/control",
"description": "An implementation of the control contracts",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Toby Twigger",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"ext-json": "*",
"laravel/framework": "^8.0"
},
"require-dev": {
"orchestra/testbench": "^6.0",
"phpstan/phpstan": "^0.12.8",
"phpspec/prophecy-phpunit": "2.0.1",
"brianium/paratest": "^6.0",
"laravel/legacy-factories": "^1.0"
},
"extra": {
"laravel": {
"dont-discover": [],
"providers": [
"BristolSU\\ControlDB\\ControlDBServiceProvider"
]
}
},
"autoload": {
"psr-4": {
"BristolSU\\ControlDB\\": "src/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"autoload-dev": {
"psr-4": {
"BristolSU\\Tests\\ControlDB\\": "tests/"
}
}
}
Loading

0 comments on commit 248f861

Please sign in to comment.