-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
49 lines (49 loc) · 1.05 KB
/
composer.json
File metadata and controls
49 lines (49 loc) · 1.05 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
{
"name": "done-super-app/queryoption",
"type": "project",
"description": "Package to help with filtering/search/sort in queries",
"keywords": [
"query",
"filtering",
"search",
"sort"
],
"license": [
"MIT"
],
"require": {
"php": "^7.4 || ^8.0"
},
"require-dev": {
"pestphp/pest": "^1.21",
"squizlabs/php_codesniffer": "^3.6"
},
"autoload": {
"psr-4": {
"DoneSuperApp\\QueryOption\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "Tests/"
}
},
"suggest": {
"symfony/http-foundation": "to easilly work with http requests",
"illuminate/http": "if you're using Laravel framework",
"illuminate/support": "for the Laravel integration",
"illuminate/pipeline": "for the Laravel integration"
},
"config": {
"allow-plugins": {
"pestphp/pest-plugin": true
}
},
"scripts": {
"test": [
"composer validate --no-interaction",
"./vendor/bin/pest",
"./vendor/bin/phpcs --standard=PSR2 --encoding=utf-8 --extensions=php src/*"
]
}
}