github actions

This commit is contained in:
Azaria
2026-02-19 18:14:18 +00:00
parent bba1530de1
commit ba577fc914
5 changed files with 125 additions and 2 deletions
+20 -2
View File
@@ -2,7 +2,11 @@
"name": "laracord/laracord",
"type": "project",
"description": "Create Discord bots harnessing the full power of Laravel.",
"keywords": ["framework", "laravel", "discord"],
"keywords": [
"framework",
"laravel",
"discord"
],
"license": "MIT",
"require": {
"php": "^8.2",
@@ -20,6 +24,20 @@
}
},
"scripts": {
"lint": [
"@php scripts/php-lint.php"
],
"format:check": [
"vendor/bin/pint --test"
],
"ci": [
"@composer validate --strict",
"@composer lint",
"@composer format:check"
],
"ci:build": [
"php laracord app:build"
],
"post-root-package-install": [
"@php -r \"file_exists('.env') || copy('.env.example', '.env');\""
]
@@ -34,4 +52,4 @@
},
"minimum-stability": "dev",
"prefer-stable": true
}
}