-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
75 lines (75 loc) · 2.28 KB
/
Copy pathcomposer.json
File metadata and controls
75 lines (75 loc) · 2.28 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
{
"name": "symfinity/ui-kernel",
"description": "Design tokens, themes, and generated CSS for Symfony",
"type": "symfony-bundle",
"license": "MIT",
"homepage": "https://github.com/symfinity/ui-kernel",
"support": {
"issues": "https://github.com/symfinity/ui-kernel/issues",
"source": "https://github.com/symfinity/ui-kernel"
},
"authors": [
{
"name": "Symfinity",
"email": "dev@symfinity.net",
"homepage": "https://symfinity.net/"
}
],
"keywords": [
"symfony",
"symfony-bundle",
"design-tokens",
"themes",
"css",
"ui-kernel",
"oklch"
],
"require": {
"php": ">=8.2",
"symfony/config": "^6.4||^7.0||^8.0",
"symfony/dependency-injection": "^6.4||^7.0||^8.0",
"symfony/framework-bundle": "^6.4||^7.0||^8.0",
"symfony/http-foundation": "^6.4||^7.0||^8.0",
"symfony/http-kernel": "^6.4||^7.0||^8.0",
"symfony/twig-bundle": "^6.4||^7.0||^8.0",
"symfony/yaml": "^6.4||^7.0||^8.0",
"twig/twig": "^3.0"
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0",
"phpunit/phpunit": "^10.5 || ^11.0"
},
"autoload": {
"psr-4": {
"Symfinity\\UiKernel\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Symfinity\\UiKernel\\Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"test": "phpunit",
"phpstan": "phpstan analyse --memory-limit=512M"
},
"extra": {
"branch-alias": {
"dev-main": "0.1.x-dev"
},
"symfony": {
"require": "^6.4||^7.0||^8.0"
}
},
"suggest": {
"symfony/web-profiler-bundle": "Dev-only Web Profiler toolbar and panel for theme/CSS observability (UiKernelDataCollector)",
"symfinity/font-manager": "Optional webfont loading — pair css_variables export with --ui-font-family-sans / --ui-font-family-mono (see docs/font-manager-pairing.md)",
"symfinity/ux-blocks-demo": "Browser theme galleries and kernel showcase routes (dev/test only)"
},
"minimum-stability": "dev",
"prefer-stable": true
}