-
-
Notifications
You must be signed in to change notification settings - Fork 39
Expand file tree
/
Copy pathcomposer.json
More file actions
50 lines (50 loc) · 1.3 KB
/
composer.json
File metadata and controls
50 lines (50 loc) · 1.3 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
{
"name": "openfoodfacts/openfoodfacts-php",
"description": "Open Food Facts API Wrapper, the open database about food.",
"homepage": "https://world.openfoodfacts.org/",
"type": "library",
"minimum-stability": "stable",
"license": "MIT",
"sort-packages": true,
"support": {
"email": "rmorenp@rampamster.org",
"issues": "https://github.com/openfoodfacts/openfoodfacts-php/issues",
"chat": "https://slack.openfoodfacts.org/",
"source": "https://github.com/openfoodfacts/openfoodfacts-php"
},
"authors": [
{
"name": "Roberto Moreno",
"email": "rmorenp@rampmaster.org",
"homepage": "https://rampmaster.org/",
"role": "Wrapper Developer"
},
{
"name": "Colin Benoit",
"homepage": "https://github.com/Benoit382",
"role": "PHP Developer"
}
],
"require": {
"php": "^8.1",
"ext-json": "*",
"ext-curl": "*",
"guzzlehttp/guzzle": "^7.4",
"psr/log": "^3.0",
"psr/simple-cache": "^3.0"
},
"autoload": {
"psr-4": {
"OpenFoodFacts\\": "src/",
"OpenFoodFactsTests\\": "tests/"
}
},
"require-dev": {
"ext-gd": "*",
"symfony/cache": "^6.1.3",
"phpunit/phpunit": "^10.5",
"phpstan/phpstan": "^1.8.2",
"phpstan/phpstan-phpunit": "^1.1.1",
"friendsofphp/php-cs-fixer": "^3.9.5"
}
}