-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
35 lines (35 loc) · 916 Bytes
/
composer.json
File metadata and controls
35 lines (35 loc) · 916 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
34
35
{
"name": "cakephp-tutorial/autodate",
"description": "Automatically convert date fields",
"type": "cakephp-plugin",
"keywords": ["cakephp", "date", "converter", "plugin", "behavior"],
"homepage": "https://github.com/cakephp-tutorial/Autodate",
"license": "MIT",
"authors": [
{
"name": "CakePHP-Tutorial",
"email": "info@cakephp-tutorial.it",
"homepage": "http://www.cakephp-tutorial.it"
}
],
"support": {
"email": "info@cakephp-tutorial.it",
"issues": "https://github.com/cakephp-tutorial/Autodate/issues",
"source": "https://github.com/cakephp-tutorial/Autodate"
},
"require": {
"php": ">=5.2.0",
"composer/installers": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"phpunit/phpunit": "3.7.*"
},
"extra": {
"installer-name": "Autodate",
"branch-alias" : {
"dev-master": "1.1.*-dev"
}
}
}