-
Notifications
You must be signed in to change notification settings - Fork 10
/
Copy pathcomposer.json
52 lines (52 loc) · 1.31 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
{
"name": "pattern-builder/pattern-kit",
"authors": [
{
"name": "Micah Godbolt",
"email": "[email protected]"
},
{
"name": "castastrophe",
"homepage": "https://www.castastrophe.com",
"role": "Front-end developer"
}
],
"license": "MIT",
"require": {
"php": ">=7.2",
"deralex/yaml-config-service-provider": "1.0.x-dev",
"erusev/parsedown": "^1.6",
"justinrainbow/json-schema": "~1.4",
"mnapoli/front-yaml": "^1.5",
"monolog/monolog": "~1.6",
"nesbot/carbon": "~1.6",
"psr/log": "^1.0",
"silex/silex": "1.2.5",
"symfony/twig-bridge": "^2.3",
"symfony/yaml": "^2.6",
"twig/twig": "^1.38"
},
"require-dev": {
"squizlabs/php_codesniffer": "3.*",
"kherge/box": "2.*",
"phpunit/phpunit": "9.*"
},
"autoload": {
"psr-0": {
"PatternKit\\": "src"
}
},
"config": {
"sort-packages": true
},
"scripts": {
"phar": "box build .",
"cs": "phpcs --standard=PSR2 -n src",
"cbf": "phpcbf --standard=PSR2 -n src",
"unit": "phpunit --colors=always < /dev/tty",
"test": [
"@unit",
"@cs"
]
}
}