-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (45 loc) · 1.13 KB
/
Copy pathcomposer.json
File metadata and controls
47 lines (45 loc) · 1.13 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
{
"name": "romchik38/php-server",
"description": "Php files to create a web app under php-fpm ",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Serhii Romanenko",
"homepage": "https://github.com/Romchik38"
}
],
"autoload": {
"psr-4": {
"Romchik38\\Server\\": "src/",
"Romchik38\\Server\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.3",
"psr/log": "^3.0",
"psr/http-message": "2.0",
"psr/http-factory": "^1.1",
"psr/http-server-handler": "^1.0"
},
"require-dev": {
"phpunit/phpunit": "^11",
"laminas/laminas-diactoros": "^3.5",
"phpstan/phpstan": "^2.1",
"laminas/laminas-coding-standard": "^3.0"
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf",
"tests": [
"vendor/bin/phpunit",
"vendor/bin/phpstan",
"composer cs-check"
]
}
}