-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
110 lines (110 loc) · 3.4 KB
/
Copy pathcomposer.json
File metadata and controls
110 lines (110 loc) · 3.4 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
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
101
102
103
104
105
106
107
108
109
110
{
"name": "zhortein/datatable-bundle",
"description": "A Symfony 8+ bundle for Bootstrap-first business datatables driven by PHP definitions, with Twig rendering, Stimulus Ajax refresh, Doctrine provider, actions, filters and CSV/XLSX exports.",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Zhortein",
"homepage": "https://github.com/Zhortein"
}
],
"keywords": [
"symfony",
"symfony-ux",
"bundle",
"datatable",
"datagrid",
"grid",
"bootstrap",
"twig",
"stimulus",
"doctrine",
"ajax",
"export",
"csv",
"xlsx"
],
"require": {
"php": ">=8.4",
"symfony/config": "^8.0",
"symfony/dependency-injection": "^8.0",
"symfony/http-foundation": "^8.0",
"symfony/http-kernel": "^8.0",
"symfony/routing": "^8.0",
"symfony/security-core": "^8.0",
"symfony/security-csrf": "^8.0",
"symfony/translation": "^8.0",
"symfony/twig-bundle": "^8.0",
"symfony/yaml": "^8.0",
"twig/twig": "^3.21"
},
"require-dev": {
"doctrine/doctrine-bundle": "^3.2",
"doctrine/orm": "^3.4.4 || ^4.0",
"friendsofphp/php-cs-fixer": "^3.95",
"friendsoftwig/twigcs": "^6.0",
"openspout/openspout": "^5.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.0",
"phpstan/phpstan-doctrine": "^2.0",
"phpstan/phpstan-phpunit": "^2.0",
"phpstan/phpstan-strict-rules": "^2.0",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^12.0",
"symfony/doctrine-bridge": "^8.0",
"symfony/event-dispatcher-contracts": "^3.6",
"symfony/framework-bundle": "^8.0",
"symfony/translation-contracts": "^3.6",
"symfony/var-dumper": "^8.0"
},
"suggest": {
"doctrine/orm": "Required to use Doctrine ORM backed datatables.",
"doctrine/doctrine-bundle": "Required to use Doctrine ORM backed datatables in Symfony applications.",
"symfony/asset-mapper": "Recommended to expose the provided Stimulus controller with Symfony AssetMapper.",
"symfony/stimulus-bundle": "Recommended to integrate the provided vanilla Stimulus controller.",
"openspout/openspout": "Required to enable XLSX export support.",
"ext-intl": "Recommended for locale-aware datetime formatting through IntlDateFormatter."
},
"autoload": {
"psr-4": {
"Zhortein\\DatatableBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Zhortein\\DatatableBundle\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse --configuration=phpstan.neon.dist --memory-limit=1G",
"cs:check": "php-cs-fixer fix --dry-run --diff --config=.php-cs-fixer.dist.php",
"cs:fix": "php-cs-fixer fix --diff --config=.php-cs-fixer.dist.php",
"twigcs": "find templates -name '*.twig' | grep -q . && twigcs templates --config=.twig-cs-fixer.php || true",
"changelog": "php tools/changelog/build-unreleased.php",
"qa": [
"@test",
"@phpstan",
"@cs:check",
"@twigcs"
]
},
"config": {
"sort-packages": true,
"allow-plugins": {
"php-http/discovery": true,
"phpstan/extension-installer": true
}
},
"extra": {
"symfony": {
"require": "8.0.*"
}
},
"support": {
"issues": "https://github.com/Zhortein/datatable-bundle/issues",
"source": "https://github.com/Zhortein/datatable-bundle",
"docs": "https://github.com/Zhortein/datatable-bundle/tree/main/docs"
}
}