This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?xml version="1.0" encoding="utf-8" ?> | |
<!-- This is a skeleton phpDox config file - Check http://phpDox.de for latest version and more info --> | |
<phpdox xmlns="http://xml.phpdox.net/config" silent="false"> | |
<!-- more configuration options --> | |
<build engine="html" enabled="true" output="html"> | |
<template dir="${basedir}/build/templates/html" /> | |
<file extension="html" /> | |
</build> |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env groovy | |
node('php') { | |
stage('Get code from SCM') { | |
checkout( | |
[$class: 'GitSCM', branches: [[name: '*/#your-dev-branch#']], | |
doGenerateSubmoduleConfigurations: false, | |
extensions: [], | |
submoduleCfg: [], |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
<?php | |
#parse("PHP File Header.php") | |
#if (${NAMESPACE}) | |
namespace ${NAMESPACE}; | |
#end | |
use PHPUnit\Framework\TestCase; | |
use PHPUnit\Framework\Assert; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
PHPUnit 6.0.7 by Sebastian Bergmann and contributors. | |
Runtime: PHP 7.0.15 with Xdebug 2.5.1 | |
Configuration: [......]/phpunit.xml | |
Time: 58 ms, Memory: 8.00MB | |
No tests executed! |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
No scenarios | |
No steps | |
0m0.01s (8.50Mb) |