Skip to content

Commit b44294e

Browse files
authored
Merge pull request #17 from DealerDirect/feature/adds-phinx
Adds Phinx to the toolset
2 parents fb8b318 + 01eed0a commit b44294e

File tree

4 files changed

+6
-2
lines changed

4 files changed

+6
-2
lines changed

.spelling

+1
Original file line numberDiff line numberDiff line change
@@ -37,6 +37,7 @@ metapackage
3737
Nijhof
3838
ParaTest
3939
Phing
40+
Phinx
4041
PHPCompatibility
4142
phpcov
4243
phpDocumentor

.travis.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -53,6 +53,7 @@ script:
5353
- ./vendor/bin/paratest --version
5454
- ./vendor/bin/pdepend --version
5555
- ./vendor/bin/phing -v
56+
- ./vendor/bin/phinx --version
5657
- ./vendor/bin/php-cs-fixer --version
5758
- ./vendor/bin/phpcbf --version
5859
- ./vendor/bin/phpcpd --version
@@ -63,4 +64,3 @@ script:
6364
- ./vendor/bin/phpunit --version
6465
- ./vendor/bin/security-checker --version
6566
- ./vendor/bin/tombstone --version
66-
- ./vendor/bin/security-checker security:check composer.lock

README.md

+2
Original file line numberDiff line numberDiff line change
@@ -56,6 +56,7 @@ Other packages that you'll get:
5656
- **[Mink Goutte Driver][mink-goutte-driver]**: Goutte driver for Mink framework
5757
- **[Mink Selenium2 Driver][mink-selenium2-driver]**: Selenium2 (WebDriver) driver for Mink framework
5858
- **[Phing][phing]**: Phing is a PHP project build system or build tool based on ​Apache Ant
59+
- **[Phinx][phinx]**: Phinx makes it ridiculously easy to manage the database migrations for your PHP app
5960
- **[PHP_CodeSniffer Composer Installer][phpcs-composer-installer]**: For installing PHP_CodeSniffer coding standards
6061
- **[PHPCompatibility][phpcompatibility]**: PHP Compatibility checks for PHP_CodeSniffer
6162
- **[Prestissimo][prestissimo]**: Composer parallel install plugin
@@ -233,6 +234,7 @@ THE SOFTWARE.
233234
[paratest]: https://github.com/brianium/paratest
234235
[pdepend]: https://github.com/pdepend/pdepend
235236
[phing]:https://www.phing.info/
237+
[phinx]: https://phinx.org
236238
[php-codebrowser]: https://github.com/mayflower/PHP_CodeBrowser
237239
[php-parallel-lint]: https://github.com/JakubOnderka/PHP-Parallel-Lint
238240
[phpcompatibility]: https://github.com/wimg/PHPCompatibility

composer.json

+2-1
Original file line numberDiff line numberDiff line change
@@ -41,8 +41,9 @@
4141
"phploc/phploc": "^3.0.1",
4242
"phpmd/phpmd": "^2.2.0",
4343
"phpmetrics/phpmetrics": "^2.0.0",
44-
"phpro/grumphp": ">=0.11.0,<1.0.0",
44+
"phpro/grumphp": ">=0.11.0,<1.0.0,!=0.11.4",
4545
"phpunit/phpunit": "^5.5.0",
46+
"robmorgan/phinx": "^0.8.0",
4647
"scheb/tombstone-analyzer": "^0.3.0",
4748
"scrutinizer/ocular": "^1.3",
4849
"sebastian/phpcpd": "^3.0.0",

0 commit comments

Comments
 (0)