Dos Exeoutput support composer?

i am useing composer with my secript which it autoinclude any class script i asked for , how can this be supported in this platform ?

ExeOutput works with “vendor” folder and autoload.php scripts made with composer. Of course, you must not run composer directly inside your compiled app. You must run composer to create your app, download all packages and then you compile the result with ExeOutput.

Just tested the ExeOutput’s last version with Composer (last version) and it worked as expected.

If the problem occurs with a specific package loaded through composer, please post the package’s name and the version used.

1 Like

@gdgsupport

first of all i downloaded the vendor dir , to my PC from my server and it is working fine with normal localhost , i mean without EXEOutput.

but when i use exeOutput , it seems there is a problem with the include function or something , i dont know , it is not working at all , and as workaround i am mapping each “Exception” , and each include by hand which is disaster… cos who knows when a hidden Exception jump !!!
see what i am doing :
:triumph::triumph::triumph::triumph:

'LazyJsonMapper/Exception/LazyUserOptionException' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Exception/LazyUserOptionException.php',
'LazyJsonMapper/Exception/MagicTranslationException' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Exception/MagicTranslationException.php',
'LazyJsonMapper/Exception/SpanishInquisitionException' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Exception/SpanishInquisitionException.php'

i stopped doing that once i sow your replay , so there is a hope to fix this …

please HELP

You can check this Package :

composer require mgp25/instagram-php dev-master

it is isntagram api , try this code in your index.php

<?php
include './vendor/autoload.php';

\InstagramAPI\Instagram::$allowDangerousWebUsageAtMyOwnRisk = true;


$username ="instagram user name";
$password = "instagram password";
$debug =false;

$storagelocation = sys_get_temp_dir();
$storagelocation = str_replace("\\","/",$storagelocation);
$i = new \InstagramAPI\Instagram($debug , true , ['storage' => 'file', 'basefolder' => $storagelocation]);
$i->setVerifySSL(false);
try {
    $i->login($username, $password); 
} catch (Exception $e) {
     message_return($e->getMessage());
    exit(0);
}

You will got an error that it can not load instagram api .

---------------------------
PHP Error Message - Debugging ON
---------------------------
PHP Fatal error:  Class 'InstagramAPI\Instagram' not found in F:\xampp\htdocs\apicoo\in\Data\index.php on line 7


This error message appears because << Display PHP error messages at runtime >> is turned on in PHP settings=>Debugging page. Do you want to disable future error messages?
---------------------------
Yes   No   
---------------------------

i just paid for 149$ : (GDG180110-2155-74107) and i got frustrated…

Checking with your indicated instructions.

Ok. In ExeOutput 2, it shows the error you mentioned. However, in new ExeOutput 2018, it works:

Are you in a hurry for your project or can you wait until next week for the release of ExeOutput 2018?

Honestly aim VERY hurry , that is why i made the payment once i found your website

And as you can see i am hurry to the extent that i start map each exception by hand ,
even that it make a lot of problem

see and you will understand how much i lost time :slight_smile:

