summaryrefslogtreecommitdiffstats
path: root/composer.json
diff options
context:
space:
mode:
authorRemi Collet <remi@remirepo.net>2021-01-06 12:59:13 +0100
committerRemi Collet <remi@remirepo.net>2021-01-06 12:59:13 +0100
commit62148623e9e9b45031f9bc25deb3e874eed44790 (patch)
treec4a1db5a0bcf673e4bdb5dde0d635a8f0234dee0 /composer.json
parent1bd500ea3781830d7086871acafb62f6d0be5ea7 (diff)
update to 3.4.0
raise dependency on PHP 7 switch to classmap autoloader switch to phpunit9
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"
}
}