-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
74 lines (74 loc) · 1.72 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
{
"name": "paveldanilin/request-body-bundle",
"type": "symfony-bundle",
"description": "A Symfony RequestBody Bundle",
"keywords": [
"request-body",
"symfony",
"bundle",
"annotation"
],
"license": "MIT",
"authors": [
{
"name": "Pavel Danilin",
"email": "pavel.k.danilin@gmail.com"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"psr/log": "1.*",
"doctrine/annotations": "^1.11|^1.12|^1.13",
"symfony/framework-bundle": "^4.4|^5.0",
"symfony/console": "^4.4|^5.0",
"symfony/validator": "^4.4|^5.0",
"symfony/serializer": "^4.4|^5.0",
"symfony/cache": "^4.4|^5.0",
"paveldanilin/reflection-scanner": "^0.0"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^9",
"phpstan/phpstan": "^0.12",
"doctrine/common": "3.1.0",
"doctrine/cache": "1.10.2",
"symfony/property-access": "^4.4|^5.0",
"symfony/yaml": "^4.4|^5.0"
},
"suggest": {
"symfony/property-access": "Allows using the ObjectNormalizer normalizer instead of writing a normalizer for each DTO"
},
"autoload": {
"psr-4": {
"Pada\\RequestBodyBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Pada\\RequestBodyBundle\\Tests\\": "tests/"
}
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"scripts": {
"post-update-cmd": ["@bundle:clean"],
"bundle:clean": [
"php ci/rmdir.php ./config",
"php ci/rmdir.php ./public",
"php ci/rm.php ./src/Kernel.php y",
"php ci/rm.php ./.env y",
"php ci/rm.php ./.env.test y"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"test": [
"php -d memory_limit=4G ./vendor/bin/phpstan analyse -c phpstan.neon",
"php ./vendor/bin/phpunit"
]
}
}