This commit is contained in:
Ismo Vuorinen
2021-11-12 17:46:17 +02:00
parent f5a0a5ab4d
commit 59e6717fc2
10 changed files with 286 additions and 52 deletions

32
composer.json Normal file
View File

@@ -0,0 +1,32 @@
{
"name": "ivuorinen/xkcd-mailer",
"description": "XKCD Mailer",
"minimum-stability": "stable",
"license": "MIT",
"authors": [
{
"name": "Ismo Vuorinen",
"homepage": "https://github.com/ivuorinen"
},
{
"name": "Raam Dev",
"homepage": "https://github.com/raamdev"
},
{
"name": "wojas",
"homepage": "https://github.com/wojas"
}
],
"scripts": {
"lint": "phpcs --warning-severity=0 .",
"lint-all": "phpcs .",
"fix": "phpcbf ."
},
"require": {
"ext-simplexml": "*",
"ext-curl": "*"
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.6"
}
}