52 lines
1.3 KiB
JSON
52 lines
1.3 KiB
JSON
{
|
|
"name": "arcanedev/support",
|
|
"description": "ARCANEDEV Support Helpers",
|
|
"keywords": ["arcanedev", "arcanesoft", "support", "laravel"],
|
|
"homepage": "https://github.com/ARCANEDEV/Support",
|
|
"authors": [
|
|
{
|
|
"name": "ARCANEDEV",
|
|
"email": "arcanedev.maroc@gmail.com",
|
|
"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
|
|
}
|