我的要求是将braintree包含在我的laravel应用程序中。第一步我将整个sdk复制到我的laravel app文件夹中,文件夹名为braintree-php
。接下来,我进入我的C:\xampp\htdocs\cserver\resources\views\layouts
,我的app.blade.php
下面是我的代码的一部分。
<!DOCTYPE html>
@section('includebt')
@show
<html lang="en">
<head>
<meta charset="utf-8">
<meta http-equiv="X-UA-Compatible" content="IE=edge">
<meta name="viewport" content="width=device-width, initial-scale=1">
<!-- CSRF Token -->
<meta name="csrf-token" content="{{ csrf_token() }}">
<title>My system @yield ('role-heading')</title>
然后我有了我的实际刀片页面,我从上面的应用程序布局扩展。这只是代码的一部分,下面有更多详细信息,但我的重点是库包括。
@extends('layouts.app')
@section('includebt')
include(app_path().'/braintree-php/lib/Braintree.php');
Braintree_Configuration::environment('sandbox');
Braintree_Configuration::merchantId('**');
Braintree_Configuration::publicKey('***');
Braintree_Configuration::privateKey('***');
@endsection
我收到此错误Class 'Braintree\ClientToken' not found (View:
答案 0 :(得分:1)
你应该通过像
这样的作曲家来做打开composer.json文件 只有一个要求 做到这一点
"require": {
"laravel/framework": "5.0.*",
"illuminate/html": "^5.0",
"braintree/braintree_php" : "3.20.0"
},
并使用artisian的作曲家更新
之后,您需要设置环境并生成客户端令牌并按照documentation进行操作。你也可以考虑去packagist。