Skip to content

Commit

Permalink
normalize composer.json
Browse files Browse the repository at this point in the history
  • Loading branch information
freekmurze authored and actions-user committed Jan 12, 2022
1 parent 11263ec commit ba1b15d
Showing 1 changed file with 18 additions and 18 deletions.
36 changes: 18 additions & 18 deletions composer.json
Original file line number Diff line number Diff line change
@@ -1,15 +1,14 @@
{
"name": "spatie/laravel-activitylog",
"description": "A very simple activity logger to monitor the users of your website or application",
"license": "MIT",
"keywords": [
"spatie",
"log",
"user",
"activity",
"laravel"
],
"homepage": "https://github.com/spatie/activitylog",
"license": "MIT",
"authors": [
{
"name": "Freek Van der Herten",
Expand All @@ -30,28 +29,21 @@
"role": "Developer"
}
],
"homepage": "https://github.com/spatie/activitylog",
"require": {
"php": "^8.0",
"illuminate/config": "^8.0|^9.0",
"illuminate/database": "^8.53|^9.0",
"illuminate/support": "^8.0|^9.0",
"illuminate/config": "^8.0 || ^9.0",
"illuminate/database": "^8.53 || ^9.0",
"illuminate/support": "^8.0 || ^9.0",
"spatie/laravel-package-tools": "^1.6.3"
},
"require-dev": {
"ext-json": "*",
"orchestra/testbench": "^6.23|^7.0",
"orchestra/testbench": "^6.23 || ^7.0",
"phpunit/phpunit": "^9.5"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Spatie\\Activitylog\\ActivitylogServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Spatie\\Activitylog\\": "src"
Expand All @@ -65,8 +57,16 @@
"Spatie\\Activitylog\\Test\\": "tests"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Spatie\\Activitylog\\ActivitylogServiceProvider"
]
}
},
"scripts": {
"test": "vendor/bin/phpunit"
}
Expand Down

0 comments on commit ba1b15d

Please sign in to comment.