-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
75 lines (75 loc) · 2.03 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
{
"name": "hexmedia/crontab",
"type": "library",
"description": "Managing crontab",
"keywords": [
"crontab",
"crontab manager",
"tasks"
],
"authors": [
{
"name": "Krystian Kuczek",
"email": "[email protected]",
"role": "Developer",
"homepage": "http://www.hexmedia.pl"
}
],
"homepage": "http://www.hexmedia.pl/crontab",
"license": "MIT",
"support": {
"email": "[email protected]",
"issues": "https://github.com/Hexmedia/Crontab/issues"
},
"autoload": {
"psr-4": {
"Hexmedia\\Crontab\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"dev\\Hexmedia\\Crontab\\": "./src-dev"
}
},
"require": {
"php": ">=5.3.3",
"symfony/console": ">=2.3,<4.0"
},
"require-dev": {
"phpunit/phpunit": ">=4.0,<6",
"sebastian/phpcpd": "^2.0",
"sebastian/phpdcd": "^1.0",
"phpspec/phpspec": "~2.4",
"henrikbjorn/phpspec-code-coverage": ">1.0,<3.0",
"symfony/yaml": ">=2.3,<4",
"symfony/config": ">=2.3,<4",
"zf1/zend-config": "1.12.11",
"zendframework/zend-config": "~2.5",
"phpmd/phpmd": "~2.3,>=2.3.1",
"pdepend/pdepend": "~2.1",
"squizlabs/php_codesniffer": "^2.5",
"phploc/phploc": ">=2.0,<4",
"symfony/process": ">=2.3,<4",
"seld/jsonlint": "^1.4",
"hexmedia/yaml-linter": ">0.1,<2",
"austinhyde/iniparser": "~1.0@dev",
"hexmedia/code-style": "~1.0@dev",
"behat/behat": "~3.0",
"kuczek/behat-html-formatter": ">=0.1.2,<0.2",
"hexmedia/symfony-fake-process": ">2.0@dev,<4.0@dev"
},
"suggest": {
"symfony/yaml": "Enables support for yaml configuration files.",
"symfony/config": "Enables support for ini configuration files.",
"zf1/zend-config": "Enables support for ini configuration files.",
"zendframework/zend-config": "Enables support for ini and yaml configuration files."
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"scripts": {
"post-autoload-dump": "Hexmedia\\CodeStyle\\Composer\\PhpCSInstall::postAutoloadDump"
}
}