-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
34 lines (34 loc) · 1.12 KB
/
composer.json
File metadata and controls
34 lines (34 loc) · 1.12 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
{
"name": "myparcelcom/json-api",
"description": "MyParcel.com shared library with JSON API related exceptions, interfaces, traits and utility classes.",
"homepage": "https://www.myparcel.com",
"type": "library",
"require": {
"php": ">=8.2",
"ext-json": "*",
"guzzlehttp/promises": "^2.0",
"justinrainbow/json-schema": "^5.2",
"laravel/framework": ">=8.0"
},
"autoload": {
"psr-4": {
"MyParcelCom\\JsonApi\\": "src/"
}
},
"require-dev": {
"mockery/mockery": "^1.5",
"phpunit/phpunit": ">=9.5 <12.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload-dev": {
"psr-4": {
"MyParcelCom\\JsonApi\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/phpunit --no-coverage",
"check-style": "vendor/bin/phpcs -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 --warning-severity=6 src tests",
"fix-style": "vendor/bin/phpcbf -p --standard=PSR12 --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1 --warning-severity=6 src tests"
}
}