$filearray = array('InstagramAPI/Instagram' => './vendor/mgp25/instagram-php/src/Instagram.php',
'InstagramAPI/ExperimentsInterface' => './vendor/mgp25/instagram-php/src/ExperimentsInterface.php',
'InstagramAPI/Request/Account' => './vendor/mgp25/instagram-php/src/Request/Account.php',
'InstagramAPI/Request/RequestCollection' => './vendor/mgp25/instagram-php/src/Request/RequestCollection.php',
'InstagramAPI/Request/Business' => './vendor/mgp25/instagram-php/src/Request/Business.php',
'InstagramAPI/Request/Collection' => './vendor/mgp25/instagram-php/src/Request/Collection.php',
'InstagramAPI/Request/Creative' => './vendor/mgp25/instagram-php/src/Request/Creative.php',
'InstagramAPI/Request/Direct' => './vendor/mgp25/instagram-php/src/Request/Direct.php',
'InstagramAPI/Request/Discover' => './vendor/mgp25/instagram-php/src/Request/Discover.php',
'InstagramAPI/Request/Hashtag' => './vendor/mgp25/instagram-php/src/Request/Hashtag.php',
'InstagramAPI/Request/Internal' => './vendor/mgp25/instagram-php/src/Request/Internal.php',
'InstagramAPI/Request/Live' => './vendor/mgp25/instagram-php/src/Request/Live.php',
'InstagramAPI/Request/Location' => './vendor/mgp25/instagram-php/src/Request/Location.php',
'InstagramAPI/Request/Media' => './vendor/mgp25/instagram-php/src/Request/Media.php',
'InstagramAPI/Request/People' => './vendor/mgp25/instagram-php/src/Request/People.php',
'InstagramAPI/Request/Push' => './vendor/mgp25/instagram-php/src/Request/Push.php',
'InstagramAPI/Request/Story' => './vendor/mgp25/instagram-php/src/Request/Story.php',
'InstagramAPI/Request/Timeline' => './vendor/mgp25/instagram-php/src/Request/Timeline.php',
'InstagramAPI/Request/Usertag' => './vendor/mgp25/instagram-php/src/Request/Usertag.php',
'InstagramAPI/Settings/Factory' => './vendor/mgp25/instagram-php/src/Settings/Factory.php',
'InstagramAPI/Settings/Storage/File' => './vendor/mgp25/instagram-php/src/Settings/Storage/File.php',
'InstagramAPI/Settings/StorageInterface' => './vendor/mgp25/instagram-php/src/Settings/StorageInterface.php',
'InstagramAPI/Settings/StorageHandler' => './vendor/mgp25/instagram-php/src/Settings/StorageHandler.php',
'InstagramAPI/Utils' => './vendor/mgp25/instagram-php/src/Utils.php',
'InstagramAPI/Client' => './vendor/mgp25/instagram-php/src/Client.php',
'GuzzleHttp/HandlerStack' => './vendor/guzzlehttp/guzzle/src/HandlerStack.php',
'GuzzleHttp/Handler/Proxy' => './vendor/guzzlehttp/guzzle/src/Handler/Proxy.php',
'GuzzleHttp/Handler/CurlMultiHandler' => './vendor/guzzlehttp/guzzle/src/Handler/CurlMultiHandler.php',
'GuzzleHttp/Handler/CurlFactory' => './vendor/guzzlehttp/guzzle/src/Handler/CurlFactory.php',
'GuzzleHttp/Handler/CurlFactoryInterface' => './vendor/guzzlehttp/guzzle/src/Handler/CurlFactoryInterface.php',
'GuzzleHttp/Handler/CurlHandler' => './vendor/guzzlehttp/guzzle/src/Handler/CurlHandler.php',
'GuzzleHttp/Handler/StreamHandler' => './vendor/guzzlehttp/guzzle/src/Handler/StreamHandler.php',
'GuzzleHttp/Middleware' => './vendor/guzzlehttp/guzzle/src/Middleware.php',
'InstagramAPI/ClientMiddleware' => './vendor/mgp25/instagram-php/src/ClientMiddleware.php',
'GuzzleHttp/Client' => './vendor/guzzlehttp/guzzle/src/Client.php',
'GuzzleHttp/ClientInterface' => './vendor/guzzlehttp/guzzle/src/ClientInterface.php',
'GuzzleHttp/RedirectMiddleware' => './vendor/guzzlehttp/guzzle/src/RedirectMiddleware.php',
'InstagramAPI/Devices/Device' => './vendor/mgp25/instagram-php/src/Devices/Device.php',
'InstagramAPI/Devices/DeviceInterface' => './vendor/mgp25/instagram-php/src/Devices/DeviceInterface.php',
'InstagramAPI/Constants' => './vendor/mgp25/instagram-php/src/Constants.php',
'InstagramAPI/Devices/GoodDevices' => './vendor/mgp25/instagram-php/src/Devices/GoodDevices.php',
'InstagramAPI/Devices/UserAgent' => './vendor/mgp25/instagram-php/src/Devices/UserAgent.php',
'GuzzleHttp/Cookie/CookieJar' => './vendor/guzzlehttp/guzzle/src/Cookie/CookieJar.php',
'GuzzleHttp/Cookie/CookieJarInterface' => './vendor/guzzlehttp/guzzle/src/Cookie/CookieJarInterface.php',
'GuzzleHttp/Cookie/SetCookie' => './vendor/guzzlehttp/guzzle/src/Cookie/SetCookie.php',
'InstagramAPI/Request' => './vendor/mgp25/instagram-php/src/Request.php',
'InstagramAPI/Response/MsisdnHeaderResponse' => './vendor/mgp25/instagram-php/src/Response/MsisdnHeaderResponse.php',
'InstagramAPI/Response' => './vendor/mgp25/instagram-php/src/Response.php',
'InstagramAPI/AutoPropertyMapper' => './vendor/mgp25/instagram-php/src/AutoPropertyMapper.php',
'LazyJsonMapper/LazyJsonMapper' => './vendor/lazyjsonmapper/lazyjsonmapper/src/LazyJsonMapper.php',
'LazyJsonMapper/Property/PropertyMapCache' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Property/PropertyMapCache.php',
'LazyJsonMapper/Property/PropertyMapCompiler' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Property/PropertyMapCompiler.php',
'LazyJsonMapper/Utilities' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Utilities.php',
'LazyJsonMapper/Property/PropertyDefinition' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Property/PropertyDefinition.php',
'InstagramAPI/Response/Model/_Message' => './vendor/mgp25/instagram-php/src/Response/Model/_Message.php',
'InstagramAPI/Signatures' => './vendor/mgp25/instagram-php/src/Signatures.php',
'GuzzleHttp/Psr7/Stream' => './vendor/guzzlehttp/psr7/src/Stream.php',
'Psr/Http/Message/StreamInterface' => './vendor/psr/http-message/src/StreamInterface.php',
'GuzzleHttp/Psr7/Request' => './vendor/guzzlehttp/psr7/src/Request.php',
'Psr/Http/Message/RequestInterface' => './vendor/psr/http-message/src/RequestInterface.php',
'Psr/Http/Message/MessageInterface' => './vendor/psr/http-message/src/MessageInterface.php',
'GuzzleHttp/Psr7/MessageTrait' => './vendor/guzzlehttp/psr7/src/MessageTrait.php',
'GuzzleHttp/Psr7/Uri' => './vendor/guzzlehttp/psr7/src/Uri.php',
'Psr/Http/Message/UriInterface' => './vendor/psr/http-message/src/UriInterface.php',
'GuzzleHttp/RequestOptions' => './vendor/guzzlehttp/guzzle/src/RequestOptions.php',
'GuzzleHttp/PrepareBodyMiddleware' => './vendor/guzzlehttp/guzzle/src/PrepareBodyMiddleware.php',
'GuzzleHttp/Handler/EasyHandle' => './vendor/guzzlehttp/guzzle/src/Handler/EasyHandle.php',
'GuzzleHttp/Psr7/Response' => './vendor/guzzlehttp/psr7/src/Response.php',
'Psr/Http/Message/ResponseInterface' => './vendor/psr/http-message/src/ResponseInterface.php',
'GuzzleHttp/Promise/FulfilledPromise' => './vendor/guzzlehttp/promises/src/FulfilledPromise.php',
'GuzzleHttp/Promise/PromiseInterface' => './vendor/guzzlehttp/promises/src/PromiseInterface.php',
'GuzzleHttp/Promise/TaskQueue' => './vendor/guzzlehttp/promises/src/TaskQueue.php',
'GuzzleHttp/Promise/TaskQueueInterface' => './vendor/guzzlehttp/promises/src/TaskQueueInterface.php',
'GuzzleHttp/Promise/Promise' => './vendor/guzzlehttp/promises/src/Promise.php',
'InstagramAPI/Debug' => './vendor/mgp25/instagram-php/src/Debug.php',
'LazyJsonMapper/Property/ValueConverter' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Property/ValueConverter.php',
'InstagramAPI/Response/SyncResponse' => './vendor/mgp25/instagram-php/src/Response/SyncResponse.php',
'InstagramAPI/Response/Model/Experiment' => './vendor/mgp25/instagram-php/src/Response/Model/Experiment.php',
'InstagramAPI/Response/Model/Param' => './vendor/mgp25/instagram-php/src/Response/Model/Param.php',
'InstagramAPI/Response/TokenResultResponse' => './vendor/mgp25/instagram-php/src/Response/TokenResultResponse.php',
'InstagramAPI/Response/Model/Token' => './vendor/mgp25/instagram-php/src/Response/Model/Token.php',
'InstagramAPI/Response/GenericResponse' => './vendor/mgp25/instagram-php/src/Response/GenericResponse.php',
'InstagramAPI/Response/LoginResponse' => './vendor/mgp25/instagram-php/src/Response/LoginResponse.php',
'InstagramAPI/Response/Model/User' => './vendor/mgp25/instagram-php/src/Response/Model/User.php',
'InstagramAPI/Response/Model/PhoneVerificationSettings' => './vendor/mgp25/instagram-php/src/Response/Model/PhoneVerificationSettings.php',
'InstagramAPI/Response/Model/TwoFactorInfo' => './vendor/mgp25/instagram-php/src/Response/Model/TwoFactorInfo.php',
'InstagramAPI/Response/Model/Challenge' => './vendor/mgp25/instagram-php/src/Response/Model/Challenge.php',
'InstagramAPI/Response/Model/FriendshipStatus' => './vendor/mgp25/instagram-php/src/Response/Model/FriendshipStatus.php',
'InstagramAPI/Response/Model/ImageCandidate' => './vendor/mgp25/instagram-php/src/Response/Model/ImageCandidate.php',
'InstagramAPI/Response/Model/ChainingSuggestion' => './vendor/mgp25/instagram-php/src/Response/Model/ChainingSuggestion.php',
'InstagramAPI/Response/Model/Link' => './vendor/mgp25/instagram-php/src/Response/Model/Link.php',
'InstagramAPI/Response/Model/ChainingInfo' => './vendor/mgp25/instagram-php/src/Response/Model/ChainingInfo.php',
'InstagramAPI/Response/Model/LinkContext' => './vendor/mgp25/instagram-php/src/Response/Model/LinkContext.php',
'InstagramAPI/Exception/ServerMessageThrower' => './vendor/mgp25/instagram-php/src/Exception/ServerMessageThrower.php',
'LazyJsonMapper/Magic/FunctionTranslation' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Magic/FunctionTranslation.php',
'LazyJsonMapper/Magic/SpecialOperators' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Magic/SpecialOperators.php',
'InstagramAPI/Exception/ChallengeRequiredException' => './vendor/mgp25/instagram-php/src/Exception/ChallengeRequiredException.php',
'InstagramAPI/Exception/RequestException' => './vendor/mgp25/instagram-php/src/Exception/RequestException.php',
'InstagramAPI/Exception/InstagramException' => './vendor/mgp25/instagram-php/src/Exception/InstagramException.php',
'InstagramAPI/Exception/IncorrectPasswordException' => './vendor/mgp25/instagram-php/src/Exception/IncorrectPasswordException.php',
'InstagramAPI/Exception/ForcedPasswordResetException' => './vendor/mgp25/instagram-php/src/Exception/ForcedPasswordResetException.php',
'InstagramAPI/Exception/AccountDisabledException' =>'./vendor/mgp25/instagram-php/src/Exception/AccountDisabledException.php',
'InstagramAPI/Exception/BadRequestException' => './vendor/mgp25/instagram-php/src/Exception/BadRequestException.php',
'InstagramAPI/Exception/BadRequestException' => './vendor/mgp25/instagram-php/src/Exception/BadRequestException.php',
'InstagramAPI/Exception/CheckpointRequiredException' => './vendor/mgp25/instagram-php/src/Exception/CheckpointRequiredException.php',
'InstagramAPI/Exception/EmptyResponseException' => './vendor/mgp25/instagram-php/src/Exception/EmptyResponseException.php',
'InstagramAPI/Exception/EndpointException' => './vendor/mgp25/instagram-php/src/Exception/EndpointException.php',
'InstagramAPI/Exception/FeedbackRequiredException' => './vendor/mgp25/instagram-php/src/Exception/FeedbackRequiredException.php',
'InstagramAPI/Exception/InternalException' => './vendor/mgp25/instagram-php/src/Exception/InternalException.php',
'InstagramAPI/Exception/InvalidSmsCodeException' => './vendor/mgp25/instagram-php/src/Exception/InvalidSmsCodeException.php',
'InstagramAPI/Exception/InvalidUserException' => './vendor/mgp25/instagram-php/src/Exception/InvalidUserException.php',
'InstagramAPI/Exception/LoginRequiredException' => './vendor/mgp25/instagram-php/src/Exception/LoginRequiredException.php',
'InstagramAPI/Exception/NetworkException' => './vendor/mgp25/instagram-php/src/Exception/NetworkException.php',
'InstagramAPI/Exception/RequestException' => './vendor/mgp25/instagram-php/src/Exception/RequestException.php',
'InstagramAPI/Exception/RequestHeadersTooLargeException' => './vendor/mgp25/instagram-php/src/Exception/RequestHeadersTooLargeException.php',
'InstagramAPI/Exception/SentryBlockException' => './vendor/mgp25/instagram-php/src/Exception/SentryBlockException.php',
'InstagramAPI/Exception/ServerMessageThrower' => './vendor/mgp25/instagram-php/src/Exception/ServerMessageThrower.php',
'InstagramAPI/Exception/SettingsException' => './vendor/mgp25/instagram-php/src/Exception/SettingsException.php',
'InstagramAPI/Exception/ThrottledException' => './vendor/mgp25/instagram-php/src/Exception/ThrottledException.php',
'InstagramAPI/Exception/UploadFailedException' => './vendor/mgp25/instagram-php/src/Exception/UploadFailedException.php',
'InstagramAPI/Response/AccountCreateResponse' => './vendor/mgp25/instagram-php/src/Response/AccountCreateResponse.php',
'InstagramAPI/Response/AccountSecurityInfoResponse' => './vendor/mgp25/instagram-php/src/Response/AccountSecurityInfoResponse.php',
'InstagramAPI/Response/ActivityNewsResponse' => './vendor/mgp25/instagram-php/src/Response/ActivityNewsResponse.php',
'InstagramAPI/Response/ArchiveMediaResponse' => './vendor/mgp25/instagram-php/src/Response/ArchiveMediaResponse.php',
'InstagramAPI/Response/BadgeNotificationsResponse' => './vendor/mgp25/instagram-php/src/Response/BadgeNotificationsResponse.php',
'InstagramAPI/Response/BlockedListResponse' => './vendor/mgp25/instagram-php/src/Response/BlockedListResponse.php',
'InstagramAPI/Response/BlockedMediaResponse' => './vendor/mgp25/instagram-php/src/Response/BlockedMediaResponse.php',
'InstagramAPI/Response/BlockedReelsResponse' => './vendor/mgp25/instagram-php/src/Response/BlockedReelsResponse.php',
'InstagramAPI/Response/BootstrapUsersResponse' => './vendor/mgp25/instagram-php/src/Response/BootstrapUsersResponse.php',
'InstagramAPI/Response/BroadcastCommentsResponse' => './vendor/mgp25/instagram-php/src/Response/BroadcastCommentsResponse.php',
'InstagramAPI/Response/BroadcastHeartbeatAndViewerCountResponse' => './vendor/mgp25/instagram-php/src/Response/BroadcastHeartbeatAndViewerCountResponse.php',
'InstagramAPI/Response/BroadcastInfoResponse' => './vendor/mgp25/instagram-php/src/Response/BroadcastInfoResponse.php',
'InstagramAPI/Response/BroadcastLikeCountResponse' => './vendor/mgp25/instagram-php/src/Response/BroadcastLikeCountResponse.php',
'InstagramAPI/Response/BroadcastLikeResponse' => './vendor/mgp25/instagram-php/src/Response/BroadcastLikeResponse.php',
'InstagramAPI/Response/ChallengeResponse' => './vendor/mgp25/instagram-php/src/Response/ChallengeResponse.php',
'InstagramAPI/Response/ChangePasswordResponse' => './vendor/mgp25/instagram-php/src/Response/ChangePasswordResponse.php',
'InstagramAPI/Response/CheckEmailResponse' => './vendor/mgp25/instagram-php/src/Response/CheckEmailResponse.php',
'InstagramAPI/Response/CheckUsernameResponse' => './vendor/mgp25/instagram-php/src/Response/CheckUsernameResponse.php',
'InstagramAPI/Response/CommentBroadcastResponse' => './vendor/mgp25/instagram-php/src/Response/CommentBroadcastResponse.php',
'InstagramAPI/Response/CommentCategoryFilterResponse' => './vendor/mgp25/instagram-php/src/Response/CommentCategoryFilterResponse.php',
'InstagramAPI/Response/CommentFilterKeywordsResponse' => './vendor/mgp25/instagram-php/src/Response/CommentFilterKeywordsResponse.php',
'InstagramAPI/Response/CommentFilterResponse' => './vendor/mgp25/instagram-php/src/Response/CommentFilterResponse.php',
'InstagramAPI/Response/CommentFilterSetResponse' => './vendor/mgp25/instagram-php/src/Response/CommentFilterSetResponse.php',
'InstagramAPI/Response/CommentLikeUnlikeResponse' => './vendor/mgp25/instagram-php/src/Response/CommentLikeUnlikeResponse.php',
'InstagramAPI/Response/CommentLikersResponse' => './vendor/mgp25/instagram-php/src/Response/CommentLikersResponse.php',
'InstagramAPI/Response/CommentResponse' => './vendor/mgp25/instagram-php/src/Response/CommentResponse.php',
'InstagramAPI/Response/ConfigureResponse' => './vendor/mgp25/instagram-php/src/Response/ConfigureResponse.php',
'InstagramAPI/Response/CreateCollectionResponse' => './vendor/mgp25/instagram-php/src/Response/CreateCollectionResponse.php',
'InstagramAPI/Response/CreateLiveResponse' => './vendor/mgp25/instagram-php/src/Response/CreateLiveResponse.php',
'InstagramAPI/Response/DeleteCollectionResponse' => './vendor/mgp25/instagram-php/src/Response/DeleteCollectionResponse.php',
'InstagramAPI/Response/DeleteCommentResponse' => './vendor/mgp25/instagram-php/src/Response/DeleteCommentResponse.php',
'InstagramAPI/Response/DirectCreateGroupThreadResponse' => './vendor/mgp25/instagram-php/src/Response/DirectCreateGroupThreadResponse.php',
'InstagramAPI/Response/DirectInboxResponse' => './vendor/mgp25/instagram-php/src/Response/DirectInboxResponse.php',
'InstagramAPI/Response/DirectPendingInboxResponse' => './vendor/mgp25/instagram-php/src/Response/DirectPendingInboxResponse.php',
'InstagramAPI/Response/DirectRankedRecipientsResponse' => './vendor/mgp25/instagram-php/src/Response/DirectRankedRecipientsResponse.php',
'InstagramAPI/Response/DirectRecentRecipientsResponse' => './vendor/mgp25/instagram-php/src/Response/DirectRecentRecipientsResponse.php',
'InstagramAPI/Response/DirectSeenItemResponse' => './vendor/mgp25/instagram-php/src/Response/DirectSeenItemResponse.php',
'InstagramAPI/Response/DirectSendItemResponse' => './vendor/mgp25/instagram-php/src/Response/DirectSendItemResponse.php',
'InstagramAPI/Response/DirectShareInboxResponse' => './vendor/mgp25/instagram-php/src/Response/DirectShareInboxResponse.php',
'InstagramAPI/Response/DirectThreadResponse' => './vendor/mgp25/instagram-php/src/Response/DirectThreadResponse.php',
'InstagramAPI/Response/DirectVisualInboxResponse' => './vendor/mgp25/instagram-php/src/Response/DirectVisualInboxResponse.php',
'InstagramAPI/Response/DirectVisualThreadResponse' => './vendor/mgp25/instagram-php/src/Response/DirectVisualThreadResponse.php',
'InstagramAPI/Response/DisableTwoFactorResponse' => './vendor/mgp25/instagram-php/src/Response/DisableTwoFactorResponse.php',
'InstagramAPI/Response/DiscoverChannelsResponse' => './vendor/mgp25/instagram-php/src/Response/DiscoverChannelsResponse.php',
'InstagramAPI/Response/DiscoverPeopleResponse' => './vendor/mgp25/instagram-php/src/Response/DiscoverPeopleResponse.php',
'InstagramAPI/Response/DiscoverTopLiveResponse' => './vendor/mgp25/instagram-php/src/Response/DiscoverTopLiveResponse.php',
'InstagramAPI/Response/EditCollectionResponse' => './vendor/mgp25/instagram-php/src/Response/EditCollectionResponse.php',
'InstagramAPI/Response/EditMediaResponse' => './vendor/mgp25/instagram-php/src/Response/EditMediaResponse.php',
'InstagramAPI/Response/EnableDisableLiveCommentsResponse' => './vendor/mgp25/instagram-php/src/Response/EnableDisableLiveCommentsResponse.php',
'InstagramAPI/Response/EnableTwoFactorResponse' => './vendor/mgp25/instagram-php/src/Response/EnableTwoFactorResponse.php',
'InstagramAPI/Response/ExploreResponse' => './vendor/mgp25/instagram-php/src/Response/ExploreResponse.php',
'InstagramAPI/Response/FBLocationResponse' => './vendor/mgp25/instagram-php/src/Response/FBLocationResponse.php',
'InstagramAPI/Response/FBSearchResponse' => './vendor/mgp25/instagram-php/src/Response/FBSearchResponse.php',
'InstagramAPI/Response/FaceEffectsResponse' => './vendor/mgp25/instagram-php/src/Response/FaceEffectsResponse.php',
'InstagramAPI/Response/FaceModelsResponse' => './vendor/mgp25/instagram-php/src/Response/FaceModelsResponse.php',
'InstagramAPI/Response/FacebookHiddenEntitiesResponse' => './vendor/mgp25/instagram-php/src/Response/FacebookHiddenEntitiesResponse.php',
'InstagramAPI/Response/FacebookOTAResponse' => './vendor/mgp25/instagram-php/src/Response/FacebookOTAResponse.php',
'InstagramAPI/Response/FavoriteResponse' => './vendor/mgp25/instagram-php/src/Response/FavoriteResponse.php',
'InstagramAPI/Response/FetchQPDataResponse' => './vendor/mgp25/instagram-php/src/Response/FetchQPDataResponse.php',
'InstagramAPI/Response/FinalViewerListResponse' => './vendor/mgp25/instagram-php/src/Response/FinalViewerListResponse.php',
'InstagramAPI/Response/FollowerAndFollowingResponse' => './vendor/mgp25/instagram-php/src/Response/FollowerAndFollowingResponse.php',
'InstagramAPI/Response/FollowingRecentActivityResponse' => './vendor/mgp25/instagram-php/src/Response/FollowingRecentActivityResponse.php',
'InstagramAPI/Response/FriendshipResponse' => './vendor/mgp25/instagram-php/src/Response/FriendshipResponse.php',
'InstagramAPI/Response/FriendshipsShowManyResponse' => './vendor/mgp25/instagram-php/src/Response/FriendshipsShowManyResponse.php',
'InstagramAPI/Response/FriendshipsShowResponse' => './vendor/mgp25/instagram-php/src/Response/FriendshipsShowResponse.php',
'InstagramAPI/Response/GenericResponse' => './vendor/mgp25/instagram-php/src/Response/GenericResponse.php',
'InstagramAPI/Response/GetCollectionsListResponse' => './vendor/mgp25/instagram-php/src/Response/GetCollectionsListResponse.php',
'InstagramAPI/Response/GraphqlBatchResponse' => './vendor/mgp25/instagram-php/src/Response/GraphqlBatchResponse.php',
'InstagramAPI/Response/InsightsResponse' => './vendor/mgp25/instagram-php/src/Response/InsightsResponse.php',
'InstagramAPI/Response/LikeFeedResponse' => './vendor/mgp25/instagram-php/src/Response/LikeFeedResponse.php',
'InstagramAPI/Response/LinkAddressBookResponse' => './vendor/mgp25/instagram-php/src/Response/LinkAddressBookResponse.php',
'InstagramAPI/Response/LocationFeedResponse' => './vendor/mgp25/instagram-php/src/Response/LocationFeedResponse.php',
'InstagramAPI/Response/LocationResponse' => './vendor/mgp25/instagram-php/src/Response/LocationResponse.php',
'InstagramAPI/Response/LoginResponse' => './vendor/mgp25/instagram-php/src/Response/LoginResponse.php',
'InstagramAPI/Response/LogoutResponse' => './vendor/mgp25/instagram-php/src/Response/LogoutResponse.php',
'InstagramAPI/Response/MediaCommentRepliesResponse' => './vendor/mgp25/instagram-php/src/Response/MediaCommentRepliesResponse.php',
'InstagramAPI/Response/MediaCommentsResponse' => './vendor/mgp25/instagram-php/src/Response/MediaCommentsResponse.php',
'InstagramAPI/Response/MediaDeleteResponse' => './vendor/mgp25/instagram-php/src/Response/MediaDeleteResponse.php',
'InstagramAPI/Response/MediaInfoResponse' => './vendor/mgp25/instagram-php/src/Response/MediaInfoResponse.php',
'InstagramAPI/Response/MediaInsightsResponse' => './vendor/mgp25/instagram-php/src/Response/MediaInsightsResponse.php',
'InstagramAPI/Response/MediaLikersResponse' => './vendor/mgp25/instagram-php/src/Response/MediaLikersResponse.php',
'InstagramAPI/Response/MediaSeenResponse' => './vendor/mgp25/instagram-php/src/Response/MediaSeenResponse.php',
'InstagramAPI/Response/MegaphoneLogResponse' => './vendor/mgp25/instagram-php/src/Response/MegaphoneLogResponse.php',
'InstagramAPI/Response/MsisdnHeaderResponse' => './vendor/mgp25/instagram-php/src/Response/MsisdnHeaderResponse.php',
'InstagramAPI/Response/MutedReelsResponse' => './vendor/mgp25/instagram-php/src/Response/MutedReelsResponse.php',
'InstagramAPI/Response/PinCommentBroadcastResponse' => './vendor/mgp25/instagram-php/src/Response/PinCommentBroadcastResponse.php',
'InstagramAPI/Response/PopularFeedResponse' => './vendor/mgp25/instagram-php/src/Response/PopularFeedResponse.php',
'InstagramAPI/Response/PostLiveCommentsResponse' => './vendor/mgp25/instagram-php/src/Response/PostLiveCommentsResponse.php',
'InstagramAPI/Response/PostLiveLikesResponse' => './vendor/mgp25/instagram-php/src/Response/PostLiveLikesResponse.php',
'InstagramAPI/Response/PostLiveViewerListResponse' => './vendor/mgp25/instagram-php/src/Response/PostLiveViewerListResponse.php',
'InstagramAPI/Response/ProfileNoticeResponse' => './vendor/mgp25/instagram-php/src/Response/ProfileNoticeResponse.php',
'InstagramAPI/Response/PushPreferencesResponse' => './vendor/mgp25/instagram-php/src/Response/PushPreferencesResponse.php',
'InstagramAPI/Response/PushRegisterResponse' => './vendor/mgp25/instagram-php/src/Response/PushRegisterResponse.php',
'InstagramAPI/Response/RecentSearchesResponse' => './vendor/mgp25/instagram-php/src/Response/RecentSearchesResponse.php',
'InstagramAPI/Response/ReelMediaViewerResponse' => './vendor/mgp25/instagram-php/src/Response/ReelMediaViewerResponse.php',
'InstagramAPI/Response/ReelSettingsResponse' => './vendor/mgp25/instagram-php/src/Response/ReelSettingsResponse.php',
'InstagramAPI/Response/ReelsMediaResponse' => './vendor/mgp25/instagram-php/src/Response/ReelsMediaResponse.php',
'InstagramAPI/Response/ReelsTrayFeedResponse' => './vendor/mgp25/instagram-php/src/Response/ReelsTrayFeedResponse.php',
'InstagramAPI/Response/RelatedLocationResponse' => './vendor/mgp25/instagram-php/src/Response/RelatedLocationResponse.php',
'InstagramAPI/Response/ReportExploreMediaResponse' => './vendor/mgp25/instagram-php/src/Response/ReportExploreMediaResponse.php',
'InstagramAPI/Response/RequestTwoFactorResponse' => './vendor/mgp25/instagram-php/src/Response/RequestTwoFactorResponse.php',
'InstagramAPI/Response/ResumableOffsetResponse' => './vendor/mgp25/instagram-php/src/Response/ResumableOffsetResponse.php',
'InstagramAPI/Response/ReviewPreferenceResponse' => './vendor/mgp25/instagram-php/src/Response/ReviewPreferenceResponse.php',
'InstagramAPI/Response/SaveAndUnsaveMedia' => './vendor/mgp25/instagram-php/src/Response/SaveAndUnsaveMedia.php',
'InstagramAPI/Response/SavedFeedResponse' => './vendor/mgp25/instagram-php/src/Response/SavedFeedResponse.php',
'InstagramAPI/Response/SearchTagResponse' => './vendor/mgp25/instagram-php/src/Response/SearchTagResponse.php',
'InstagramAPI/Response/SearchUserResponse' => './vendor/mgp25/instagram-php/src/Response/SearchUserResponse.php',
'InstagramAPI/Response/SegmentedStartResponse' => './vendor/mgp25/instagram-php/src/Response/SegmentedStartResponse.php',
'InstagramAPI/Response/SendConfirmEmailResponse' => './vendor/mgp25/instagram-php/src/Response/SendConfirmEmailResponse.php',
'InstagramAPI/Response/StartLiveResponse' => './vendor/mgp25/instagram-php/src/Response/StartLiveResponse.php',
'InstagramAPI/Response/StickerAssetsResponse' => './vendor/mgp25/instagram-php/src/Response/StickerAssetsResponse.php',
'InstagramAPI/Response/SuggestedBroadcastsResponse' => './vendor/mgp25/instagram-php/src/Response/SuggestedBroadcastsResponse.php',
'InstagramAPI/Response/SuggestedSearchesResponse' => './vendor/mgp25/instagram-php/src/Response/SuggestedSearchesResponse.php',
'InstagramAPI/Response/SuggestedUsersBadgeResponse' => './vendor/mgp25/instagram-php/src/Response/SuggestedUsersBadgeResponse.php',
'InstagramAPI/Response/SuggestedUsersResponse' => './vendor/mgp25/instagram-php/src/Response/SuggestedUsersResponse.php',
'InstagramAPI/Response/SyncResponse' => './vendor/mgp25/instagram-php/src/Response/SyncResponse.php',
'InstagramAPI/Response/TagFeedResponse' => './vendor/mgp25/instagram-php/src/Response/TagFeedResponse.php',
'InstagramAPI/Response/TagInfoResponse' => './vendor/mgp25/instagram-php/src/Response/TagInfoResponse.php',
'InstagramAPI/Response/TagRelatedResponse' => './vendor/mgp25/instagram-php/src/Response/TagRelatedResponse.php',
'InstagramAPI/Response/TimelineFeedResponse' => './vendor/mgp25/instagram-php/src/Response/TimelineFeedResponse.php',
'InstagramAPI/Response/TokenResultResponse' => './vendor/mgp25/instagram-php/src/Response/TokenResultResponse.php',
'InstagramAPI/Response/TopLiveStatusResponse' => './vendor/mgp25/instagram-php/src/Response/TopLiveStatusResponse.php',
'InstagramAPI/Response/TranslateResponse' => './vendor/mgp25/instagram-php/src/Response/TranslateResponse.php',
'InstagramAPI/Response/UnlinkAddressBookResponse' => './vendor/mgp25/instagram-php/src/Response/UnlinkAddressBookResponse.php',
'InstagramAPI/Response/UnpinCommentBroadcastResponse' => './vendor/mgp25/instagram-php/src/Response/UnpinCommentBroadcastResponse.php',
'InstagramAPI/Response/UploadJobVideoResponse' => './vendor/mgp25/instagram-php/src/Response/UploadJobVideoResponse.php',
'InstagramAPI/Response/UploadPhotoResponse' => './vendor/mgp25/instagram-php/src/Response/UploadPhotoResponse.php',
'InstagramAPI/Response/UploadVideoResponse' => './vendor/mgp25/instagram-php/src/Response/UploadVideoResponse.php',
'InstagramAPI/Response/UserFeedResponse' => './vendor/mgp25/instagram-php/src/Response/UserFeedResponse.php',
'InstagramAPI/Response/UserInfoResponse' => './vendor/mgp25/instagram-php/src/Response/UserInfoResponse.php',
'InstagramAPI/Response/UserReelMediaFeedResponse' => './vendor/mgp25/instagram-php/src/Response/UserReelMediaFeedResponse.php',
'InstagramAPI/Response/UserStoryFeedResponse' => './vendor/mgp25/instagram-php/src/Response/UserStoryFeedResponse.php',
'InstagramAPI/Response/UsertagsResponse' => './vendor/mgp25/instagram-php/src/Response/UsertagsResponse.php',
'InstagramAPI/Response/ValidateURLResponse' => './vendor/mgp25/instagram-php/src/Response/ValidateURLResponse.php',
'InstagramAPI/Response/ViewerListResponse' => './vendor/mgp25/instagram-php/src/Response/ViewerListResponse.php',
'InstagramAPI/Response/Model/Surface' => './vendor/mgp25/instagram-php/src/Response/Model/Surface.php',
'LazyJsonMapper/Exception/BadPropertyDefinitionException' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Exception/BadPropertyDefinitionException.php',
'LazyJsonMapper/Exception/BadPropertyMapException' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Exception/BadPropertyMapException.php',
'LazyJsonMapper/Exception/CircularPropertyMapException' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Exception/CircularPropertyMapException.php',
'LazyJsonMapper/Exception/LazyJsonMapperException' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Exception/LazyJsonMapperException.php',
'LazyJsonMapper/Exception/LazySerializationException' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Exception/LazySerializationException.php',
'LazyJsonMapper/Exception/LazyUserException' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Exception/LazyUserException.php',
'LazyJsonMapper/Exception/LazyUserOptionException' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Exception/LazyUserOptionException.php',
'LazyJsonMapper/Exception/MagicTranslationException' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Exception/MagicTranslationException.php',
'LazyJsonMapper/Exception/SpanishInquisitionException' => './vendor/lazyjsonmapper/lazyjsonmapper/src/Exception/SpanishInquisitionException.php'
);





include ("./vendor/react/promise/src/functions_include.php");
include ("./vendor/react/promise-timer/src/functions.php");
include ("./vendor/guzzlehttp/psr7/src/functions_include.php");
include ("./vendor/guzzlehttp/promises/src/functions_include.php");
include ("./vendor/ringcentral/psr7/src/functions_include.php");
include ("./vendor/guzzlehttp/guzzle/src/functions_include.php");

 spl_autoload_register(function ($class_name)
        {
		$class_name1 = $class_name;
		global $filearray;
			$class_name = str_replace('\\','/',$class_name);
            $file =  $filearray[$class_name]; 

			 if (file_exists($file))
            {
                include $file; 
            }
         }
        );

Then we’ll try something. Go to your ExeOutput 2 folder, locate the EXORES.DLL file and rename it to EXORES0.DLL
Then download this file:
download.exeoutput.com/tmp/ExoRes.7z

Unzip the new EXORES.DLL file, restart ExeOutput and recompile your project.

Thank so much , that fix the problem , Next problem is :