-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 1.01 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
{
"name": "api-skeletons/laravel-doctrine-orm-oauth2",
"description": "Doctrine OAuth2 Adapter for Laravel",
"type": "library",
"require": {
"league/oauth2-server": "^8.5",
"doctrine/orm": "^3.1"
},
"require-dev": {
"php-parallel-lint/php-parallel-lint": "^1.4",
"vimeo/psalm": "^5.23",
"doctrine/coding-standard": "^12.0",
"phpunit/phpunit": "^3.7"
},
"license": "MIT",
"autoload": {
"psr-4": {
"ApiSkeletons\\Laravel\\Doctrine\\ORM\\OAuth2\\": "src/"
}
},
"authors": [
{
"name": "Tom H Anderson",
"email": "[email protected]"
}
],
"scripts": {
"test": [
"vendor/bin/parallel-lint src tests",
"vendor/bin/phpcs",
"vendor/bin/psalm",
"vendor/bin/phpunit"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}