Skip to content

Commit be1e357

Browse files
author
Gabriel Bull
committed
Changed version number
1 parent dd5e20e commit be1e357

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

63 files changed

+288
-437
lines changed

README.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Fork us!
99

1010
## Requirements
1111

12-
* PHP version 5.2.0 or higher
12+
* PHP version 5.3.0 or higher
1313

1414
## License
1515
PHPWord is licensed under [LGPL (GNU LESSER GENERAL PUBLIC LICENSE)](https://github.com/PHPOffice/PHPWord/blob/master/license.md)

changelog.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,3 @@
1-
2013-12-11 (v1.0):
1+
2013-12-11 (v0.7.0):
22
- Feature: (gavroche) Added composer file
33
- Feature: (gavroche) Added support for image wrapping style

composer.json

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212
}
1313
],
1414
"require": {
15-
"php": ">=5.2.0"
15+
"php": ">=5.3.0"
1616
},
1717
"require-dev": {
1818
"phpunit/phpunit": "3.7.28"

src/PHPWord.php

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* PHPWord
44
*
5-
* Copyright (c) 2011 PHPWord
5+
* Copyright (c) 2013 PHPWord
66
*
77
* This library is free software; you can redistribute it and/or
88
* modify it under the terms of the GNU Lesser General Public
@@ -20,9 +20,9 @@
2020
*
2121
* @category PHPWord
2222
* @package PHPWord
23-
* @copyright Copyright (c) 010 PHPWord
23+
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/PHPWord)
2424
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
25-
* @version Beta 0.6.3, 08.07.2011
25+
* @version 0.7.0
2626
*/
2727

2828
/** PHPWORD_BASE_PATH */
@@ -32,13 +32,8 @@
3232
PHPWord_Autoloader::register();
3333
}
3434

35-
3635
/**
37-
* PHPWord
38-
*
39-
* @category PHPWord
40-
* @package PHPWord
41-
* @copyright Copyright (c) 2011 PHPWord
36+
* Class PHPWord
4237
*/
4338
class PHPWord
4439
{

src/PHPWord/Autoloader.php

Lines changed: 6 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* PHPWord
44
*
5-
* Copyright (c) 2011 PHPWord
5+
* Copyright (c) 2013 PHPWord
66
*
77
* This library is free software; you can redistribute it and/or
88
* modify it under the terms of the GNU Lesser General Public
@@ -20,13 +20,16 @@
2020
*
2121
* @category PHPWord
2222
* @package PHPWord
23-
* @copyright Copyright (c) 010 PHPWord
23+
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/PHPWord)
2424
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
25-
* @version Beta 0.6.3, 08.07.2011
25+
* @version 0.7.0
2626
*/
2727

2828
define('PHPWORD_BASE_PATH', realpath(__DIR__ . '/../') . '/');
2929

