-
Notifications
You must be signed in to change notification settings - Fork 6
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.29 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.29 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
{
"name": "oligus/jad",
"description": "Json Api to Doctrine ORM",
"keywords": [
"json",
"api",
"doctrine",
"orm"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "oligus",
"email": "oli.gustafsson@gmail.com"
}
],
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-clover=coverage.xml",
"lint": "phpcs src",
"lint-fix": "phpcbf src",
"md": "phpmd src text phpmd.xml",
"md-xml": "phpmd src xml phpmd.xml",
"analyze": "vendor/bin/phan --color --progress-bar"
},
"require": {
"php": ">=7.2",
"ext-json": "*",
"symfony/http-foundation": "^4.1",
"symfony/validator": "^4.1",
"phan/phan": "^2"
},
"require-dev": {
"phpunit/phpunit": "^8.5",
"doctrine/orm": "^2.7",
"spatie/phpunit-snapshot-assertions": "^2.2",
"symfony/var-dumper": "^4.4",
"squizlabs/php_codesniffer": "^3.5",
"phpmd/phpmd": "^2.8"
},
"config": {
"platform": {
"php": "7.2"
}
},
"autoload": {
"psr-4": {
"Jad\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Jad\\Tests\\": "tests/src",
"Jad\\Database\\": "tests/Database",
"Jad\\E2E\\": "tests/e2e"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}