-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
74 lines (74 loc) · 2.05 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
70
71
72
73
74
{
"name": "gammamatrix/playground",
"description": "Playground: A base package for Laravel integration.",
"keywords": [
"gammamatrix",
"laravel",
"playground"
],
"homepage": "https://gammamatrix-playground.readthedocs.io/",
"license": "MIT",
"authors": [
{
"name": "Jeremy Postlethwaite",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^8.2",
"ext-intl": "*",
"ezyang/htmlpurifier": "^4.16",
"illuminate/auth": "^11.0",
"illuminate/console": "^11.0",
"illuminate/contracts": "^11.0",
"illuminate/database": "^11.0",
"illuminate/http": "^11.0",
"illuminate/routing": "^11.0",
"illuminate/support": "^11.0",
"illuminate/translation": "^11.0",
"illuminate/validation": "^11.0",
"illuminate/view": "^11.0"
},
"require-dev": {
"gammamatrix/playground-test": "*"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Database\\Factories\\Playground\\Models\\": "database/factories/",
"Playground\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Unit\\Playground\\": "tests/Unit/",
"Tests\\Feature\\Playground\\": "tests/Feature/"
}
},
"config": {
"sort-packages": true,
"preferred-install": {
"gammamatrix/*": "source",
"*": "dist"
}
},
"extra": {
"branch-alias": {
"dev-develop": "73.x-dev",
"dev-master": "73.x-dev"
},
"laravel": {
"providers": [
"Playground\\ServiceProvider"
]
}
},
"scripts": {
"analyse": "vendor/bin/phpstan analyse --verbose --debug --level max",
"cloc": "cloc --exclude-dir=output,vendor .",
"format": "vendor/bin/php-cs-fixer fix",
"test": "vendor/bin/phpunit"
}
}