-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
90 lines (90 loc) · 2.69 KB
/
Copy pathcomposer.json
File metadata and controls
90 lines (90 loc) · 2.69 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
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
{
"name": "laurentmuller/highcharts-bundle",
"type": "symfony-bundle",
"description": "Symfony Bundle that ease the use of highcharts to display rich graph and charts in your application.",
"keywords": [
"symfony",
"charting",
"charts",
"highcharts",
"chart",
"graph",
"graphs"
],
"homepage": "https://github.com/laurentmuller/HighchartsBundle",
"license": "MIT",
"authors": [
{
"name": "Laurent Muller",
"email": "bibi@bibi.nu",
"homepage": "https://www.bibi.nu",
"role": "Developer"
}
],
"support": {
"email": "bibi@bibi.nu",
"issues": "https://github.com/laurentmuller/HighchartsBundle/issues",
"source": "https://github.com/laurentmuller/HighchartsBundle"
},
"require": {
"php": "^8.3",
"symfony/config": " ^7.0",
"symfony/dependency-injection": " ^7.0",
"symfony/http-kernel": " ^7.0",
"twig/twig": "^3.21"
},
"require-dev": {
"bamarni/composer-bin-plugin": "^1.0",
"phpunit/phpunit": "^12.0",
"symfony/framework-bundle": " ^7.0",
"symfony/phpunit-bridge": " ^8.0"
},
"extra": {
"bamarni-bin": {
"bin-links": false,
"forward-command": true,
"target-directory": "vendor-bin"
}
},
"autoload": {
"psr-4": {
"HighchartsBundle\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"HighchartsBundle\\Tests\\": "tests/"
}
},
"config": {
"platform": {
"php": "8.3.31"
},
"optimize-autoloader": true,
"preferred-install": {
"*": "dist"
},
"sort-packages": true,
"platform-check": true,
"discard-changes": true,
"allow-plugins": {
"bamarni/composer-bin-plugin": true
}
},
"scripts": {
"app-fixer": "vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix --diff --dry-run",
"app-fixer-fix": "vendor-bin/php-cs-fixer/vendor/bin/php-cs-fixer fix --diff",
"app-rector": "vendor-bin/rector/vendor/bin/rector process --dry-run --config rector.php",
"app-rector-fix": "vendor-bin/rector/vendor/bin/rector process --config rector.php",
"app-stan": "vendor-bin/phpstan/vendor/bin/phpstan analyse --configuration phpstan.neon --memory-limit 2G",
"app-test": "vendor/bin/phpunit",
"app-markdown": "markdownlint-cli2",
"app-all": [
"@app-fixer",
"@app-rector",
"@app-stan",
"@app-test",
"@app-markdown"
]
}
}