PHPackages                             idealley/cloudcms-laravel - 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. idealley/cloudcms-laravel

ActiveLibrary[API Development](/categories/api)

idealley/cloudcms-laravel
=========================

Package wrapping the cloudcms php sdk for laravel

v1.0.1(9y ago)1521MITPHPPHP &gt;=5.6.0

Since Jul 19Pushed 9y ago1 watchersCompare

[ Source](https://github.com/idealley/cloudcms-laravel)[ Packagist](https://packagist.org/packages/idealley/cloudcms-laravel)[ RSS](/packages/idealley-cloudcms-laravel/feed)WikiDiscussions master Synced 4w ago

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

Laravel Cloud CMS Wrapper
=========================

[](#laravel-cloud-cms-wrapper)

Here is the [PhP agnostic SDK](https://github.com/idealley/cloudcms-sdk)

Every thing is still very experimental and subject to CHANGE
============================================================

[](#every-thing-is-still-very-experimental-and-subject-to-change)

How to install:
---------------

[](#how-to-install)

`composer require idealley/cloudcms-laravel`

Publish the config with the command

`php artisan vendor:publish`

This will let you change few settings in the `app/config` folder.

How to use
----------

[](#how-to-use)

CC is a Laravel Facade.

to use it add `use CC;` at the top of your file.

You can get a children of a node like this (think category or list of blogs)

```
    $catnode = 'o:9a8195e6286a4f7b40ae';

    $nodes = CC::nodes()
            ->listChildren($catnode)
            ->addParams(['full' => 'true'])
            ->get();

```

Or a single node (for now we are getting it from a special slug field) like this:

```
    $node = CC::nodes()
                ->find($slug)
                ->addParams(['full' => 'true'])
                ->get();

```

You can chain paramas

```
    $node = CC::nodes()
                ->find($slug)
                ->addParams(['full' => 'true'])
                ->addParams(['metadata' => 'true'])
                ->get();

```

or pass them in a single array

```
                ->addParams(['full' => 'true', 'metadata' => 'true'])

```

You can get an image like this

```
    $path = 'Samples/Catalog/Products/';
    $img = CC::nodes()
                ->getImage($node['rows'][0]['_qname'])
                ->addParams(['name' => $node['rows'][0]['_features']['f:filename']['filename']])
                ->addParams(['size' => '400'])
                ->set();

```

There are many more methods you can use, check 'Node' class in the `cloudcms-sdk` to find everything that is available. Each method is documented with working query examples.

You can chain any params as per [the documentation](https://www.cloudcms.com/documentation/application-server/services/node-urls.html)

Do not forget to add these values in your .env file

```
    CC_CLIENT_KEY=
    CC_CLIENT_SECRET=
    CC_USERNAME=
    CC_PASSWORD=
    CC_CLIENT_KEY=
    CC_TOKEN_STORAGE_PATH=/storage/token
    CC_DEPLOYMENT_URL=

```

###  Health Score

27

—

LowBetter than 47% of packages

Maintenance20

Infrequent updates — may be unmaintained

Popularity11

Limited adoption so far

Community8

Small or concentrated contributor base

Maturity59

Maturing project, gaining track record

 Bus Factor1

Top contributor holds 100% of commits — single point of failure

How is this calculated?**Maintenance (25%)** — Last commit recency, latest release date, and issue-to-star ratio. Uses a 2-year decay window.

**Popularity (30%)** — Total and monthly downloads, GitHub stars, and forks. Logarithmic scaling prevents top-heavy scores.

**Community (15%)** — Contributors, dependents, forks, watchers, and maintainers. Measures real ecosystem engagement.

**Maturity (30%)** — Project age, version count, PHP version support, and release stability.

###  Release Activity

Cadence

Every ~77 days

Total

2

Last Release

3555d ago

### Community

Maintainers

![](https://www.gravatar.com/avatar/2eaacaa1c4f295b9f5656093b72a6827f291e712bd7615e586fa59d3175c33f7?d=identicon)[Idealley](/maintainers/Idealley)

---

Top Contributors

[![idealley](https://avatars.githubusercontent.com/u/917006?v=4)](https://github.com/idealley "idealley (13 commits)")

### Embed Badge

![Health badge](/badges/idealley-cloudcms-laravel/health.svg)

```
[![Health](https://phpackages.com/badges/idealley-cloudcms-laravel/health.svg)](https://phpackages.com/packages/idealley-cloudcms-laravel)
```

###  Alternatives

[exsyst/swagger

A php library to manipulate Swagger specifications

35816.3M7](/packages/exsyst-swagger)[hubspot/api-client

Hubspot API client

24015.5M18](/packages/hubspot-api-client)[pocketmine/bedrock-protocol

An implementation of the Minecraft: Bedrock Edition protocol in PHP

172437.8k11](/packages/pocketmine-bedrock-protocol)[botman/driver-telegram

Telegram driver for BotMan

94452.6k6](/packages/botman-driver-telegram)

PHPackages © 2026

[Directory](/)[Categories](/categories)[Trending](/trending)[Changelog](/changelog)[Analyze](/analyze)
