-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.3 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
{
"name": "mvo/me-like",
"type": "symfony-bundle",
"description": "Let users like things, confirm their likes via email and keep track of the count.",
"keywords": [
"like",
"vote",
"email",
"confirm"
],
"license": "MIT",
"authors": [
{
"name": "Moritz Vondano",
"homepage": "https://github.com/m-vo/me-like"
}
],
"require": {
"php": ">=7.4",
"doctrine/doctrine-bundle": "^1.8 || ^2.0",
"doctrine/orm": "^2.7",
"symfony/doctrine-bridge": "^4.4 || ^5.0",
"symfony/framework-bundle": "^4.4 || ^5.0",
"symfony/mailer": "^4.4 || ^5.0",
"symfony/twig-bundle": "^4.4 || ^5.0",
"symfony/validator": "^4.4 || ^5.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.11.8",
"phpunit/phpunit": "^8.0"
},
"autoload": {
"psr-4": {
"Mvo\\MeLike\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Mvo\\MeLike\\Tests\\": "tests/"
}
},
"scripts": {
"cs": [
"vendor/bin/php-cs-fixer fix -v --ansi"
],
"phpstan": [
"vendor/bin/phpstan analyse src tests --level=7 --ansi"
],
"phpunit": [
"vendor/bin/phpunit"
],
"chain": [
"@cs",
"@phpstan",
"@phpunit"
],
"release": [
"@chain",
"yarn build"
]
}
}