ubah ke docker mode

This commit is contained in:
servdal
2025-07-16 07:36:13 +07:00
parent 6871d14f94
commit 9471bf22f5
15161 changed files with 112 additions and 0 deletions

No files matched your search

+51
View File
@@ -0,0 +1,51 @@
{
"name": "arcanedev/support",
"description": "ARCANEDEV Support Helpers",
"keywords": ["arcanedev", "arcanesoft", "support", "laravel"],
"homepage": "https://github.com/ARCANEDEV/Support",
"authors": [
{
"name": "ARCANEDEV",
"email": "[email protected]",
"homepage": "https://github.com/arcanedev-maroc"
}
],
"type": "library",
"license": "MIT",
"require": {
"php": "^8.1",
"illuminate/contracts": "^10.0",
"illuminate/support": "^10.0"
},
"require-dev": {
"laravel/framework": "^10.0",
"orchestra/testbench-core": "^8.0",
"phpunit/phpunit": "^10.0"
},
"autoload": {
"psr-4": {
"Arcanedev\\Support\\": "src/"
},
"files": ["helpers.php"]
},
"autoload-dev": {
"psr-4": {
"Arcanedev\\Support\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit --colors=always",
"test:dox": "phpunit --testdox --colors=always",
"test:cov": "phpunit --coverage-html coverage"
},
"extra": {
"branch-alias": {
"dev-develop": "10.x-dev"
}
},
"config": {
"sort-packages": true
},
"minimum-stability": "dev",
"prefer-stable": true
}