-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
81 lines (81 loc) · 2.04 KB
/
composer.json
File metadata and controls
81 lines (81 loc) · 2.04 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
{
"name": "chamber-orchestra/doctrine-sort-bundle",
"type": "symfony-bundle",
"description": "Symfony bundle for automatic sort order management in Doctrine ORM entities. Recalculates positions on flush with grouped ordering, second-level cache support, and PHP attribute configuration.",
"keywords": [
"symfony",
"doctrine",
"sort",
"sorting",
"sort-order",
"position",
"orderable",
"sortable",
"reorder",
"doctrine-orm",
"symfony-bundle",
"entity-ordering",
"drag-and-drop",
"list-order",
"php-attributes"
],
"license": "MIT",
"homepage": "https://github.com/chamber-orchestra/doctrine-sort-bundle",
"support": {
"issues": "https://github.com/chamber-orchestra/doctrine-sort-bundle/issues",
"source": "https://github.com/chamber-orchestra/doctrine-sort-bundle"
},
"authors": [
{
"name": "Andrew Lukin",
"email": "lukin.andrej@gmail.com",
"homepage": "https://github.com/wtorsi",
"role": "Developer"
}
],
"require": {
"php": "^8.5",
"chamber-orchestra/metadata-bundle": "8.0.*",
"php-ds/php-ds": "^1.7"
},
"require-dev": {
"phpunit/phpunit": "^13.0",
"symfony/test-pack": "^1.2",
"phpbench/phpbench": "^1.4",
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-doctrine": "^2.0",
"friendsofphp/php-cs-fixer": "^3.75"
},
"autoload": {
"psr-4": {
"ChamberOrchestra\\DoctrineSortBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"minimum-stability": "stable",
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "8.0.*"
}
},
"config": {
"allow-plugins": {
"symfony/runtime": true
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"bench": "vendor/bin/phpbench run --report=aggregate",
"analyse": "vendor/bin/phpstan analyse --memory-limit=512M",
"cs-check": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs-fix": "vendor/bin/php-cs-fixer fix"
}
}