-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
56 lines (56 loc) · 1.44 KB
/
composer.json
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
{
"name": "api-skeletons/laravel-doctrine-apikey",
"description": "API keys with scopes for Laravel Doctrine",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"ApiSkeletons\\Laravel\\Doctrine\\ApiKey\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiSkeletonsTest\\Laravel\\Doctrine\\ApiKey\\": "test/"
}
},
"authors": [
{
"name": "Tom H Anderson",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1",
"laravel-doctrine/orm": "^2.0 || ^3.0",
"api-skeletons/laravel-api-problem": "^2.0"
},
"require-dev": {
"doctrine/coding-standard": "^12.0",
"doctrine/dbal": "^3.8",
"doctrine/annotations": "^2.0",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4.15",
"orchestra/testbench": "^7.41",
"php-parallel-lint/php-parallel-lint": "^1.4"
},
"extra": {
"laravel": {
"providers": [
"ApiSkeletons\\Laravel\\Doctrine\\ApiKey\\ServiceProvider"
]
}
},
"scripts": {
"test": [
"parallel-lint src/ test/",
"vendor/bin/phpcs",
"vendor/bin/psalm",
"vendor/bin/phpunit"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}