You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi there, I am using laravel 7, calling composer updating I got some errors
"
Deprecation Notice: Class Pauly4it\LaraTurk\LaraturkException located in ./vendor/pauly4it/laraturk/src/LaraTurkException.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar:///usr/local/bin/composer/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class Pauly4it\LaraTurk\Facades\Laraturk located in ./vendor/pauly4it/laraturk/src/Facades/LaraTurk.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar:///usr/local/bin/composer/src/Composer/Autoload/ClassMapGenerator.php:201
"
Hi there, I am using laravel 7, calling composer updating I got some errors
"
Deprecation Notice: Class Pauly4it\LaraTurk\LaraturkException located in ./vendor/pauly4it/laraturk/src/LaraTurkException.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar:///usr/local/bin/composer/src/Composer/Autoload/ClassMapGenerator.php:201
Deprecation Notice: Class Pauly4it\LaraTurk\Facades\Laraturk located in ./vendor/pauly4it/laraturk/src/Facades/LaraTurk.php does not comply with psr-4 autoloading standard. It will not autoload anymore in Composer v2.0. in phar:///usr/local/bin/composer/src/Composer/Autoload/ClassMapGenerator.php:201
"
But I fixed them by editing composer.json
"autoload": {
"files": [
"vendor/pauly4it/laraturk/src/LaraTurkException.php",
"vendor/pauly4it/laraturk/src/Facades/LaraTurk.php"
],
"psr-4": {
"App\": "app/",
"vendor\": "vendor"
},
"classmap": [
"database/seeds",
"vendor/pauly4it/laraturk/src",
"database/factories"
]
},
The text was updated successfully, but these errors were encountered: