-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
79 lines (79 loc) · 1.97 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
75
76
77
78
79
{
"name": "sikessem/framework",
"description": "The Sikessem Framework.",
"homepage": "https://packagist.org/packages/sikessem/framework",
"keywords": [
"sikessem",
"php",
"framework",
"laravel"
],
"license": "MIT",
"authors": [
{
"name": "Sigui Kessé Emmanuel",
"email": "siguici@proton.me",
"homepage": "https://siguici.deno.dev"
}
],
"support": {
"email": "support@sikessem.com",
"source": "https://github.com/sikessem/framework",
"issues": "https://github.com/sikessem/framework/issues",
"chat": "https://github.com/orgs/sikessem/discussions"
},
"require": {
"php": ">=8.2",
"laravel/framework": "^11.11"
},
"require-dev": {
"sikessem/laravel-devtools": "^0.11.0"
},
"autoload": {
"psr-4": {
"Sikessem\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Sikessem\\Tests\\": "tests/"
}
},
"conflict": {
"laravel/framework": "<11.0.0 || >=12.0.0"
},
"scripts": {
"analyse": "phpstan analyse --ansi --memory-limit=-1 --debug",
"check": "pint --test -v",
"ci": [
"@check",
"@analyse",
"@review",
"@test"
],
"fix": [
"@refactor",
"@lint"
],
"lint": "pint -v",
"test": "pest --colors=always",
"review": "rector --dry-run --debug",
"refactor": "rector"
},
"extra": {
"branch-alias": {
"dev-main": "0.x-dev"
}
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}