Ramdani Muksin
Ramdani Muksin

Reputation: 49

PHP Fatal error: Class 'vfsStream' not found in Bootstrap.php

I just pull Codeigniter from https://github.com/EllisLab/CodeIgniter. And I have installed phpunit and pear. When I do phpunit tests/ it showed:

PHP Fatal error: Class 'vfsStream' not found in /var/www/CodeIgniter/tests/Bootstrap.php on line 32

Fatal error: Class 'vfsStream' not found in /var/www/CodeIgniter/tests/Bootstrap.php on line 32

How to solve it?

Upvotes: 1

Views: 1061

Answers (1)

sectus
sectus

Reputation: 15464

You have to install before testing

wget http://getcomposer.org/composer.phar
php composer.phar install

Upvotes: 2

Related Questions