-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
48 lines (48 loc) · 1.16 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
{
"name": "riddlestone/brokkr-doctrine-graphql",
"description": "Tools for configuring ",
"minimum-stability": "dev",
"prefer-stable": true,
"license": "BSD-3-Clause",
"authors": [
{
"name": "Andrew Riddlestone",
"email": "andrew.riddlestone@gmail.com"
}
],
"autoload": {
"psr-4": {
"Riddlestone\\Brokkr\\DoctrineGraphQL\\": "src/"
}
},
"require": {
"php": "7.4.*",
"doctrine/doctrine-orm-module": "^4.1",
"riddlestone/brokkr-graphql": "^0.2.1",
"doctrine/dbal": "^2.13"
},
"autoload-dev": {
"psr-4": {
"Riddlestone\\Brokkr\\DoctrineGraphQL\\Test\\": "tests/"
}
},
"require-dev": {
"laminas/laminas-test": "^3.5",
"phpmetrics/phpmetrics": "^2.7",
"vimeo/psalm": "^4.13"
},
"scripts": {
"test": "phpunit",
"coverage": "XDEBUG_MODE=coverage phpunit --coverage-html=build/coverage",
"metrics": [
"XDEBUG_MODE=coverage phpunit --log-junit=build/junit.xml",
"phpmetrics --report-html=build/metrics --junit=build/junit.xml --git src"
],
"psalm": "psalm"
},
"config": {
"allow-plugins": {
"composer/package-versions-deprecated": true
}
}
}