Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Remove old .io links #134

Merged
merged 4 commits into from
Apr 29, 2024
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
28 changes: 14 additions & 14 deletions docs/appendices/data-types.rst
Original file line number Diff line number Diff line change
Expand Up @@ -29,33 +29,33 @@ This driver maps CrateDB types to the following PHP types:
"`object`__", "`array`__"
"`array`__", "`array`__"

__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#boolean
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#boolean
__ https://www.php.net/manual/en/language.types.boolean.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://www.php.net/manual/en/language.types.integer.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://www.php.net/manual/en/language.types.integer.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://www.php.net/manual/en/language.types.integer.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://www.php.net/manual/en/language.types.string.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://www.php.net/manual/en/language.types.float.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#numeric-data
__ https://www.php.net/manual/en/language.types.float.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#character-data
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#character-data
__ https://www.php.net/manual/en/language.types.string.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#ip
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#ip
__ https://www.php.net/manual/en/language.types.string.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#dates-and-times
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#dates-and-times
__ https://www.php.net/manual/en/class.datetime.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#geo-point
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#geo-point
__ https://www.php.net/manual/en/language.types.array.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#geo-shape
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#geo-shape
__ https://www.php.net/manual/en/language.types.array.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#object
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#object
__ https://www.php.net/manual/en/language.types.array.php
__ https://crate.io/docs/crate/reference/en/latest/general/ddl/data-types.html#array
__ https://cratedb.com/docs/crate/reference/en/latest/general/ddl/data-types.html#array
__ https://www.php.net/manual/en/language.types.array.php

.. _column-type-definitions:
Expand Down
6 changes: 3 additions & 3 deletions docs/appendices/table-options.rst
Original file line number Diff line number Diff line change
Expand Up @@ -69,6 +69,6 @@ Example on how to adjust the replicas:
$myTable = new Table('my_table', [], [], [], 0, $options);


.. _CrateDB CREATE TABLE Documentation: https://crate.io/docs/crate/reference/en/latest/sql/statements/create-table.html
.. _CrateDB Sharding Documentation: https://crate.io/docs/crate/reference/en/latest/general/ddl/sharding.html
.. _CrateDB Partitioned Tables Documentation: https://crate.io/docs/crate/reference/en/latest/general/ddl/partitioned-tables.html
.. _CrateDB CREATE TABLE Documentation: https://cratedb.com/docs/crate/reference/en/latest/sql/statements/create-table.html
.. _CrateDB Sharding Documentation: https://cratedb.com/docs/crate/reference/en/latest/general/ddl/sharding.html
.. _CrateDB Partitioned Tables Documentation: https://cratedb.com/docs/crate/reference/en/latest/general/ddl/partitioned-tables.html
2 changes: 1 addition & 1 deletion docs/build.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"schemaVersion": 1,
"label": "docs build",
"message": "2.1.0"
"message": "2.1.2"
}
2 changes: 1 addition & 1 deletion docs/connect.rst
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ Next steps
Use the standard the `DBAL documentation`_ or `Doctrine ORM documentation`_ for the rest of
your setup process.

.. _database user: https://crate.io/docs/crate/reference/en/latest/admin/user-management.html
.. _database user: https://cratedb.com/docs/crate/reference/en/latest/admin/user-management.html
.. _DBAL: https://www.doctrine-project.org/projects/dbal.html
.. _DBAL documentation: https://www.doctrine-project.org/projects/doctrine-dbal/en/3.0/index.html
.. _Doctrine provided example: https://www.doctrine-project.org/projects/doctrine-orm/en/3.0/reference/configuration.html#obtaining-an-entitymanager
Expand Down
3 changes: 2 additions & 1 deletion docs/index.rst
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,8 @@ This driver also works with `Doctrine ORM`_, an `Object-Relational Mapper`_.
connect
appendices/index

.. _CrateDB: https://crate.io/products/cratedb/

.. _CrateDB: https://cratedb.com/product
.. _DBAL documentation: https://www.doctrine-project.org/projects/doctrine-dbal/en/3.0/index.html
.. _DBAL: https://www.doctrine-project.org/projects/dbal.html
.. _Doctrine ORM: https://www.doctrine-project.org/projects/orm.html
Expand Down
Loading