-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
134 lines (134 loc) · 4.3 KB
/
composer.json
File metadata and controls
134 lines (134 loc) · 4.3 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
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
{
"name": "bolt/bolt",
"license": "MIT",
"type": "project",
"description": "Bolt 4 skeleton / prototype",
"require": {
"php": ">=7.1.3",
"ext-json": "*",
"api-platform/core": "^2.1",
"bolt/common": "^2.0",
"cocur/slugify": "^3.1",
"doctrine/annotations": "^1.0",
"doctrine/doctrine-bundle": "^1.6",
"doctrine/doctrine-migrations-bundle": "^1.3",
"doctrine/orm": "^2.5.11",
"easycorp/easy-log-handler": "^1.0.7",
"embed/embed": "^3.3",
"erusev/parsedown": "^1.7",
"ezyang/htmlpurifier": "^4.10",
"fzaninotto/faker": "^1.8",
"guzzlehttp/guzzle": "^6.3",
"knplabs/knp-menu-bundle": "^2.0",
"league/glide-symfony": "^1.0",
"miljar/php-exif": "^0.6.4",
"nelmio/cors-bundle": "^1.5",
"nesbot/carbon": "^1.34",
"php-translation/symfony-bundle": "^0.8",
"phpdocumentor/reflection-docblock": "^4.2",
"sensio/framework-extra-bundle": "^5.1",
"sensiolabs/security-checker": "^5.0",
"siriusphp/upload": "^2.1",
"stof/doctrine-extensions-bundle": "^1.3",
"symfony/asset": "^4.2",
"symfony/console": "^4.2",
"symfony/expression-language": "^4.2",
"symfony/flex": "^1.1",
"symfony/form": "^4.2",
"symfony/framework-bundle": "^4.2",
"symfony/monolog-bundle": "^3.0",
"symfony/polyfill-php72": "^1.8",
"symfony/security-bundle": "^4.2",
"symfony/serializer": "^4.2",
"symfony/swiftmailer-bundle": "^3.1",
"symfony/translation": "^4.2",
"symfony/twig-bundle": "^4.2",
"symfony/validator": "^4.2",
"symfony/var-dumper": "^4.2",
"symfony/webpack-encore-bundle": "^1.0",
"symfony/yaml": "^4.2",
"tightenco/collect": "^5.7",
"twig/extensions": "^1.5",
"webmozart/path-util": "^2.3",
"webonyx/graphql-php": "^0.13",
"white-october/pagerfanta-bundle": "^1.1"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"behat/behat": "^3.5",
"behat/mink": "dev-master@dev",
"behat/mink-extension": "^2.3",
"behat/mink-goutte-driver": "^1.2",
"behatch/contexts": "^3.2",
"coduo/php-matcher": "dev-feature/array-universal-key@dev",
"dama/doctrine-test-bundle": "^5.0",
"doctrine/doctrine-fixtures-bundle": "^3.0",
"lakion/mink-debug-extension": "^1.2",
"php-http/httplug-pack": "^1.1",
"php-translation/loco-adapter": "^0.8.0",
"phpspec/phpspec": "^5.1",
"phpstan/phpstan": "^0.11",
"phpunit/phpunit": "^7.0",
"roave/security-advisories": "dev-master@dev",
"symfony/browser-kit": "^4.2",
"symfony/css-selector": "^4.2",
"symfony/debug-bundle": "^4.2",
"symfony/dotenv": "^4.2",
"symfony/maker-bundle": "^1.11",
"symfony/stopwatch": "^4.2",
"symfony/web-profiler-bundle": "^4.2",
"symfony/web-server-bundle": "^4.2",
"symplify/easy-coding-standard": "^5.2"
},
"repositories": [
{ "type": "vcs", "url": "https://github.com/jarjak/php-matcher", "no-api": true }
],
"minimum-stability": "stable",
"prefer-stable": true,
"config": {
"platform": {
"php": "7.1.3"
},
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"Bolt\\": "src/"
},
"files": ["src/Entity/Translation.php"]
},
"autoload-dev": {
"psr-4": {
"Bolt\\Tests\\": "tests/php/",
"Context\\": "tests/api/bootstrap/",
"spec\\Bolt\\": "tests/spec/Bolt/"
}
},
"scripts": {
"periodical-tasks": [
"security-checker security:check"
],
"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": {
"symfony": {
"allow-contrib": true,
"require": "^4.2"
}
}
}