Download the PHP package tekintian/sentry_php without Composer
On this page you can find all versions of the php package tekintian/sentry_php. It is possible to download/install these versions without Composer. Possible dependencies are resolved automatically.
Table of contents
Download tekintian/sentry_php
More information about tekintian/sentry_php
Files in tekintian/sentry_php
Download tekintian/sentry_php
More information about tekintian/sentry_php
Files in tekintian/sentry_php
Vendor tekintian
Package sentry_php
Short Description Sentry PHP 可视化日志管理系统,支持 php5.3以上版本, 支持 thinkphp5, ci, yii2, laravel等PHP框架, 可以集成到框架中,也可直接使用, sentry raven thinkphp5适配, tp5 sentry 日志管理工具, sentry sdk for php thinkphp5,
License BSD-3-Clause
Homepage https://github.com/tekintian/sentry_php
Package sentry_php
Short Description Sentry PHP 可视化日志管理系统,支持 php5.3以上版本, 支持 thinkphp5, ci, yii2, laravel等PHP框架, 可以集成到框架中,也可直接使用, sentry raven thinkphp5适配, tp5 sentry 日志管理工具, sentry sdk for php thinkphp5,
License BSD-3-Clause
Homepage https://github.com/tekintian/sentry_php
Please rate this library. Is it a good library?
Informations about the package sentry_php
Sentry PHP日志管理系统
Sentry PHP 可视化日志管理系统,支持 php5.3以上版本, 支持 thinkphp5, ci, yii2, laravel等PHP框架, 可以集成到框架中,也可直接使用.
PHP集成 sentry 通用方法:
- composer require "tekintian/sentry_php"
# 2种载入方式,选择其中一种即可
# 方案 一: 采用autoload.php自动载入方式加载 Sentry
require_once __DIR__ . 'vendor/autoload.php';
# 方案 二: 在你的入口文件中载入Sentry ,直接载入方式,
require_once __DIR__ . '/vendor/tekintian/sentry_php/src/sentry_php/Sentry.php';
- 在你的入口文件中增加
//$client_url 为你的sentry服务端分配的客户端URL \tekintian\sentry_php\Sentry::listen('http://88861b9070395551b55063f03a6ca988:[email protected]/1');
thinkphp5 sentry 可视化日志管理系统配置步骤
一. thinkphp/base.php 配置方法 (推荐此种方案)
-
在项目根目录执行 composer require "tekintian/sentry_php"
- 在 thinkphp/base.php 文件的最后增加一下代码
# 注意将 http://88861b9070395551b55063f03a6ca988:[email protected]/1 换成你自己的 sentry 服务端分配的URL即可
// sentry日志监听开启;
\tekintian\sentry_php\Sentry::listen('http://88861b9070395551b55063f03a6ca988:[email protected]/1');
提示: 在 thinkphp/base.php 文件的最后, thinkphp5已经自动加载了 Sentry类; 如果是在 index.php 入口文件最前面的话需要手动加载 Sentry 后才可执行
二. tp5 public/index.php 配置方法
// Sentry start
// Sentry 放到TP入口文件的最前面, 需要手动加载Sentry.php
require __DIR__ . '/../vendor/tekintian/sentry_php/src/sentry_php/Sentry.php';
// sentry日志监听开启;
\tekintian\sentry_php\Sentry::listen('http://88861b9070395551b55063f03a6ca988:[email protected]/1');
// sentry end
// 定义应用目录
define('APP_PATH', __DIR__ . '/../application/');
// 加载框架引导文件
require __DIR__ . '/../thinkphp/start.php';
thinkphp5 sentry 配置截图
- thinkphp/base.php 入口配置
PS: Sentry php Thinkphp5 只能放到 thinkphp/base.php 这个文件中,放到其他地方可能导致不正常!
Tekin
All versions of sentry_php with dependencies
PHP Build Version
Package Version
No informations.
The package tekintian/sentry_php contains the following files
Loading the files please wait ....