PHPackages                             adelynx/cpanel - PHPackages - PHPackages  [Skip to content](#main-content)[PHPackages](/)[Directory](/)[Categories](/categories)[Trending](/trending)[Leaderboard](/leaderboard)[Changelog](/changelog)[Analyze](/analyze)[Collections](/collections)[Log in](/login)[Sign up](/register)

1. [Directory](/)
2. /
3. [API Development](/categories/api)
4. /
5. adelynx/cpanel

AbandonedArchivedLibrary[API Development](/categories/api)

adelynx/cpanel
==============

cPanel API Package

1.0(12y ago)17529[1 issues](https://github.com/adelynx/cpanel/issues)PHPPHP &gt;=5.3.0

Since Jun 10Pushed 12y ago1 watchersCompare

[ Source](https://github.com/adelynx/cpanel)[ Packagist](https://packagist.org/packages/adelynx/cpanel)[ RSS](/packages/adelynx-cpanel/feed)WikiDiscussions master Synced 2mo ago

READMEChangelogDependencies (1)Versions (2)Used By (0)

cPanel API package for Laravel 4
================================

[](#cpanel-api-package-for-laravel-4)

cPanel API package for Laravel 4 by Adel KEDJOUR ()

Installation
------------

[](#installation)

Begin by installing this package through Composer. Edit your project's `composer.json` file to require `adelynx/cpanel`.

```
"require": {
	"laravel/framework": "4.0.*",
	"adelynx/cpanel": "dev-master"
}

```

Next, update Composer from the Terminal:

```
composer update

```

Once this operation completes add the service provider, aliases and configuration file.

1 - Provider: Open `app/config/app.php`, and add a new item to the providers array.

```
'Adelynx\Cpanel\CpanelServiceProvider'

```

2 - Aliases: Copy the file `Facades/Cpanel.php` into `/you_project_dir/vendor/laravel/framework/src/Illuminate/Support/Facades`, and add a new item to the aliases array.

```
'Cpanel' => 'Illuminate\Support\Facades\Cpanel',

```

3 - Cpanel Configuration: Copy the file `config/cpanel.php` into `you_project_dir/app/config/` folder, and add a new item to the aliases array.

```
'Cpanel' => 'Illuminate\Support\Facades\Cpanel',

```

The final step is to configure your `cpanel.php` config file:

```
