forked from kitpages/KitpagesDataGridBundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
100 lines (100 loc) · 3.1 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
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
{
"name": "vysokeskoly/data-grid-bundle",
"description": "Symfony DataGridBundle",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"Datagrid",
"paginator",
"filter",
"sort"
],
"authors": [
{
"name": "Philippe Le Van",
"email": "philippe.levan@kitpages.fr"
},
{
"name": "Petr Chromec",
"email": "mortal_flesh@seznam.cz"
}
],
"homepage": "https://github.com/vysokeskoly/KitpagesDataGridBundle",
"require": {
"php": "^8.1",
"ext-pdo": "*",
"beberlei/assert": "^3.3",
"doctrine/doctrine-bundle": "^2.5.7",
"doctrine/orm": "^2.11.2",
"symfony/dependency-injection": "^5.0 || ^6.0",
"symfony/framework-bundle": "^5.0 || ^6.0",
"symfony/templating": "^5.0 || ^6.0",
"symfony/translation": "^5.0 || ^6.0",
"symfony/twig-bundle": "^5.0 || ^6.0",
"twig/twig": "^3.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.28",
"lmc/coding-standard": "^3.3",
"php-parallel-lint/php-parallel-lint": "^1.3",
"phpstan/extension-installer": "^1.1",
"phpstan/phpstan": "^1.5",
"phpstan/phpstan-beberlei-assert": "^1.0",
"phpstan/phpstan-phpunit": "^1.0",
"phpunit/phpunit": "^9.5.20",
"symfony/browser-kit": "^5.0 || ^6.0",
"symfony/finder": "^5.0 || ^6.0",
"symfony/yaml": "^5.0 || ^6.0"
},
"conflict": {
"kitpages/data-grid-bundle": "*"
},
"autoload": {
"psr-4": {
"Kitpages\\DataGridBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Kitpages\\DataGridBundle\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true,
"dealerdirect/phpcodesniffer-composer-installer": true,
"phpstan/extension-installer": true,
"ocramius/package-versions": true
},
"sort-packages": true
},
"scripts": {
"all": [
"@lint",
"@analyze",
"@tests"
],
"analyze": [
"@cs",
"@phpstan"
],
"cs": "vendor/bin/ecs check --ansi -- src/ tests/ ecs.php",
"fix": [
"@composer normalize",
"vendor/bin/ecs check src/ tests/ ecs.php --ansi --fix"
],
"lint": [
"vendor/bin/parallel-lint -j 10 -e php ./src ./tests ecs.php",
"@composer validate",
"@composer normalize --dry-run"
],
"phpstan": [
"@phpstan-src",
"@phpstan-tests"
],
"phpstan-src": "vendor/bin/phpstan analyze ./src -c phpstan.neon --ansi --level 8",
"phpstan-tests": "vendor/bin/phpstan analyze ./tests -c phpstan.neon --ansi --level 8",
"tests": "./vendor/bin/phpunit --colors=always",
"tests-ci": "./vendor/bin/phpunit -c phpunit.xml.dist --coverage-html=reports/html --coverage-clover=reports/clover.xml --log-junit=reports/junit.xml"
}
}