-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
65 lines (65 loc) · 1.55 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
{
"name": "prettus/laravel-fiql-parser",
"description": "Laravel FIQL Parser",
"keywords": [
"fiql-parser",
"fiql",
"laravel"
],
"type": "library",
"autoload": {
"psr-4": {
"Prettus\\Laravel\\FIQL\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"authors": [
{
"name": "Anderson Andrade",
"homepage": "https://andersonandra.de",
"email": "contato@andersonandra.de",
"role": "Developer"
}
],
"scripts": {
"test": "phpunit",
"test:unit": "@test",
"test:ci": "@test",
"test:coverage": "@test --coverage-clover coverage.clover",
"format": "php-cs-fixer fix ./src",
"format:tests": "php-cs-fixer fix ./tests"
},
"homepage": "https://github.com/andersao/laravel-fiql-parser",
"support": {
"email": "contato@andersonandra.de",
"issues": "https://github.com/andersao/laravel-fiql-parser/issues",
"wiki": "https://github.com/andersao/laravel-fiql-parser",
"source": "https://github.com/andersao/laravel-fiql-parser",
"docs": "https://github.com/andersao/laravel-fiql-parser"
},
"license": "MIT",
"require": {
"illuminate/support": "^8.64",
"prettus/php-fiql-parser": "dev-main"
},
"config": {
"preferred-install": "dist",
"sort-packages": true
},
"extra": {
"laravel": {
"providers": [
"Prettus\\Laravel\\FIQL\\FIQLServiceProvider"
]
}
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^3.2",
"orchestra/testbench": "^6.21",
"phpunit/phpunit": "^9.5"
}
}