Skip to content

Commit

Permalink
Merge pull request #123 from talvbansal/feature/bootstrap4
Browse files Browse the repository at this point in the history
Feature/bootstrap4
  • Loading branch information
talvbansal authored Oct 7, 2020
2 parents 068e3d2 + d665b8e commit 233d5ac
Show file tree
Hide file tree
Showing 23 changed files with 4,212 additions and 2,932 deletions.
12 changes: 12 additions & 0 deletions .github/FUNDING.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,12 @@
# These are supported funding model platforms

github: talvbansal
#patreon: # Replace with a single Patreon username
#open_collective: # Replace with a single Open Collective username
#ko_fi: # Replace with a single Ko-fi username
#tidelift: # Replace with a single Tidelift platform-name/package-name e.g., npm/babel
#community_bridge: # Replace with a single Community Bridge project-name e.g., cloud-foundry
#liberapay: # Replace with a single Liberapay username
#issuehunt: # Replace with a single IssueHunt username
#otechie: # Replace with a single Otechie username
custom: ['https://paypal.me/talvbansal']
2 changes: 2 additions & 0 deletions .travis.yml
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,8 @@ php:
- 7.0
- 7.1
- 7.2
- 7.3
- 7.4

env:
- NODE_RELEASE=8.x
Expand Down
5 changes: 2 additions & 3 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -43,7 +43,7 @@ Should you wish to add middleware around the Media Manager routes you can using
php artisan vendor:publish --tag=media-manager
```
After publishing the packages assets a new config file will appear at `/config/media-manager.php`.
Simply add the desired middleware to to the middleware array.
Simply add the desired middleware to the middleware array.

If you want to change the root prefix of the routes from `/admin/` you can do so by changing the `media-manager.routes.prefix` value in the config file published above.
However amending the prefix value will require you to pass a new `prefix` prop to your media-manager markup that corresponds directly to this value.
Expand Down Expand Up @@ -81,7 +81,6 @@ const { mix } = require('laravel-mix');
mix.copy('resources/vendor/talvbansal/media-manager/fonts/', 'public/fonts/');
```


Then make sure that the styles are bundled and icons copied to the public directory:

```sass
Expand Down Expand Up @@ -202,7 +201,7 @@ A listener can be added to either the `created()` method of your root `vue` inst
},
created: function(){
window.eventHub.$on('media-manager-notification', function (message, type, time) {
// Your custom notifiction call here...
// Your custom notification call here...
console.log(message);
});
}
Expand Down
17 changes: 9 additions & 8 deletions composer.json
Original file line number Diff line number Diff line change
Expand Up @@ -19,20 +19,21 @@
"authors": [
{
"name": "Talvinder Bansal",
"email": "talvbansal@hotmail.com",
"email": "talvbansal@outlook.com",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"dflydev/apache-mime-types": "^1.0"
"php": ">=7.3",
"dflydev/apache-mime-types": "^1.0",
"ext-json": "*"
},
"require-dev": {
"phpunit/phpunit": "^6.0",
"illuminate/support": "^5.3|^6.0|^7.0",
"illuminate/routing": "^5.3|^6.0|^7.0",
"orchestra/testbench": "~3.0",
"mockery/mockery": "^0.9"
"phpunit/phpunit": "^6.0|^7.0|^8.0|^9.0",
"illuminate/support": "^5.3|^6.0|^7.0|^8.0",
"illuminate/routing": "^5.3|^6.0|^7.0|^8.0",
"orchestra/testbench": "^3.0|^4.0|^5.0|^6.0",
"mockery/mockery": "^0.9|^1.0"
},
"autoload": {
"psr-4": {
Expand Down
Loading

0 comments on commit 233d5ac

Please sign in to comment.