-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
48 lines (48 loc) · 1.31 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
{
"name": "ryannerd/rxchart",
"description": "RxChart",
"license": ["MIT"],
"type": "project",
"minimum-stability": "stable",
"authors": [{
"name": "Ryan Jentzsch",
"email": "ryan.jentzsch@gmail.com"
}],
"support": {
"issues": "https://github.com/RyanNerd/rxchart-app/issues"
},
"config": {
"sort-packages": true,
"optimize-autoloader": true
},
"require": {
"php": ">=8.0",
"ext-json": "*",
"ext-pdo": "*",
"dompdf/dompdf": "^1.2.2",
"illuminate/database": "^v8.83.3",
"illuminate/events": "^v8.83.3",
"php-di/php-di": "^6.4.0",
"psr/container": "^1.1.2",
"psr/http-message": "^1.0.1",
"psr/http-server-handler": "^1.0.1",
"respect/validation": "^2.2.3",
"slim/psr7": "^1.5",
"slim/slim": "^4.10.0",
"vlucas/phpdotenv": "^v4.2.2"
},
"require-dev": {
"phpstan/phpstan": "^1.8.2"
},
"scripts": {
"cs": ["phpcs --standard=phpcs.xml ."],
"sniff": ["phpcs --standard=phpcs.xml "],
"fix": ["phpcbf --standard=phpcs.xml "],
"phpstan": ["vendor/bin/phpstan analyze app --level 5 -c phpstan.neon"]
},
"autoload": {
"psr-4": {
"Willow\\": "app/"
}
}
}