-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.14 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.14 KB
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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
{
"name": "fhooe/router",
"description": "A simple object-oriented router for educational purposes.",
"license": "MIT",
"type": "library",
"keywords": [
"routing",
"php",
"education"
],
"authors": [
{
"name": "Wolfgang Hochleitner",
"email": "wolfgang.hochleitner@fh-hagenberg.at",
"role": "Developer"
}
],
"require": {
"php": "^8.4",
"ext-mbstring": "*",
"psr/log": "^3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.45",
"mockery/mockery": "^1.6",
"pestphp/pest": "^3.7",
"phpstan/phpstan": "^2.1"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Fhooe\\Router\\": "src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"pestphp/pest-plugin": true
}
},
"scripts": {
"pest": "pest",
"phpstan": "phpstan analyse src --memory-limit=-1 --level 9 || true",
"test": [
"@phpstan",
"@pest"
]
}
}