forked from pentiminax/ux-datatables
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
71 lines (71 loc) · 1.8 KB
/
Copy pathcomposer.json
File metadata and controls
71 lines (71 loc) · 1.8 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
{
"name": "pentiminax/ux-datatables",
"description": "DataTables.net integration for Symfony",
"license": "MIT",
"type": "symfony-bundle",
"keywords": [
"symfony-ux"
],
"authors": [
{
"name": "Tanguy Lemarié",
"email": "tanguy.lemarie6@gmail.com"
}
],
"homepage": "https://github.com/pentiminax/ux-datatables",
"require": {
"php": ">=8.3",
"symfony/config": "^7.0 || ^8.0",
"symfony/dependency-injection": "^7.0 || ^8.0",
"symfony/http-kernel": "^7.0 || ^8.0",
"symfony/stimulus-bundle": "^2.22",
"symfony/property-access": "^7.0 || ^8.0"
},
"require-dev": {
"api-platform/core": "^3.0 || ^4.0",
"doctrine/orm": "^3.0",
"friendsofphp/php-cs-fixer": "^3.94",
"phpunit/phpunit": "^11.5",
"symfony/framework-bundle": "^7.0 || ^8.0",
"symfony/phpunit-bridge": "^7.0 || ^8.0",
"symfony/property-info": "^7.0 || ^8.0",
"symfony/twig-bundle": "^7.0 || ^8.0",
"symfony/var-dumper": "^7.0 || ^8.0",
"symfony/maker-bundle": "^1.66",
"symfony/mercure-bundle": "^0.4.2"
},
"suggest": {
"api-platform/core": "To auto-detect columns from API Platform metadata.",
"symfony/maker-bundle": "To use the make:datatable command.",
"symfony/mercure-bundle": "To enable real-time DataTable updates via Mercure SSE."
},
"conflict": {
"symfony/flex": "<1.13"
},
"autoload": {
"psr-4": {
"Pentiminax\\UX\\DataTables\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pentiminax\\UX\\DataTables\\Tests\\": "tests/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
}
},
"extra": {
"thanks": {
"name": "symfony/ux",
"url": "https://github.com/symfony/ux"
}
},
"scripts": {
"fix": [
"vendor/bin/php-cs-fixer fix"
]
}
}