Squashed 'Modules/Page/' content from commit 8cb3f2c
git-subtree-dir: Modules/Page git-subtree-split: 8cb3f2c12cd16a3f30a33c3f92cbbcd611294289
parents
Showing
.gitignore
0 → 100644
.php_cs
0 → 100644
.scrutinizer.yml
0 → 100644
.sensiolabs.yml
0 → 100644
.travis.yml
0 → 100644
Assets/.gitkeep
0 → 100644
Config/config.php
0 → 100644
Config/permissions.php
0 → 100644
Console/.gitkeep
0 → 100644
Database/Migrations/.gitkeep
0 → 100644
Database/Seeders/.gitkeep
0 → 100644
Entities/Page.php
0 → 100644
Entities/PageTranslation.php
0 → 100644
Events/PageWasCreated.php
0 → 100644
Events/PageWasDeleted.php
0 → 100644
Events/PageWasUpdated.php
0 → 100644
Http/Controllers/.gitkeep
0 → 100644
Http/Filters/.gitkeep
0 → 100644
Http/Requests/.gitkeep
0 → 100644
Http/backendRoutes.php
0 → 100644
Http/frontendRoutes.php
0 → 100644
LICENSE.md
0 → 100644
Providers/.gitkeep
0 → 100644
Services/FinderService.php
0 → 100644
Sidebar/SidebarExtender.php
0 → 100644
Tests/BasePageTest.php
0 → 100644
Tests/PagesTest.php
0 → 100644
changelog.yml
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "asgardcms/page-module", | |||
"type": "asgard-module", | |||
"description": "Page module for AsgardCMS. Page management.", | |||
"keywords": [ | |||
"asgardcms", | |||
"pages" | |||
], | |||
"license": "MIT", | |||
"authors": [ | |||
{ | |||
"name": "Nicolas Widart", | |||
"email": "info@asgardcms.com", | |||
"role": "Developer" | |||
} | |||
], | |||
"support": { | |||
"email": "support@asgardcms.com", | |||
"issues": "https://github.com/AsgardCms/Page/issues", | |||
"source": "https://github.com/AsgardCms/Page" | |||
}, | |||
"require": { | |||
"php": ">=5.6", | |||
"composer/installers": "~1.0", | |||
"asgardcms/core-module": "~2.0", | |||
"asgardcms/tag-module": "^1.0@dev" | |||
}, | |||
"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\\Page\\": ".", | |||
"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