Merge pull request #1426 from fagai/patch-platform

Added platform config to composer.json
This commit is contained in:
Anton Medvedev 2017-11-23 13:57:45 +07:00 committed by GitHub
commit a0a1e1da9c
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
2 changed files with 6 additions and 1 deletions

View File

@ -9,6 +9,7 @@
- Host's `roles()` API now can accept arrays too
- Fixed bug where wrong time format is passed to touch when deploying assets [#1390]
- Added artisan:migrate:fresh task for laravel recipe
- Added platform config to composer.json [#1426]
### Fixed
- Fixed bug when config:hosts shows more than one table of hosts [#1403]
@ -319,6 +320,7 @@
- Fixed typo3 recipe
- Fixed remove of shared dir on first deploy
[#1426]: https://github.com/deployphp/deployer/pull/1426
[#1413]: https://github.com/deployphp/deployer/pull/1413
[#1403]: https://github.com/deployphp/deployer/pull/1403
[#1390]: https://github.com/deployphp/deployer/pull/1390

View File

@ -39,6 +39,9 @@
"phpunit/phpunit": "~6.1"
},
"config": {
"sort-packages": true
"sort-packages": true,
"platform": {
"php": "7.0.0"
}
}
}