diff options
| author | Sam Light <sam@lightscale.co.uk> | 2026-06-10 19:00:31 +0100 |
|---|---|---|
| committer | Sam Light <sam@lightscale.co.uk> | 2026-06-10 19:00:31 +0100 |
| commit | 2ce0f77eed0dc440d4b65b9b2ead8df25f049005 (patch) | |
| tree | 091fbc09226a21fb0637b08a104b209aeac87270 /composer.json | |
| parent | 26e20ef1a14f0734f6082dfb20a05fbcd6809165 (diff) | |
installed more dev deps
Diffstat (limited to 'composer.json')
| -rw-r--r-- | composer.json | 15 |
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" } } |
