platform :ios, '18.2'

project 'NativePHP.xcodeproj'

def shared_pods
  use_frameworks! :linkage => :static

  # NATIVEPHP_PLUGIN_PODS_START
  # NATIVEPHP_PLUGIN_PODS_END
end

target 'NativePHP' do
  shared_pods
end

target 'NativePHP-simulator' do
  shared_pods
end
