Be part of JetBrains PHPverse 2026 on June 9 – a free online event bringing PHP devs worldwide together.

Erickbonder's avatar

i'm new at this and find this "complete legal case management system"

I've tried to install this code but i get stuck with two errors that stop the process of the installation. 1) inheritance of ArrayAccess and Method ReflectionParameter (getClass) error. Anyone can help?

I'm running this on the XAMPP and still my local keep getting 500 error

0 likes
9 replies
jlrdw's avatar

Do you have the correct php version for your version of laravel?

Erickbonder's avatar

@jlrdw - I'm not sure if I have the correct version of Laravel... What is the latest version and how can I update?

Snapey's avatar

What is the exact package name? What version of php is it for? Is it even built for Laravel? Which version of Laravel?

martinbean's avatar

PHP 7.1.3, Laravel 5.7

@mercury64 Well the problem will be you’re trying to run PHP 7 code using PHP 8, hence the deprecation warnings (because, well, the syntax changed between 7 and 8).

martinbean's avatar

@mercury64 Yes. But you need to also run the project (which includes installing Composer dependencies) using PHP 7. If you run Composer with PHP 8, you’re going to get all of those deprecation errors when it’s processing files to build the autoload mapping.

Please or to participate in this conversation.