-
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
68 lines (66 loc) · 1.99 KB
/
Copy pathcomposer.json
File metadata and controls
68 lines (66 loc) · 1.99 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
{
"name": "laraxot/module_chart",
"description": "",
"authors": [
{
"name": "Marco Sottana",
"email": "marco.sottana@gmail.com",
"role" : "Developer"
}
],
"require" : {
"amenadiel/jpgraph": "^4.1",
"illuminate/contracts": "^9.0|^10.0",
"illuminate/support": "^9.12|^10.0",
"laraxot/module_cms": "dev-master",
"laraxot/module_xot": "dev-master",
"phpdocumentor/type-resolver": "^1.5",
"spatie/laravel-package-tools": "^1.11.3"
},
"require-dev" : {
"fakerphp/faker" : "^1.14",
"friendsofphp/php-cs-fixer" : "^3.0",
"nette/php-generator" : "^3.5",
"nunomaduro/larastan" : "^2.0|^1.0.3",
"orchestra/testbench" : "^8.5.3",
"pestphp/pest" : "^1.22",
"pestphp/pest-plugin-laravel" : "^1.3",
"phpstan/extension-installer" : "^1.1",
"phpunit/phpunit" : "^9.3",
"spatie/invade" : "^1.0",
"spatie/laravel-typescript-transformer" : "^2.1.6",
"spatie/pest-plugin-snapshots" : "^1.1",
"spatie/phpunit-snapshot-assertions" : "^4.2",
"spatie/test-time" : "^1.2",
"nesbot/carbon" : "^2.63"
},
"autoload": {
"psr-4": {
"Modules\\Chart\\": ""
}
},
"scripts" : {
"analyse" : "vendor/bin/phpstan analyse",
"test" : "./vendor/bin/pest --no-coverage",
"test-coverage" : "vendor/bin/pest --coverage-html coverage",
"format" : "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"config" : {
"sort-packages" : true,
"allow-plugins" : {
"phpstan/extension-installer" : true,
"pestphp/pest-plugin" : true
}
},
"extra": {
"laravel": {
"providers": [
"Modules\\Chart\\Providers\\ChartServiceProvider"
],
"aliases": {
}
}
},
"minimum-stability" : "dev",
"prefer-stable" : true
}