-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
91 lines (91 loc) · 2.32 KB
/
composer.json
File metadata and controls
91 lines (91 loc) · 2.32 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
{
"name": "brushcss/brushcss",
"description": "A PHP-native utility-first CSS engine with JIT compilation, plugin marketplace support, and deep framework integration (Hurricane-ready).",
"keywords": [
"utility-first",
"css",
"JIT",
"dev",
"brushcss"
],
"type": "library",
"license": "MIT",
"require": {
"php": "^8.4",
"ext-json": "*",
"ext-mbstring": "*",
"symfony/cache": "^8.0",
"symfony/console": "^8.0",
"symfony/finder": "^8.0"
},
"require-dev": {
"tomasvotruba/type-coverage": "^2.1",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^13.1",
"phpstan/extension-installer": "^1.4",
"laravel/pint": "^1.29"
},
"autoload": {
"psr-4": {
"BrushCSS\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Sushil Kumar",
"email": "sushilkumbhar77@gmail.com",
"role": "Developer"
}
],
"support": {
"issues": "https://github.com/CodeWithSushil/brushcss/issues",
"source": "https://github.com/CodeWithSushil/brushcss"
},
"funding": [
{
"type": "BuyMeACoffee",
"url": "https://buymeacoffee.com/CodeWithSushil"
},
{
"type": "opencollective",
"url": "https://opencollective.com/CodeWithSushil"
},
{
"type": "github",
"url": "https://github.com/sponsors/CodeWithSushil"
}
],
"bin": [
"bin/brushcss"
],
"scripts": {
"test:lint": "pint",
"test:type": "phpstan analyse",
"test:unit": "phpunit --testdox",
"test:coverage": "phpunit --coverage-text --coverage-clover coverage.xml",
"test": [
"@test:lint",
"@test:type",
"@test:unit",
"@test:coverage"
]
},
"config": {
"sort-packages": true,
"preferred-install": "dist",
"optimize-autoloader": true,
"allow-plugins": {
"phpstan/extension-installer": true
},
"platform": {
"php": "8.4.1"
}
},
"minimum-stability": "dev",
"prefer-stable": true
}