-
Notifications
You must be signed in to change notification settings - Fork 3
/
composer.json
76 lines (76 loc) · 2.33 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
71
72
73
74
75
76
{
"name": "abordage/laravel-last-modified",
"description": "Setting the Last-Modified header and 304 Not Modified response code if the page hasn't changed since the last visit",
"license": "MIT",
"keywords": [
"304 Not Modified",
"Last-Modified",
"If-Modified-Since",
"Laravel Last-Modified",
"Laravel 304"
],
"authors": [
{
"name": "Pavel Bychko",
"email": "box@abordage.dev",
"role": "Developer"
}
],
"homepage": "https://github.com/abordage/laravel-last-modified",
"require": {
"php": ">=7.4",
"illuminate/support": "^8.0 || ^9.0 || ^10.0 || ^11.0"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.0",
"nunomaduro/collision": "^5.0 || ^6.0 || ^7.0 || ^8.0",
"nunomaduro/larastan": "^1.0 || ^2.0",
"orchestra/testbench": "^6.0 || ^7.0 || ^8.0 || ^9.0",
"phpunit/phpunit": "^9.5 || ^10.0"
},
"minimum-stability": "stable",
"prefer-stable": true,
"autoload": {
"psr-4": {
"Abordage\\LastModified\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Abordage\\LastModified\\Tests\\": "tests"
}
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"aliases": {
"LastModified": "Abordage\\LastModified\\Facades\\LastModified"
},
"providers": [
"Abordage\\LastModified\\LastModifiedServiceProvider"
]
}
},
"scripts": {
"phpcsf": "vendor/bin/php-cs-fixer fix --diff",
"phpstan:generate-baseline": "vendor/bin/phpstan --generate-baseline",
"test:all": [
"@test:phpcsf",
"@test:phpstan",
"@test:phpunit"
],
"test:phpcsf": "vendor/bin/php-cs-fixer fix --dry-run",
"test:phpstan": "vendor/bin/phpstan analyse",
"test:phpunit": "vendor/bin/phpunit --colors=always"
},
"scripts-descriptions": {
"phpcsf": "Run PHP-CS-Fixer fix",
"phpstan:generate-baseline": "Generate baseline for PHPStan",
"test:all": "Run all code analysis and tests",
"test:phpcsf": "Run PHP-CS-Fixer test",
"test:phpstan": "Run PHPStan",
"test:phpunit": "Run PHPUnit"
}
}