-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
69 lines (69 loc) · 2.08 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "gammamatrix/playground-matrix",
"description": "Playground: This package provides the models to use Playground Matrix, a Project Management System.",
"keywords": [
"gammamatrix",
"laravel",
"matrix",
"playground",
"projects",
"tickets"
],
"homepage": "https://github.com/gammamatrix/playground-matrix",
"license": "MIT",
"authors": [
{
"name": "Jeremy Postlethwaite",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"gammamatrix/playground": "*"
},
"require-dev": {
"gammamatrix/playground-test": "*"
},
"suggest": {
"gammamatrix/playground-matrix-api": "Provides an API, without a UI, to interact with the models provided in this package.",
"gammamatrix/playground-matrix-resource": "Provides a resource API and optional Blade UI to interact with the models provided in this package."
},
"autoload": {
"psr-4": {
"Database\\Factories\\Playground\\Matrix\\Models\\": "database/factories/",
"Playground\\Matrix\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Feature\\Playground\\Matrix\\": "tests/Feature/",
"Tests\\Unit\\Playground\\Matrix\\": "tests/Unit/"
}
},
"config": {
"sort-packages": true,
"preferred-install": {
"gammamatrix/*": "source",
"*": "dist"
}
},
"extra": {
"branch-alias": {
"dev-develop": "73.x-dev"
},
"laravel": {
"providers": [
"Playground\\Matrix\\ServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"analyse": "vendor/bin/phpstan analyse --verbose --debug --level max",
"cloc": "cloc --exclude-dir=node_modules,output,vendor .",
"format": "vendor/bin/php-cs-fixer fix",
"test": "vendor/bin/testbench package:test"
}
}