summaryrefslogtreecommitdiff
path: root/generator/composer.json
diff options
context:
space:
mode:
authorLudovic Pouzenc <ludovic@pouzenc.fr>2016-03-12 00:20:18 +0100
committerLudovic Pouzenc <ludovic@pouzenc.fr>2016-03-12 00:20:18 +0100
commit37a67ea723bb6d93421591b8f3ed15738f53ed9e (patch)
tree38b58703b82eaab20975d6e648533eb44598938e /generator/composer.json
parenta6104f47f7a0534664f8f3740f303f01e7e7399e (diff)
downloadchd_gestion-37a67ea723bb6d93421591b8f3ed15738f53ed9e.zip
chd_gestion-37a67ea723bb6d93421591b8f3ed15738f53ed9e.tar.gz
chd_gestion-37a67ea723bb6d93421591b8f3ed15738f53ed9e.tar.bz2
First import.
Diffstat (limited to 'generator/composer.json')
-rw-r--r--generator/composer.json45
1 files changed, 45 insertions, 0 deletions
diff --git a/generator/composer.json b/generator/composer.json
new file mode 100644
index 0000000..bcd9e4e
--- /dev/null
+++ b/generator/composer.json
@@ -0,0 +1,45 @@
+{
+ "name": "chd/chd_gestion:1.0",
+ "description": "CHD Gestion",
+ "homepage": "http://priv.chd.sx/gestion",
+ "type": "project",
+ "license": "GPL3+",
+ "require": {
+ "php": ">=5.5.9",
+ "cakephp/app": "3.1.2",
+ "cakephp/cakephp": "3.1.10",
+ "mobiledetect/mobiledetectlib": "2.*",
+ "cakephp/migrations": "~1.0",
+ "cakephp/plugin-installer": "*",
+ "friendsofcake/search": "dev-master"
+ },
+ "require-dev": {
+ "psy/psysh": "@stable",
+ "cakephp/debug_kit": "~3.2",
+ "cakephp/bake": "~1.1",
+ "phpunit/phpunit": "5.*"
+ },
+ "suggest": {
+ "phpunit/phpunit": "Allows automated tests to be run without system-wide install.",
+ "cakephp/cakephp-codesniffer": "Allows to check the code against the coding standards used in CakePHP."
+ },
+ "autoload": {
+ "psr-4": {
+ "App\\": "src",
+ "CustomTheme\\": "./plugins/CustomTheme/src"
+ }
+ },
+ "autoload-dev": {
+ "psr-4": {
+ "App\\Test\\": "tests",
+ "Cake\\Test\\": "./vendor/cakephp/cakephp/tests",
+ "CustomTheme\\Test\\": "./plugins/CustomTheme/tests"
+ }
+ },
+ "scripts": {
+ "post-install-cmd": "App\\Console\\Installer::postInstall",
+ "post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
+ },
+ "minimum-stability": "stable",
+ "prefer-stable": true
+}