ci: add newer PHP versions

Seems I had started this a while back and never actually finished.
Bumped the copyright years and added a funding and git ignore file.
Redid the Travis configuration based on my more recent experiences with
testing multiple PHP versions. Updated the development dependencies and
added a configuration file for PHPUnit.
This commit is contained in:
Josh Sherman 2020-01-26 17:23:06 -06:00
parent 805b303a04
commit 90ba4df308
No known key found for this signature in database
GPG key ID: 55B058A80530EF22
6 changed files with 76 additions and 41 deletions

View file

@ -1,34 +1,33 @@
{
"name": "joshtronic/php-projecthoneypot",
"description": "PHP Wrapper for Project Honey Pot",
"version": "1.0.1",
"type": "library",
"keywords": [
"project",
"honey",
"pot",
"api",
"spam",
"spammer"
],
"homepage": "https://github.com/joshtronic/php-projecthoneypot",
"license": "MIT",
"authors": [
{
"name": "Josh Sherman",
"email": "hello@joshtronic.com",
"homepage": "https://joshtronic.com"
}
],
"require-dev": {
"php": ">=5.3.0"
},
"require-dev": {
"satooshi/php-coveralls": "~1.0"
},
"autoload": {
"psr-4": {
"joshtronic\\": "src/"
}
"name": "joshtronic/php-projecthoneypot",
"description": "PHP Wrapper for Project Honey Pot",
"version": "1.0.1",
"type": "library",
"keywords": [
"project",
"honey",
"pot",
"api",
"spam",
"spammer"
],
"homepage": "https://github.com/joshtronic/php-projecthoneypot",
"license": "MIT",
"authors": [{
"name": "Josh Sherman",
"email": "hello@joshtronic.com",
"homepage": "https://joshtronic.com"
}],
"require": {
"php": ">=5.3"
},
"require-dev": {
"php-coveralls/php-coveralls": ">=1",
"phpunit/phpunit": ">=4"
},
"autoload": {
"psr-4": {
"joshtronic\\": "src/"
}
}
}