-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
94 lines (94 loc) · 2.84 KB
/
Copy pathcomposer.json
File metadata and controls
94 lines (94 loc) · 2.84 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
{
"name": "symfinity/poker-planner",
"description": "Self-hosted planning poker for Symfony - hidden votes, Mercure realtime, story queue",
"type": "symfony-bundle",
"license": "MIT",
"homepage": "https://github.com/symfinity/poker-planner",
"support": {
"issues": "https://github.com/symfinity/poker-planner/issues",
"source": "https://github.com/symfinity/poker-planner"
},
"authors": [
{
"name": "Symfinity",
"email": "dev@symfinity.net",
"homepage": "https://symfinity.net/"
}
],
"keywords": [
"symfony",
"symfony-bundle",
"planning-poker",
"estimation",
"mercure",
"agile",
"scrum"
],
"require": {
"php": ">=8.2",
"ext-json": "*",
"symfinity/ui-kernel": "^0.1",
"symfinity/ux-blocks": "^0.1",
"symfinity/ux-blocks-core": "^0.1",
"symfony/config": "^7.4||^8.0",
"symfony/asset-mapper": "^7.4||^8.0",
"symfony/dependency-injection": "^7.4||^8.0",
"symfony/framework-bundle": "^7.4||^8.0",
"symfony/http-foundation": "^7.4||^8.0",
"symfony/http-kernel": "^7.4||^8.0",
"symfony/mercure-bundle": "^0.3||^0.4",
"symfony/routing": "^7.4||^8.0",
"symfony/stimulus-bundle": "^2.0||^3.0",
"symfony/twig-bundle": "^7.4||^8.0",
"symfony/uid": "^7.4||^8.0",
"symfony/ux-turbo": "^2.0||^3.0",
"symfony/ux-twig-component": "^2.0||^3.0",
"twig/twig": "^3.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^10.5||^11.0",
"symfony/browser-kit": "^7.4||^8.0",
"symfony/css-selector": "^7.4||^8.0",
"symfony/yaml": "^7.4||^8.0"
},
"autoload": {
"psr-4": {
"Symfinity\\Bundle\\PokerPlanner\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfinity\\Bundle\\PokerPlanner\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit -c phpunit.xml.dist",
"phpstan": "phpstan analyse --memory-limit=512M"
},
"suggest": {
"ext-redis": "Native Redis extension (recommended for production)",
"predis/predis": "Pure-PHP Redis client when ext-redis is unavailable",
"symfony/ux-icons": "App icon and optional glyphs via ux_blocks_icon() (hugeicons:joker)"
},
"funding": [
{
"type": "github",
"url": "https://github.com/sponsors/serotoninja"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"branch-alias": {
"dev-main": "0.1.x-dev"
},
"symfony": {
"require": "^7.4||^8.0"
}
}
}