-
Notifications
You must be signed in to change notification settings - Fork 1
Expand file tree
/
Copy pathcomposer.json
More file actions
61 lines (61 loc) · 1.65 KB
/
composer.json
File metadata and controls
61 lines (61 loc) · 1.65 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
59
60
61
{
"name": "simplesquid/saloonphp-odata",
"description": "A Saloon plugin providing a fluent, version-aware (v3 + v4) OData query builder and server-driven paginator.",
"keywords": [
"simplesquid",
"saloon",
"saloonphp",
"odata",
"odata-v3",
"odata-v4",
"query-builder",
"exact-online"
],
"homepage": "https://github.com/simplesquid/saloonphp-odata",
"license": "MIT",
"authors": [
{
"name": "Matthew Poulter",
"email": "matthew.poulter@simplesquid.co.za",
"homepage": "https://simplesquid.co.za/",
"role": "Developer"
}
],
"require": {
"php": "^8.4",
"saloonphp/saloon": "^4.0"
},
"require-dev": {
"laravel/pint": "^1.18",
"pestphp/pest": "^3.0",
"pestphp/pest-plugin-arch": "^3.0",
"phpstan/extension-installer": "^1.4",
"phpstan/phpstan": "^2.0",
"saloonphp/pagination-plugin": "^2.3"
},
"autoload": {
"psr-4": {
"SimpleSquid\\SaloonOData\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"SimpleSquid\\SaloonOData\\Tests\\": "tests/"
}
},
"scripts": {
"test": "vendor/bin/pest",
"test-coverage": "vendor/bin/pest --coverage",
"analyse": "vendor/bin/phpstan analyse",
"format": "vendor/bin/pint"
},
"config": {
"sort-packages": true,
"allow-plugins": {
"pestphp/pest-plugin": true,
"phpstan/extension-installer": true
}
},
"minimum-stability": "stable",
"prefer-stable": true
}