-
Notifications
You must be signed in to change notification settings - Fork 9
Expand file tree
/
Copy pathcomposer.json
More file actions
36 lines (36 loc) · 892 Bytes
/
composer.json
File metadata and controls
36 lines (36 loc) · 892 Bytes
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
{
"name": "ecoapm/libyear",
"version": "3.0.0",
"description": "A simple measure of software dependency freshness",
"homepage": "https://libyear.com",
"readme": "README.md",
"license": "MIT",
"authors": [
{
"name": "ecoAPM",
"email": "steve@ecoAPM.com",
"homepage": "https://ecoAPM.com"
}
],
"bin": [
"libyear"
],
"require": {
"php": ">=8.1",
"ext-json": ">=8.1",
"composer/semver": "3.4.0",
"guzzlehttp/guzzle": "7.8.1",
"vanilla/garden-cli": "v4.0",
"wp-cli/php-cli-tools": "v0.11.22"
},
"require-dev": {
"phpunit/phpunit": "10.5.20",
"mockery/mockery": "1.6.11"
},
"autoload": {
"psr-4": {
"ecoAPM\\LibYear\\": "src/",
"ecoAPM\\LibYear\\Tests\\": "tests/"
}
}
}