]> Raphaël G. Git Repositories - airlibre/commitdiff
Initial import
authorRaphaël Gertz <git@rapsys.eu>
Fri, 25 Oct 2019 15:59:30 +0000 (17:59 +0200)
committerRaphaël Gertz <git@rapsys.eu>
Fri, 25 Oct 2019 15:59:30 +0000 (17:59 +0200)
.gitignore [new file with mode: 0644]
composer.json [new file with mode: 0644]
public/bundles/.keep [new file with mode: 0644]
var/cache/.keep [new file with mode: 0644]
var/log/.keep [new file with mode: 0644]
var/sessions/.keep [new file with mode: 0644]
vendor/.keep [new file with mode: 0644]

diff --git a/.gitignore b/.gitignore
new file mode 100644 (file)
index 0000000..9bd1b86
--- /dev/null
@@ -0,0 +1,11 @@
+
+###> symfony/framework-bundle ###
+/.env.local
+/.env.local.php
+/.env.*.local
+/public/bundles/
+/var/cache/
+/var/log/
+/var/sessions/
+/vendor/
+###< symfony/framework-bundle ###
diff --git a/composer.json b/composer.json
new file mode 100644 (file)
index 0000000..9037220
--- /dev/null
@@ -0,0 +1,121 @@
+{
+    "type": "project",
+    "name": "rapsys/airlibre",
+    "description": "Open air booking system",
+    "license": "AGPL-3.0-or-later",
+    "require": {
+        "php": "^7.1.3",
+        "ext-ctype": "*",
+        "ext-iconv": "*",
+        "rapsys/packbundle": "dev-master",
+        "rapsys/userbundle": "dev-master",
+        "rapsys/airbundle": "dev-master",
+        "symfony/console": "4.3.*",
+        "symfony/dotenv": "4.3.*",
+        "symfony/flex": "^1.3.1",
+        "symfony/framework-bundle": "4.3.*",
+        "symfony/process": "4.3.*",
+        "symfony/security": "4.3.*",
+        "symfony/yaml": "4.3.*"
+    },
+    "require-dev": {
+    },
+    "config": {
+        "preferred-install": {
+            "*": "dist"
+        },
+        "sort-packages": true
+    },
+    "autoload": {
+        "psr-4": {
+            "App\\": "src/"
+        }
+    },
+    "autoload-dev": {
+        "psr-4": {
+            "App\\Tests\\": "tests/"
+        }
+    },
+    "replace": {
+        "paragonie/random_compat": "2.*",
+        "symfony/polyfill-ctype": "*",
+        "symfony/polyfill-iconv": "*",
+        "symfony/polyfill-php71": "*",
+        "symfony/polyfill-php70": "*",
+        "symfony/polyfill-php56": "*"
+    },
+    "repositories": [
+           {
+                   "type": "package",
+                   "package": {
+                           "name": "rapsys/userbundle",
+                           "version": "dev-master",
+                           "source": {
+                                   "type": "git",
+                                   "url": "https://rapsys@git.rapsys.eu/userbundle",
+                                   "reference": "master"
+                           },
+                           "autoload": {
+                                   "psr-4": {
+                                           "Rapsys\\UserBundle\\": ""
+                                   }
+                           }
+                   }
+           },
+           {
+                   "type": "package",
+                   "package": {
+                           "name": "rapsys/packbundle",
+                           "version": "dev-master",
+                           "source": {
+                                   "type": "git",
+                                   "url": "https://rapsys@git.rapsys.eu/packbundle",
+                                   "reference": "master"
+                           },
+                           "autoload": {
+                                   "psr-4": {
+                                           "Rapsys\\PackBundle\\": ""
+                                   }
+                           }
+                   }
+           },
+           {
+                   "type": "package",
+                   "package": {
+                           "name": "rapsys/airbundle",
+                           "version": "dev-master",
+                           "source": {
+                                   "type": "git",
+                                   "url": "https://rapsys@git.rapsys.eu/airbundle",
+                                   "reference": "master"
+                           },
+                           "autoload": {
+                                   "psr-4": {
+                                           "Rapsys\\AirBundle\\": ""
+                                   }
+                           }
+                   }
+           }
+    ],
+    "scripts": {
+        "auto-scripts": {
+            "cache:clear": "symfony-cmd",
+            "assets:install --symlink --relative %PUBLIC_DIR%": "symfony-cmd"
+        },
+        "post-install-cmd": [
+            "@auto-scripts"
+        ],
+        "post-update-cmd": [
+            "@auto-scripts"
+        ]
+    },
+    "conflict": {
+        "symfony/symfony": "*"
+    },
+    "extra": {
+        "symfony": {
+            "allow-contrib": false,
+            "require": "4.3.*"
+        }
+    }
+}
diff --git a/public/bundles/.keep b/public/bundles/.keep
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/var/cache/.keep b/var/cache/.keep
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/var/log/.keep b/var/log/.keep
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/var/sessions/.keep b/var/sessions/.keep
new file mode 100644 (file)
index 0000000..e69de29
diff --git a/vendor/.keep b/vendor/.keep
new file mode 100644 (file)
index 0000000..e69de29