-
Notifications
You must be signed in to change notification settings - Fork 21
/
Copy pathcomposer.json
41 lines (41 loc) · 1.17 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
{
"name": "cmen/google-charts-bundle",
"type": "symfony-bundle",
"description": "This Bundle provides a Twig extension and PHP objects to display Google charts in your Symfony application.",
"keywords": ["google", "chart", "charts", "graph", "graphs", "map"],
"license": "MIT",
"authors": [
{
"name": "Christophe Meneses"
}
],
"require": {
"php": ">=8.1",
"ext-json": "*",
"symfony/config": "^6.0 || ^7.0",
"symfony/dependency-injection": "^6.0 || ^7.0",
"symfony/http-kernel": "^6.0 || ^7.0",
"twig/twig": "^2.13 | ^3.0.4 | 4.x-dev@dev"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.64",
"phpstan/phpstan": "^1.12",
"phpunit/phpunit": "^10.5",
"rector/rector": "^1.2"
},
"autoload": {
"psr-4": { "CMEN\\GoogleChartsBundle\\": "" }
},
"autoload-dev": {
"psr-4": { "CMEN\\GoogleChartsBundle\\Tests\\": "Tests/" }
},
"config": {
"sort-packages": true
},
"scripts": {
"analyze": "./vendor/bin/phpstan analyse",
"rector": "./vendor/bin/rector process",
"lint": "./vendor/bin/php-cs-fixer fix --diff -vv",
"tests": "XDEBUG_MODE=coverage ./vendor/bin/phpunit --testdox"
}
}