Skip to content

Commit f48c23d

Browse files
committed
add composer.json
1 parent 4bc960c commit f48c23d

File tree

3 files changed

+37
-0
lines changed

3 files changed

+37
-0
lines changed

CHANGELOG.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
# CHANGELOG
2+
3+
## 0.0.2 - 2016-08-06
4+
5+
Init

composer.json

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
{
2+
"name": "smi2/phpClickHouse",
3+
"type": "library",
4+
"version" : "0.0.2",
5+
"description": "php ClickHouse HTTP client library",
6+
"keywords": ["clickhouse", "driver", "client", "curl", "http", "HTTP client"],
7+
"homepage": "https://github.com/smi2/phpClickHouse",
8+
"license": "MIT",
9+
"authors": [
10+
{
11+
"name": "Igor Strykhar",
12+
"email": "[email protected]",
13+
"homepage": "https://github.com/isublimity"
14+
}
15+
],
16+
"require": {
17+
"php": ">=5.5.0",
18+
"ext-curl": "*"
19+
},
20+
"require-dev": {
21+
"ext-curl": "*",
22+
"phpunit/phpunit": ">=5.4.6"
23+
},
24+
"autoload": {
25+
"files": ["include.php"]
26+
},
27+
"autoload-dev": {
28+
"files": ["include.php","tests/test_functions.php"]
29+
}
30+
}

tests/test_functions.php

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,2 @@
1+
<?php
2+
// test_functions.php

0 commit comments

Comments
 (0)