-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
77 lines (77 loc) · 2.04 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
67
68
69
70
71
72
73
74
75
76
77
{
"name": "vardumper/picocss-storybook",
"type": "library",
"description": "Storybook.js for PicoCSS",
"keywords": [
"storybook",
"storybook.js",
"pico",
"picocss",
"framework"
],
"homepage": "https://github.com/vardumper/picocss-storybook",
"license": "MIT",
"require": {
"bentools/cartesian-product": "^1.4.1",
"fakerphp/faker": "^1.24.1",
"matthiasmullie/minify": "^1.3.73",
"mnapoli/silly": "^1.9.1",
"symfony/yaml": "^7.2.3",
"twig/intl-extra": "^3.20.0"
},
"scripts": {
"post-install-cmd": "vendor/bin/cghooks add --ignore-lock",
"post-update-cmd": "vendor/bin/cghooks update",
"check-cs": "ecs check --ansi",
"fix-cs": "ecs check --ansi --fix",
"phpstan": "phpstan --memory-limit=1G",
"phpmd": "phpmd src text ruleset.xml"
},
"require-dev": {
"brainmaestro/composer-git-hooks": "dev-master",
"friendsofphp/php-cs-fixer": "^3.70.0",
"phpmd/phpmd": "^2.15",
"symplify/easy-ci": "^12.1",
"symplify/easy-coding-standard": "^12.5.8",
"twig/twig": "^3.20.0"
},
"config": {
"sort-packages": true,
"platform": {
"php": "8.3"
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"allow-plugins": {
"veewee/composer-run-parallel": true
}
},
"extra": {
"hooks": {
"pre-commit": [
".hooks/pre-commit"
],
"commit-msg": [
".hooks/commit-msg"
],
"post-commit": [
".hooks/post-commit"
]
}
},
"autoload": {
"psr-4": {
"PicoCSS\\Storybook\\": "src/"
}
},
"authors": [
{
"name": "Erik Pöhler",
"email": "[email protected]",
"homepage": "https://erikpoehler.com",
"role": "Developer"
}
]
}