-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
50 lines (50 loc) · 1.62 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
{
"name": "lightship-core/lightship-laravel",
"description": "Laravel wrapper to use Lightship PHP.",
"type": "library",
"license": "MIT",
"version": "0.4.0",
"autoload": {
"psr-4": {
"Lightship\\": "src/",
"Tests\\": "tests"
}
},
"authors": [
{
"name": "Khalyomede",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require-dev": {
"orchestra/testbench": "7.19.0",
"nunomaduro/collision": "6.4.0",
"friendsofphp/php-cs-fixer": "3.13.2",
"phpstan/phpstan": "1.9.11"
},
"scripts": {
"analyse": "phpstan analyse --xdebug",
"test": "testbench package:test --coverage",
"lint": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer fix --diff --using-cache=no --allow-risky=yes --dry-run",
"format": "PHP_CS_FIXER_IGNORE_ENV=1 php-cs-fixer --using-cache=no --allow-risky=yes fix",
"check": "composer audit --locked --no-dev",
"scan": "rector process --dry-run",
"modernize": "rector process",
"updates": "composer outdated --strict --direct",
"all": "composer run test && composer run analyse && composer run lint && composer run check && composer run scan && composer run updates"
},
"require": {
"lightship-core/lightship-php": "^0.9.0",
"illuminate/support": "9.*",
"illuminate/console": "9.*",
"rector/rector": "0.15.7"
},
"extra": {
"laravel": {
"providers": [
"Lightship\\LightshipServiceProvider"
]
}
}
}