-
-
Notifications
You must be signed in to change notification settings - Fork 12
/
composer.json
82 lines (82 loc) · 2.29 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
77
78
79
80
81
82
{
"name": "vrkansagara/lara-out-press",
"description": "This is simply compress your final out of Laravel Application and serve to the browser.",
"keywords": [
"laravel",
"compress"
],
"homepage": "https://vrkansagara.in",
"type": "library",
"license": "BSD-3-Clause",
"authors": [
{
"name": "Vallabh Kansagara",
"email": "[email protected]",
"homepage": "https://vrkansagara.in"
}
],
"require": {
"php": ">=7.0|^8.0",
"ext-zlib": "*",
"ext-pcre": "*"
},
"autoload": {
"psr-4": {
"Vrkansagara\\LaraOutPress\\": "src"
},
"files": [
"src/helper.php"
]
},
"autoload-dev": {
"psr-4": {
"Vrkansagara\\LaraOutPress\\": "tests"
}
},
"support": {
"email": "[email protected]",
"issues": "https://github.com/vrkansagara/LaraOutPress/issues",
"source": "https://github.com/vrkansagara/LaraOutPress"
},
"minimum-stability": "dev",
"prefer-stable": true,
"extra": {
"laravel": {
"providers": [
"Vrkansagara\\LaraOutPress\\ServiceProvider"
],
"aliases": {
"LaraOutPress": "Vrkansagara\\LaraOutPress\\Facade"
}
}
},
"require-dev": {
"laravel/framework": "5.5.x || 8.0.x",
"laminas/laminas-coding-standard": "^2.3",
"phpunit/phpunit": "^9.5"
},
"config": {
"optimize-autoloader": true,
"preferred-install": "dist",
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"scripts": {
"post-autoload-dump": [
"Illuminate\\Foundation\\ComposerScripts::postAutoloadDump"
],
"check": [
"@cs-check",
"@test"
],
"cs-check": "./vendor/bin/phpcs -s",
"cs-fix": "./vendor/bin/phpcbf --standard=./phpcs.xml",
"test": [
"./vendor/bin/phpunit --testdox --colors=always",
"echo 'Current head at ' && git rev-parse --verify HEAD"
],
"test-coverage": "phpunit --colors=always --coverage-clover clover.xml"
}
}