Files
laravel-lift/composer.json
2023-10-02 11:17:01 +01:00

74 lines
1.8 KiB
JSON

{
"name": "wendelladriel/laravel-lift",
"description": "Take your Eloquent Models to the next level",
"type": "library",
"keywords": [
"laravel",
"eloquent",
"model",
"attributes",
"casts",
"validation"
],
"license": "MIT",
"autoload": {
"psr-4": {
"WendellAdriel\\Lift\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/WendellAdriel/laravel-lift/issues",
"source": "https://github.com/WendellAdriel/laravel-lift"
},
"authors": [
{
"name": "Wendell Adriel",
"email": "wendelladriel.ti@gmail.com"
}
],
"require": {
"php": "^8.1",
"illuminate/database": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/validation": "^9.0|^10.0"
},
"require-dev": {
"pestphp/pest": "^2.15",
"laravel/pint": "^1.11",
"phpstan/phpstan": "^1.10",
"nunomaduro/larastan": "^2.0",
"orchestra/testbench": "^8.9",
"pestphp/pest-plugin-faker": "^2.0"
},
"scripts": {
"lint": "pint",
"test:lint": "pint --test",
"test:unit": "./vendor/bin/pest --order-by random",
"test:static": "phpstan analyse --memory-limit 1G",
"test": [
"@test:lint",
"@test:unit",
"@test:static"
]
},
"extra": {
"laravel": {
"providers": [
"WendellAdriel\\Lift\\Providers\\LiftServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}