forked from NamelessCoder/patternlab-fluid-edition
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
66 lines (66 loc) · 1.82 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
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
{
"minimum-stability": "dev",
"license": "MIT",
"name": "cobwebch/patternlab-fluid-edition",
"type": "project",
"require": {
"pattern-lab/core": "^2.8",
"typo3fluid/fluid": "^2.4",
"cobwebch/patternlab-fluid-patternengine": "dev-master",
"pattern-lab/styleguidekit-assets-default": "^3.5",
"namelesscoder/patternlab-fluid-styleguidekit": "^1.0",
"cobwebch/patternlab-fluid-starterkit": "dev-master"
},
"repositories": [
{
"type": "vcs",
"url": "[email protected]:cobwebch/patternlab-fluid-patternengine.git"
},
{
"type": "vcs",
"url": "[email protected]:cobwebch/patternlab-fluid-starterkit.git"
}
],
"extra": {
"patternlab": {
"starterKitSuggestions": [
"cobwebch/patternlab-fluid-starterkit"
]
}
},
"autoload": {
"psr-0": {
"PatternLab": "core/src/"
},
"psr-4": {
"NamelessCoder\\PatternlabFluidEdition\\": "src/",
"TYPO3\\CMS\\Fluid\\ViewHelpers\\" : "source/_viewhelpers"
}
},
"scripts": {
"server": "php core/console --server",
"generate": "php core/console --generate",
"watch": "php core/console --watch",
"start": "php core/console --server --quiet & php core/console --watch",
"post-install-cmd": [
"PatternLab\\Installer::postInstallCmd"
],
"post-update-cmd": [
"PatternLab\\Installer::postUpdateCmd"
],
"post-root-package-install": [
"PatternLab\\Installer::setProjectInstall",
"PatternLab\\Installer::getSuggestedStarterKits",
"PatternLab\\Installer::getConfigOverrides"
],
"post-package-install": [
"PatternLab\\Installer::postPackageInstall"
],
"post-package-update": [
"PatternLab\\Installer::postPackageUpdate"
],
"pre-package-uninstall": [
"PatternLab\\Installer::prePackageUninstall"
]
}
}