summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json23
1 files changed, 17 insertions, 6 deletions
diff --git a/composer.json b/composer.json
index 8971a98..de9f1f7 100644
--- a/composer.json
+++ b/composer.json
@@ -8,34 +8,45 @@
"templates",
"views"
],
- "homepage": "http://platesphp.com",
+ "homepage": "https://platesphp.com",
"license": "MIT",
"authors" : [
{
"name": "Jonathan Reinink",
"email": "jonathan@reinink.ca",
"role": "Developer"
+ },
+ {
+ "name": "RJ Garcia",
+ "email": "ragboyjr@icloud.com",
+ "role": "Developer"
}
],
"require" : {
- "php": "^5.3 | ^7.0"
+ "php": "^7.0|^8.0"
},
"require-dev": {
- "mikey179/vfsStream": "^1.4",
- "phpunit/phpunit": "~4.0",
- "squizlabs/php_codesniffer": "~1.5"
+ "mikey179/vfsstream": "^1.6",
+ "phpunit/phpunit": "^9.5",
+ "squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"League\\Plates\\": "src"
}
},
+ "autoload-dev": {
+ "psr-4": {
+ "League\\Plates\\Tests\\": "tests"
+ }
+ },
"extra": {
"branch-alias": {
"dev-master": "3.0-dev"
}
},
"scripts": {
- "test": "phpunit"
+ "test": "phpunit --testdox",
+ "docs": "hugo -s doc server"
}
}