-
Notifications
You must be signed in to change notification settings - Fork 35
Expand file tree
/
Copy pathcomposer.json
More file actions
40 lines (40 loc) · 1 KB
/
composer.json
File metadata and controls
40 lines (40 loc) · 1 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
{
"name": "prestashop/traces",
"description": "A simple CLI tool to generate information about GitHub contributors of a repository",
"type": "project",
"keywords": ["contributors", "prestashop"],
"require": {
"knplabs/github-api": "^3.14",
"symfony/http-client": "^8.0",
"nyholm/psr7": "^1.8",
"cache/filesystem-adapter": "^1.2",
"symfony/dotenv": "^8.0",
"symfony/console": "^8.0",
"ext-json": "*",
"symfony/yaml": "^8.0"
},
"license": "MIT",
"authors": [
{
"name": "PrestaShop SA",
"email": "contact@prestashop.com"
}
],
"autoload": {
"psr-4": {
"PrestaShop\\Traces\\": "src/"
}
},
"config": {
"platform": {
"php": "8.4.0"
},
"allow-plugins": {
"php-http/discovery": true
}
},
"require-dev": {
"phpstan/phpstan": "^2.1",
"phpstan/phpstan-symfony": "^2.0"
}
}