Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/pontusab/118100
A php-library to talk to the 118100 API. Get personal information such as phone number and adress information.
https://github.com/pontusab/118100
Last synced: about 2 months ago
JSON representation
A php-library to talk to the 118100 API. Get personal information such as phone number and adress information.
- Host: GitHub
- URL: https://github.com/pontusab/118100
- Owner: pontusab
- Created: 2013-09-04T07:07:18.000Z (over 11 years ago)
- Default Branch: master
- Last Pushed: 2013-09-04T08:44:56.000Z (over 11 years ago)
- Last Synced: 2023-04-05T09:58:27.016Z (almost 2 years ago)
- Homepage: http://utveckling.118100.se/node/3
- Size: 121 KB
- Stars: 3
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
## Installation
Follow these steps:
* Get your api-key by submit you phone number: http://utveckling.118100.se/node/10
* [Download the latest release](https://github.com/pontusab/118100/archive/master.zip).
* Clone the repo: `git clone git://github.com/pontusab/118100.git`.
* Install via Composer in your project: `curl -s http://getcomposer.org/installer | php`
* Install 118100: `php composer.phar install`
* Autoload 118100:```
require 'vendor/autoload.php';use HundraArtonHundra\HundraArtonHundra as HundraArtonHundra;
HundraArtonHundra::$apiKey = '';
$HundraArtonHundra = new HundraArtonHundra;
$response = $HundraArtonHundra->search('Your name or phonenumber');
print_r( $response );
```## Authors
**Pontus Abrahamsson**
+ [http://twitter.com/pontusab](http://twitter.com/pontusab)
+ [http://github.com/pontusab](http://github.com/pontusab)## Copyright and license
Copyright 2013 Pontus Abrahamsson.
Licensed under the Apache License, Version 2.0 (the "License");
you may not use this work except in compliance with the License.
You may obtain a copy of the License in the LICENSE file, or at:[http://www.apache.org/licenses/LICENSE-2.0](http://www.apache.org/licenses/LICENSE-2.0)
Unless required by applicable law or agreed to in writing, software
distributed under the License is distributed on an "AS IS" BASIS,
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
See the License for the specific language governing permissions and
limitations under the License.