Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

PHP Laravel 4 Basics Blade & Forms Form Builder

Nick Basile
Nick Basile
17,942 Points

Laravel Frameworks: Form Builder

Hello everyone! I'm having some troubles getting my form to start working. I noticed that other folks had to change their composer.json and app.php files to get their forms to work. I've been trying to update mine according to this walkthrough http://laravel.io/forum/09-01-2014-class-form-not-found, but when I run composer update I get an error. The error says:

Your requirements could not be resolved to an installable set of packages.

  Problem 1
    - The requested package illuminate/html could not be found in any version, there may be a typo in the package name.

Potential causes:
 - A typo in the package name
 - The package is not available in a stable-enough version according to your minimum-stability setting
   see <https://groups.google.com/d/topic/composer-dev/_g3ASeIFlrc/discussion> for more details.

Read <https://getcomposer.org/doc/articles/troubleshooting.md> for further common problems.

Thank you for the help!

Nick Basile
Nick Basile
17,942 Points

Was able to get it to work. Realized I was including the ``` illuminate/html": "@dev"

in the ```
"require-dev" 

section of the composer.json instead of in the ``` "require"

section.