summaryrefslogtreecommitdiff
path: root/composer.json
diff options
context:
space:
mode:
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json15
1 files changed, 13 insertions, 2 deletions
diff --git a/composer.json b/composer.json
index 9d28ff3..3c19372 100644
--- a/composer.json
+++ b/composer.json
@@ -4,7 +4,7 @@
"type": "library",
"autoload": {
"psr-4": {
- "Lightscale\\PhpRouter\\": "src/"
+ "Lightscale\\Router\\": "src/"
}
},
"authors": [
@@ -13,14 +13,25 @@
"email": "sam@lightscale.co.uk"
}
],
+ "require": {
+ "php": ">=8.3"
+ },
"require-dev": {
"pestphp/pest": "^4.7",
"phpstan/phpstan": "^2.2",
- "friendsofphp/php-cs-fixer": "^3.95"
+ "friendsofphp/php-cs-fixer": "^3.95",
+ "ace-of-aces/intellipest": "^1.0"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
+ },
+ "scripts": {
+ "setup": [
+ "intellipest"
+ ],
+ "analyse": "phpstan",
+ "format": "php-cs-fixer fix"
}
}