-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 809 Bytes
/
composer.json
File metadata and controls
34 lines (34 loc) · 809 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
{
"name": "ahmard/php-server",
"description": "A small library to help run PHP servers easily and quickly.",
"type": "library",
"license": "MIT",
"require": {
"php": "^8.1",
"ext-pdo": "*",
"react/child-process": "^0.6.5",
"opis/closure": "^3.6",
"symfony/console": "^7.0",
"nette/utils": "^4.0"
},
"require-dev": {
"phpstan/phpstan": "^1.10",
"symfony/var-dumper": "^7.0"
},
"autoload": {
"psr-4": {
"PHPServer\\": "src/"
},
"files": ["src/functions.php"]
},
"authors": [
{
"name": "ahmard",
"email": "ahmard06@gmail.com"
}
],
"scripts": {
"analyse": "phpstan analyse",
"analyze": "@analyse"
}
}