Support the ongoing development of Laravel.io →
Forms Validation
Last updated 2 years ago.
0

I've found a piece to the puzzle. The problem lies with the extends class "FormValidator". Have I added it wrong to my composer.json file ?

{
	"name": "laravel/laravel",
	"description": "The Laravel Framework.",
	"keywords": ["framework", "laravel"],
	"license": "MIT",
	"require": {
		"laravel/framework": "4.2.*",
        "laracasts/commander":"~1.0",
		"laracasts/validation": "1.2.0"



	},
    "require-dev":{
        "way/generators":"~2.0",
        "codeception/codeception":"~2.0",
        "laracasts/testdummy":"~1.0"

    },
	"autoload": {
		"classmap": [
			"app/commands",
			"app/controllers",
			"app/models",
			"app/database/migrations",
			"app/database/seeds",
			"app/tests/TestCase.php"
		],
        "psr-4":{
            "Larabook\\":"app/Larabook"
        }

	},
	"scripts": {
		"post-install-cmd": [
			"php artisan clear-compiled",
			"php artisan optimize"
		],
		"post-update-cmd": [
			"php artisan clear-compiled",
			"php artisan optimize"
		],
		"post-create-project-cmd": [
			"php artisan key:generate"
		]
	},
	"config": {
		"preferred-install": "dist"
	},
	"minimum-stability": "dev"


    }

Last updated 2 years ago.
0

Sign in to participate in this thread!

Eventy

Your banner here too?

Moderators

We'd like to thank these amazing companies for supporting us

Your logo here?

Laravel.io

The Laravel portal for problem solving, knowledge sharing and community building.

© 2024 Laravel.io - All rights reserved.