-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
executable file
·95 lines (95 loc) · 2.46 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
83
84
85
86
87
88
89
90
91
92
93
94
95
{
"name": "efureev/laravel-support",
"description": "PHP Support Package for Laravel",
"license": "MIT",
"type": "library",
"keywords": [
"php",
"support",
"helpers",
"laravel"
],
"authors": [
{
"name": "Eugene Fureev",
"homepage": "https://github.com/efureev"
}
],
"require": {
"php": "^8.2",
"efureev/support": "^4.27 || ^5.0",
"illuminate/database": "^11.0"
},
"require-dev": {
"ergebnis/composer-normalize": "^2.42",
"fakerphp/faker": "^1.23",
"marcocesarato/php-conventional-changelog": "^1.17",
"orchestra/testbench": "^9.0",
"phpstan/phpstan": "^2.0",
"phpunit/phpunit": "^11.5",
"squizlabs/php_codesniffer": "^3.9"
},
"autoload": {
"psr-4": {
"Php\\Support\\Laravel\\": "src/"
},
"files": [
"src/Global/base.php"
]
},
"autoload-dev": {
"psr-4": {
"Php\\Support\\Laravel\\Tests\\": "tests/",
"Php\\Support\\Laravel\\Tests\\Database\\Factories\\": "tests/database/factories",
"Php\\Support\\Laravel\\Tests\\Database\\Seeders\\": "tests/database/seeders",
"Php\\Support\\Laravel\\Tests\\TestClasses\\ServiceProviders\\": "tests/TestClasses/ServiceProviders/src/"
}
},
"config": {
"allow-plugins": {
"ergebnis/composer-normalize": true
},
"lock": false,
"sort-packages": true
},
"extra": {
"composer-normalize": {
"indent-size": 2,
"indent-style": "space"
},
"laravel": {
"providers": [
"Php\\Support\\Laravel\\ServiceProvider"
]
}
},
"scripts": {
"cs-fix": "@php ./vendor/bin/phpcbf",
"phpcs": "@php ./vendor/bin/phpcs",
"phpstan": "@php ./vendor/bin/phpstan analyze -c phpstan.neon --no-progress --ansi",
"phpunit": "@php ./vendor/bin/phpunit --no-coverage --testdox --colors=always",
"phpunit-cover": "@php ./vendor/bin/phpunit --coverage-text",
"postversion": "git push && git push --tag",
"release": "@php ./vendor/bin/conventional-changelog --commit",
"release:major": [
"@php ./vendor/bin/conventional-changelog --major --commit",
"@postversion"
],
"release:minor": [
"@php ./vendor/bin/conventional-changelog --minor --commit",
"@postversion"
],
"release:patch": [
"@php ./vendor/bin/conventional-changelog --patch --commit",
"@postversion"
],
"test": [
"@phpcs",
"@phpunit"
],
"test-cover": [
"@phpcs",
"@phpunit-cover"
]
}
}