forked from dereuromark/cakephp-sandbox
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
84 lines (84 loc) · 2.38 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
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
{
"name": "dereuromark/cakephp-sandbox",
"description": "A CakePHP Sandbox App",
"homepage" : "http://sandbox.dereuromark.de/",
"authors": [
{
"name": "Mark Scherer",
"email": "[email protected]",
"homepage": "http://www.dereuromark.de",
"role" : "Project Manager"
}
],
"keywords" : [
"CakePHP",
"Plugin",
"Sandbox"
],
"license": "MIT",
"require": {
"php": ">=5.5",
"cakephp/cakephp": "~3.1",
"mobiledetect/mobiledetectlib": "2.*",
"dereuromark/cakephp-tinyauth": "dev-master",
"dereuromark/cakephp-geo": "dev-master",
"dereuromark/cakephp-tools": "dev-master",
"dereuromark/cakephp-setup": "dev-master",
"friendsofcake/authenticate": "dev-cake3",
"friendsofcake/crud-view": "dev-master",
"CakeDC/search" : "3.0.*-dev",
"cakephp/migrations": "~1.3",
"drmonkeyninja/cakephp-social-share": "dev-master",
"gourmet/knp-menu": "dev-master",
"markstory/asset_compress" : "3.0.*-dev",
"natxet/CssMin": "dev-master",
"linkorb/jsmin-php": "dev-master",
"dereuromark/cakephp-data" : "dev-master",
"dereuromark/cakephp-queue" : "dev-master",
"dereuromark/cakephp-feed" : "dev-master",
"dereuromark/cakephp-ajax" : "dev-master",
"dereuromark/cakephp-ratings": "dev-master",
"friendsofcake/cakepdf": "3.0.*-dev",
"friendsofcake/bootstrap-ui": "0.*",
"dereuromark/cakephp-cache": "dev-master",
"symfony/filesystem": "2.*",
"cakephp/chronos": "dev-master",
"friendsofcake/cakephp-csvview": "^2.2",
"dereuromark/cakephp-hashid": "dev-master",
"dereuromark/cakephp-markup": "dev-master"
},
"require-dev": {
"psy/psysh": "@stable",
"cakephp/debug_kit": "dev-master",
"cakephp/bake": "dev-master"
},
"preferred-install": "source",
"prefer-stable": true,
"autoload": {
"psr-4": {
"App\\": "src",
"Sandbox\\": "plugins/Sandbox/src",
"AuthSandbox\\": "plugins/AuthSandbox/src"
}
},
"autoload-dev": {
"psr-4": {
"App\\Test\\": "tests",
"Sandbox\\Test\\": "plugins/Sandbox/tests",
"AuthSandbox\\Test\\": "plugins/AuthSandbox/tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
},
"repositories" : [{
"type" : "vcs",
"url" : "https://github.com/dereuromark/search"
}
],
"scripts": {
"post-install-cmd": "App\\Console\\Installer::postInstall",
"post-autoload-dump": "Cake\\Composer\\Installer\\PluginInstaller::postAutoloadDump"
},
"support": {
"source": "https://github.com/dereuromark/cakephp-sandbox"
}
}