-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
40 lines (40 loc) · 959 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
38
39
40
{
"name": "mikejw/empathy",
"type": "library",
"description": "Empathy PHP Framework",
"keywords": [
"framework",
"mvc"
],
"homepage": "https://empathy.sh",
"license": "MIT",
"authors": [
{
"name": "Mike Whiting",
"email": "[email protected]"
}
],
"require": {
"php": ">=8.1.0",
"wp-cli/php-cli-tools": "dev-master",
"mustangostang/spyc": "0.6.3",
"mikejw/elibs": "dev-develop",
"php-di/php-di": "^6.0",
"monolog/monolog": "^2.5.0"
},
"require-dev": {
"phpunit/phpunit": "^8",
"squizlabs/php_codesniffer": "^3.7.2",
"mockery/mockery": "^1.3.0",
"nelmio/alice": "^2"
},
"autoload": {
"psr-0": {
"Empathy": "src/",
"Psr": "src/"
}
},
"bin": [ "bin/empathy" ],
"minimum-stability": "dev",
"prefer-stable": true
}