-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
112 lines (111 loc) · 3.47 KB
/
composer.json
File metadata and controls
112 lines (111 loc) · 3.47 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
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
{
"name": "neimad/simon",
"description": "Simon CMS",
"homepage": "https://github.com/neimad/simon",
"authors": [
{
"name": "Damien Flament",
"email": "damien.flament@gmx.com",
"role": "Developer"
}
],
"license": "GPL-3.0-only",
"type": "project",
"require": {
"php": "^7.2",
"doctrine/doctrine-bundle": "^1.8",
"doctrine/doctrine-cache-bundle": "^1.3",
"doctrine/phpcr-bundle": "^2.0@dev",
"doctrine/phpcr-odm": "^1.4@dev",
"jackalope/jackalope-doctrine-dbal": "^1.3",
"symfony-cmf/routing": "^2.1@dev",
"symfony-cmf/routing-auto": "^2.1@dev",
"symfony-cmf/routing-auto-bundle": "^2.0@dev",
"symfony-cmf/routing-bundle": "^2.0@dev",
"symfony/console": "^4.0",
"symfony/framework-bundle": "^4.0",
"symfony/twig-bundle": "^4.0",
"symfony/yaml": "^4.0"
},
"require-dev": {
"behat/symfony2-extension": "^2.1",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"friendsofphp/php-cs-fixer": "^2.10",
"phpspec/phpspec": "^4.3",
"symfony/browser-kit": "^4.0",
"symfony/css-selector": "^4.0",
"symfony/dotenv": "^4.0",
"symfony/flex": "^1.0",
"symfony/profiler-pack": "^1.0",
"symfony/var-dumper": "^4.0",
"symfony/web-server-bundle": "^4.0",
"webmozart/assert": "^1.3"
},
"prefer-stable": true,
"conflict": {
"symfony/symfony": "*",
"symfony/twig-bundle": "<3.3",
"symfony/debug": "<3.3"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/",
"Neimad\\SimonTesting\\": "lib/neimad/simon-testing"
}
},
"autoload-dev": {
"psr-4": {
"spec\\App\\": "spec/",
"features\\contexts\\App\\": "features/bootstrap/"
}
},
"scripts": {
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
},
"post-install-cmd": [
"@auto-scripts"
],
"post-update-cmd": [
"@auto-scripts"
],
"prepare": [
"bin/console doctrine:phpcr:init:dbal --drop --force --ansi --no-interaction",
"bin/console doctrine:phpcr:repository:init --ansi --no-interaction",
"bin/console doctrine:phpcr:fixtures:load --no-initialize --append --ansi --no-interaction"
],
"check": [
"phpspec run --format=dot --ansi --no-interaction",
"behat --format=progress --colors --no-interaction",
"php-cs-fixer fix --dry-run"
],
"check-all": [
"@composer diagnose --ansi",
"@composer check-platform-reqs --ansi",
"bin/console doctrine:phpcr:init:dbal --drop --force --ansi --no-interaction --env=test",
"@check"
],
"clean": [
"rm -R ./var/cache/*"
]
},
"scripts-descriptions": {
"prepare": "Prepares the development environment.",
"check": "Checks the application behavior.",
"check-all": "Checks everything is fine.",
"clean": "Clean the mess."
},
"extra": {
"symfony": {
"id": "01BZPY5S44695N0GPANRNAS19Z",
"allow-contrib": true
}
}
}