-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
69 lines (69 loc) · 2.19 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
{
"name": "brianvarskonst/symfony-bundle-template",
"type": "symfony-bundle",
"description": "Provides a starting point for creating Symfony Bundles",
"license": "MIT",
"authors": [
{
"name": "Brian Schäffner",
"email": "burnify.design@gmail.com",
"role": "Developer"
}
],
"minimum-stability": "dev",
"prefer-stable": true,
"support": {
"issues": "https://github.com/brianvarskonst/symfony-bundle-template/issues"
},
"require": {
"php": ">=8.1"
},
"require-dev": {
"inpsyde/php-coding-standards": "^1.0",
"mockery/mockery": "^1.4",
"phpunit/phpunit": "^9.5",
"vimeo/psalm": "^4",
"psalm/plugin-mockery": "^0.9.1",
"lctrs/psalm-psr-container-plugin": "^1.7",
"marartner/psalm-strict-equality": "^1.0",
"php-standard-library/psalm-plugin": "^2.0",
"psalm/plugin-phpunit": "^0.17.0",
"psalm/plugin-symfony": "^3.1"
},
"autoload": {
"psr-4": {
"Bvsk\\Bundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Bvsk\\Bundle\\\\Tests\\": "tests/Unit/"
}
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.1"
},
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"cs": "@php ./vendor/bin/phpcs -s",
"cbf": "@php ./vendor/bin/phpcbf",
"psalm": "@php ./vendor/vimeo/psalm/psalm --no-cache --no-diff --no-progress --output-format=console",
"tests": "@php ./vendor/bin/phpunit",
"tests:no-cov": "@php ./vendor/bin/phpunit --no-coverage",
"tests:unit": "@php ./vendor/bin/phpunit --testsuite=Unit",
"tests:unit:no-cov": "@php ./vendor/bin/phpunit --testsuite=Unit --no-coverage",
"tests:integration": "@php ./vendor/bin/phpunit --testsuite=Integration",
"tests:integration:no-cov": "@php ./vendor/bin/phpunit --testsuite=Integration --no-coverage",
"qa": [
"@cs",
"@psalm",
"@tests"
]
}
}