-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
49 lines (49 loc) · 1.03 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
{
"name": "singlequote/laravel-text-parser",
"description": "A package to replace words in a text with values from a array. Also supports aliases and excluded properties",
"keywords": [
"SingleQuote",
"Text",
"Parser",
"Laravel"
],
"homepage": "https://github.com/SingleQuote/laravel-text-parser",
"license": "MIT",
"authors": [
{
"name": "Quotec",
"email": "[email protected]",
"homepage": "https://quotec.nl",
"role": "Owner"
}
],
"require": {
"php": "^8.0"
},
"require-dev": {},
"autoload": {
"psr-4": {
"SingleQuote\\LaravelTextParser\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"SingleQuote\\LaravelTextParser\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"test-coverage": "phpunit --coverage-html coverage"
},
"config": {
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [],
"aliases": {
"Parser": "SingleQuote\\LaravelTextParser\\ParserFacade"
}
}
}
}