Skip to content

Commit d70a176

Browse files
authored
Merge pull request #27 from chrishalbert/2.0
2.0
2 parents f508bf4 + 3346147 commit d70a176

20 files changed

+4683
-93
lines changed

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,2 @@
11
vendor
2-
composer.lock
32
reports

.travis.yml

Lines changed: 8 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -1,12 +1,15 @@
11
language: php
22

3+
env:
4+
global:
5+
- XDEBUG_MODE=coverage
6+
37
php:
4-
- 5.6
5-
- 7.0
6-
- 7.1
8+
- 7.3
79

8-
before_script: composer install
10+
before_script:
11+
- composer install
912

1013
script: ./vendor/bin/phing
1114

12-
after_script: ./vendor/bin/coveralls -v
15+
after_script: ./vendor/bin/coveralls -v

LICENSE

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2018 Chris Halbert
3+
Copyright (c) 2021 Chris Halbert
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

build.xml

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,8 @@
3232
errorproperty="phpuniterror"
3333
failureproperty="phpunitfailure"
3434
bootstrap="${project.basedir}/tests/bootstrap.php">
35-
<formatter type="xml" todir="${reports.dir}" outfile="phpunit.log"/>
35+
<formatter type="xml" todir="${reports.dir}" outfile="phpunit.xml"/>
36+
<formatter type="plain" todir="${reports.dir}" outfile="phpunit.log"/>
3637
<formatter type="clover" todir="${reports.dir}"/>
3738
<batchtest>
3839
<fileset dir="${project.basedir}/tests">

composer.json

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -11,12 +11,12 @@
1111
}
1212
],
1313
"require": {
14-
"php": "5.* || 7.*",
15-
"illuminate/database": "5.*",
16-
"illuminate/filesystem": "5.*",
17-
"nesbot/carbon": "^1.25"
14+
"php": ">=7.3",
15+
"illuminate/database": ">=5.8",
16+
"illuminate/filesystem": ">=5.8"
1817
},
1918
"require-dev": {
19+
"ext-xdebug": ">=2.7",
2020
"phing/phing": "2.*",
2121
"phpunit/phpunit": "4.* || 5.*",
2222
"illuminate/config": "5.*",
@@ -34,7 +34,8 @@
3434
"files": [
3535
"tests/files/2018_04_04_000000_StandardMigration.php",
3636
"tests/files/2018_04_04_000000_NomadicMockMigration.php",
37-
"tests/files/2018_04_04_000000_NomadicMigrationWithPrintable.php"
37+
"tests/files/2018_04_04_000000_NomadicMigrationWithPrintable.php",
38+
"tests/files/2019_08_22_000000_NomadicMigrationSubclassWithPrintable.php"
3839
]
3940
},
4041
"minimum-stability": "dev",

0 commit comments

Comments
 (0)