-
Notifications
You must be signed in to change notification settings - Fork 2.2k
Expand file tree
/
Copy pathcomposer.json
More file actions
66 lines (66 loc) · 1.76 KB
/
Copy pathcomposer.json
File metadata and controls
66 lines (66 loc) · 1.76 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
{
"name": "october/october",
"description": "Built using October CMS: The Laravel-Based CMS Engineered For Simplicity",
"type": "project",
"homepage": "https://octobercms.com",
"license": "proprietary",
"require": {
"php": "^8.2",
"october/rain": "^4.3",
"laravel/framework": "^12.0"
},
"require-dev": {
"phpunit/phpunit": "^8.5|^9.0",
"squizlabs/php_codesniffer": "^3.11"
},
"scripts": {
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"@php artisan key:generate --ansi"
],
"post-autoload-dump": [
"System\\Console\\ComposerScript::postAutoloadDump"
],
"post-update-cmd": [
"System\\Console\\ComposerScript::postUpdateCmd"
],
"pre-package-uninstall": [
"System\\Console\\ComposerScript::prePackageUninstall"
],
"test": [
"phpunit --stop-on-failure"
],
"lint": [
"phpcs"
]
},
"config": {
"preferred-install": "dist",
"allow-plugins": {
"composer/installers": true
},
"policy": {
"advisories": {
"block": false,
"audit": "report"
},
"abandoned": {
"block": false,
"audit": "report"
},
"malware": {
"block": true,
"audit": "report"
}
}
},
"autoload": {
"psr-4": {
"System\\Console\\": "modules/system/console"
}
},
"minimum-stability": "stable",
"prefer-stable": true
}