-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.65 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.65 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
54
55
56
57
58
59
60
61
62
{
"name": "smnandre/packapi",
"description": "PHP library for retrieving package metadata, download statistics, security advisories, and quality metrics from Composer, NPM, GitHub, jsDelivr, and OSV databases",
"license": "MIT",
"type": "library",
"keywords": [
"composer",
"packagist",
"npm",
"github",
"jsdelivr",
"osv",
"bundlephobia",
"package-analysis",
"metadata",
"download-statistics",
"security-advisories",
"vulnerability-scanner",
"quality-metrics",
"dependency-analysis",
"php",
"symfony",
"api-client",
"multi-ecosystem"
],
"authors": [
{
"name": "Simon André",
"email": "smn.andre@gmail.com"
}
],
"require": {
"php": "^8.3",
"psr/log": "^3.0",
"symfony/cache-contracts": "^3.6",
"symfony/http-client-contracts": "^3.6",
"symfony/yaml": "^7.3 || ^8.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.75",
"phpstan/phpstan": "^2.1",
"phpunit/phpunit": "^12.1",
"symfony/cache": "^7.3 || ^8.0",
"symfony/http-client": "^7.3 || ^8.0"
},
"autoload": {
"psr-4": {
"PackApi\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PackApi\\Tests\\": "tests/"
}
},
"scripts": {
"cs": "vendor/bin/php-cs-fixer fix --dry-run --diff",
"cs-fix": "vendor/bin/php-cs-fixer fix",
"test": "vendor/bin/phpunit",
"test-coverage": "vendor/bin/phpunit --coverage-text"
}
}