-
Notifications
You must be signed in to change notification settings - Fork 28
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
7 changed files
with
926 additions
and
49 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,45 +1,3 @@ | ||
# Some settings # | ||
################### | ||
|
||
# Compiled source # | ||
################### | ||
*.com | ||
*.class | ||
*.dll | ||
*.exe | ||
*.o | ||
*.so | ||
|
||
# Packages # | ||
############ | ||
# it's better to unpack these files and commit the raw source | ||
# git has its own built in compression methods | ||
*.7z | ||
*.dmg | ||
*.gz | ||
*.iso | ||
*.jar | ||
*.rar | ||
*.tar | ||
*.zip | ||
|
||
# Logs and databases # | ||
###################### | ||
*.log | ||
*.sql | ||
*.sqlite | ||
*.model | ||
*.txt | ||
|
||
# OS generated files # | ||
###################### | ||
.DS_Store* | ||
ehthumbs.db | ||
Icon? | ||
Thumbs.db | ||
|
||
# media # | ||
######### | ||
*.mp3 | ||
*.mp4 | ||
*.mid | ||
.DS_Store | ||
/vendor/ | ||
/build/ |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,6 +1,6 @@ | ||
<?php | ||
/** | ||
* schedule-ckip-test-driver.php | ||
* ckip-test-driver-schedule.php | ||
* | ||
* PHP version 5 | ||
* | ||
|
@@ -12,7 +12,13 @@ | |
* @link http://[email protected] | ||
*/ | ||
|
||
require_once "CKIPClient.php"; | ||
require_once "src/CKIPClient.php"; | ||
|
||
// change to yours | ||
define("CKIP_SERVER", "000.000.000.000"); | ||
define("CKIP_PORT", 0000); | ||
define("CKIP_USERNAME", "xxxxxx"); | ||
define("CKIP_PASSWORD", "xxxxxxxxx"); | ||
|
||
$ckip_client_obj = new CKIPClient( | ||
CKIP_SERVER, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -12,7 +12,13 @@ | |
* @link http://[email protected] | ||
*/ | ||
|
||
require_once "CKIPClient.php"; | ||
require_once "src/CKIPClient.php"; | ||
|
||
// change to yours | ||
define("CKIP_SERVER", "000.000.000.000"); | ||
define("CKIP_PORT", 0000); | ||
define("CKIP_USERNAME", "xxxxxx"); | ||
define("CKIP_PASSWORD", "xxxxxxxxx"); | ||
|
||
$ckip_client_obj = new CKIPClient( | ||
CKIP_SERVER, | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,19 @@ | ||
{ | ||
"name": "fukuball/ckip-client-php", | ||
"description": "中研院斷詞系統的 Client 端程式,讓有中文斷詞需求的研究者或程式人員可以專注於開發自己的核心演算法。", | ||
"require-dev": { | ||
"phpunit/phpunit": ">=3.7.0", | ||
"satooshi/php-coveralls": "dev-master" | ||
}, | ||
"license": "MIT", | ||
"authors": [ | ||
{ | ||
"name": "Fukuball Lin", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "stable", | ||
"require": { | ||
"php": ">= 5.3" | ||
} | ||
} |
Oops, something went wrong.