-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 1.76 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 1.76 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "peroks/api-server",
"description": "An ultra-light api server based on PSR-7, PSR-14 and PSR-15 best-practice standards.",
"license": "MIT",
"type": "library",
"keywords": [
"PSR-7",
"PSR-14",
"PSR-15",
"server-middleware",
"server-handler",
"event-dispatcher",
"request-handler",
"rest-server",
"api-server"
],
"authors": [
{
"name": "Per Egil Roksvaag",
"homepage": "https://github.com/peroks"
}
],
"require": {
"php": ">=8.1",
"peroks/model": "^3.0.2",
"psr/event-dispatcher": "^1.0",
"psr/http-server-handler": "^1.0",
"psr/http-server-middleware": "^1.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.45.0",
"guzzlehttp/psr7": "^2.5",
"phpunit/phpunit": "^10.5",
"wp-coding-standards/wpcs": "^3.1.0"
},
"provide": {
"psr/http-server-handler-implementation": "1.0",
"psr/http-server-middleware-implementation": "1.0"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Peroks\\ApiServer\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Peroks\\ApiServer\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true,
"ergebnis/composer-normalize": true
},
"platform": {
"php": "8.1"
}
},
"scripts": {
"post-install-cmd": "@composer normalize",
"post-update-cmd": "@composer normalize",
"build-deploy": "@composer install --no-dev",
"build-install": "@composer install",
"build-lock": "@composer update --with-all-dependencies --no-install",
"build-update": "@composer update --with-all-dependencies",
"clean": "rm -rf ./vendor",
"format": "./vendor/bin/phpcbf ./src ./tests",
"lint": "./vendor/bin/phpcs ./src ./tests",
"outdated-check": "@composer outdated",
"tests": "./vendor/bin/phpunit tests"
}
}