-
Notifications
You must be signed in to change notification settings - Fork 4
/
composer.json
45 lines (45 loc) · 1.36 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
{
"name": "tristanbes/my-poseo-bundle",
"description": "Access to MyPoseo API",
"keywords": ["seo", "myposeo", "google", "rank"],
"homepage": "https://github.com/tristanbes/MyPoseoBundle",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Tristan Bessoussa",
"email": "[email protected]"
}
],
"require": {
"php": ">=7.4",
"ext-json": "*",
"psr/cache": "^1.0",
"symfony/framework-bundle": "^4.4 || ^5.3",
"symfony/yaml": "^4.4 || ^5.3",
"php-http/httplug": "^1.0 || ^2.0",
"php-http/client-implementation": "^1.0",
"php-http/discovery": "^1.0",
"php-http/client-common": "^1.0||^2.0"
},
"require-dev": {
"php-http/guzzle6-adapter": "^1.0 || ^2.0",
"symfony/phpunit-bridge": "^4.4 || ^5.3",
"friendsofphp/php-cs-fixer": "^2.16",
"phpstan/phpstan": "^0.12.52",
"phpstan/phpstan-strict-rules": "^0.12.5",
"phpstan/phpstan-phpunit": "^0.12.16"
},
"autoload": {
"psr-4": { "Tristanbes\\MyPoseoBundle\\": "src/" }
},
"autoload-dev": {
"psr-4": { "Tristanbes\\MyPoseoBundle\\Tests\\": "tests/" }
},
"minimum-stability": "stable",
"extra": {
"branch-alias": {
"dev-master": "1.0-dev"
}
}
}