]> Raphaƫl G. Git Repositories - veranda/blob - composer.json
Initial import
[veranda] / composer.json
1 {
2 "type": "project",
3 "name": "rapsys/veranda",
4 "description": "Gallery browsing system",
5 "license": "AGPL-3.0-or-later",
6 "minimum-stability": "stable",
7 "prefer-stable": true,
8 "require": {
9 "php": ">=8.2.0",
10 "ext-ctype": "*",
11 "ext-iconv": "*",
12 "rapsys/packbundle": "master@dev",
13 "rapsys/treebundle": "master@dev",
14 "symfony/asset": "^7.0",
15 "symfony/console": "^7.0",
16 "symfony/dotenv": "^7.0",
17 "symfony/flex": "^2.0",
18 "symfony/form": "^7.0",
19 "symfony/framework-bundle": "^7.0",
20 "symfony/process": "^7.0",
21 "symfony/runtime": "^7.0",
22 "symfony/translation": "^7.0",
23 "symfony/twig-bundle": "^7.0",
24 "symfony/yaml": "^7.0",
25 "twig/html-extra": "^3.0",
26 "twig/intl-extra": "^3.0"
27 },
28 "require-dev": {
29 "symfony/stopwatch": "^7.0",
30 "symfony/web-profiler-bundle": "^7.0"
31 },
32 "config": {
33 "optimize-autoloader": true,
34 "preferred-install": {
35 "*": "dist"
36 },
37 "sort-packages": true,
38 "allow-plugins": {
39 "symfony/flex": true,
40 "symfony/runtime": true
41 }
42 },
43 "autoload": {
44 "psr-4": {
45 "App\\": "src/"
46 }
47 },
48 "autoload-dev": {
49 "psr-4": {
50 "App\\Tests\\": "tests/"
51 }
52 },
53 "replace": {
54 "symfony/polyfill-ctype": "*",
55 "symfony/polyfill-iconv": "*",
56 "symfony/polyfill-php72": "*",
57 "symfony/polyfill-php73": "*",
58 "symfony/polyfill-php74": "*",
59 "symfony/polyfill-php80": "*"
60 },
61 "repositories": [
62 {
63 "type": "package",
64 "package": {
65 "name": "rapsys/packbundle",
66 "version": "master",
67 "source": {
68 "type": "git",
69 "url": "https://rapsys@git.rapsys.eu/packbundle",
70 "reference": "master"
71 },
72 "autoload": {
73 "psr-4": {
74 "Rapsys\\PackBundle\\": ""
75 }
76 },
77 "require": {
78 "symfony/asset": "^7.0",
79 "symfony/flex": "^2.0",
80 "symfony/framework-bundle": "^7.0",
81 "symfony/process": "^7.0",
82 "symfony/twig-bundle": "^7.0"
83 }
84 }
85 },
86 {
87 "type": "package",
88 "package": {
89 "name": "rapsys/treebundle",
90 "version": "master",
91 "source": {
92 "type": "git",
93 "url": "https://rapsys@git.rapsys.eu/treebundle",
94 "reference": "master"
95 },
96 "autoload": {
97 "psr-4": {
98 "Rapsys\\TreeBundle\\": ""
99 }
100 },
101 "require": {
102 "rapsys/packbundle": "master"
103 }
104 }
105 }
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 "branch-alias": {
124 "dev-master": "master"
125 },
126 "symfony": {
127 "allow-contrib": false,
128 "docker": false,
129 "endpoint": [
130 "https://git.rapsys.eu/recipe/blob_plain/HEAD:/index.json",
131 "flex://defaults"
132 ],
133 "require": "^7.0"
134 },
135 "symfony-assets-install": "relative"
136 }
137 }