Skip to content

Commit

Permalink
Merge pull request #27 from chrishalbert/2.0
Browse files Browse the repository at this point in the history
2.0
  • Loading branch information
chrishalbert authored Aug 7, 2021
2 parents f508bf4 + 3346147 commit d70a176
Show file tree
Hide file tree
Showing 20 changed files with 4,683 additions and 93 deletions.
1 change: 0 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,3 +1,2 @@
vendor
composer.lock
reports
13 changes: 8 additions & 5 deletions .travis.yml
Original file line number Diff line number Diff line change
@@ -1,12 +1,15 @@
language: php

env:
global:
- XDEBUG_MODE=coverage

php:
- 5.6
- 7.0
- 7.1
- 7.3

before_script: composer install
before_script:
- composer install

script: ./vendor/bin/phing

after_script: ./vendor/bin/coveralls -v
after_script: ./vendor/bin/coveralls -v
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2018 Chris Halbert
Copyright (c) 2021 Chris Halbert

Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
Expand Down
3 changes: 2 additions & 1 deletion build.xml
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@
errorproperty="phpuniterror"
failureproperty="phpunitfailure"
bootstrap="${project.basedir}/tests/bootstrap.php">
<formatter type="xml" todir="${reports.dir}" outfile="phpunit.log"/>
<formatter type="xml" todir="${reports.dir}" outfile="phpunit.xml"/>
<formatter type="plain" todir="${reports.dir}" outfile="phpunit.log"/>
<formatter type="clover" todir="${reports.dir}"/>
<batchtest>
<fileset dir="${project.basedir}/tests">
Expand Down
11 changes: 6 additions & 5 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -11,12 +11,12 @@
}
],
"require": {
"php": "5.* || 7.*",
"illuminate/database": "5.*",
"illuminate/filesystem": "5.*",
"nesbot/carbon": "^1.25"
"php": ">=7.3",
"illuminate/database": ">=5.8",
"illuminate/filesystem": ">=5.8"
},
"require-dev": {
"ext-xdebug": ">=2.7",
"phing/phing": "2.*",
"phpunit/phpunit": "4.* || 5.*",
"illuminate/config": "5.*",
Expand All @@ -34,7 +34,8 @@
"files": [
"tests/files/2018_04_04_000000_StandardMigration.php",
"tests/files/2018_04_04_000000_NomadicMockMigration.php",
"tests/files/2018_04_04_000000_NomadicMigrationWithPrintable.php"
"tests/files/2018_04_04_000000_NomadicMigrationWithPrintable.php",
"tests/files/2019_08_22_000000_NomadicMigrationSubclassWithPrintable.php"
]
},
"minimum-stability": "dev",
Expand Down
Loading

0 comments on commit d70a176

Please sign in to comment.