This repository has been archived by the owner on Jan 18, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 23
/
composer.json
68 lines (68 loc) · 1.76 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
{
"name": "contentful/the-example-app",
"type": "project",
"license": "MIT",
"require": {
"php": "^7.2",
"contentful/contentful": "^6.0",
"cweagans/composer-patches": "^1.6",
"league/commonmark": "^1.3",
"symfony/asset": "^5.0",
"symfony/console": "^5.0",
"symfony/expression-language": "^4.0",
"symfony/flex": "^1.6",
"symfony/form": "^5.0",
"symfony/framework-bundle": "^5.0",
"symfony/translation": "^5.0",
"symfony/twig-bundle": "^5.0",
"symfony/validator": "^5.0",
"symfony/yaml": "^5.0"
},
"require-dev": {
"symfony/browser-kit": "^5.0",
"symfony/css-selector": "^5.0",
"symfony/debug-bundle": "^5.0",
"symfony/dotenv": "^5.0",
"symfony/maker-bundle": "^1",
"symfony/phpunit-bridge": "^5.0",
"symfony/profiler-pack": "^1.0",
"symfony/web-server-bundle": "^4.4"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/"
}
},
"scripts": {
"test-php": "php bin/phpunit",
"test-e2e": "./tests-e2e/node_modules/.bin/cypress run",
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"patches": {
}
}
}