-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
53 lines (53 loc) · 1.26 KB
/
composer.json
File metadata and controls
53 lines (53 loc) · 1.26 KB
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
{
"name": "samsonasik/redirect-handler-module",
"type": "library",
"description": "Laminas module to for Url Redirect handling",
"keywords": [
"redirect",
"laminas2",
"laminas3",
"handler"
],
"homepage": "https://github.com/samsonasik/RedirectHandlerModule",
"license": "MIT",
"authors": [
{
"name": "Abdul Malik Ikhsan",
"email": "samsonasik@gmail.com",
"homepage": "http://samsonasik.wordpress.com",
"role": "Developer"
}
],
"require": {
"php": "^7.1",
"laminas/laminas-mvc": "^3.0",
"laminas/laminas-servicemanager": "^3.3.0"
},
"require-dev": {
"laminas/laminas-coding-standard": "^1.0",
"php-coveralls/php-coveralls": "^2.1",
"phpunit/phpunit": "^7.0"
},
"config": {
"process-timeout": 5000
},
"extra": {
"zf": {
"module": "RedirectHandlerModule"
}
},
"autoload": {
"psr-4": {
"RedirectHandlerModule\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"RedirectHandlerModuleTest\\": "test/"
}
},
"scripts": {
"cs-check": "phpcs",
"cs-fix": "phpcbf"
}
}