-
Notifications
You must be signed in to change notification settings - Fork 15
/
Copy pathcomposer.json
80 lines (80 loc) · 2.47 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
{
"name": "longman/laravel-multilang",
"type": "library",
"description": "Package to integrate multi language (multi locale) functionality in Laravel 5.x",
"keywords": [
"locale",
"localization",
"translation",
"language",
"laravel",
"package",
"multilang"
],
"license": "MIT",
"homepage": "https://github.com/akalongman/laravel-multilang",
"support": {
"issues": "https://github.com/akalongman/laravel-multilang/issues",
"source": "https://github.com/akalongman/laravel-multilang"
},
"authors": [
{
"name": "Avtandil Kikabidze aka LONGMAN",
"email": "[email protected]",
"homepage": "https://longman.me",
"role": "Maintainer, Developer"
}
],
"require": {
"php": "^8.1.0",
"ext-mbstring": "*",
"symfony/yaml": "^6.0",
"symfony/translation": "^6.0",
"illuminate/console": "^10.0",
"illuminate/support": "^10.0",
"illuminate/database": "^10.0",
"illuminate/http": "^10.0"
},
"require-dev": {
"mockery/mockery": "~1.3",
"phpunit/phpunit": "~10.0",
"longman/php-code-style": "^10.0",
"orchestra/testbench": "^8.5"
},
"autoload": {
"psr-4": {
"Longman\\LaravelMultiLang\\": "src/MultiLang"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"sort-packages": true,
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
},
"extra": {
"laravel": {
"providers": [
"Longman\\LaravelMultiLang\\MultiLangServiceProvider"
],
"aliases": {
"MultiLang": "Longman\\LaravelMultiLang\\Facades\\MultiLang"
}
}
},
"scripts": {
"phpcs": "./vendor/bin/phpcs --standard=phpcs.xml -spn --encoding=utf-8 src/ tests/ --report-width=150",
"phpcbf": "./vendor/bin/phpcbf --standard=phpcs.xml -spn --encoding=utf-8 src/ tests/ --report-width=150",
"test": "./vendor/bin/phpunit -c phpunit.xml.dist",
"coverage-clover": "./vendor/bin/phpunit --stop-on-failure --coverage-clover build/logs/clover.xml",
"coverage-html": "./vendor/bin/phpunit --stop-on-failure --coverage-html build/coverage"
}
}