-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
37 lines (37 loc) · 996 Bytes
/
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
{
"name": "elchristo/calendar",
"description": "PHP component to build and convert source based calendars",
"keywords": [ "php", "calendar" ],
"authors": [
{
"name": "Christoph Lehner",
"email": "[email protected]"
}
],
"autoload": {
"psr-4": {
"Elchristo\\Calendar\\": "src/Elchristo/Calendar/"
}
},
"autoload-dev": {
"psr-4": {
"Elchristo\\Calendar\\Test\\": "tests/"
}
},
"require": {
"php": "^7.0",
"zendframework/zend-stdlib": "^2.4 || ^3.1",
"zendframework/zend-hydrator": "^2.2",
"zendframework/zend-servicemanager": "^3.0",
"psr/container": "^1.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"require-dev": {
"fzaninotto/faker": "^1.6",
"phpunit/phpunit": "^6.3",
"codeception/codeception": "^2.3",
"phpstan/phpstan": "~0.9"
},
"license": "MIT"
}