-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
125 lines (125 loc) · 3.52 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
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
{
"type": "project",
"name": "baupen/web",
"description": "improve issue management on construction sites ",
"license": "MIT",
"require": {
"php": ">=8.2",
"ext-ctype": "*",
"ext-exif": "*",
"ext-gd": "*",
"ext-iconv": "*",
"ext-json": "*",
"ext-pdo": "*",
"api-platform/core": "^2",
"doctrine/annotations": "^1.0",
"doctrine/dbal": "^2.13",
"doctrine/doctrine-bundle": "^2.1",
"doctrine/doctrine-migrations-bundle": "^3.0",
"doctrine/orm": "^2.7",
"nelmio/cors-bundle": "^2.1",
"phpdocumentor/reflection-docblock": "^5.2",
"phpstan/phpdoc-parser": "^1",
"symfony/asset": "^6",
"symfony/console": "^6",
"symfony/dotenv": "^6",
"symfony/expression-language": "^6",
"symfony/filesystem": "^6",
"symfony/flex": "^1.3.1",
"symfony/form": "^6",
"symfony/framework-bundle": "^6",
"symfony/intl": "^6",
"symfony/mailer": "^6",
"symfony/monolog-bundle": "^3",
"symfony/property-access": "^6",
"symfony/property-info": "^6",
"symfony/runtime": "^6",
"symfony/security-bundle": "^6",
"symfony/security-core": "^6",
"symfony/serializer": "^6",
"symfony/translation": "^6",
"symfony/twig-bundle": "^6",
"symfony/uid": "^6",
"symfony/validator": "^6",
"symfony/webpack-encore-bundle": "^v2",
"symfony/yaml": "^6",
"tecnickcom/tcpdf": "^6.4.4",
"twig/cssinliner-extra": "^3.0",
"twig/extra-bundle": "^3.0",
"twig/inky-extra": "^3.0",
"twig/twig": "^3.0"
},
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.3",
"famoser/agnes": "^4.0",
"friendsofphp/php-cs-fixer": "^3",
"liip/functional-test-bundle": "^4.2",
"liip/test-fixtures-bundle": "^2",
"rector/rector": "^1.2",
"symfony/browser-kit": "^6",
"symfony/css-selector": "^6",
"symfony/debug-bundle": "^6",
"symfony/http-client": "^6",
"symfony/maker-bundle": "^1.21",
"symfony/phpunit-bridge": "^6",
"symfony/stopwatch": "^6",
"symfony/var-dumper": "^6",
"symfony/web-profiler-bundle": "^6"
},
"config": {
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"platform": {
"php": "8.2"
},
"sort-packages": true,
"allow-plugins": {
"symfony/flex": true,
"symfony/runtime": 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-php72": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"fixtures": [
"php bin/console doctrine:database:drop --force --if-exists",
"php bin/console doctrine:database:create",
"php bin/console doctrine:migrations:migrate --no-interaction",
"php bin/console doctrine:fixtures:load --no-interaction"
],
"lint": [
"./vendor/bin/php-cs-fixer fix",
"npm run lint-fix"
],
"download-translations": "lokalise2 --token $LOKALISE_TOKEN --project-id 893141675cbb100cd751c1.44777843 file download --format yml --unzip-to translations --indentation 2sp --export-empty-as skip --plural-format symfony --placeholder-format symfony --export-sort a_z --directory-prefix \"\"",
"auto-scripts": []
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^6"
}
}
}