forked from thopra/styleguide
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
42 lines (42 loc) · 1.14 KB
/
composer.json
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
{
"name": "thopra/styleguide",
"description": "Styleguide skeleton based on kss-php, containing documentation of bootstrap components",
"keywords": [
"kss",
"styleguide",
"css documentation"
],
"license": "MIT",
"repositories": [
{ "type": "vcs", "url": "https://github.com/tck/kss-php" }
],
"require": {
"php": ">=7.2.0",
"kss-php/kss-php": "dev-master",
"twbs/bootstrap": "3.3.*",
"typo3fluid/fluid": "*",
"laminas/laminas-cache": "^3.1",
"laminas/laminas-cache-storage-adapter-filesystem": "^2.0",
"laminas/laminas-serializer": "^2.9",
"endroid/qr-code": "^3.7",
"gajus/dindent": "2.0.*"
},
"authors": [
{
"name": "Thomas Prangenberg",
"email": "[email protected]",
"homepage": "http://www.thomas-prangenberg.de"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Thopra\\": "Classes/"
}
},
"config": {
"bin-dir": "bin",
"vendor-dir": "Packages/Libraries"
}
}