-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
44 lines (44 loc) · 1016 Bytes
/
composer.json
File metadata and controls
44 lines (44 loc) · 1016 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
40
41
42
43
44
{
"name": "romchik38/php-api",
"description": "Framework-independent PHP library for standardized API responses",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Romchik38",
"email": "pomahehko.c@gmail.com"
}
],
"autoload": {
"psr-4": {
"Romchik38\\Api\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Romchik38\\Api\\Tests\\": "tests/"
}
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"phpstan/phpstan": "*",
"laminas/laminas-coding-standard": "*",
"phpunit/phpunit": "^13.1"
},
"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"
]
}
}