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