mirror of
https://github.com/filamentphp/filament.git
synced 2026-09-01 15:09:33 +08:00
115 lines
4.5 KiB
JSON
115 lines
4.5 KiB
JSON
{
|
|
"name": "filament/filament",
|
|
"description": "A collection of full-stack components for accelerated Laravel development.",
|
|
"license": "MIT",
|
|
"require": {
|
|
"php": "^8.2",
|
|
"composer-runtime-api": "^2.1",
|
|
"ext-intl": "*"
|
|
},
|
|
"require-dev": {
|
|
"chillerlan/php-qrcode": "^5.0",
|
|
"danharrin/date-format-converter": "^0.3.1",
|
|
"filament/support": "*",
|
|
"larastan/larastan": "^3.0",
|
|
"laravel/pint": "1.25.1",
|
|
"laravel/prompts": "^0.3.5",
|
|
"league/csv": "^9.27",
|
|
"league/flysystem-aws-s3-v3": "^3.0",
|
|
"nunomaduro/termwind": "^2.0",
|
|
"openspout/openspout": "^4.23",
|
|
"orchestra/testbench": "^9.0|^10.0|^11.0",
|
|
"pestphp/pest": "^4.0",
|
|
"pestphp/pest-plugin-browser": "^4.1",
|
|
"pestphp/pest-plugin-laravel": "^4.0",
|
|
"phiki/phiki": "^2.0",
|
|
"phpstan/extension-installer": "^1.1",
|
|
"phpstan/phpstan": "^2.1",
|
|
"pragmarx/google2fa": "^8.0|^9.0",
|
|
"pragmarx/google2fa-qrcode": "^3.0|^4.0",
|
|
"rector/rector": "^2.0",
|
|
"spatie/laravel-google-fonts": "^1.5",
|
|
"spatie/laravel-medialibrary": "^11.21",
|
|
"spatie/laravel-settings": "^3.0",
|
|
"spatie/laravel-tags": "^4.2",
|
|
"staudenmeir/belongs-to-through": "^2.5",
|
|
"staudenmeir/eloquent-has-many-deep": "^1.7",
|
|
"symplify/monorepo-builder": "^11.0",
|
|
"ueberdosis/tiptap-php": "^2.0"
|
|
},
|
|
"autoload": {
|
|
"files": [
|
|
"packages/panels/src/global_helpers.php",
|
|
"packages/panels/src/helpers.php",
|
|
"packages/support/src/helpers.php",
|
|
"tests/helpers.php"
|
|
],
|
|
"psr-4": {
|
|
"Filament\\": [
|
|
"packages/panels/src",
|
|
"packages/spatie-laravel-media-library-plugin/src",
|
|
"packages/spatie-laravel-settings-plugin/src",
|
|
"packages/spatie-laravel-tags-plugin/src"
|
|
],
|
|
"Filament\\Actions\\": "packages/actions/src",
|
|
"Filament\\Billing\\Providers\\": "packages/spark-billing-provider/src",
|
|
"Filament\\Forms\\": "packages/forms/src",
|
|
"Filament\\FontProviders\\": "packages/spatie-laravel-google-fonts-plugin/src",
|
|
"Filament\\Infolists\\": "packages/infolists/src",
|
|
"Filament\\Notifications\\": "packages/notifications/src",
|
|
"Filament\\QueryBuilder\\": "packages/query-builder/src",
|
|
"Filament\\Schemas\\": "packages/schemas/src",
|
|
"Filament\\Support\\": "packages/support/src",
|
|
"Filament\\Tables\\": "packages/tables/src",
|
|
"Filament\\Tests\\": "tests/src",
|
|
"Filament\\Tests\\Database\\Factories\\": "tests/database/factories",
|
|
"Filament\\TranslationTool\\": "bin/TranslationTool/src",
|
|
"Filament\\Upgrade\\": "packages/upgrade/src",
|
|
"Filament\\Widgets\\": "packages/widgets/src"
|
|
}
|
|
},
|
|
"config": {
|
|
"sort-packages": true,
|
|
"allow-plugins": {
|
|
"composer/package-versions-deprecated": true,
|
|
"pestphp/pest-plugin": true,
|
|
"phpstan/extension-installer": true
|
|
}
|
|
},
|
|
"scripts": {
|
|
"cs": [
|
|
"rector",
|
|
"pint --cache-file=.pint.cache",
|
|
"npm run prettier"
|
|
],
|
|
"pint": "pint --config pint-strict-imports.json --cache-file=.pint.cache",
|
|
"rector": "rector",
|
|
"test:pest": "pest --parallel --exclude-group=serial",
|
|
"test:sqlite": "pest --configuration=phpunit.sqlite.xml --parallel --exclude-group=serial",
|
|
"test:mysql": "pest --configuration=phpunit.mysql.xml --parallel --exclude-group=serial",
|
|
"test:pgsql": "pest --configuration=phpunit.pgsql.xml --parallel --exclude-group=serial",
|
|
"test:serial:sqlite": "pest --configuration=phpunit.sqlite.xml --group=serial",
|
|
"test:serial:mysql": "pest --configuration=phpunit.mysql.xml --group=serial",
|
|
"test:serial:pgsql": "pest --configuration=phpunit.pgsql.xml --group=serial",
|
|
"test:all-databases": [
|
|
"@test:sqlite",
|
|
"@test:mysql",
|
|
"@test:pgsql"
|
|
],
|
|
"test:phpstan": "phpstan analyse",
|
|
"test": [
|
|
"@test:sqlite",
|
|
"@test:serial:sqlite",
|
|
"@test:phpstan"
|
|
]
|
|
},
|
|
"minimum-stability": "dev",
|
|
"prefer-stable": true,
|
|
"repositories": [
|
|
{
|
|
"type": "path",
|
|
"url": "packages/support"
|
|
}
|
|
]
|
|
}
|