Squashed 'Modules/Tag/' content from commit 531631d
git-subtree-dir: Modules/Tag git-subtree-split: 531631dd01d5cd55df6c50caddf04e43be0b0f90
parents
Showing
.gitignore
0 → 100644
.php_cs
0 → 100644
.scrutinizer.yml
0 → 100644
.sensiolabs.yml
0 → 100644
.travis.yml
0 → 100644
Blade/Facades/TagWidget.php
0 → 100644
Blade/TagWidget.php
0 → 100644
Config/config.php
0 → 100644
Config/permissions.php
0 → 100644
Entities/Tag.php
0 → 100644
Entities/TagTranslation.php
0 → 100644
Http/backendRoutes.php
0 → 100644
LICENSE.md
0 → 100644
Repositories/TagManager.php
0 → 100644
Resources/lang/en/tags.php
0 → 100644
Sidebar/SidebarExtender.php
0 → 100644
Tests/BaseTestCase.php
0 → 100644
Traits/TaggableTrait.php
0 → 100644
changelog.yml
0 → 100644
composer.json
0 → 100644
{ | |||
"name": "asgardcms/tag-module", | |||
"description": "Tag management in AsgardCMS", | |||
"type": "asgard-module", | |||
"license": "MIT", | |||
"keywords": [ | |||
"asgardcms", | |||
"tags", | |||
"taggable" | |||
], | |||
"authors": [ | |||
{ | |||
"name": "Nicolas Widart", | |||
"email": "n.widart@gmail.com" | |||
} | |||
], | |||
"require": { | |||
"php": ">=5.6", | |||
"composer/installers": "~1.0", | |||
"asgardcms/core-module": "~2.0" | |||
}, | |||
"require-dev": { | |||
"phpunit/phpunit": "~4.0", | |||
"orchestra/testbench": "3.3.*", | |||
"asgardcms/page-module": "~2.0", | |||
"phpro/grumphp": "^0.9.1", | |||
"friendsofphp/php-cs-fixer": "^1.11" | |||
}, | |||
"autoload": { | |||
"psr-4": { | |||
"Modules\\Tag\\": "" | |||
} | |||
}, | |||
"autoload-dev": { | |||
"psr-4": { | |||
"Modules\\Tag\\": ".", | |||
"Modules\\": "Modules/" | |||
} | |||
}, | |||
"extra": { | |||
"branch-alias": { | |||
"dev-master": "1.0.x-dev" | |||
} | |||
}, | |||
"minimum-stability": "dev", | |||
"prefer-stable": true | |||
} |
grumphp.yml
0 → 100644
module.json
0 → 100644
phpunit.xml.dist
0 → 100644
readme.md
0 → 100644
Please register or sign in to comment