-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathcomposer.json
70 lines (70 loc) · 1.66 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
68
69
70
{
"name": "karriere/state",
"description": "Laravel package for storing current application state in cache/session",
"homepage": "https://github.com/karriereat/state",
"authors": [
{
"name": "Alexander Lentner",
"email": "alexander.lentner@karriere.at"
}
],
"keywords": [
"state",
"stack",
"session",
"cache",
"cacheable",
"laravel",
"login"
],
"license": "Apache-2.0",
"require": {
"php": "8.1.* || 8.2.*|| 8.3.*",
"illuminate/support": "^10.0 || ^11.0",
"illuminate/session": "^10.0 || ^11.0",
"psr/cache": "^1.0 || ^2.0 || ^3.0 "
},
"require-dev": {
"mockery/mockery": "^1.0",
"pestphp/pest": "^2.0",
"laravel/pint": "^1.6",
"phpstan/phpstan": "^1.10"
},
"extra": {
"laravel": {
"providers": [
"Karriere\\State\\StateServiceProvider"
],
"aliases": {
"StateStore": "Karriere\\State\\StoreFacade"
}
}
},
"autoload": {
"psr-4": {
"Karriere\\State\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Karriere\\State\\Tests\\": "tests/"
}
},
"scripts": {
"analyse": "phpstan analyse --memory-limit 512M",
"lint": "pint --test",
"lint:verbose": "pint -v --test",
"fix": "pint",
"test": "vendor/bin/pest",
"coverage": "vendor/bin/pest --coverage --ci --coverage-html coverage --coverage-clover coverage.xml --log-junit junit.xml",
"report": "vendor/bin/pest --coverage",
"report:html": "vendor/bin/pest --coverage --coverage-html coverage"
},
"minimum-stability": "stable",
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
},
"sort-packages": true
}
}