nahid / jsonq

A PHP query builder for JSON
Creative Commons Zero v1.0 Universal
870 stars 105 forks source link

Attempted to load class "Facade" from namespace "Illuminate\Support\Facades" #38

Open kematjaya0 opened 5 years ago

kematjaya0 commented 5 years ago

i use this plugins in my symfony 4 project, but i get this error on my page

"Attempted to load class "Facade" from namespace "Illuminate\Support\Facades". Did you forget a "use" statement for another namespace?" in \vendor/nahid/jsonq/src/Facades/Jsonq.php (line 7)

any idea ?

jasonsaayman commented 5 years ago

Hi @kematjaya0

You would not be able to use the facade provided in a Symfony project since the facade class that is being extended is for a Laravel project.

Thanks