-
Notifications
You must be signed in to change notification settings - Fork 4
/
Copy pathcomposer.json
73 lines (73 loc) · 1.99 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
{
"name": "mod_simpleemailform",
"description": "Joomla module: mod_simpleemailform",
"type": "project",
"license": "GPL-2.0",
"keywords": [
"joomla",
"simple email form",
"module",
"extension"
],
"homepage": "http://joomla.unlikelysource.org/",
"authors": [
{
"name": "Doug Bierer",
"email": "[email protected]",
"homepage": "http://unlikelysource.net/"
},
{
"name": "Andrew Caya",
"email": "[email protected]",
"homepage": "https://github.com/andrewscaya",
"role": "Developer"
},
{
"name": "Martin Beaudry",
"email": "[email protected]",
"homepage": "https://github.com/martinbeaudry",
"role": "Developer"
}
],
"require": {
"php": "^5.3 || ^7.0"
},
"require-dev": {
"joomla/framework": "1.1.0",
"phpunit/phpunit": "4.8.32",
"mockery/mockery": "0.9.7",
"psr/log": "1.0.0",
"codeclimate/php-test-reporter": "0.2.0",
"satooshi/php-coveralls": "~0.6",
"squizlabs/php_codesniffer": "^2.3",
"phpdocumentor/phpdocumentor": "2.9.0",
"pds/skeleton": "~1.0"
},
"autoload": {
"psr-0": {
"sef": "./sef",
"sefv2": "./sefv2",
"joomla": "./lib"
},
"classmap": [
"./",
"./tests/unit"
],
"exclude-from-classmap": [
"./vendor/joomla-projects",
"./vendor/consolidation"
]
},
"scripts": {
"check": [
"@cs",
"@test"
],
"cs": "phpcs",
"cs-fix": "phpcbf",
"test": "phpunit",
"test-cover": "phpunit --coverage-clover build/logs/clover.xml",
"test-report": "test-reporter --coverage-report build/logs/clover.xml",
"apidocs": "phpdoc --template=responsive-twig"
}
}