summaryrefslogtreecommitdiff
path: root/composer.json
blob: 9d28ff30add5cc72edd5d95cee029620bea0b12d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
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
    }
  }
}