@developer654079525 Yes, you can create additional files in the config directory.
Personally, I put any configuration for third-party services (like API keys etc) in the existing config/services.php file. But for opcodes, I would define an enum rather than putting it in a configuration file:
namespace App\Enumerations;
enum Opcode: int
{
case Good = 0;
case Bad = 1;
}
You could then reference the values using Opcode::Good or Opcode::Bad.
Use enums to define possible values like this.