Reflection Exception in Laravel - laravel

I tried composer dump-autoload, composer update and other commands when i run command related to php artisan I am getting error
PHP Fatal error: Uncaught exception 'ReflectionException' with message 'Class App\Console\Kernel does not exist' in /media/durga/CE4C15B14C159575/htdocs/nyfrag/vendor/laravel/framework/src/Illuminate/Container/Container.php:738
My Laravel project is running but artisan commands not working when i run any command related to php artisan it is showing above error. Could anybody please help me
my composer.json file is `{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.2."
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.",
"phpunit/phpunit": "~4.0",
"symfony/css-selector": "2.8.|3.0."
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan optimize"
]
},
"config": {
"preferred-install": "dist"
},
"repositories": {
"repo-name": {
"type": "git",
"url": "git#github.com:jamisonvalenta/Laravel-4-Generators.git"
}
}
}
`

Related

cant upgrade from laravel 5.1.46 to to 5.2

I'm struggling to update an 2015 application from laravel 5.1.46(LTS) to 5.2,
I've done composer require "laravelcollective/html:5.8.0" --with-all-dependencies
and it fails.
I'm doing this because I see the error Call to undefined method Illuminate\Foundation\Application::bindShared() in some step when following https://laravel.com/docs/5.2/upgrade#upgrade-5.2.0 and cant continue unless I do a git reset --hard, I'm clueless.
here is my composer.json
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.2.*",
"illuminate/html": "^5.0",
"jenssegers/date": "^3.0",
"intervention/imagecache": "^2.3",
"guzzlehttp/guzzle": "~5.3|~6.0",
"vinkla/hashids": "^2.3",
"milon/barcode": "^5.2"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
},
"files": [
"app/fpdf/fpdf.php"
]
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan optimize"
],
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
}

Laravel - installation of doctrine/dbal failed

I am trying to install doctrine/dbal on a legacy code that I am working with. On trying to run the composer require doctrine/dbal I get the error:
[RuntimeException]
Could not scan for classes inside "app/Libs" which does not appear to
be a file nor a folder
This is the composer.json file:
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.2.*",
"jgrossi/corcel": "^1.4",
"ellipsesynergie/api-response": "^0.12.3",
"corcel/acf": "^0.1.12"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"symfony/css-selector": "2.8.*|3.0.*",
"symfony/dom-crawler": "2.8.*|3.0.*"
},
"autoload": {
"classmap": [
"database",
"app/Libs"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan optimize"
]
},
"config": {
"preferred-install": "dist"
}
}
How can I fix that?
Maybe the problem was that you add app folder to psr-4 section and then app\Libs to classmap?
Try remove it like this:
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
You already say to scan app folder and than try scan it again.

Laravel 5 vendor folder installation issues

Problem is in installing the vendor folder.the error message says:
The composer.phpr doesn't contain valid JSON error
Please suggest
copy this into your composer.json file
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"symfony/css-selector": "2.8.*|3.0.*",
"symfony/dom-crawler": "2.8.*|3.0.*"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
],
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"post-update-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
]
},
"config": {
"preferred-install": "dist"
}
}
After this, run composer install.

Composer file autoloading not working - Laravel 5

Ive created a helper file which i am trying to autoload in my composer.json see composer below:
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"php": ">=5.5.9",
"laravel/framework": "5.1.*",
"laravelcollective/html": "5.1.*",
"zurb/foundation": "5.4.*",
"caffeinated/presenter": "~2.0",
"guzzlehttp/guzzle": "4.0",
"guzzlehttp/oauth-subscriber": "*"
},
"require-dev": {
"fzaninotto/faker": "~1.4",
"mockery/mockery": "0.9.*",
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1",
"barryvdh/laravel-debugbar": "^2.0"
},
"autoload": {
"files": [
"app/Project/Helpers/Helpers.php"
],
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/",
"Project\\": "app/Project"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"scripts": {
"post-install-cmd": [
"php artisan clear-compiled",
"php artisan optimize"
],
"pre-update-cmd": [
"php artisan clear-compiled"
],
"post-update-cmd": [
"php artisan optimize"
],
"post-root-package-install": [
"php -r \"copy('.env.example', '.env');\""
],
"post-create-project-cmd": [
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
}
After a composer install and dumpautoload this works completely fine on my local environment but when i push to production i get an undefinded function error (function is located in my helpers.php)
Ive composer installed/dumpautoload on my server but still now luck. Any ideas?
Use composer update. This solved the problem for laravel 5.2.

Fatal error : Class 'Dotnev' not found in compiled in Laravel 5.0.0

Good night !
I am working with PHP now and I try to update the project but I have this problem when I use composer update.
My composer file
{
"name": "laravel/laravel",
"description": "The Laravel Framework.",
"keywords": ["framework", "laravel"],
"license": "MIT",
"type": "project",
"require": {
"laravel/framework": "5.0.*"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpspec/phpspec": "~2.1"
},
"autoload": {
"classmap": [
"database"
],
"psr-4": {
"App\\": "app/"
}
},
"autoload-dev": {
"classmap": [
"tests/TestCase.php"
]
},
"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 -r \"copy('.env.example', '.env');\"",
"php artisan key:generate"
]
},
"config": {
"preferred-install": "dist"
}
}
This project has been developing since last year , for this reason I think I have problem with this , could anyone helps to me ?

Resources