forked from apiton/aerospike-client-php
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
35 lines (34 loc) · 1.07 KB
/
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
{
"name": "aerospike/aerospike-client-php",
"description": "The Aerospike PHP client as a C-extension for PHP",
"keywords": ["extension","database","aerospike"],
"homepage": "http://www.aerospike.com/docs/client/php/",
"license": "Apache-2.0",
"authors": [
{
"name": "Aerospike",
"homepage": "http://www.aerospike.com"
},
{
"name": "Contributors",
"homepage": "https://github.com/aerospike/aerospike-client-php/graphs/contributors"
}
],
"support": {
"issues": "https://github.com/aerospike/aerospike-client-php/issues?state=open",
"forum": "http://discuss.aerospike.com/category/client-libraries/php-client",
"source": "https://github.com/aerospike/aerospike-client-php"
},
"require": {
"php": "~5.3"
},
"autoload": {
"psr-4": {
"Aerospike\\": "src/"
}
},
"scripts": {
"post-install-cmd": ["cd src/aerospike && ./build.sh"],
"post-update-cmd": ["cd src/aerospike && ./build.sh"]
}
}