-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
54 lines (54 loc) · 1.57 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
{
"name": "wazza/dom-translate",
"description": "A Laravel Package that will use the build-in Blade Directive to define specific phrases for auto-translation before being rendered to the screen.",
"type": "library",
"require": {
"php": "^8.1",
"ext-json": "*",
"illuminate/support": "~10",
"guzzlehttp/guzzle": "^7.4"
},
"require-dev": {
"fakerphp/faker": "^1.20.0",
"phpunit/phpunit": "~10",
"orchestra/testbench": "~8",
"mockery/mockery": "^1.2",
"laravel/legacy-factories": "~1"
},
"license": "MIT",
"autoload": {
"psr-4": {
"Wazza\\DomTranslate\\": "src/"
},
"files": []
},
"autoload-dev": {
"psr-4": {
"Wazza\\DomTranslate\\": "src/",
"Wazza\\DomTranslate\\Tests\\": "tests/",
"Database\\Factories\\": "database/factories/",
"Database\\Seeders\\": "database/seeders/"
}
},
"extra": {
"laravel": {
"providers": [
"Wazza\\DomTranslate\\Providers\\DomTranslateServiceProvider"
],
"aliases": {
"DomTranslate": "Wazza\\DomTranslate\\Facades\\DomTranslate"
}
}
},
"authors": [{
"name": "Warren Coetzee",
"email": "warren.coetzee@gmail.com",
"homepage": "https://www.wazzac.dev"
}],
"scripts": {
"post-autoload-dump": [
"@php ./vendor/bin/testbench package:discover --ansi"
]
},
"minimum-stability": "stable"
}