Skip to content

Commit 6a4a3f2

Browse files
committed
more updates to adjust project name, closes #24
1 parent 69d0202 commit 6a4a3f2

File tree

6 files changed

+14
-14
lines changed

6 files changed

+14
-14
lines changed

docs/Makefile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# You can set these variables from the command line.
55
SPHINXOPTS =
66
SPHINXBUILD = sphinx-build
7-
SPHINXPROJ = image-php
7+
SPHINXPROJ = gfx-php
88
SOURCEDIR = .
99
BUILDDIR = _build
1010

docs/conf.py

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -19,7 +19,7 @@
1919

2020
# -- Project information -----------------------------------------------------
2121

22-
project = 'image-php'
22+
project = 'gfx-php'
2323
copyright = '2018, Michael Billington'
2424
author = 'Michael Billington'
2525

@@ -102,7 +102,7 @@
102102
# -- Options for HTMLHelp output ---------------------------------------------
103103

104104
# Output file base name for HTML help builder.
105-
htmlhelp_basename = 'image-phpdoc'
105+
htmlhelp_basename = 'gfx-phpdoc'
106106

107107

108108
# -- Options for LaTeX output ------------------------------------------------
@@ -129,7 +129,7 @@
129129
# (source start file, target name, title,
130130
# author, documentclass [howto, manual, or own class]).
131131
latex_documents = [
132-
(master_doc, 'image-php.tex', 'image-php Documentation',
132+
(master_doc, 'gfx-php.tex', 'gfx-php Documentation',
133133
'Michael Billington', 'manual'),
134134
]
135135

@@ -139,7 +139,7 @@
139139
# One entry per manual page. List of tuples
140140
# (source start file, name, description, authors, manual section).
141141
man_pages = [
142-
(master_doc, 'image-php', 'image-php Documentation',
142+
(master_doc, 'gfx-php', 'gfx-php Documentation',
143143
[author], 1)
144144
]
145145

@@ -150,8 +150,8 @@
150150
# (source start file, target name, title, author,
151151
# dir menu entry, description, category)
152152
texinfo_documents = [
153-
(master_doc, 'image-php', 'image-php Documentation',
154-
author, 'image-php', 'One line description of project.',
153+
(master_doc, 'gfx-php', 'gfx-php Documentation',
154+
author, 'gfx-php', 'One line description of project.',
155155
'Miscellaneous'),
156156
]
157157

docs/index.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -25,11 +25,11 @@ Features
2525
Installation
2626
------------
2727

28-
Install image-php by running:
28+
Install gfx-php by running:
2929

3030
.. code-block:: bash
3131
32-
composer install mike42/image-php
32+
composer install mike42/gfx-php
3333
3434
Contribute
3535
----------

docs/user/formats.rst

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -29,14 +29,14 @@ In either case, the input format is determined using the file's `magic number`_.
2929
Netpbm Formats
3030
^^^^^^^^^^^^^^
3131

32-
The Netpbm formats are a series of uncompressed bitmap formats, which can represent most types of image. The formats can be read by ``image-php``.
32+
The Netpbm formats are a series of uncompressed bitmap formats, which can represent most types of image. The formats can be read by ``gfx-php``.
3333

3434
:PNM: This is a file extension only. Files carrying ``.pnm`` extension can carry any of the below formats.
3535
:PPM: This is a color raster format. A PPM file is identified by the P6 magic number, and will be loaded into an instance of :class:`RgbRasterImage`.
3636
:PGM: This is a monochrome raster format. A PGM file is identified by the P5 magic number, and will be loaded instance of :class:`GrayscaleRasterImage`.
3737
:PBM: This is a 1-bit bitmap format. A PBM file is identified by the P4 header, and loaded into an instance of :class:`BlackAndWhiteRasterImage`.
3838

39-
Each of these formats has both a binary and text encoding. ``image-php`` only supports the binary encodings at this stage.
39+
Each of these formats has both a binary and text encoding. ``gfx-php`` only supports the binary encodings at this stage.
4040

4141
Output formats
4242
--------------

docs/user/imagetypes.rst

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
Image types
22
===========
33

4-
Every raster image in ``image-php`` implements the :class:`RasterImage` interface.
4+
Every raster image in ``gfx-php`` implements the :class:`RasterImage` interface.
55

66
There are several classes that implement this interface, which handle different representations of
77
the image data.

src/Mike42/GfxPhp/RasterImage.php

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
2-
// This file is part of mike42/image-php, which is released under LGPL-2.1-or-later.
3-
// See file LICENSE or go to https://github.com/mike42/image-php for full license details
2+
// This file is part of mike42/gfx-php, which is released under LGPL-2.1-or-later.
3+
// See file LICENSE or go to https://github.com/mike42/gfx-php for full license details
44

55
/**
66
* Top-level namespace for Mike42\GfxPhp, containing the classes and

0 commit comments

Comments
 (0)