-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
executable file
·108 lines (108 loc) · 3.46 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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
{
"name": "johnykvsky/spisywarka",
"description": "To know the stuff you have",
"type": "project",
"license": "proprietary",
"require": {
"php": "~7.2",
"ext-ctype": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-pdo": "*",
"beberlei/assert": "^3.2.6",
"firebase/php-jwt": "^5.0.0",
"friendsofsymfony/rest-bundle": "^3.1.0",
"guzzlehttp/guzzle": "^6.5.2",
"jms/serializer-bundle": "~3.5.0",
"knplabs/knp-paginator-bundle": "^5.1.1",
"nelmio/api-doc-bundle": "~3.5.0",
"nelmio/cors-bundle": "^2.0.1",
"ramsey/uuid-doctrine": "~1.7",
"sensio/framework-extra-bundle": "~6.2.1",
"spatie/enum": "^2.3.5",
"stof/doctrine-extensions-bundle": "~1.6.0",
"symfony/apache-pack": "~1.0.1",
"symfony/asset": "~4.4.4",
"symfony/cache": "~4.4.4",
"symfony/console": "~4.4.4",
"symfony/flex": "~1.10.0",
"symfony/form": "~4.4.4",
"symfony/framework-bundle": "~4.4.4",
"symfony/messenger": "~4.4.4",
"symfony/monolog-bundle": "~3.7.0",
"symfony/orm-pack": "~2.1.0",
"symfony/security-bundle": "~4.4.4",
"symfony/security-csrf": "~4.4.4",
"symfony/serializer": "~4.4.4",
"symfony/translation": "~4.4.4",
"symfony/templating": "~4.4.4",
"symfony/twig-bundle": "~4.4.4",
"symfony/validator": "~4.4.4",
"symfony/yaml": "~4.4.4",
"tetranz/select2entity-bundle": "^3.1"
},
"require-dev": {
"phpunit/phpunit" : "^7.5",
"squizlabs/php_codesniffer": "^3.5.4",
"fzaninotto/faker": "~1.9.1",
"phpstan/phpstan": "~0.12.11",
"phpstan/phpstan-doctrine": "~0.12.9",
"phpstan/phpstan-symfony": "~0.12.4",
"symfony/dotenv": "~4.4.4",
"symfony/maker-bundle": "~1.14.3",
"symfony/profiler-pack": "^1.0.4",
"symfony/test-pack": "^1.0.6",
"symfony/var-dumper": "~4.4.4",
"symfony/web-server-bundle": "~4.4.4"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"test": "phpunit",
"check-style": "phpcs -p --standard=phpcs.xml --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1",
"fix-style": "phpcbf -p --standard=phpcs.xml --runtime-set ignore_errors_on_exit 1 --runtime-set ignore_warnings_on_exit 1",
"phpstan": "vendor/bin/phpstan analyse src --level=0",
"phpstan-max": "vendor/bin/phpstan analyse src --level=7",
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": true,
"require": "~4.4.4"
}
}
}