Squashed 'Modules/Media/' content from commit 551ec60
git-subtree-dir: Modules/Media git-subtree-split: 551ec6006744ecfc3bbe43b4f650113746e25aef
parents
Showing
.gitignore
0 → 100644
.php_cs
0 → 100644
.sensiolabs.yml
0 → 100644
.travis.yml
0 → 100644
Assets/css/dropzone.css
0 → 100644
Assets/images/spritemap.png
0 → 100644
9.97 KB
34.8 KB
Assets/js/dropzone.js
0 → 100644
Assets/js/init-dropzone.js
0 → 100644
Assets/js/media-partial.js
0 → 100644
Config/assets.php
0 → 100644
Config/config.php
0 → 100644
Config/permissions.php
0 → 100644
Contracts/DeletingMedia.php
0 → 100644
Contracts/StoringMedia.php
0 → 100644
Entities/File.php
0 → 100644
Entities/FileTranslation.php
0 → 100644
Events/FileWasLinked.php
0 → 100644
Events/FileWasUnlinked.php
0 → 100644
Events/FileWasUploaded.php
0 → 100644
Helpers/FileHelper.php
0 → 100644
Http/apiRoutes.php
0 → 100644
Http/backendRoutes.php
0 → 100644
Image/Facade/Imagy.php
0 → 100644
Image/Imagy.php
0 → 100644
Image/Thumbnail.php
0 → 100644
Image/ThumbnailManager.php
0 → 100644
Jobs/CreateThumbnails.php
0 → 100644
Jobs/RebuildThumbnails.php
0 → 100644
LICENSE.md
0 → 100644
Services/FileService.php
0 → 100644
Sidebar/SidebarExtender.php
0 → 100644
Tests/FileHelperTest.php
0 → 100644
Tests/FileRepositoryTest.php
0 → 100644
Tests/FileTest.php
0 → 100644
852 KB
Tests/ImagyTest.php
0 → 100644
Tests/MediaPathTest.php
0 → 100644
Tests/MediaTestCase.php
0 → 100644
Tests/ThumbnailTest.php
0 → 100644
ValueObjects/MediaPath.php
0 → 100644
changelog.yml
0 → 100644
composer.json
0 → 100644
| { | ||
| "name": "asgardcms/media-module", | ||
| "type": "asgard-module", | ||
| "description": "Media module for AsgardCMS. Handles the media library.", | ||
| "keywords": [ | ||
| "asgardcms", | ||
| "media", | ||
| "files", | ||
| "library", | ||
| "thumbnails", | ||
| "filters" | ||
| ], | ||
| "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/Media" | ||
| }, | ||
| "require": { | ||
| "php": ">=5.5", | ||
| "composer/installers": "~1.0", | ||
| "intervention/image": "^2.3", | ||
| "asgardcms/core-module": "~2.0", | ||
| "asgardcms/tag-module": "^1.0@dev", | ||
| "guzzlehttp/psr7": "^1.3" | ||
| }, | ||
| "require-dev": { | ||
| "phpunit/phpunit": "~4.0", | ||
| "orchestra/testbench": "3.3.*", | ||
| "league/flysystem-aws-s3-v3": "~1.0", | ||
| "mockery/mockery": "^0.9.5", | ||
| "phpro/grumphp": "^0.9.1", | ||
| "friendsofphp/php-cs-fixer": "^1.11", | ||
| "doctrine/dbal": "^2.5" | ||
| }, | ||
| "autoload-dev": { | ||
| "psr-4": { | ||
| "Modules\\Media\\": ".", | ||
| "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