-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.19 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.19 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
{
"name": "silverstripe/silverstripe-search-client-php",
"description": "A PHP client to support HTTP requests to the Silverstripe Search API",
"license": "BSD-3-Clause",
"homepage": "https://github.com/silverstripeltd/silverstripe-search-client-php",
"authors": [
{
"name": "Bernie Hamlin",
"email": "bernie@silverstripe.com"
},
{
"name": "Christopher David Penny",
"email": "chris.penny@gmail.com"
}
],
"require": {
"php": "^8.1",
"jane-php/open-api-runtime": "^7.9",
"nyholm/psr7": "^1.8"
},
"require-dev": {
"jane-php/jane-php": "dev-next",
"friendsofphp/php-cs-fixer": "^3.75"
},
"repositories": [
{
"type": "vcs",
"url": "https://github.com/janephp/janephp.git"
}
],
"extra": {
"symfony": {
"allow-contrib": "true"
}
},
"config": {
"allow-plugins": {
"composer/installers": true,
"php-http/discovery": true
}
},
"autoload": {
"psr-4": {
"Silverstripe\\Search\\Client\\": "src/"
}
}
}