-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
47 lines (47 loc) · 1.35 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
{
"name": "cpeter/php-cms-version-checker",
"type": "project",
"description": "Keep track of new releases for different products",
"homepage": "https://github.com/cpeter/php-cms-version-checker",
"license": "MIT",
"authors": [
{
"name": "See contributors",
"homepage": "https://github.com/cpeter/php-cms-version-checker/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/cpeter/php-cms-version-checker/issues"
},
"require": {
"php": ">=5.3.0",
"ext-sqlite3": "*",
"ext-curl": "*",
"herrera-io/phar-update": "~2.0",
"symfony/console": "~2.0",
"symfony/filesystem": "~2.0",
"guzzlehttp/guzzle": ">=5.3.0",
"hassankhan/config": "~0.8",
"doctrine/dbal": "~2.5.2",
"swiftmailer/swiftmailer": "~5.4.1"
},
"require-dev": {
"pdepend/pdepend": "~1.0",
"phploc/phploc": "~2.0",
"phpmd/phpmd": "~1.0",
"phpunit/phpunit": "~3.0",
"sebastian/phpcpd": "~2.0",
"mockery/mockery": "~0.9",
"scrutinizer/ocular": "~1.0"
},
"autoload": {
"psr-4": {
"Cpeter\\PhpCmsVersionChecker\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Cpeter\\PhpCmsVersionChecker\\Test\\": "test/"
}
}
}