This repository was archived by the owner on Oct 27, 2018. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
68 lines (68 loc) · 2.25 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
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
{
"name": "elabs/cms",
"description": "experimentslabs.com CMS",
"homepage": "http://experimentslabs.com",
"type": "project",
"license": "MIT",
"require": {
"cakephp/cakephp": "3.3.*",
"cakephp/migrations": "~1.0",
"cakephp/plugin-installer": "*",
"friendsofcake/bootstrap-ui": "^0.5.0",
"mobiledetect/mobiledetectlib": "2.*",
"php": ">=7.0",
"tanuck/cakephp-markdown": "dev-master",
"cakedc/users": "^3.2",
"lowg33kdev/cakephp-gravatar-plugin": "^1.1"
},
"require-dev": {
"psy/psysh": "@stable",
"cakephp/debug_kit": "~3.2",
"cakephp/bake": "~1.1",
"cakephp/cakephp-codesniffer": "dev-master",
"phpunit/phpunit": "^5.5"
},
"suggest": {
"markstory/asset_compress": "An asset compression plugin which provides file concatenation and a flexible filter system for preprocessing and minification."
},
"autoload": {
"psr-4": {
"App\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump",
"check": [
"@phpunit",
"@phpcs"
],
"phpunit": "phpunit --colors=always",
"phpcs": "vendor/bin/phpcs --colors -p --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests ./webroot",
"phpcbf": "vendor/bin/phpcbf --extensions=php --standard=vendor/cakephp/cakephp-codesniffer/CakePHP ./src ./tests ./webroot"
},
"minimum-stability": "dev",
"prefer-stable": true,
"repositories": [
{
"type": "package",
"package": {
"name": "lowg33kdev/cakephp-gravatar-plugin",
"version": "1.1.1",
"dist": {
"url": "https://github.com/el-cms/cakephp-gravatar-plugin/archive/Cake-3.X.zip",
"type": "zip"
},
"autoload": {
"classmap": ["src/"]
}
}
}
]
}