forked from flat3/lodata
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
58 lines (58 loc) · 1.8 KB
/
composer.json
File metadata and controls
58 lines (58 loc) · 1.8 KB
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
{
"name": "flat3/lodata",
"description": "OData v4.01 Producer for Laravel",
"keywords": ["odata", "laravel"],
"homepage": "https://github.com/flat3/lodata",
"license": "MIT",
"authors": [
{
"name": "Chris Lloyd",
"email": "chrislloyd403@gmail.com"
}
],
"autoload": {
"psr-4": {
"Flat3\\Lodata\\": "src/",
"Flat3\\Lodata\\Tests\\": "tests/"
}
},
"require": {
"doctrine/dbal": "^2",
"php": "^7.3|^8.0",
"illuminate/bus": "^6.0|^7.0|^8.0",
"illuminate/database": "^6.20.14|^7.30.4|^8.24.0",
"illuminate/events": "^6.0|^7.0|^8.0",
"illuminate/http": "^6.0|^7.0|^8.0",
"illuminate/queue": "^6.0|^7.0|^8.0",
"illuminate/routing": "^6.0|^7.0|^8.0",
"ext-simplexml": "*",
"ext-json": "*",
"ext-dom": "*",
"ext-pdo": "*",
"guzzlehttp/guzzle": "^6.5.5|^7.0.1"
},
"extra": {
"laravel": {
"providers": [
"Flat3\\Lodata\\ServiceProvider"
],
"aliases": {
"Lodata": "Flat3\\Lodata\\Facades\\Lodata"
}
}
},
"require-dev": {
"phpunit/phpunit": "^8.4|^9.0",
"orchestra/testbench": "^6.0",
"spatie/phpunit-snapshot-assertions": "^4.2",
"phpstan/phpstan": "^0.12.54"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"test": "vendor/bin/phpunit",
"coverage": "XDEBUG_MODE=coverage vendor/bin/phpunit --coverage-clover coverage.xml",
"analyse": "vendor/bin/phpstan analyse src tests --memory-limit 1G --level 1",
"doc": "phpdoc --setting=graphs.enabled=false --setting=guides.enabled=true --defaultpackagename=Flat3\\\\Lodata"
}
}