Update .gitattributes with more files to ignore Add .gitignore for php unit test cache Install dotenv file parser for unit testing Update current test pages with dotenv file parser (replaces function call) Documentation PHPdoc update for checkMe method call
32 lines
926 B
JSON
32 lines
926 B
JSON
{
|
|
"name": "gullevek/amazon-incentives",
|
|
"description": "Amazon Gift Codes, Gift on Demand, Incentives",
|
|
"keywords": ["AmazonGiftCode", "Amazon", "GiftCard", "AGCOD", "Incentives API", "Amazon Incentives API"],
|
|
"type": "library",
|
|
"license": "MIT",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"gullevek\\AmazonIncentives\\": "src/"
|
|
}
|
|
},
|
|
"authors": [
|
|
{
|
|
"name": "Clemens Schwaighofer",
|
|
"email": "gullevek@gullevek.org",
|
|
"homepage": "http://gullevek.org"
|
|
}
|
|
],
|
|
"homepage": "https://github.com/gullevek/AmazonIncentives",
|
|
"minimum-stability": "dev",
|
|
"require": {
|
|
"php": ">=7.4.0"
|
|
},
|
|
"archive": {
|
|
"exclude": ["/test/", "/test/*", "/phpstan.neon", "/psalm.xml", "/.phan/", "/.vscode/", "/phpunit.xml"]
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "^9",
|
|
"gullevek/dotenv": "dev-master"
|
|
}
|
|
}
|