-
-
Notifications
You must be signed in to change notification settings - Fork 2
/
Copy pathcomposer.json
70 lines (70 loc) · 1.99 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
{
"name": "tastyigniter/ti-ext-translate",
"type": "tastyigniter-package",
"description": "Allows multilingual websites with TastyIgniter, making it easy to translate menu items.",
"license": "MIT",
"authors": [
{
"name": "Sam Poyigi",
"email": "[email protected]"
}
],
"require": {
"tastyigniter/core": "^v4.0"
},
"require-dev": {
"larastan/larastan": "^2.4",
"laravel/pint": "^1.2",
"pestphp/pest-plugin-laravel": "^3.0",
"rector/rector": "^1.2",
"sampoyigi/testbench": "^1.0"
},
"autoload": {
"psr-4": {
"Igniter\\Translate\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Igniter\\Translate\\Tests\\": "tests/"
}
},
"extra": {
"tastyigniter-extension": {
"code": "igniter.translate",
"name": "Translate",
"icon": {
"class": "fa fa-language",
"backgroundColor": "#7BE4FF",
"color": "#198BA6"
},
"homepage": "https://github.com/tastyigniter/ti-ext-translate"
},
"branch-alias": {
"dev-master": "4.0.x-dev"
}
},
"minimum-stability": "dev",
"prefer-stable": true,
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true,
"php-http/discovery": true,
"composer/installers": true
},
"sort-packages": true
},
"scripts": {
"test": "vendor/bin/pest --compact",
"test-coverage": "vendor/bin/pest --coverage --exactly=100 --compact",
"type-coverage": "vendor/bin/pest --type-coverage --min=100",
"format": "vendor/bin/pint",
"refactor": "vendor/bin/rector process --dry-run",
"static": "vendor/bin/phpstan analyse --ansi --memory-limit 1056M",
"test-suite": [
"@refactor",
"@static",
"@test-coverage"
]
}
}