forked from brendt/php-sparkline
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.13 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
46
47
48
49
{
"name": "brendt/php-sparkline",
"description": "Generate sparkline SVGs in PHP",
"keywords": [
"brendt",
"php-sparkline"
],
"homepage": "https://github.com/brendt/php-sparkline",
"license": "MIT",
"authors": [
{
"name": "Brent Roose",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.1",
"illuminate/collections": "^9.43|^10.0|^11.0",
"ramsey/uuid": "^4.6",
"spatie/period": "^2.3"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.13",
"larapack/dd": "^1.1",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Brendt\\SparkLine\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Brendt\\SparkLine\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"phpstan/extension-installer": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}