]> Raphaƫl G. Git Repositories - airlibre/blob - composer.json
Bump version
[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/yaml": "4.3.*",
17 "twig/extensions": "1.5.*",
18 "rapsys/packbundle": "dev-master"
19 },
20 "require-dev": {
21 },
22 "config": {
23 "preferred-install": {
24 "*": "dist"
25 },
26 "sort-packages": true
27 },
28 "autoload": {
29 "psr-4": {
30 "App\\": "src/"
31 }
32 },
33 "autoload-dev": {
34 "psr-4": {
35 "App\\Tests\\": "tests/"
36 }
37 },
38 "repositories": [
39 {
40 "type": "package",
41 "package": {
42 "name": "rapsys/userbundle",
43 "version": "dev-master",
44 "source": {
45 "type": "git",
46 "url": "https://rapsys@git.rapsys.eu/userbundle",
47 "reference": "master"
48 },
49 "autoload": {
50 "psr-4": {
51 "Rapsys\\UserBundle\\": ""
52 }
53 }
54 }
55 },
56 {
57 "type": "package",
58 "package": {
59 "name": "rapsys/packbundle",
60 "version": "dev-master",
61 "source": {
62 "type": "git",
63 "url": "https://rapsys@git.rapsys.eu/packbundle",
64 "reference": "master"
65 },
66 "autoload": {
67 "psr-4": {
68 "Rapsys\\PackBundle\\": ""
69 }
70 },
71 "require": {
72 "symfony/config": "^4.3",
73 "symfony/dependency-injection": "^4.3",
74 "symfony/asset": "^4.3",
75 "twig/extensions": "^1.5"
76 }
77 }
78 },
79 {
80 "type": "package",
81 "package": {
82 "name": "rapsys/airbundle",
83 "version": "dev-master",
84 "source": {
85 "type": "git",
86 "url": "https://rapsys@git.rapsys.eu/airbundle",
87 "reference": "master"
88 },
89 "autoload": {
90 "psr-4": {
91 "Rapsys\\AirBundle\\": ""
92 }
93 }
94 }
95 }
96 ],
97 "replace": {
98 "paragonie/random_compat": "2.*",
99 "symfony/polyfill-ctype": "*",
100 "symfony/polyfill-iconv": "*",
101 "symfony/polyfill-php71": "*",
102 "symfony/polyfill-php70": "*",
103 "symfony/polyfill-php56": "*"
104 },
105 "scripts": {
106 "auto-scripts": {
107 "cache:clear": "symfony-cmd",
108 "assets:install %PUBLIC_DIR%": "symfony-cmd"
109 },
110 "post-install-cmd": [
111 "@auto-scripts"
112 ],
113 "post-update-cmd": [
114 "@auto-scripts"
115 ]
116 },
117 "conflict": {
118 "symfony/symfony": "*"
119 },
120 "extra": {
121 "symfony-assets-install": "relative",
122 "incenteev-parameters": {
123 "keep-outdated": true
124 },
125 "symfony": {
126 "allow-contrib": true,
127 "endpoint": "https://flex.rapsys.eu"
128 }
129 }
130 }