PHP Classes

PHP Companies Lookup: Find companies in the Companies House Database

Recommend this page to a friend!
  Info   View files Example   View files View files (10)   DownloadInstall with Composer Download .zip   Reputation   Support forum   Blog (1)    
Ratings Unique User Downloads Download Rankings
Not yet rated by the usersTotal: 53 All time: 10,480 This week: 257Up
Version License PHP version Categories
companieslookup 1.0.0GNU General Publi...7Web services, PHP 7, Business
Description 

Author

This package is specific mainly for applications used in United Kingdom .

This package can be used to find companies in the Companies House Database.

It can send HTTP requests to the Companies House Database API to find companies from the United Kingdom by their name or identifier.

The class can return company details like the name, type, status, address and date of creation.

Innovation Award
PHP Programming Innovation award nominee
February 2021
Number 7
Many business need to support other companies in a secure way. Usually they need to verify if those other companies are legitimate and are active.

This package provides a solution to perform such kind of verification in quick and easy way by accessing the Companies House Database API available for companies in the United Kingdom.

This way, this package can simplify the process of companies work with other companies with greater security.

Manuel Lemos
Picture of Pierre-Henry Soria
  Performance   Level  
Name: Pierre-Henry Soria <contact>
Classes: 43 packages by
Country: United Kingdom
Age: 32
All time rank: 39016 in United Kingdom
Week rank: 2 Up1 in United Kingdom Up
Innovation award
Innovation award
Nominee: 16x

Winner: 3x

Example

#!/usr/bin/env php
<?php
/**
* @author Pierre-Henry Soria <pierrehenrysoria@gmail.com>
* @copyright (c) 2017, Pierre-Henry Soria. All Rights Reserved.
* @license GNU General Public License; <https://www.gnu.org/licenses/gpl-3.0.en.html>
 */
require __DIR__ . '/../vendor/autoload.php';

// PHP 7+
use Monolog\{
   
Logger, Handler\StreamHandler
};
use
Symfony\Component\Console\Application;
use
Dotenv\Dotenv;
use
Netsensia\CompaniesHouse\Api\Client\Client;

use
PH7\CompaniesLookup\{
   
Search,
   
Turnover,
   
Directors
};

$oDotEnv = new Dotenv(dirname(__DIR__));
$oDotEnv->load();

$oLogger = new Logger('CompaniesLookup');
$oLogger->pushHandler(new StreamHandler("php://stdout", Logger::DEBUG));

$oApp = new Application(
   
"Welcome to \"Companies House\" lookup console interface.\n\n",
   
'1.0.0'
);

$oClient = new Client(getenv('COMPANIES_HOUSE_API_KEY'));
$aCommands = [
    new
Search($oClient)
];

$oApp->addCommands($aCommands);

$oApp->run();


  Files folder image Files  
File Role Description
Files folder imageassets (2 files)
Files folder imagebin (1 file)
Files folder imagesrc (1 file)
Files folder imagetests (1 file)
Accessible without login Plain text file .env.example Data Auxiliary data
Accessible without login Plain text file companies Data Auxiliary data
Accessible without login Plain text file composer.json Data Auxiliary data
Accessible without login Plain text file phpunit.xml.dist Data Auxiliary data
Accessible without login Plain text file README.md Doc. Documentation

  Files folder image Files  /  assets  
File Role Description
  Accessible without login Image file companies-lookup-example.png Data Auxiliary data
  Accessible without login Image file CompaniesHouseLookup.gif Icon Icon image

  Files folder image Files  /  bin  
File Role Description
  Accessible without login Plain text file companies Example Example script

  Files folder image Files  /  src  
File Role Description
  Plain text file Search.php Class Class source

  Files folder image Files  /  tests  
File Role Description
  Plain text file SearchTest.php Class Class source

 Version Control Unique User Downloads Download Rankings  
 100%
Total:53
This week:0
All time:10,480
This week:257Up