You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
[](https://gitter.im/PHPOffice/PHPPowerPoint)
10
10
11
11
12
-
PHPPowerPoint is a library written in pure PHP that provides a set of classes to write to different presentation file formats, i.e. Microsoft [Office Open XML](http://en.wikipedia.org/wiki/Office_Open_XML) (OOXML or OpenXML) or OASIS [Open Document Format for Office Applications](http://en.wikipedia.org/wiki/OpenDocument) (OpenDocument or ODF).
12
+
PHPPresentation is a library written in pure PHP that provides a set of classes to write to different presentation file formats, i.e. Microsoft [Office Open XML](http://en.wikipedia.org/wiki/Office_Open_XML) (OOXML or OpenXML) or OASIS [Open Document Format for Office Applications](http://en.wikipedia.org/wiki/OpenDocument) (OpenDocument or ODF).
13
13
14
-
PHPPowerPoint is an open source project licensed under the terms of [LGPL version 3](https://github.com/PHPOffice/PHPPowerPoint/blob/develop/COPYING.LESSER). PHPPowerPoint is aimed to be a high quality software product by incorporating [continuous integration](https://travis-ci.org/PHPOffice/PHPPowerPoint) and [unit testing](http://phpoffice.github.io/PHPPowerPoint/coverage/develop/). You can learn more about PHPPowerPoint by reading the [Developers' Documentation](http://phppowerpoint.readthedocs.org/) and the [API Documentation](http://phpoffice.github.io/PHPPowerPoint/docs/develop/).
14
+
PHPPresentation is an open source project licensed under the terms of [LGPL version 3](https://github.com/PHPOffice/PHPPresentation/blob/develop/COPYING.LESSER). PHPPresentation is aimed to be a high quality software product by incorporating [continuous integration](https://travis-ci.org/PHPOffice/PHPPowerPoint) and [unit testing](http://phpoffice.github.io/PHPPresentation/coverage/develop/). You can learn more about PHPPresentation by reading the [Developers' Documentation](http://phppowerpoint.readthedocs.org/) and the [API Documentation](http://phpoffice.github.io/PHPPresentation/docs/develop/).
More examples are provided in the [samples folder](samples/). You can also read the [Developers' Documentation](http://phppowerpoint.readthedocs.org/) and the [API Documentation](http://phpoffice.github.io/PHPPowerPoint/docs/master/) for more detail.
114
+
More examples are provided in the [samples folder](samples/). You can also read the [Developers' Documentation](http://phppowerpoint.readthedocs.org/) and the [API Documentation](http://phpoffice.github.io/PHPPresentation/docs/master/) for more detail.
115
115
116
116
117
117
## Contributing
118
118
119
-
We welcome everyone to contribute to PHPPowerPoint. Below are some of the things that you can do to contribute:
119
+
We welcome everyone to contribute to PHPPresentation. Below are some of the things that you can do to contribute:
-[Fork us](https://github.com/PHPOffice/PHPPowerPoint/fork) and [request a pull](https://github.com/PHPOffice/PHPPowerPoint/pulls) to the [develop](https://github.com/PHPOffice/PHPPowerPoint/tree/develop) branch
123
-
- Submit [bug reports or feature requests](https://github.com/PHPOffice/PHPPowerPoint/issues) to GitHub
-[Fork us](https://github.com/PHPOffice/PHPPresentation/fork) and [request a pull](https://github.com/PHPOffice/PHPPresentation/pulls) to the [develop](https://github.com/PHPOffice/PHPPresentation/tree/develop) branch
123
+
- Submit [bug reports or feature requests](https://github.com/PHPOffice/PHPPresentation/issues) to GitHub
124
124
- Follow [@PHPOffice](https://twitter.com/PHPOffice) on Twitter
PHPPowerPoint requires PHP 5.3+ since 0.2, while PHPPowerPoint 0.1 from CodePlex
17
+
PHPPresentation requires PHP 5.3+ since 0.2, while PHPPowerPoint 0.1 from CodePlex
18
18
can run with PHP 5.2. There’s a lot of new features that we can get from
19
19
PHP 5.3 and it’s been around since 2009! You should upgrade your PHP
20
-
version to use PHPPowerPoint 0.2+.
20
+
version to use PHPPresentation 0.2+.
21
21
22
22
Why am I getting a class not found error?
23
23
-----------------------------------------
@@ -31,7 +31,7 @@ without having to specify the full class name in your code:
31
31
32
32
.. code-block:: php
33
33
34
-
use PhpOffice\PhpPowerpoint\Shape\MemoryDrawing as MemoryDrawing;
34
+
use PhpOffice\PhpPresentation\Shape\MemoryDrawing as MemoryDrawing;
35
35
36
36
If you *have* followed the installation instructions and you *have* added
37
37
the necessary ``use`` statements to your code, then maybe you are still
@@ -47,3 +47,8 @@ translating the verbose class references into the correct file name and
47
47
location. However, ``PHPPowerPoint`` now relies exclusively on the PSR-4
48
48
autoloader, so old code that may have been referencing the classes with
49
49
the verbose class names will need to be updated accordingly.
50
+
51
+
Why PHPPowerPoint become PHPPresentation ?
52
+
------------------------------------------
53
+
As Roman Syroeshko noticed us, PowerPoint is a `trademark <http://www.microsoft.com/en-us/legal/IntellectualProperty/Trademarks/EN-US.aspx#332b86b0-befe-4b89-862e-d538e2a653e0>`__.
54
+
For avoiding any problems with Microsoft, we decide to change the name to a more logic name, with our panel of readers/writers.
Copy file name to clipboardexpand all lines: docs/index.rst
+5-5
Original file line number
Diff line number
Diff line change
@@ -1,14 +1,14 @@
1
-
..PHPPowerPoint documentation master file, created by
1
+
..PHPPresentation documentation master file, created by
2
2
sphinx-quickstart on Fri Mar 14 23:09:26 2014.
3
3
You can adapt this file completely to your liking, but it should at least
4
4
contain the root `toctree` directive.
5
5
6
-
Welcome to PHPPowerPoint's documentation
6
+
Welcome to PHPPresentation's documentation
7
7
========================================
8
8
9
-
|PHPPowerPoint|
9
+
|PHPPresentation|
10
10
11
-
PHPPowerPoint is a library written in pure PHP that provides a set of classes to write to different presentation file formats, i.e. OpenXML (.pptx) and OpenDocument (.odp). PHPPowerPoint is an open source project licensed under LGPL.
11
+
PHPPresentation is a library written in pure PHP that provides a set of classes to write to different presentation file formats, i.e. OpenXML (.pptx) and OpenDocument (.odp). PHPPresentation is an open source project licensed under LGPL.
0 commit comments