Skip to content

Commit

Permalink
refactor and renamed to php-curl
Browse files Browse the repository at this point in the history
  • Loading branch information
Syl committed May 20, 2014
1 parent e388bdd commit f3ad85a
Show file tree
Hide file tree
Showing 19 changed files with 750 additions and 400 deletions.
4 changes: 3 additions & 1 deletion .gitignore
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1 +1,3 @@
vendor/
node_modules/
vendor/
.DS_Store
8 changes: 7 additions & 1 deletion .travis.yml
100644 → 100755
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,12 @@ language: php
php:
- 5.4
- 5.5
- 5.6
- hhvm

matrix:
allow_failures:
- php: hhvm

before_script:
- composer self-update
Expand All @@ -12,4 +18,4 @@ script:
- phpunit

notifications:
email: false
email: false
Empty file modified LICENSE
100644 → 100755
Empty file.
4 changes: 2 additions & 2 deletions README.md
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# PHP REST Client [![Build Status](https://travis-ci.org/sylouuu/php-rest-client.svg)](https://travis-ci.org/sylouuu/php-rest-client) [![GitHub version](https://badge.fury.io/gh/sylouuu%2Fphp-rest-client.svg)](http://badge.fury.io/gh/sylouuu%2Fphp-rest-client)
# PHP cURL [![Build Status](https://travis-ci.org/sylouuu/php-curl.svg)](https://travis-ci.org/sylouuu/php-curl) [![GitHub version](https://badge.fury.io/gh/sylouuu%2Fphp-curl.svg)](http://badge.fury.io/gh/sylouuu%2Fphp-curl) [![devDependency Status](https://david-dm.org/sylouuu/php-curl/dev-status.svg?theme=shields.io)](https://david-dm.org/sylouuu/php-curl#info=devDependencies)

## Requirements

Expand All @@ -12,7 +12,7 @@
```js
{
"require": {
"sylouuu/php-rest-client": "0.4.*"
"sylouuu/php-curl": "0.5.*"
}
}
```
Expand Down
20 changes: 12 additions & 8 deletions composer.json
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,19 +1,23 @@
{
"name": "sylouuu/php-rest-client",
"name": "sylouuu/php-curl",
"description": "Lightweight PHP cURL wrapper",
"type": "library",
"keywords": [
"rest",
"http",
"api"
],
"keywords": ["curl", "http"],
"minimum-stability": "stable",
"homepage": "https://github.com/sylouuu/php-rest-client",
"homepage": "https://github.com/sylouuu/php-curl",
"license": "MIT",
"support": {
"issues": "https://github.com/sylouuu/php-rest-client/issues"
"issues": "https://github.com/sylouuu/php-curl/issues"
},
"require": {
"php": ">5.3.0"
},
"require-dev": {
"phpunit/phpunit": "4.0.*"
},
"autoload": {
"psr-0": {
"sylouuu\\Curl": "src/"
}
}
}
14 changes: 7 additions & 7 deletions composer.lock
100644 → 100755

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

8 changes: 4 additions & 4 deletions phpunit.xml.dist
100644 → 100755
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
<?xml version="1.0" encoding="UTF-8"?>
<phpunit colors="true">
<phpunit colors="true" bootstrap="vendor/autoload.php">
<testsuites>
<testsuite name="RESTClient Test Suite">
<file>./tests/RESTClientTest.php</file>
<testsuite name="PHP cURL Test Suite">
<directory suffix=".php">./tests</directory>
</testsuite>
</testsuites>
</phpunit>
</phpunit>
250 changes: 0 additions & 250 deletions src/RESTClient.php

This file was deleted.

Loading

0 comments on commit f3ad85a

Please sign in to comment.