Squashed 'Modules/Setting/' content from commit 1b17401
git-subtree-dir: Modules/Setting git-subtree-split: 1b17401372deb66e19cfc0ed503ae20598f58605
parents
Showing
.gitignore
0 → 100644
.php_cs
0 → 100644
.sensiolabs.yml
0 → 100644
.travis.yml
0 → 100644
Blade/SettingDirective.php
0 → 100644
Config/config.php
0 → 100644
Config/permissions.php
0 → 100644
Contracts/Setting.php
0 → 100644
Entities/.gitkeep
0 → 100644
Entities/Setting.php
0 → 100644
Events/SettingWasCreated.php
0 → 100644
Events/SettingWasUpdated.php
0 → 100644
Facades/Settings.php
0 → 100644
Http/Requests/.gitkeep
0 → 100644
Http/backendRoutes.php
0 → 100644
LICENSE.md
0 → 100644
Repositories/.gitkeep
0 → 100644
Resources/views/.gitkeep
0 → 100644
Sidebar/SidebarExtender.php
0 → 100644
Support/Settings.php
0 → 100644
Tests/BaseSettingTest.php
0 → 100644
Tests/SettingsTest.php
0 → 100644
changelog.yml
0 → 100644
composer.json
0 → 100644
| { | |||
| "name": "asgardcms/setting-module", | |||
| "type": "asgard-module", | |||
| "description": "Setting module for AsgardCMS. Handles all the site settings.", | |||
| "keywords": [ | |||
| "asgardcms", | |||
| "settings" | |||
| ], | |||
| "license": "MIT", | |||
| "authors": [ | |||
| { | |||
| "name": "Nicolas Widart", | |||
| "email": "info@asgardcms.com", | |||
| "role": "Developer" | |||
| } | |||
| ], | |||
| "support": { | |||
| "email": "support@asgardcms.com", | |||
| "issues": "https://github.com/AsgardCms/Platform/issues", | |||
| "source": "https://github.com/AsgardCms/Setting" | |||
| }, | |||
| "require": { | |||
| "php": ">=5.6", | |||
| "composer/installers": "~1.0", | |||
| "asgardcms/core-module": "~2.0", | |||
| "doctrine/dbal": "~2.5" | |||
| }, | |||
| "require-dev": { | |||
| "phpunit/phpunit": "~4.0", | |||
| "orchestra/testbench": "3.3.*", | |||
| "phpro/grumphp": "^0.9.1", | |||
| "friendsofphp/php-cs-fixer": "^1.11" | |||
| }, | |||
| "autoload-dev": { | |||
| "psr-4": { | |||
| "Modules\\Setting\\": ".", | |||
| "Modules\\": "Modules/" | |||
| } | |||
| }, | |||
| "extra": { | |||
| "branch-alias": { | |||
| "dev-2.0": "2.0.x-dev" | |||
| } | |||
| }, | |||
| "minimum-stability": "dev", | |||
| "prefer-stable": true | |||
| } |
grumphp.yml
0 → 100644
helpers.php
0 → 100644
module.json
0 → 100644
phpunit.xml
0 → 100644
readme.md
0 → 100644
Please register or sign in to comment