-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
144 lines (144 loc) · 3.97 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
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
{
"name": "csr/csrdelft.nl",
"description": "De stek van C.S.R. Delft",
"authors": [
{
"name": "PubCie",
"email": "[email protected]"
}
],
"require": {
"ext-PDO": "*",
"ext-curl": "*",
"ext-dom": "*",
"ext-exif": "*",
"ext-gd": "*",
"ext-hash": "*",
"ext-iconv": "*",
"ext-intl": "*",
"ext-json": "*",
"ext-libxml": "*",
"ext-mysqli": "*",
"ext-openssl": "*",
"ext-pdo_mysql": "*",
"ext-simplexml": "*",
"ext-zip": "*",
"beberlei/doctrineextensions": "^1.2",
"clegginabox/pdf-merger": "dev-master",
"composer/package-versions-deprecated": "1.11.99.1",
"csrdelft/bb": "^1.3",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^2.3",
"doctrine/doctrine-migrations-bundle": "^3.1",
"doctrine/orm": "^2.8",
"doctrine/persistence": "^2.0",
"easyrdf/easyrdf": "^0.9.1",
"endroid/qr-code": "^4.1",
"firebase/php-jwt": "^6.0",
"globalcitizen/php-iban": "^2.6",
"google/apiclient": "^2.0",
"league/oauth2-server-bundle": "^0.8.0",
"minishlink/web-push": "^7.0",
"nelmio/cors-bundle": "^2.1",
"parsecsv/php-parsecsv": "^1.2",
"phpdocumentor/reflection-docblock": "^5.2",
"sensio/framework-extra-bundle": "^6.2",
"sentry/sentry-symfony": "^4.5",
"symfony/cache": "5.4.*",
"symfony/config": "5.4.*",
"symfony/dotenv": "5.4.*",
"symfony/flex": "^1.4",
"symfony/form": "5.4.*",
"symfony/framework-bundle": "5.4.*",
"symfony/http-foundation": "5.4.*",
"symfony/mime": "5.4.*",
"symfony/monolog-bundle": "^3.5",
"symfony/property-access": "5.4.*",
"symfony/property-info": "5.4.*",
"symfony/proxy-manager-bridge": "5.4.*",
"symfony/routing": "5.4.*",
"symfony/security-bundle": "5.4.*",
"symfony/security-csrf": "5.4.*",
"symfony/serializer": "5.4.*",
"symfony/templating": "5.4.*",
"symfony/translation": "5.4.*",
"symfony/twig-bundle": "5.4.*",
"symfony/uid": "5.4.*",
"symfony/var-dumper": "5.4.*",
"symfony/yaml": "5.4.*",
"tecnickcom/tcpdf": "^6.4",
"twig/cssinliner-extra": "^3.3",
"twig/extra-bundle": "^3.2",
"twig/intl-extra": "^3.2",
"twig/string-extra": "^3.5",
"zumba/json-serializer": "^3.0"
},
"config": {
"platform": {
"php": "8.2"
},
"allow-plugins": {
"symfony/flex": true,
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"CsrDelft\\": "lib/",
"CsrDelft\\tests\\": "tests/lib/"
}
},
"include-path": ["lib/"],
"require-dev": {
"doctrine/doctrine-fixtures-bundle": "^3.3",
"symfony/maker-bundle": "^1.19",
"fakerphp/faker": "^1.23",
"symfony/phpunit-bridge": "^7.1",
"phpunit/phpunit": ">9",
"spatie/phpunit-snapshot-assertions": "^4.0",
"symfony/browser-kit": "^5.0",
"symfony/css-selector": "^5.0",
"symfony/panther": "^2.0",
"vimeo/psalm": "^5.0",
"weirdan/doctrine-psalm-plugin": "2.9",
"psalm/plugin-symfony": "5.2.5",
"symfony/stopwatch": "^5.4",
"symfony/web-profiler-bundle": "^5.4",
"rector/rector": "^1.2",
"dbrekelmans/bdi": "^1.3"
},
"scripts": {
"serve": [
"Composer\\Config::disableProcessTimeout",
"symfony serve --document-root htdocs"
],
"migrate": "@console doctrine:migrations:migrate --allow-no-migration --no-interaction",
"generator": "@php bin/dev/generate.php",
"flushcache": "@console stek:cache:flush",
"analyze": "@php vendor/vimeo/psalm/psalm",
"test": "@php vendor/phpunit/phpunit/phpunit --bootstrap ./phpunit.init.php tests",
"console": "@php bin/console",
"update-prod": [
"@php -r \"exit(exec('git rev-parse --abbrev-ref HEAD') == 'master' ? 'Branch is master' . PHP_EOL : 1);\"",
"git fetch",
"touch .onderhoud",
"git merge FETCH_HEAD",
"rm -r ./var/cache",
"@composer dump-env prod",
"@flushcache",
"@migrate",
"rm .onderhoud",
"@console cache:warmup"
],
"startup": [
"Composer\\Config::disableProcessTimeout",
"@composer install",
"@migrate"
],
"update-dev": ["@composer install", "@migrate", "yarn", "yarn dev"],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
}
}