]> Raphaƫl G. Git Repositories - airlibre/blob - composer.json
8b3caae8c9a26ad42da08dff8f21249a843df36e
[airlibre] / composer.json
1 {
2 "type": "project",
3 "name": "rapsys/airlibre",
4 "description": "Outdoor area booking system",
5 "license": "AGPL-3.0-or-later",
6 "require": {
7 "php": "^7.1.3",
8 "ext-ctype": "*",
9 "ext-iconv": "*",
10 "symfony/asset": "4.3.*",
11 "symfony/console": "4.3.*",
12 "symfony/dependency-injection": "4.3.*",
13 "symfony/dotenv": "4.3.*",
14 "symfony/flex": "^1.3.1",
15 "symfony/framework-bundle": "4.3.*",
16 "symfony/process": "4.3.*",
17 "symfony/security-bundle": "4.3.*",
18 "symfony/yaml": "4.3.*",
19 "twig/extensions": "1.5.*",
20 "rapsys/packbundle": "dev-master",
21 "rapsys/userbundle": "dev-master",
22 "rapsys/airbundle": "dev-master"
23 },
24 "require-dev": {
25 },
26 "config": {
27 "preferred-install": {
28 "*": "dist"
29 },
30 "sort-packages": true
31 },
32 "autoload": {
33 "psr-4": {
34 "App\\": "src/"
35 }
36 },
37 "autoload-dev": {
38 "psr-4": {
39 "App\\Tests\\": "tests/"
40 }
41 },
42 "repositories": [
43 {
44 "type": "package",
45 "package": {
46 "name": "rapsys/userbundle",
47 "version": "dev-master",
48 "source": {
49 "type": "git",
50 "url": "https://rapsys@git.rapsys.eu/userbundle",
51 "reference": "master"
52 },
53 "autoload": {
54 "psr-4": {
55 "Rapsys\\UserBundle\\": ""
56 }
57 },
58 "require": {
59 "doctrine/doctrine-bundle": "^4.3",
60 "symfony/form": "^4.3",
61 "symfony/framework-bundle": "^4.3",
62 "symfony/security-bundle": "^4.3",
63 "symfony/validator": "^4.3"
64 }
65 }
66 },
67 {
68 "type": "package",
69 "package": {
70 "name": "rapsys/packbundle",
71 "version": "dev-master",
72 "source": {
73 "type": "git",
74 "url": "https://rapsys@git.rapsys.eu/packbundle",
75 "reference": "master"
76 },
77 "autoload": {
78 "psr-4": {
79 "Rapsys\\PackBundle\\": ""
80 }
81 },
82 "require": {
83 "symfony/framework-bundle": "^4.3",
84 "symfony/twig-bundle": "^4.3",
85 "symfony/asset": "^4.3",
86 "symfony/process": "^4.3",
87 "twig/extensions": "^1.5"
88 }
89 }
90 },
91 {
92 "type": "package",
93 "package": {
94 "name": "rapsys/airbundle",
95 "version": "dev-master",
96 "source": {
97 "type": "git",
98 "url": "https://rapsys@git.rapsys.eu/airbundle",
99 "reference": "master"
100 },
101 "autoload": {
102 "psr-4": {
103 "Rapsys\\AirBundle\\": ""
104 }
105 },
106 "require": {
107 "doctrine/doctrine-bundle": "^4.3",
108 "symfony/form": "^4.3",
109 "symfony/framework-bundle": "^4.3",
110 "symfony/security-bundle": "^4.3",
111 "symfony/translation": "^4.3",
112 "symfony/twig-bundle": "^4.3",
113 "symfony/validator": "^4.3",
114 "swiftmailer/swiftmailer-bundle": "^3.3",
115 "twig/extensions": "^1.5"
116 },
117 "require-dev": {
118 "doctrine/doctrine-fixtures-bundle": "^3.2"
119 }
120 }
121 }
122 ],
123 "replace": {
124 "paragonie/random_compat": "2.*",
125 "symfony/polyfill-ctype": "*",
126 "symfony/polyfill-iconv": "*",
127 "symfony/polyfill-php71": "*",
128 "symfony/polyfill-php70": "*",
129 "symfony/polyfill-php56": "*"
130 },
131 "scripts": {
132 "auto-scripts": {
133 "cache:clear": "symfony-cmd",
134 "assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
135 },
136 "post-install-cmd": [
137 "@auto-scripts"
138 ],
139 "post-update-cmd": [
140 "@auto-scripts"
141 ]
142 },
143 "conflict": {
144 "symfony/symfony": "*"
145 },
146 "extra": {
147 "symfony-assets-install": "relative",
148 "incenteev-parameters": {
149 "keep-outdated": true
150 },
151 "symfony": {
152 "allow-contrib": true,
153 "endpoint": "https://flex.rapsys.eu"
154 }
155 }
156 }