forked from manuxi/google-reviews-bundle
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
43 lines (43 loc) · 1.27 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
{
"name": "manuxi/google-reviews-bundle",
"description": "Bundle to get Google reviews easily",
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "manuxi",
"email": "[email protected]"
}
],
"require": {
"php": "^7.1|^8.0",
"ext-curl": "*",
"ext-json": "*",
"symfony/config": "^4.0 || ^5.0",
"symfony/dependency-injection": "^4.0 || ^5.0",
"symfony/http-kernel": "^4.0 || ^5.0",
"symfony/cache": "^4.0 || ^5.0",
"symfony/serializer": "^4.0 || ^5.0",
"symfony/yaml": "^4.0 || ^5.0",
"symfony/framework-bundle": "^4.0 || ^5.0",
"symfony/twig-bundle": "^4.0 || ^5.0",
"symfony/monolog-bundle": "^3.6",
"symfony/property-access": "^4.0 || ^5.0"
},
"require-dev": {
"jangregor/phpstan-prophecy": "^0.8",
"symfony/debug-bundle": "^4.0 || ^5.0",
"symfony/phpunit-bridge": "^4.0 || ^5.0",
"matthiasnoback/symfony-dependency-injection-test": "^4.2"
},
"autoload": {
"psr-4": {
"Manuxi\\GoogleReviewsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Manuxi\\GoogleReviewsBundle\\Tests\\": "tests/"
}
}
}