Skip to content

Commit

Permalink
Merge pull request #247 from patinthehat/add-normalized-composer-json…
Browse files Browse the repository at this point in the history
…-v1.0

Normalize composer.json
  • Loading branch information
freekmurze authored Dec 2, 2022
2 parents 7435973 + da5d01a commit 08b6cad
Showing 1 changed file with 10 additions and 10 deletions.
20 changes: 10 additions & 10 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,12 +1,11 @@
{
"name": "spatie/laravel-sluggable",
"description": "Generate slugs when saving Eloquent models",
"license": "MIT",
"keywords": [
"spatie",
"laravel-sluggable"
],
"homepage": "https://github.com/spatie/laravel-sluggable",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
Expand All @@ -15,16 +14,19 @@
"role": "Developer"
}
],
"homepage": "https://github.com/spatie/laravel-sluggable",
"require": {
"php": "^8.0",
"illuminate/database": "^8.0|^9.0",
"illuminate/support": "^8.0|^9.0"
},
"require-dev": {
"orchestra/testbench": "^6.23|^7.0",
"spatie/laravel-translatable": "^5.0|^6.0",
"pestphp/pest": "^1.20"
"pestphp/pest": "^1.20",
"spatie/laravel-translatable": "^5.0|^6.0"
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Spatie\\Sluggable\\": "src"
Expand All @@ -35,15 +37,13 @@
"Spatie\\Sluggable\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/pest",
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes"
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"format": "vendor/bin/php-cs-fixer fix --allow-risky=yes",
"test": "vendor/bin/pest"
}
}

0 comments on commit 08b6cad

Please sign in to comment.