forked from overtrue/laravel-versionable
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
44 lines (44 loc) · 1.3 KB
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
{
"name": "overtrue/laravel-versionable",
"description": "Make Laravel model versionable.",
"require": {
"php": "^7.4|^8.0",
"laravel/framework": "^5.8|^6.20.14|^7.0|^8.0",
"sebastian/diff": "^3.0|^4.0",
"doctrine/dbal": "^2.12|^3.0"
},
"require-dev": {
"phpunit/phpunit": "^8.1|^9.0",
"orchestra/testbench": "^5.3|^6.0",
"friendsofphp/php-cs-fixer": "^2.16",
"mockery/mockery": "^1.4"
},
"autoload": {
"psr-4": {
"Overtrue\\LaravelVersionable\\": "./src"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "./tests"
}
},
"extra": {
"laravel": {
"providers": [
"Overtrue\\LaravelVersionable\\ServiceProvider"
]
}
},
"scripts": {
"check-style": "php-cs-fixer fix --using-cache=no --diff --config=.php_cs --dry-run --ansi",
"fix-style": "php-cs-fixer fix --using-cache=no --config=.php_cs --ansi",
"test": "vendor/bin/phpunit --colors=always --testdox"
},
"scripts-descriptions": {
"test": "Run all tests.",
"check-style": "Run style checks (only dry run - no fixing!).",
"fix-style": "Run style checks and fix violations."
},
"license": "MIT"
}