-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
77 lines (77 loc) · 2.36 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": "maintainerati/bikeshed",
"description": "Maintainerati Open Space note taker",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Gawain Lynch",
"email": "gawain.lynch@gmail.com"
}
],
"minimum-stability": "stable",
"require": {
"php": "^7.2",
"ext-intl": "*",
"ext-json": "*",
"ext-pdo": "*",
"api-platform/core": "^2.1",
"doctrine/annotations": "^1.0",
"doctrine/orm": "^2.5.11",
"erusev/parsedown": "^1.7",
"ezyang/htmlpurifier": "^4.10",
"hostnet/form-handler-component": "^1.5.3",
"knplabs/knp-menu": "^2.3",
"limenius/liform": "^0.12.0",
"ramsey/uuid-doctrine": "^1.5",
"rollerworks/password-strength-validator": "^1.1",
"swiftmailer/swiftmailer": "^6.1.3",
"symfony/asset": "^4.3",
"symfony/console": "^4.3",
"symfony/form": "^4.3",
"symfony/http-client": "^4.3",
"symfony/security-core": "^4.3",
"symfony/security-csrf": "^4.3",
"symfony/security-guard": "^4.3",
"symfony/translation": "^4.3",
"symfony/validator": "^4.3",
"symfony/web-link": "^4.3",
"symfony/yaml": "^4.3",
"twig/cssinliner-extension": "^2.0",
"twig/twig": "^2.9"
},
"require-dev": {
"camelot/coding-style": "^2.0",
"dama/doctrine-test-bundle": "^5.0",
"doctrine/doctrine-fixtures-bundle": "^3.1",
"friendsofphp/php-cs-fixer": "^2.15",
"phpunit/phpunit": "^8.1",
"psalm/plugin-phpunit": "^0.5.5",
"symfony/browser-kit": "^4.3",
"symfony/framework-bundle": "^4.3",
"symfony/var-dumper": "^4.3",
"symfony/webpack-encore-bundle": "^1.5",
"vimeo/psalm": "^3.2"
},
"autoload": {
"psr-4": {
"Maintainerati\\Bikeshed\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Maintainerati\\Bikeshed\\Tests\\": "tests/"
}
},
"scripts": {
"lint": "vendor/bin/php-cs-fixer fix --show-progress=dots -v",
"static": "vendor/bin/psalm --find-dead-code",
"test": "vendor/bin/phpunit",
"coverage": "vendor/bin/phpunit --coverage-text",
"suite": [
"@lint",
"@static",
"@coverage"
]
}
}