-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
46 lines (46 loc) · 1.34 KB
/
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
41
42
43
44
45
46
{
"name": "private-packagist/vendor-data-exporter",
"description": "A tool to fetch package versions that a vendor's customers have access to.",
"keywords": ["packagist", "composer", "api", "sdk", "vendor", "customer"],
"type": "project",
"license": "MIT",
"autoload": {
"psr-4": {
"PrivatePackagist\\VendorDataExporter\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"PrivatePackagist\\VendorDataExporter\\Test\\": "tests/"
}
},
"authors": [
{
"name": "Zan Baldwin",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"require": {
"php": "^8.1",
"league/csv": "^9.8",
"php-http/guzzle7-adapter": "^1.0",
"private-packagist/api-client": "^1.29",
"symfony/console": "^6.1",
"symfony/dotenv": "^6.1"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.9",
"php-http/mock-client": "^1.5",
"phpstan/phpstan": "^1.8",
"phpstan/phpstan-deprecation-rules": "^1.0",
"phpstan/phpstan-strict-rules": "^1.3",
"phpunit/phpunit": "^9.5",
"symfony/string": "^6.1",
"symfony/translation-contracts": "^3.1"
}
}