Skip to content

Commit

Permalink
Upadate editorconfig
Browse files Browse the repository at this point in the history
  • Loading branch information
WendellAdriel committed Sep 1, 2023
1 parent e772a7c commit 2970100
Show file tree
Hide file tree
Showing 2 changed files with 68 additions and 68 deletions.
2 changes: 1 addition & 1 deletion .editorconfig
Original file line number Diff line number Diff line change
Expand Up @@ -11,5 +11,5 @@ trim_trailing_whitespace = true
[*.md]
trim_trailing_whitespace = false

[*.{yml,yaml,json}]
[*.{yml,yaml}]
indent_size = 2
134 changes: 67 additions & 67 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,69 +1,69 @@
{
"name": "wendelladriel/laravel-validated-dto",
"description": "Data Transfer Objects with validation for Laravel applications",
"type": "library",
"keywords": [
"laravel",
"dto",
"data transfer object",
"validation"
],
"license": "MIT",
"autoload": {
"psr-4": {
"WendellAdriel\\ValidatedDTO\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WendellAdriel\\ValidatedDTO\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/WendellAdriel/laravel-validated-dto/issues",
"source": "https://github.com/WendellAdriel/laravel-validated-dto"
},
"authors": [
{
"name": "Wendell Adriel",
"email": "wendelladriel.ti@gmail.com"
}
],
"require": {
"php": "^8.1",
"illuminate/console": "^9.0|^10.0",
"illuminate/database": "^9.0|^10.0",
"illuminate/http": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/validation": "^9.0|^10.0"
},
"require-dev": {
"laravel/pint": "^1.11",
"orchestra/testbench": "^7.20|^8.10",
"pestphp/pest": "v2.15",
"pestphp/pest-plugin-faker": "^2.0"
},
"scripts": {
"lint": "pint",
"test:lint": "pint --test",
"test:unit": "./vendor/bin/pest --order-by random",
"test": [
"@test:lint",
"@test:unit"
]
},
"extra": {
"laravel": {
"providers": [
"WendellAdriel\\ValidatedDTO\\Providers\\ValidatedDTOServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
"name": "wendelladriel/laravel-validated-dto",
"description": "Data Transfer Objects with validation for Laravel applications",
"type": "library",
"keywords": [
"laravel",
"dto",
"data transfer object",
"validation"
],
"license": "MIT",
"autoload": {
"psr-4": {
"WendellAdriel\\ValidatedDTO\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"WendellAdriel\\ValidatedDTO\\Tests\\": "tests/"
}
},
"support": {
"issues": "https://github.com/WendellAdriel/laravel-validated-dto/issues",
"source": "https://github.com/WendellAdriel/laravel-validated-dto"
},
"authors": [
{
"name": "Wendell Adriel",
"email": "wendelladriel.ti@gmail.com"
}
],
"require": {
"php": "^8.1",
"illuminate/console": "^9.0|^10.0",
"illuminate/database": "^9.0|^10.0",
"illuminate/http": "^9.0|^10.0",
"illuminate/support": "^9.0|^10.0",
"illuminate/validation": "^9.0|^10.0"
},
"require-dev": {
"laravel/pint": "^1.11",
"orchestra/testbench": "^7.20|^8.10",
"pestphp/pest": "v2.15",
"pestphp/pest-plugin-faker": "^2.0"
},
"scripts": {
"lint": "pint",
"test:lint": "pint --test",
"test:unit": "./vendor/bin/pest --order-by random",
"test": [
"@test:lint",
"@test:unit"
]
},
"extra": {
"laravel": {
"providers": [
"WendellAdriel\\ValidatedDTO\\Providers\\ValidatedDTOServiceProvider"
]
}
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"minimum-stability": "dev",
"prefer-stable": true
}

0 comments on commit 2970100

Please sign in to comment.