-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
75 lines (75 loc) · 1.75 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
{
"name": "reliqarts/laravel-common",
"description": "Reliq Arts' base/common classes and functions for Laravel.",
"keywords": [
"laravel",
"base",
"simple",
"common",
"helpers",
"functions",
"global"
],
"type": "package",
"license": "MIT",
"authors": [
{
"name": "Reliq",
"email": "[email protected]"
}
],
"require": {
"php": "^8.2",
"illuminate/support": "^11.0",
"monolog/monolog": "^3.5",
"ext-json": "*",
"spatie/laravel-sitemap": "^7.0",
"anhskohbo/no-captcha": "^3.1||dev-master"
},
"require-dev": {
"roave/security-advisories": "dev-latest",
"phpunit/phpunit": "^11.0",
"phpro/grumphp": "^2.0",
"phpspec/prophecy-phpunit": "^2.0",
"orchestra/testbench": "^9.0",
"laravel/pint": "^1.13",
"yieldstudio/grumphp-laravel-pint": "^1.0"
},
"replace": {
"reliqarts/laravel-non-www": "*"
},
"autoload": {
"psr-4": {
"ReliqArts\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ReliqArts\\Tests\\": "tests/"
}
},
"scripts": {
"test": "phpunit",
"test:ci": "phpunit --coverage-clover=./build/coverage.xml",
"test:unit": "phpunit --testsuite=Unit --coverage-clover=./build/coverage.xml",
"test:integration": "phpunit --testsuite=Integration --coverage-clover=./build/coverage.xml"
},
"config": {
"allow-plugins": {
"phpro/grumphp": true
},
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"ReliqArts\\ServiceProvider"
],
"aliases": {
"CommonCacheHelper": "ReliqArts\\Helper\\Cache",
"CommonDateHelper": "ReliqArts\\Helper\\Date",
"CommonVersionProvider": "ReliqArts\\Service\\VersionProvider"
}
}
}
}