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