IMPROVED : Moved examples out of Classes directory
|
|
@ -2,4 +2,9 @@
|
|||
/.settings
|
||||
/.buildpath
|
||||
/.project
|
||||
/docs
|
||||
/docs
|
||||
|
||||
*.odt
|
||||
*.docx
|
||||
*.rtf
|
||||
*.txt
|
||||
10
.travis.yml
|
|
@ -26,14 +26,14 @@ before_script:
|
|||
|
||||
script:
|
||||
## PHP_CodeSniffer
|
||||
- phpcs --standard=PSR1 src/
|
||||
- phpcs --standard=PSR2 src/
|
||||
- phpcs --standard=PSR1 Classes/
|
||||
- phpcs --standard=PSR2 Classes/
|
||||
## PHP Copy/Paste Detector
|
||||
- php phpcpd.phar --verbose src/
|
||||
- php phpcpd.phar --verbose Classes/
|
||||
## PHP Mess Detector
|
||||
- phpmd src/ text codesize,unusedcode,naming,design
|
||||
- phpmd Classes/ text codesize,unusedcode,naming,design
|
||||
## PHPLOC
|
||||
- php phploc.phar src/
|
||||
- php phploc.phar Classes/
|
||||
|
||||
notifications:
|
||||
email:
|
||||
|
|
|
|||
|
Before Width: | Height: | Size: 1.1 KiB After Width: | Height: | Size: 1.1 KiB |
|
Before Width: | Height: | Size: 1.8 KiB After Width: | Height: | Size: 1.8 KiB |
|
Before Width: | Height: | Size: 1.9 KiB After Width: | Height: | Size: 1.9 KiB |
|
|
@ -30,4 +30,5 @@ Fixed in branch for release 0.7 :
|
|||
- General: (deds) - add indentation support to paragraphs
|
||||
- General: (Progi1984) GH-27 - Support for Composer
|
||||
- General: (Progi1984) - Basic CI with Travis
|
||||
- General: (Progi1984) - Added PHPWord_Exception and exception when could not copy the template
|
||||
- General: (Progi1984) - Added PHPWord_Exception and exception when could not copy the template
|
||||
- General: (Progi1984) - IMPROVED : Moved examples out of Classes directory
|
||||
|
|
@ -29,7 +29,7 @@
|
|||
},
|
||||
"autoload": {
|
||||
"psr-0": {
|
||||
"PHPWord": "src/"
|
||||
"PHPWord": "Classes/"
|
||||
}
|
||||
}
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,5 +0,0 @@
|
|||
|
||||
*.odt
|
||||
*.docx
|
||||
*.rtf
|
||||
*.txt
|
||||
|
|
@ -9,7 +9,7 @@ else {
|
|||
define('EOL', '<br />');
|
||||
}
|
||||
|
||||
require_once '../src/PHPWord.php';
|
||||
require_once '../Classes/PHPWord.php';
|
||||
|
||||
// New Word Document
|
||||
echo date('H:i:s') , " Create new PHPWord object" , EOL;
|
||||
|
|
|
|||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
require_once '../PHPWord.php';
|
||||
require_once '../../Classes/PHPWord.php';
|
||||
|
||||
// New Word Document
|
||||
$PHPWord = new PHPWord();
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
require_once '../PHPWord.php';
|
||||
require_once '../../Classes/PHPWord.php';
|
||||
|
||||
// New Word Document
|
||||
$PHPWord = new PHPWord();
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
require_once '../PHPWord.php';
|
||||
require_once '../../Classes/PHPWord.php';
|
||||
|
||||
// New Word Document
|
||||
$PHPWord = new PHPWord();
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
require_once '../PHPWord.php';
|
||||
require_once '../../Classes/PHPWord.php';
|
||||
|
||||
// New Word Document
|
||||
$PHPWord = new PHPWord();
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
require_once '../PHPWord.php';
|
||||
require_once '../../Classes/PHPWord.php';
|
||||
|
||||
// New Word Document
|
||||
$PHPWord = new PHPWord();
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
require_once '../PHPWord.php';
|
||||
require_once '../../Classes/PHPWord.php';
|
||||
|
||||
// New Word Document
|
||||
$PHPWord = new PHPWord();
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
require_once '../PHPWord.php';
|
||||
require_once '../../Classes/PHPWord.php';
|
||||
|
||||
// New Word Document
|
||||
$PHPWord = new PHPWord();
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
require_once '../PHPWord.php';
|
||||
require_once '../../Classes/PHPWord.php';
|
||||
|
||||
// New Word Document
|
||||
$PHPWord = new PHPWord();
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
require_once '../PHPWord.php';
|
||||
require_once '../../Classes/PHPWord.php';
|
||||
|
||||
$PHPWord = new PHPWord();
|
||||
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
require_once '../PHPWord.php';
|
||||
require_once '../../Classes/PHPWord.php';
|
||||
|
||||
// New Word Document
|
||||
$PHPWord = new PHPWord();
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
require_once '../PHPWord.php';
|
||||
require_once '../../Classes/PHPWord.php';
|
||||
|
||||
// New Word Document
|
||||
$PHPWord = new PHPWord();
|
||||
|
|
@ -1,5 +1,5 @@
|
|||
<?php
|
||||
require_once '../PHPWord.php';
|
||||
require_once '../../Classes/PHPWord.php';
|
||||
|
||||
// New Word Document
|
||||
$PHPWord = new PHPWord();
|
||||
|
Before Width: | Height: | Size: 37 KiB After Width: | Height: | Size: 37 KiB |
|
Before Width: | Height: | Size: 24 KiB After Width: | Height: | Size: 24 KiB |