-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
73 lines (73 loc) · 2.18 KB
/
composer.json
File metadata and controls
73 lines (73 loc) · 2.18 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
62
63
64
65
66
67
68
69
70
71
72
73
{
"name": "g4/data-mapper",
"description": "data-mapper php library",
"keywords": [
"data mapper",
"model",
"domain",
"mapper"
],
"license": "MIT",
"authors": [
{
"name": "Drasko Gomboc",
"email": "drasko.gomboc@gmail.com"
},
{
"name": "Dejan Samardzija",
"email": "samardzijadejan@gmail.com"
},
{
"name": "Ivan Krickovic",
"email": "ivan.krickovic@gmail.com"
},
{
"name": "Zeljko Simic",
"email": "zeljkosbgd@gmail.com"
}
],
"autoload": {
"psr-4": {
"G4\\DataMapper\\": "src/",
"G4\\DataMapper\\Test\\Integration\\": "tests/integration"
}
},
"include-path": [
"vendor/g4/zf1-future-zend-db/library/"
],
"require-dev": {
"phpunit/phpunit" : "9.6.*",
"phpunit/php-code-coverage" : "9.2.*",
"squizlabs/php_codesniffer" : "3.*",
"g4/code-coverage" : "1.*"
},
"require": {
"php" : ">=8.2",
"ext-curl" : "*",
"ext-json" : "*",
"g4/factory" : "1.*",
"g4/profiler" : ">=1.11.0",
"g4/value-object" : ">=3.6.0",
"g4/zf1-future-zend-db" : "1.23.*"
},
"scripts": {
"unit-test": [
"XDEBUG_MODE=coverage vendor/bin/phpunit -c tests/unit/phpunit.xml --colors=always --coverage-html tests/unit/coverage"
],
"test-coverage": [
"XDEBUG_MODE=coverage ./vendor/bin/phpunit --colors=always -c tests/unit/phpunit.xml --coverage-text"
],
"test-report": [
".XDEBUG_MODE=coverage /vendor/bin/phpunit --colors=always -c tests/unit/phpunit.xml --coverage-clover=tests/unit/coverage/code-coverage.xml"
],
"code-coverage": [
"./vendor/bin/code-coverage -p 90 -f tests/unit/coverage/code-coverage.xml"
],
"psr2": [
"./vendor/bin/phpcs --colors --standard=PSR2 src/"
],
"psr2-fix": [
"./vendor/bin/phpcbf --colors --standard=PSR2 src/"
]
}
}