summaryrefslogtreecommitdiff
path: root/composer.json
diff options
context:
space:
mode:
authorSam Light <sam@lightscale.co.uk>2026-06-10 19:00:31 +0100
committerSam Light <sam@lightscale.co.uk>2026-06-10 19:00:31 +0100
commit4656ce4160b5380d2867c8bce03ab843ad8db92a (patch)
tree1add86ab040628e9a05465c94214548541d0f0c6 /composer.json
init
Diffstat (limited to 'composer.json')
-rw-r--r--composer.json26
1 files changed, 26 insertions, 0 deletions
diff --git a/composer.json b/composer.json
new file mode 100644
index 0000000..c68d181
--- /dev/null
+++ b/composer.json
@@ -0,0 +1,26 @@
+{
+ "name": "lightscale/php-router",
+ "description": "PHP routing library",
+ "type": "library",
+ "autoload": {
+ "psr-4": {
+ "Lightscale\\PhpRouter\\": "src/"
+ }
+ },
+ "authors": [
+ {
+ "name": "Sam Light",
+ "email": "sam@lightscale.co.uk"
+ }
+ ],
+ "require-dev": {
+ "pestphp/pest": "^4.7",
+ "phpstan/phpstan": "^2.2",
+ "friendsofphp/php-cs-fixer": "^3.95"
+ },
+ "config": {
+ "allow-plugins": {
+ "pestphp/pest-plugin": true
+ }
+ }
+}