-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
41 lines (41 loc) · 1.22 KB
/
composer.json
File metadata and controls
41 lines (41 loc) · 1.22 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
{
"name": "myparcelcom/auth-module",
"description": "Package for validating a JWT token and checking the contained scopes",
"homepage": "https://solutions.myparcel.com",
"type": "library",
"require": {
"php": ">=8.2",
"laravel/framework": ">=9.0",
"lcobucci/jwt": ">=5.0",
"myparcelcom/json-api": "^4.0"
},
"require-dev": {
"ext-openssl": "*",
"mockery/mockery": "^1.5",
"phpunit/phpunit": "^11.0",
"roave/security-advisories": "dev-latest",
"squizlabs/php_codesniffer": "^3.7"
},
"autoload": {
"psr-4": {
"MyParcelCom\\AuthModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"MyParcelCom\\AuthModule\\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"
},
"extra": {
"laravel": {
"providers": [
"MyParcelCom\\AuthModule\\Providers\\AuthServiceProvider"
]
}
}
}