Context:
I am developing a composer package of type:library. The package is a wrapper for an API.
I use Guzzle to do an API request to an url.
public function callMethodA() {
$client = new GuzzleHttp\Client();
$res = $client->request( 'GET', 'https://api.mydomain.com', [
'getDetails' => [ 'methodA', 'parameter1' ]
] );
}
My requirement:
When the package is installed by my users in their project, I want the code to call production url - https://api.mydomain.com.
When I doing the package development on my local machine, I want the code to call my local url - http://api.mydomain.lcl
One way to do this:
One alternative is I define constants and comment the development constant and un-comment the other constant, before I commit the code.
define('API_URL', 'http://api.mydomain.lcl');
//define('API_URL', 'http://api.mydomain.com'); DON'T FORGET TO UNCOMMENT THIS LINE AND COMMENT ABOVE LINE.
public function callMethodA() {
$client = new GuzzleHttp\Client();
$res = $client->request( 'GET', API_URL, [
'getDetails' => [ 'methodA', 'parameter1' ]
] );
}
This alternative would work, but a risky alternative.
Questions:
What is a better way to handle variables based on composer's development environment (my local machine) and composer's deployment environment (package in my user's project).
If dotenv is a way to go, how do I release the env file on the deployment environment as my .env would be gitignored.

dotenv? It's well documented, and "releasing" it to production simply means logging in there, editing that file, done. Or set the env variable using system-wide env variables on the production server