-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (35 loc) · 891 Bytes
/
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
{
"name": "nextcloud/dashboardsearchbar",
"description": "A search bar widget for the home screen to directly search within search engines like Google and DuckDuckGo.",
"license": "MIT",
"authors": [
{
"name": "Jelmer Overeem",
"email": "[email protected]",
"homepage": "https://github.com/Jelmerovereem"
}
],
"autoload": {
"psr-4": {
"OCA\\SearchBar\\": "lib/"
}
},
"scripts": {
"lint": "find . -name \\*.php -not -path './vendor/*' -not -path './vendor-bin/*' -not -path './build/*' -print0 | xargs -0 -n1 php -l"
},
"require": {
"php": "^8.1",
"guzzlehttp/guzzle": "^7.0"
},
"require-dev": {
"nextcloud/ocp": "dev-stable29",
"roave/security-advisories": "dev-latest"
},
"config": {
"optimize-autoloader": true,
"sort-packages": true,
"platform": {
"php": "8.1"
}
}
}