mirror of
https://github.com/nullthoughts/laravel-data-sync.git
synced 2026-02-08 23:50:48 +00:00
Initial commit
This commit is contained in:
69
vendor/orchestra/testbench/CHANGELOG-3.7.md
vendored
Normal file
69
vendor/orchestra/testbench/CHANGELOG-3.7.md
vendored
Normal file
@@ -0,0 +1,69 @@
|
||||
# Change for 3.7
|
||||
|
||||
This changelog references the relevant changes (bug and security fixes) done to `orchestra/testbench`.
|
||||
|
||||
## 3.7.6
|
||||
|
||||
Released: 2018-12-04
|
||||
|
||||
### Changes
|
||||
|
||||
* Update minimum support for Laravel Framework v5.7.14+.
|
||||
* Update minimum support for Testbench Core v3.7.7+.
|
||||
|
||||
## 3.7.5
|
||||
|
||||
Released: 2018-11-15
|
||||
|
||||
### Changes
|
||||
|
||||
* Update minimum support for Testbench Core v3.7.6+.
|
||||
* Move `mockery/mockery` dependency out of `dev` requirement.
|
||||
|
||||
## 3.7.4
|
||||
|
||||
Released: 2018-10-07
|
||||
|
||||
### Fixes
|
||||
|
||||
* Fixes dependencies constraint.
|
||||
|
||||
## 3.7.3
|
||||
|
||||
Released: 2018-10-07
|
||||
|
||||
### Changes
|
||||
|
||||
* Update minimum support for Testbench Core v3.7.5+.
|
||||
- Allows `Orchestra\Testbench\Database\MigrateProcessor` to accept both `int` exit code and `Illuminate\Foundation\Testing\PendingCommand` when running migration via artisan.
|
||||
- Update Laravel 5.7 skeleton.
|
||||
|
||||
## 3.7.2
|
||||
|
||||
Released: 2018-09-13
|
||||
|
||||
### Changes
|
||||
|
||||
* Update minimum support for Testbench Core v3.7.3+.
|
||||
|
||||
## 3.7.1
|
||||
|
||||
Released: 2018-09-12
|
||||
|
||||
### Changes
|
||||
|
||||
* Update minimum support for Laravel Framework v5.7.4+.
|
||||
* Update minimum support for Testbench Core v3.7.2+.
|
||||
|
||||
## 3.7.0
|
||||
|
||||
Released: 2018-08-23
|
||||
|
||||
### Added
|
||||
|
||||
* Added `Orchestra\Testbench\Http\Middleware\Authenticate` middleware.
|
||||
|
||||
### Changes
|
||||
|
||||
* Update support for Laravel Framework v5.7.
|
||||
* `Orchestra\Testbench\Concerns\Testing::setUpTheTestEnvironmentTraits()` should always accept an array of `$uses` from `Orchestra\Testbench\TestCase::setUpTraits()`.
|
||||
35
vendor/orchestra/testbench/composer.json
vendored
Normal file
35
vendor/orchestra/testbench/composer.json
vendored
Normal file
@@ -0,0 +1,35 @@
|
||||
{
|
||||
"name": "orchestra/testbench",
|
||||
"description": "Laravel Testing Helper for Packages Development",
|
||||
"homepage": "http://orchestraplatform.com/docs/latest/components/testbench/",
|
||||
"keywords": ["laravel", "orchestral", "orchestra-platform", "testing", "tdd", "bdd"],
|
||||
"license": "MIT",
|
||||
"authors": [
|
||||
{
|
||||
"name": "Mior Muhammad Zaki",
|
||||
"email": "crynobone@gmail.com",
|
||||
"homepage": "https://github.com/crynobone"
|
||||
}
|
||||
],
|
||||
"autoload-dev": {
|
||||
"psr-4": {
|
||||
"Orchestra\\Testbench\\Tests\\": "core/tests/"
|
||||
}
|
||||
},
|
||||
"require": {
|
||||
"php": ">=7.1",
|
||||
"laravel/framework": "~5.7.14",
|
||||
"mockery/mockery": "^1.0",
|
||||
"orchestra/testbench-core": "~3.7.7",
|
||||
"phpunit/phpunit": "^7.0"
|
||||
},
|
||||
"extra": {
|
||||
"branch-alias": {
|
||||
"dev-master": "3.7-dev"
|
||||
}
|
||||
},
|
||||
"config": {
|
||||
"sort-packages": true
|
||||
},
|
||||
"minimum-stability": "dev"
|
||||
}
|
||||
Reference in New Issue
Block a user