Skip to content

Commit 8052cf7

Browse files
Commit inicial
1 parent d6ae602 commit 8052cf7

20 files changed

+3268
-0
lines changed

.gitignore

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
vendor
2+
.idea

composer.json

Lines changed: 31 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,31 @@
1+
{
2+
"name": "phphacks/zend-mvc-errorinterceptor",
3+
"description": "Error event listener for Zend MVC",
4+
"type": "library",
5+
"require": {
6+
"zendframework/zend-mvc": "^3.1",
7+
"respect/validation": "^1.1",
8+
"zendframework/zend-log": "^2.10"
9+
},
10+
"require-dev": {
11+
"phpunit/phpunit": "^7.2"
12+
},
13+
"license": "MIT",
14+
"autoload": {
15+
"psr-4": {
16+
"Zend\\Mvc\\ErrorInterceptor\\" : "src"
17+
}
18+
},
19+
"autoload-dev": {
20+
"psr-4": {
21+
"Tests\\" : "tests"
22+
}
23+
},
24+
"authors": [
25+
{
26+
"name": "Fernando de F. Scolari",
27+
"email": "fernando.scolari@bevicred.com.br"
28+
}
29+
],
30+
"minimum-stability": "stable"
31+
}

0 commit comments

Comments
 (0)