30+
/**
31+
* Class PHPWord_Autoloader
32+
*/
3033
class PHPWord_Autoloader
3134
{
3235
/**

src/PHPWord/DocumentProperties.php

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* PHPWord
44
*
5-
* Copyright (c) 2011 PHPWord
5+
* Copyright (c) 2013 PHPWord
66
*
77
* This library is free software; you can redistribute it and/or
88
* modify it under the terms of the GNU Lesser General Public
@@ -20,18 +20,14 @@
2020
*
2121
* @category PHPWord
2222
* @package PHPWord
23-
* @copyright Copyright (c) 010 PHPWord
23+
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/PHPWord)
2424
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
25-
* @version Beta 0.6.3, 08.07.2011
25+
* @version 0.7.0
2626
*/
2727

2828

2929
/**
3030
* PHPWord_DocumentProperties
31-
*
32-
* @category PHPWord
33-
* @package PHPWord
34-
* @copyright Copyright (c) 2009 - 2011 PHPWord (http://www.codeplex.com/PHPWord)
3531
*/
3632
class PHPWord_DocumentProperties
3733
{

src/PHPWord/HashTable.php

Lines changed: 3 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* PHPWord
44
*
5-
* Copyright (c) 2009 - 2010 PHPWord
5+
* Copyright (c) 2013 PHPWord
66
*
77
* This library is free software; you can redistribute it and/or
88
* modify it under the terms of the GNU Lesser General Public
@@ -20,18 +20,14 @@
2020
*
2121
* @category PHPWord
2222
* @package PHPWord
23-
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
23+
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/PHPWord)
2424
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
25-
* @version ##VERSION##, ##DATE##
25+
* @version 0.7.0
2626
*/
2727

2828

2929
/**
3030
* PHPWord_HashTable
31-
*
32-
* @category PHPWord
33-
* @package PHPWord
34-
* @copyright Copyright (c) 2009 - 2010 PHPWord (http://www.codeplex.com/PHPWord)
3531
*/
3632
class PHPWord_HashTable
3733
{

src/PHPWord/IOFactory.php

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* PHPWord
44
*
5-
* Copyright (c) 2011 PHPWord
5+
* Copyright (c) 2013 PHPWord
66
*
77
* This library is free software; you can redistribute it and/or
88
* modify it under the terms of the GNU Lesser General Public
@@ -20,18 +20,13 @@
2020
*
2121
* @category PHPWord
2222
* @package PHPWord
23-
* @copyright Copyright (c) 010 PHPWord
23+
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/PHPWord)
2424
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
25-
* @version Beta 0.6.3, 08.07.2011
25+
* @version 0.7.0
2626
*/
2727

28-
2928
/**
30-
* PHPWord_IOFactory
31-
*
32-
* @category PHPWord
33-
* @package PHPWord
34-
* @copyright Copyright (c) 2011 PHPWord
29+
* Class PHPWord_IOFactory
3530
*/
3631
class PHPWord_IOFactory
3732
{

src/PHPWord/Media.php

Lines changed: 4 additions & 10 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* PHPWord
44
*
5-
* Copyright (c) 2011 PHPWord
5+
* Copyright (c) 2013 PHPWord
66
*
77
* This library is free software; you can redistribute it and/or
88
* modify it under the terms of the GNU Lesser General Public
@@ -20,18 +20,13 @@
2020
*
2121
* @category PHPWord
2222
* @package PHPWord
23-
* @copyright Copyright (c) 010 PHPWord
23+
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/PHPWord)
2424
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
25-
* @version Beta 0.6.3, 08.07.2011
25+
* @version 0.7.0
2626
*/
2727

28-
2928
/**
30-
* PHPWord_Media
31-
*
32-
* @category PHPWord
33-
* @package PHPWord
34-
* @copyright Copyright (c) 2011 PHPWord
29+
* Class PHPWord_Media
3530
*/
3631
class PHPWord_Media
3732
{
@@ -72,7 +67,6 @@ class PHPWord_Media
7267
*
7368
* @param string $src
7469
* @param string $type
75-
*
7670
* @return mixed
7771
*/
7872
public static function addSectionMediaElement($src, $type, PHPWord_Section_MemoryImage $memoryImage = null)

src/PHPWord/Section.php

Lines changed: 4 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,7 @@
22
/**
33
* PHPWord
44
*
5-
* Copyright (c) 2011 PHPWord
5+
* Copyright (c) 2013 PHPWord
66
*
77
* This library is free software; you can redistribute it and/or
88
* modify it under the terms of the GNU Lesser General Public
@@ -20,18 +20,13 @@
2020
*
2121
* @category PHPWord
2222
* @package PHPWord
23-
* @copyright Copyright (c) 010 PHPWord
23+
* @copyright Copyright (c) 2013 PHPWord (http://www.codeplex.com/PHPWord)
2424
* @license http://www.gnu.org/licenses/old-licenses/lgpl-2.1.txt LGPL
25-
* @version Beta 0.6.3, 08.07.2011
25+
* @version 0.7.0
2626
*/
2727

28-
2928
/**
30-
* PHPWord_Section
31-
*
32-
* @category PHPWord
33-
* @package PHPWord_Section
34-
* @copyright Copyright (c) 2011 PHPWord
29+
* Class PHPWord_Section
3530
*/
3631
class PHPWord_Section
3732
{

0 commit comments

Comments
 (0)