This repository has been archived by the owner on May 7, 2021. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
58 lines (58 loc) · 1.58 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
{
"name": "staysafe/datagrid-paginator",
"description": "DataGrid paginator",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Simon Griffiths",
"email": "[email protected]"
},
{
"name": "Antonios Pavlakis",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"StaySafe\\Paginator\\DataGrid\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"StaySafe\\Paginator\\DataGrid\\Test\\": "tests/phpunit/"
}
},
"require": {
"php": "^7.4",
"ext-pdo": "*",
"particle/filter": "^1.5",
"webmozart/assert": "^1.4",
"doctrine/doctrine-bundle": "^1",
"doctrine/orm": "^2"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2",
"phpstan/phpstan": "^0.12",
"phpunit/phpunit": "^9.3"
},
"config": {
"sort-packages": true,
"preferred-install": {
"*": "dist"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test-coverage": "phpunit --colors=always --coverage-html=tests/coverage/ ",
"test-coverage-ci": "phpunit --verbose --coverage-clover build/logs/clover.xml",
"check-styles": "php-cs-fixer fix --dry-run",
"fix-styles": "php-cs-fixer fix",
"static-analysis": "phpstan analyse src --level 7",
"test-ci": [
"@check-styles",
"@static-analysis",
"@test-coverage-ci"
]
}
}