This repository has been archived by the owner on Jul 17, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
63 lines (63 loc) · 1.54 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": "4xxi/api-user-bundle",
"description": "Fourxxi bundle for quick demos of the project",
"type": "symfony-bundle",
"require": {
"php": "^7.3",
"ext-json": "*",
"symfony/form": "^2.8 || ^3.0 || ^4.0",
"symfony/framework-bundle": "^4.0",
"symfony/security-bundle": "^4.0",
"symfony/translation": "^4.0",
"symfony/validator": "^4.0",
"doctrine/doctrine-bundle": "^2.1",
"symfony/mailer": "^4.4 || ^5.1"
},
"minimum-stability": "stable",
"autoload": {
"psr-4": {
"Fourxxi\\ApiUserBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Fourxxi\\ApiUserBundle\\Tests\\": "tests/"
}
},
"license": "MIT",
"authors": [
{
"name": "Artem Vozhzhov",
"email": "[email protected]"
},
{
"name": "Dmitrii Bezmelnitsyn",
"email": "[email protected]"
},
{
"name": "Ruslan Karimov",
"email": "[email protected]"
}
],
"require-dev": {
"phpunit/phpunit": "^9.3",
"sensiolabs/security-checker": "^6.0",
"friendsofphp/php-cs-fixer": "^2.16",
"weirdan/doctrine-psalm-plugin": "^0.11.3"
},
"scripts": {
"check-code-quality": [
"vendor/bin/php-cs-fixer fix src --rules=@Symfony --dry-run",
"vendor/bin/psalm"
],
"check-dependencies": [
"vendor/bin/security-checker security:check"
],
"test": [
"vendor/bin/phpunit tests --coverage-text --coverage-filter=src"
],
"coverage": [
"phpdbg -qrr ./vendor/bin/phpunit tests --coverage-text --coverage-filter=src"
]
}
}