maddhatter / laravel-fullcalendar

Laravel FullCalendar.io Helper
627 stars 267 forks source link

Not working in laravel 6 #152

Closed devlimon closed 4 years ago

devlimon commented 5 years ago

i used this package in one of my big systems that was built with laravel 5.6 and now i upgraded the systems to laravel 6 and now i am not able to install this package in laravel 6.

Helidalto commented 5 years ago

veja este link se te ajuda https://github.com/maddhatter/laravel-fullcalendar/issues/149

devlimon commented 5 years ago

Thanks for your reply.

I forked & updated according to instruction and also tried to install the updated package of @rayblair06. But not working.I am trying again.

Helidalto commented 5 years ago

Hello! Do the following, check if there is the "repositories" tag in the composer.json file, if not add: "repositories": [ { "type": "vcs", "url": "https://github.com/rayblair06/laravel-fullcalendar.git" } ],

and finally add require "maddhatter / laravel-fullcalendar": "^ 1.3"

done this execute "composer update"

for me it worked, I hope I helped, big hug!

adriancampanaro commented 5 years ago

Can someone provide the fullsteps to get this working in v6 as I still cannot get it working

Twelvefat commented 4 years ago

Hello! Do the following, check if there is the "repositories" tag in the composer.json file, if not add: "repositories": [ { "type": "vcs", "url": "https://github.com/rayblair06/laravel-fullcalendar.git" } ],

and finally add require "maddhatter / laravel-fullcalendar": "^ 1.3"

done this execute "composer update"

for me it worked, I hope I helped, big hug!

Thank you, its work for me ^^

devlimon commented 4 years ago

guys , don't use package for Event fullcalendar . why need to take pain of update ? when laravel updates needed then package hampers. my opinion is not use any package for small task.

now, i am using direct JavaScript plugin, and it's really simple :

https://fullcalendar.io/docs/getting-started

takunda91 commented 4 years ago

Hello! Do the following, check if there is the "repositories" tag in the composer.json file, if not add: "repositories": [ { "type": "vcs", "url": "https://github.com/rayblair06/laravel-fullcalendar.git" } ],

and finally add require "maddhatter / laravel-fullcalendar": "^ 1.3"

done this execute "composer update"

for me it worked, I hope I helped, big hug!

This worked well.....

kaz-97 commented 4 years ago

@takunda91 can you advise me where you add require "maddhatter / laravel-fullcalendar": "^ 1.3"

I am new to laravel so struggling to understand where is being referred to. Thanks in advance.

Helidalto commented 4 years ago

Hello! add to the composer.json file in "require"

done this execute "composer update"

Helidalto commented 4 years ago

on the command line prompt, in the same place where you run the command "php artisan serve" for the application to run, I hope I helped.

kaz-97 commented 4 years ago

Thank you.. silly me! Unfortunately still failed to install package. I shall look at alertnatives for v7 of laravel.

tasdendu commented 3 years ago

Hello! Do the following, check if there is the "repositories" tag in the composer.json file, if not add: "repositories": [ { "type": "vcs", "url": "https://github.com/rayblair06/laravel-fullcalendar.git" } ],

and finally add require "maddhatter / laravel-fullcalendar": "^ 1.3"

done this execute "composer update"

for me it worked, I hope I helped, big hug!

This was the solution. Thanks a lot.