-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
64 lines (64 loc) · 1.8 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
{
"name": "api-skeletons/doctrine-criteria",
"description": "Doctrine Criteria from Array Parameters",
"license": "BSD-3-Clause",
"keywords": [
"doctrine",
"filter",
"criteria",
"orm",
"laminas"
],
"homepage": "https://api-skeletons.com",
"support": {
"gitter": "https://gitter.im/API-Skeletons/open-source"
},
"extra": {
"zf": {
"module": [
"ApiSkeletons\\Doctrine\\Criteria"
]
}
},
"require": {
"php": "^7.1",
"doctrine/collections": "^1.5",
"doctrine/doctrine-module": "^1.2 || ^2.1",
"doctrine/doctrine-orm-module": "^1.1 || ^2.1",
"laminas/laminas-modulemanager": "^2.7.2",
"laminas/laminas-servicemanager": "^2.7.6 || ^3.1.1",
"laminas/laminas-dependency-plugin": "^1.0"
},
"require-dev": {
"api-skeletons/coding-standard": "^1.0",
"dprevite/lint": "dev-master",
"laminas/laminas-test": "^3.2",
"phpunit/phpunit": "^7.1",
"phpstan/phpstan-doctrine": "^0.9.1",
"php-coveralls/php-coveralls": "^2.1"
},
"autoload": {
"psr-4": {
"ApiSkeletons\\Doctrine\\Criteria\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ApiSkeletonsTest\\Doctrine\\Criteria\\": "test/",
"DbTest\\": "test/module/DbTest/src/"
}
},
"scripts": {
"ci-check": [
"@lint",
"@phpcs",
"@test",
"@phpstan"
],
"lint": "lint src/",
"phpcs": "phpcs",
"phpstan": "phpstan analyze -c phpstan.neon --level=7 src/",
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}