-
Notifications
You must be signed in to change notification settings - Fork 20
/
Copy pathcomposer.json
116 lines (116 loc) · 3.39 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
{
"name": "eureka2/g6k",
"license": "MIT",
"type": "project",
"description": "Generator of simulator of calculation (calculator)",
"authors": [
{
"name": "Eureka2",
"homepage": "https://github.com/eureka2/G6K"
}
],
"require": {
"php": "^7.1.3",
"ext-ctype": "*",
"ext-iconv": "*",
"ashleydawson/simple-pagination": "1.0.*",
"eureka2/acroforms": "^1.0.6",
"flow/jsonpath": "^0.4.0",
"mobiledetect/mobiledetectlib": "^2.8",
"mpdf/mpdf": "^7.1",
"sensio/framework-extra-bundle": "^5.1",
"symfony/asset": "^4.3.0",
"symfony/console": "^4.3.0",
"symfony/expression-language": "^4.3.0",
"symfony/flex": "^1.1",
"symfony/framework-bundle": "^4.3.0",
"symfony/lock": "^4.3.0",
"symfony/monolog-bundle": "^3.1",
"symfony/orm-pack": "*",
"symfony/process": "^4.3.0",
"symfony/security-bundle": "^4.3.0",
"symfony/serializer-pack": "*",
"symfony/swiftmailer-bundle": "^3.1",
"symfony/twig-bundle": "^4.3.0",
"symfony/validator": "^4.3.0",
"symfony/web-link": "^4.3.0",
"symfony/yaml": "^4.3.0",
"willdurand/js-translation-bundle": "^3.0"
},
"require-dev": {
"symfony/browser-kit": "^4.2",
"symfony/css-selector": "^4.3.0",
"symfony/debug-pack": "*",
"symfony/dotenv": "^4.3.0",
"symfony/maker-bundle": "^1.0",
"symfony/phpunit-bridge": "~3.4|~4.0",
"symfony/profiler-pack": "*",
"symfony/test-pack": "*",
"symfony/var-dumper": "^4.3.0"
},
"config": {
"preferred-install": {
"*": "dist"
},
"sort-packages": true
},
"autoload": {
"psr-4": {
"App\\": "src/",
"G6K\\": "src/G6K/"
}
},
"autoload-dev": {
"psr-4": {
"App\\Tests\\": "tests/",
"App\\Tests\\G6K\\": "tests/G6K/"
}
},
"replace": {
"paragonie/random_compat": "2.*",
"symfony/polyfill-ctype": "*",
"symfony/polyfill-iconv": "*",
"symfony/polyfill-php71": "*",
"symfony/polyfill-php70": "*",
"symfony/polyfill-php56": "*"
},
"scripts": {
"symfony-scripts": [
"App\\G6K\\Composer\\ScriptHandler::buildDotenv"
],
"g6k-scripts": [
"App\\G6K\\Composer\\ScriptHandler::installUsers",
"App\\G6K\\Composer\\ScriptHandler::installDemo"
],
"auto-scripts": {
"cache:clear": "symfony-cmd",
"assets:install %PUBLIC_DIR%": "symfony-cmd",
"bazinga:js-translation:dump %PUBLIC_DIR%/assets/bundles/bazingajstranslation/js": "symfony-cmd",
"g6k:assets:manifest:refresh": "symfony-cmd"
},
"post-install-cmd": [
"@symfony-scripts"
],
"post-update-cmd": [
"@symfony-scripts",
"@auto-scripts"
],
"post-create-project-cmd": [
"@g6k-scripts",
"@auto-scripts"
]
},
"conflict": {
"symfony/symfony": "*"
},
"extra": {
"symfony": {
"allow-contrib": false,
"require": "^4.3"
},
"branch-alias": {
"dev-master": "4.x-dev"
},
"public-dir": "calcul"
}
}