-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.86 KB
/
composer.json
File metadata and controls
64 lines (64 loc) · 1.86 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
{
"name": "dev-toolbelt/jsend-payload",
"description": "A framework-agnostic PHP library for building standardized JSend API responses with PSR-7 support",
"type": "library",
"license": "MIT",
"keywords": [
"jsend",
"api",
"json",
"response",
"psr-7",
"rest",
"http",
"payload",
"standardized-responses"
],
"authors": [
{
"name": "Kilderson Sena",
"email": "dersonsena@gmail.com",
"homepage": "https://github.com/dersonsena",
"role": "Developer"
}
],
"homepage": "https://github.com/Dev-Toolbelt/jsend-payload",
"support": {
"issues": "https://github.com/Dev-Toolbelt/jsend-payload/issues",
"source": "https://github.com/Dev-Toolbelt/jsend-payload"
},
"scripts": {
"test": "phpunit --configuration tests/phpunit.xml",
"test:coverage": "phpunit --configuration tests/phpunit.xml --coverage-html tests/coverage",
"phpcs": "phpcs --standard=phpcs.xml",
"phpcs:fix": "php-cs-fixer fix --config=.php-cs-fixer.php --allow-risky=yes",
"phpstan": "phpstan analyse --configuration=phpstan.neon"
},
"require": {
"php": "^8.1",
"dev-toolbelt/enums": "^1.0",
"nyholm/psr7": "^1.8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"mockery/mockery": "^1.6",
"phpstan/phpstan": "^1.0",
"phpunit/phpunit": "^10.0",
"squizlabs/php_codesniffer": "^3.5"
},
"autoload": {
"psr-4": {
"DevToolbelt\\JsendPayload\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"DevToolbelt\\JsendPayload\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "stable",
"prefer-stable": true
}