-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
26 lines (26 loc) · 1.16 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
{
"name": "quickapps/website",
"description": "QuickAppsCMS website app skeleton",
"homepage": "http://quickappscms.org",
"type": "project",
"license": "GPL-3.0",
"minimum-stability": "dev",
"prefer-stable": true,
"require": {
"php": ">=5.6",
"cakephp/cakephp": "3.3.16",
"mobiledetect/mobiledetectlib": "2.*",
"cakephp/plugin-installer": "*",
"quickapps-plugins/installer": "*"
},
"suggest": {
"quickapps/cms": "Development and testing repository, used to perform CI tests",
"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.",
"cakephp/debug_kit": "Provides a debugging toolbar and enhanced debugging tools for CakePHP applications.",
"cakephp/bake": "Pprovides the code generation functionality for CakePHP. Through a suite of CLI tools, you can quickly and easily generate code for your application."
},
"scripts": {
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
}
}