-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
executable file
·67 lines (67 loc) · 1.81 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
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
{
"name": "plank/laravel-checkpoint",
"description": "A package for keeping a history of your models' revisions and accessing your data as it was at an older date.",
"keywords": [
"plank",
"checkpoint",
"revision",
"revisionable",
"version",
"versionable"
],
"homepage": "https://github.com/plank/laravel-checkpoint",
"license": "MIT",
"type": "library",
"authors": [
{
"name": "Massimo Triassi",
"email": "[email protected]",
"role": "Developer"
},
{
"name": "Andrew Hanichkovsky",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^7.1.3|^8.0",
"ext-json": "*",
"illuminate/support": "5.8.*|^6.0|^7.0|^8.0|^9.0"
},
"require-dev": {
"doctrine/dbal": "^2.6|^3.3",
"laravel/legacy-factories": "^1.0.4",
"orchestra/testbench": "^4.8 || ^5.2 || ^6.0 || ^7.2",
"phpunit/phpunit": "^9.5"
},
"autoload": {
"psr-4": {
"Plank\\Checkpoint\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Plank\\Checkpoint\\Tests\\": "tests"
}
},
"scripts": {
"psalm": "vendor/bin/psalm",
"phpstan": "vendor/bin/phpstan",
"test": "vendor/bin/phpunit --colors=always",
"testdox": "vendor/bin/phpunit --textdox --colors=always",
"test-coverage": "vendor/bin/phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Plank\\Checkpoint\\CheckpointServiceProvider"
]
}
},
"minimum-stability": "dev",
"prefer-stable": true
}