Fresh installation:: wp-admin > Install.php not found

I started with Bedrock/Roots today. Thanks for this great theme and setup!
Installed Composer, Capistrano and Homebrew based MySQL and PHP. Also added the necessary ghosts. Composer grabbed WordPress and all other necessary files based upon the Bedrock jason file.
But now when I go to http://img.local/wp-admin/ I am sent to http://img.local/wp-admin/install.php which leads to a 404:

tail /private/var/log/apache2/img.local-access_log 
127.0.0.1 - - [18/Jul/2014:11:58:21 +0300] "GET /wp-admin/install.php HTTP/1.1" 404 218
127.0.0.1 - - [18/Jul/2014:12:06:59 +0300] "GET /wp-login.php HTTP/1.1" 404 210
127.0.0.1 - - [18/Jul/2014:12:07:48 +0300] "GET / HTTP/1.1" 302 -
127.0.0.1 - - [18/Jul/2014:12:07:48 +0300] "GET /wp-admin/install.php HTTP/1.1" 404 218
127.0.0.1 - - [18/Jul/2014:12:07:48 +0300] "GET / HTTP/1.1" 302 -
127.0.0.1 - - [18/Jul/2014:12:07:48 +0300] "GET /wp-admin/install.php HTTP/1.1" 404 218 

I can see the installation here: /Users/jasperfrumau/webdesign/img/web/wp/wp-admin
In .env I have

WP_ENV=development
WP_HOME=http://img.local
WP_SITEURL=http://img.local/

and my vhost is

<VirtualHost *:80>
    ServerAdmin jasper@img.local
    DocumentRoot "/Users/jasperfrumau/webdesign/img/web"
    ServerName img.local
    ServerAlias www.img.local
    ErrorLog "/private/var/log/apache2/img.local-error_log"
    CustomLog "/private/var/log/apache2/img.local-access_log" common

   <Directory "/Users/jasperfrumau/webdesign/img/web/">
        Options FollowSymlinks
        AllowOverride All
        Order allow,deny
        allow from all
    </Directory>
</VirtualHost>

What am I missing here?

Never mind. Had to change the WP_SITEURL=http://img.local/wp/ . Working now.