-
-
Notifications
You must be signed in to change notification settings - Fork 2
Expand file tree
/
Copy pathcomposer.json
More file actions
45 lines (45 loc) · 997 Bytes
/
composer.json
File metadata and controls
45 lines (45 loc) · 997 Bytes
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
{
"name": "contributte/ui-skeleton",
"description": "Next generation frontend project skeleton based on Nette Framework (@nette), TailwindCSS (@tailwindcss), Alpine.js (@alpinejs) and Contributte (@contributte) libraries by @f3l1x.",
"keywords": [
"nette",
"skeleton",
"project",
"tailwindcss",
"alpine",
"ui",
"frontend",
"tooling"
],
"license": "MIT",
"type": "project",
"require": {
"php": "^8.4",
"contributte/nella": "^0.3",
"contributte/ui": "^0.2"
},
"require-dev": {
"contributte/qa": "^0.4",
"contributte/dev": "^0.6",
"contributte/phpstan": "^0.3",
"contributte/tester": "^0.4"
},
"autoload": {
"psr-4": {
"App\\": "app"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests"
}
},
"prefer-stable": true,
"minimum-stability": "dev",
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}