-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.12 KB
/
composer.json
File metadata and controls
47 lines (47 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
35
36
37
38
39
40
41
42
43
44
45
46
47
{
"name": "oligus/schema",
"description": "Object oriented GraphQL schema",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "oligus",
"email": "oli.gustafsson@gmail.com"
}
],
"scripts": {
"test": "phpunit",
"test-coverage": "phpunit --coverage-clover=coverage.xml",
"test-coverage-html": "phpunit --coverage-html tests/coverage",
"lint": "phpcs src",
"lint-fix": "phpcbf src",
"md": "phpmd src text phpmd.xml",
"md-xml": "phpmd src xml phpmd.xml",
"analyze": "phan --color --progress-bar",
"analyze-noop": "phan --no-progress-bar"
},
"require": {
"php": ">=7.3",
"doctrine/collections": "^1.5",
"myclabs/php-enum": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^8.0",
"spatie/phpunit-snapshot-assertions": "3.0",
"squizlabs/php_codesniffer": "^3.5",
"symfony/var-dumper": "^5.0",
"phan/phan": "^2.4",
"phpmd/phpmd": "^2.8"
},
"autoload": {
"psr-4": {
"GQLSchema\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"GQLSchema\\Tests\\": "tests",
"GQLSchema\\E2E\\": "tests/e2e"
}
}
}