-
Notifications
You must be signed in to change notification settings - Fork 5
Expand file tree
/
Copy pathcomposer.json
More file actions
33 lines (33 loc) · 805 Bytes
/
composer.json
File metadata and controls
33 lines (33 loc) · 805 Bytes
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
{
"name": "tanuck/cakephp-markdown",
"description": "Cakephp Markdown plugin for CakePHP 3.",
"license": "MIT",
"type": "cakephp-plugin",
"authors": [
{
"name": "Tanuck",
"email": "tanuck@gmail.com"
}
],
"require": {
"php": ">=5.4",
"cakephp/plugin-installer": "*",
"cebe/markdown": "1.0.x"
},
"require-dev": {
"cakephp/cakephp": "3.0.*-dev",
"phpunit/phpunit": "*",
"cakephp/cakephp-codesniffer": "dev-master"
},
"autoload": {
"psr-4": {
"Tanuck\\Markdown\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Tanuck\\Markdown\\Test\\": "tests",
"Cake\\Test\\": "./vendor/cakephp/cakephp/tests"
}
}
}