| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859606162 |
- {
- "name": "dongasai/dcat-admin2",
- "description": "dcat admin v2 ",
- "type": "library",
- "keywords": [
- "dcat",
- "laravel",
- "admin",
- "grid",
- "form",
- "laravel admin"
- ],
- "homepage": "https://github.com/dongasai/dcat-admin2",
- "license": "MIT",
- "authors": [
- {
- "name": "jqh",
- "email": "841324345@qq.com"
- },
- {
- "name": "dongasai",
- "email": "1514582970@qq.com"
- }
- ],
- "require": {
- "php": ">=8.2.0",
- "laravel/framework": "~12.0",
- "spatie/eloquent-sortable": "*",
- "doctrine/dbal": "*"
- },
- "require-dev": {
- "laravel/dusk": "~5.9|~6|~7.0|~8.0",
- "phpstan/phpstan": "^0.12.0|~1.0",
- "phpunit/phpunit": "^7.5|~9|~10|~11",
- "fakerphp/faker": "^1.23",
- "mockery/mockery": "^1.6"
- },
- "autoload": {
- "psr-4": {
- "Dcat\\Admin\\": "src/"
- },
- "files": [
- "src/Support/helpers.php"
- ]
- },
- "autoload-dev": {
- "psr-4": {
- "Dcat\\Admin\\Tests\\": "tests/"
- }
- },
- "scripts": {
- "phpstan": "vendor/bin/phpstan analyse",
- "test": "vendor/bin/phpunit"
- },
- "extra": {
- "laravel": {
- "providers": [
- "Dcat\\Admin\\AdminServiceProvider"
- ]
- }
- }
- }
|