-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
64 lines (64 loc) · 1.71 KB
/
Copy pathcomposer.json
File metadata and controls
64 lines (64 loc) · 1.71 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
{
"name": "luberius/tailwindcss",
"description": "A Tailwind CSS package for PHP projects",
"type": "library",
"license": "MIT",
"keywords": ["tailwindcss", "tailwind", "css", "frontend", "utility-first", "cli"],
"homepage": "https://github.com/luberius/php-tailwindcss",
"support": {
"issues": "https://github.com/luberius/php-tailwindcss/issues",
"source": "https://github.com/luberius/php-tailwindcss"
},
"authors": [
{
"name": "Syahril A P",
"email": "callmesyahril@gmail.com"
}
],
"require": {
"php": "^8.0",
"symfony/cache": "^5.4.52",
"symfony/console": "^5.4"
},
"require-dev": {
"phpunit/phpunit": "^9.6.33",
"sempro/phpunit-pretty-print": "^1.4"
},
"autoload": {
"psr-4": {
"Luberius\\TailwindCss\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Luberius\\TailwindCss\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --printer 'Sempro\\PHPUnitPrettyPrinter\\PrettyPrinterForPhpUnit9'",
"test:coverage": "phpunit --coverage-text --colors=never"
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "stable",
"prefer-stable": true,
"archive": {
"exclude": [
"/bin/",
"/vendor/",
"/tests",
"/docs",
"/.claude/",
"/.github/",
"/.gitattributes",
"/.gitignore",
"/.editorconfig",
"/.phpunit.result.cache",
"/phpunit.xml",
"/phpcs.xml",
"/phpcbf.phar",
"/phpcs.phar"
]
}
}