-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.48 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.48 KB
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
{
"name": "liquidrazor/liquid-api",
"type": "project",
"license": "MIT",
"require": {
"php": ">=8.4",
"symfony/framework-bundle": "^7.0",
"symfony/flex": "^2",
"symfony/console": "^7.0",
"symfony/runtime": "^7.0",
"symfony/routing": "^7.0",
"symfony/http-foundation": "^7.0",
"symfony/serializer": "^7.0",
"symfony/validator": "^7.0",
"symfony/cache": "^7.0",
"symfony/http-client": "^7.0",
"symfony/uid": "^7.0",
"symfony/monolog-bundle": "^3.10",
"symfony/security-bundle": "^7.0",
"symfony/rate-limiter": "^7.0",
"nelmio/cors-bundle": "^2.5",
"liquidrazor/dto-api-bundle": "^0.1",
"symfony/doctrine-bridge": "^7",
"doctrine/dbal": "^3",
"doctrine/doctrine-bundle": "^2.16",
"doctrine/doctrine-migrations-bundle": "^3.4",
"doctrine/orm": "^3.5"
},
"require-dev": {
"symfony/maker-bundle": "^1.60",
"symfony/var-dumper": "^7.0",
"symfony/twig-bundle": "^7.0",
"symfony/web-profiler-bundle": "^7.0",
"symfony/dotenv": "^7",
"symfony/debug-bundle": "^7",
"phpunit/phpunit": "^12.3",
"symfony/browser-kit": "^7.3",
"symfony/css-selector": "^7.3"
},
"config": {
"allow-plugins": {
"symfony/runtime": true,
"symfony/flex": true
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd"
}
},
"extra": {
"symfony": {
"allow-contrib": true,
"docker": false
}
}
}