-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
39 lines (39 loc) · 1.35 KB
/
composer.json
File metadata and controls
39 lines (39 loc) · 1.35 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
{
"name": "gesdinet/metronic-datatable-bundle",
"type": "symfony-bundle",
"description": "Metronic dataTables Symfony bundle",
"keywords": ["mdatatable", "datatables", "datatable", "bundle", "metronic"],
"license": "MIT",
"authors": [
{
"name": "Gesdinet",
"email": "marcos@gesdinet.com",
"homepage": "https://gesdinet.com"
}
],
"require": {
"php" : "^8.1",
"psr/log" : "^1.0|^2.0|^3.0",
"symfony/config" : "^4.0|^5.0|^6.0|^7.0",
"symfony/dependency-injection" : "^4.0|^5.0|^6.0|^7.0",
"symfony/http-foundation" : "^4.0|^5.0.7|^6.0|^7.0",
"symfony/http-kernel" : "^4.0|^5.1.5|^6.0|^7.0",
"symfony/validator" : "^4.0|^5.0|^6.0|^7.0"
},
"require-dev": {
"php-parallel-lint/php-var-dump-check": "^0.5.0",
"symplify/easy-coding-standard": "^10.1",
"phpstan/phpstan": "^1.4",
"rector/rector": "^0.17.13"
},
"scripts": {
"ecs": "./vendor/bin/ecs check *.php",
"rector": "./vendor/bin/rector --dry-run",
"phpstan": "./vendor/bin/phpstan analyse -c phpstan.neon --no-progress -vvv"
},
"autoload": {
"psr-4": {
"Gesdinet\\MetronicDataTableBundle\\": ""
}
}
}