You've already forked Epicnabbo-Catalogus-Updated-Daily
66 lines
1.7 KiB
JSON
66 lines
1.7 KiB
JSON
{
|
|
"name": "qirolab/laravel-themer",
|
|
"description": "A Laravel theme manager, that will help you organize and maintain your themes inside Laravel projects.",
|
|
"keywords": [
|
|
"qirolab",
|
|
"laravel-theme",
|
|
"theme",
|
|
"laravel"
|
|
],
|
|
"homepage": "https://qirolab.com",
|
|
"license": "MIT",
|
|
"authors": [
|
|
{
|
|
"name": "Harish Kumar",
|
|
"email": "harish@qirolab.com",
|
|
"homepage": "https://qirolab.com",
|
|
"role": "Developer"
|
|
}
|
|
],
|
|
"require": {
|
|
"php": ">=7.1.0",
|
|
"facade/ignition-contracts": "^1.0",
|
|
"illuminate/support": "^9.19|^10.0|^11.0|^12.0"
|
|
},
|
|
"require-dev": {
|
|
"orchestra/testbench": "^7.0|^8.0|^9.0|^10.0",
|
|
"phpunit/phpunit": "^8.3|^9.0|^10.5|^11.5.3",
|
|
"vimeo/psalm": "^4.0|^5.22|^6.7"
|
|
},
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Qirolab\\Theme\\": "src",
|
|
"Qirolab\\Theme\\Database\\Factories\\": "database/factories"
|
|
}
|
|
},
|
|
"autoload-dev": {
|
|
"psr-4": {
|
|
"Qirolab\\Theme\\Tests\\": "tests"
|
|
}
|
|
},
|
|
"scripts": {
|
|
"psalm": "vendor/bin/psalm",
|
|
"test": "vendor/bin/phpunit --colors=always",
|
|
"test-coverage": "vendor/bin/phpunit --coverage-html coverage",
|
|
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
|
|
},
|
|
"config": {
|
|
"sort-packages": true
|
|
},
|
|
"extra": {
|
|
"laravel": {
|
|
"providers": [
|
|
"Qirolab\\Theme\\ThemeServiceProvider"
|
|
]
|
|
}
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"funding": [
|
|
{
|
|
"type": "other",
|
|
"url": "https://www.buymeacoffee.com/qirolab"
|
|
}
|
|
]
|
|
}
|