Skip to content

Commit

Permalink
#30 fix php8 incompatibilities, fix tests, first step fixing repository
Browse files Browse the repository at this point in the history
  • Loading branch information
1stthomas committed Mar 10, 2022
1 parent 38ac122 commit 0e9b7ab
Show file tree
Hide file tree
Showing 151 changed files with 9,041 additions and 1,980 deletions.
23 changes: 17 additions & 6 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -1,6 +1,17 @@
/nbproject/
/vendor/
/tests/configuration.xml
/tests/test.bat
/tests/bootstrap.php
/tests/run/
/nbproject/
/vendor/
/tests/configuration.xml
/tests/test.bat
/tests/bootstrap.php
/tests/run/
/test01.php
/tests/cache_test
/php_errors.log
/ht7-base__20191128_02.zip
/test02.php
/test11.php
/tests/.phpunit.result.cache
/tests/configuration_1.xml
/tests/php_errors.log
/tests/t1.php
/tests/output/
13 changes: 9 additions & 4 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -30,11 +30,16 @@
"source": "https://github.com/1stthomas/ht7-base"
},
"require": {
"php": "^7.0"
"php": "^7.0|^8.0",
"psr/container": "1.0"
},
"require-dev": {
"phpunit/phpunit": "^7.0"
"phpunit/phpunit": "^7.0|^9.0"
},
"minimum-stability": "dev",
"prefer-stable": true
}
"prefer-stable": true,
"scripts": {
"test": ".\\vendor\\bin\\phpunit --bootstrap .\\tests\\bootstrap.php --configuration .\\tests\\configuration.xml --testdox",
"php1": "php -v"
}
}
Loading

0 comments on commit 0e9b7ab

Please sign in to comment.