-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 998 Bytes
/
composer.json
File metadata and controls
39 lines (39 loc) · 998 Bytes
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
{
"name": "statix/server",
"description": "A object oriented wrapper around PHP's built in server",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Wyatt Castaneda",
"email": "wyatt.castaneda@gmail.com"
}
],
"support": {
"issues": "https://github.com/statix-php/server/issues",
"forum": "https://github.com/statix-php/server/discussions",
"chat": "https://discord.gg/yf8BtzS3Qg"
},
"require": {
"php": ">=8",
"symfony/process": "^6.0",
"vlucas/phpdotenv": "^5.4"
},
"autoload": {
"psr-4": {
"Statix\\Server\\": "src"
}
},
"require-dev": {
"laravel/pint": "^1.0",
"pestphp/pest": "^1.21",
"illuminate/http": "^9.21",
"guzzlehttp/guzzle": "^7.4",
"spatie/invade": "^1.1"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
}
}