Squashed 'Modules/Workshop/' content from commit d5dce81
git-subtree-dir: Modules/Workshop git-subtree-split: d5dce818d580534029d6b8b3ac5f4f2222588e9e
parents
Showing
.gitignore
0 → 100644
.php_cs
0 → 100644
.sensiolabs.yml
0 → 100644
.travis.yml
0 → 100644
Config/config.php
0 → 100644
Config/permissions.php
0 → 100644
Http/apiRoutes.php
0 → 100644
Http/backendRoutes.php
0 → 100644
LICENSE.md
0 → 100644
Manager/ModuleManager.php
0 → 100644
Manager/ThemeManager.php
0 → 100644
Sidebar/SidebarExtender.php
0 → 100644
Tests/BaseTestCase.php
0 → 100644
Tests/ModuleScaffoldTest.php
0 → 100644
Tests/ThemeScaffoldTest.php
0 → 100644
changelog.yml
0 → 100644
composer.json
0 → 100644
{ | ||
"name": "asgardcms/workshop-module", | ||
"type": "asgard-module", | ||
"description": "Workshop module for AsgardCMS. Handles the activation of modules.", | ||
"keywords": [ | ||
"asgardcms", | ||
"workshop", | ||
"modules" | ||
], | ||
"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/Workshop" | ||
}, | ||
"require": { | ||
"php": ">=5.6", | ||
"composer/installers": "~1.0", | ||
"asgardcms/core-module": "~2.0", | ||
"nwidart/laravel-modules": "~0.1", | ||
"symfony/yaml": "^3.0" | ||
}, | ||
"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\\Workshop\\": ".", | ||
"Modules\\": "Modules/" | ||
} | ||
}, | ||
"extra": { | ||
"branch-alias": { | ||
"dev-2.0": "2.0.x-dev" | ||
} | ||
}, | ||
"minimum-stability": "dev", | ||
"prefer-stable": true | ||
} |
composers.php
0 → 100644
grumphp.yml
0 → 100644
module.json
0 → 100644
phpunit.xml
0 → 100644
readme.md
0 → 100644
Please register or sign in to comment