Skip to content
This repository has been archived by the owner on Sep 19, 2018. It is now read-only.

Commit

Permalink
Update readme and composer.json
Browse files Browse the repository at this point in the history
Signed-off-by: crynobone <crynobone@gmail.com>
  • Loading branch information
crynobone committed Aug 20, 2015
1 parent 04e24d7 commit 34457ca
Show file tree
Hide file tree
Showing 2 changed files with 48 additions and 46 deletions.
18 changes: 10 additions & 8 deletions README.md
@@ -1,14 +1,16 @@
Resources Component for Orchestra Platform
==============

[![Join the chat at https://gitter.im/orchestral/platform/components](https://badges.gitter.im/Join%20Chat.svg)](https://gitter.im/orchestral/platform/components?utm_source=badge&utm_medium=badge&utm_campaign=pr-badge&utm_content=badge)

Resources Component is an optional adhoc routing manager that allow extension developer to add CRUD interface without touching Orchestra Platform 2. The idea is to allow controllers to be map to specific URL in Orchestra Platform Administrator Interface.

[![Latest Stable Version](https://img.shields.io/github/release/orchestral/resources.svg?style=flat)](https://packagist.org/packages/orchestra/resources)
[![Total Downloads](https://img.shields.io/packagist/dt/orchestra/resources.svg?style=flat)](https://packagist.org/packages/orchestra/resources)
[![MIT License](https://img.shields.io/packagist/l/orchestra/resources.svg?style=flat)](https://packagist.org/packages/orchestra/resources)
[![Build Status](https://img.shields.io/travis/orchestral/resources/3.1.svg?style=flat)](https://travis-ci.org/orchestral/resources)
[![Coverage Status](https://img.shields.io/coveralls/orchestral/resources/3.1.svg?style=flat)](https://coveralls.io/r/orchestral/resources?branch=3.1)
[![Scrutinizer Quality Score](https://img.shields.io/scrutinizer/g/orchestral/resources/3.1.svg?style=flat)](https://scrutinizer-ci.com/g/orchestral/resources/)
[![Latest Stable Version](https://img.shields.io/github/release/orchestral/resources.svg?style=flat-square)](https://packagist.org/packages/orchestra/resources)
[![Total Downloads](https://img.shields.io/packagist/dt/orchestra/resources.svg?style=flat-square)](https://packagist.org/packages/orchestra/resources)
[![MIT License](https://img.shields.io/packagist/l/orchestra/resources.svg?style=flat-square)](https://packagist.org/packages/orchestra/resources)
[![Build Status](https://img.shields.io/travis/orchestral/resources/3.1.svg?style=flat-square)](https://travis-ci.org/orchestral/resources)
[![Coverage Status](https://img.shields.io/coveralls/orchestral/resources/3.1.svg?style=flat-square)](https://coveralls.io/r/orchestral/resources?branch=3.1)
[![Scrutinizer Quality Score](https://img.shields.io/scrutinizer/g/orchestral/resources/3.1.svg?style=flat-square)](https://scrutinizer-ci.com/g/orchestral/resources/)

## Table of Content

Expand Down Expand Up @@ -61,7 +63,7 @@ Add `Orchestra\Resources\ResourcesServiceProvider` service provider in `config/a

// ...

'Orchestra\Resources\ResourcesServiceProvider',
Orchestra\Resources\ResourcesServiceProvider::class,
],
```

Expand All @@ -74,7 +76,7 @@ You might want to add `Orchestra\Support\Facades\Resources` to class aliases in

// ...

'Resources' => 'Orchestra\Support\Facades\Resources',
'Resources' => Orchestra\Support\Facades\Resources::class,
],
```

Expand Down
76 changes: 38 additions & 38 deletions composer.json
@@ -1,40 +1,40 @@
{
"name": "orchestra/resources",
"description": "Resources Component for Orchestra Platform",
"homepage": "http://orchestraplatform.com/docs/latest/components/resources/",
"keywords": ["orchestra-platform", "orchestral", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "crynobone@gmail.com",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Resources\\" : "src/"
}
},
"require": {
"php": ">=5.5.0",
"orchestra/routing": "~3.1.0",
"orchestra/support-facades": "~3.1.0"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"illuminate/events": "~5.1.0",
"illuminate/http": "~5.1.0",
"orchestra/facile": "~3.1.0"
},
"suggest": {
"laravel/framework": "Allow using orchestra/resources component outside of Orchestra Platform (~5.1).",
"orchestra/foundation": "Allow using orchestra/resources with Orchestra Platform (~3.1)."
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
}
},
"minimum-stability": "dev"
"name": "orchestra/resources",
"description": "Resources Component for Orchestra Platform",
"homepage": "http://orchestraplatform.com/docs/latest/components/resources/",
"keywords": ["orchestra-platform", "orchestral", "laravel"],
"license": "MIT",
"authors": [
{
"name": "Mior Muhammad Zaki",
"email": "crynobone@gmail.com",
"homepage": "https://github.com/crynobone"
}
],
"autoload": {
"psr-4": {
"Orchestra\\Resources\\" : "src/"
}
},
"require": {
"php": ">=5.5.0",
"orchestra/routing": "~3.1.0",
"orchestra/support-facades": "~3.1.0"
},
"require-dev": {
"mockery/mockery": "0.9.*",
"illuminate/events": "~5.1.0",
"illuminate/http": "~5.1.0",
"orchestra/facile": "~3.1.0"
},
"suggest": {
"laravel/framework": "Allow using orchestra/resources component outside of Orchestra Platform (~5.1).",
"orchestra/foundation": "Allow using orchestra/resources with Orchestra Platform (~3.1)."
},
"extra": {
"branch-alias": {
"dev-master": "3.2-dev"
}
},
"minimum-stability": "dev"
}

0 comments on commit 34457ca

Please sign in to comment.