Skip to content

Commit

Permalink
Update name (#1)
Browse files Browse the repository at this point in the history
* Update .gitignore
* Update package name
  • Loading branch information
kalifg authored Feb 1, 2024
1 parent ff0de51 commit 0cacdfd
Show file tree
Hide file tree
Showing 3 changed files with 11 additions and 4 deletions.
5 changes: 4 additions & 1 deletion .gitignore
Original file line number Diff line number Diff line change
@@ -1,4 +1,7 @@
# Hide eclipse project data
.buildpath
.project
.settings
.settings
.idea
vendor
composer.lock
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ doctrine-timestamp

Implementation of a timestamp type for the Doctrine DBAL

This library maps the [DateTime](http://www.php.net/manual/fr/class.datetime.php)
This library maps the [DateTime](http://www.php.net/manual/en/class.datetime.php)
PHP class to a Unix timestamp (integer) in the database.

Installation
Expand All @@ -14,7 +14,7 @@ Just add this to your composer.json
```json
{
"require": {
"mmerian/doctrine-timestamp": "dev-master"
"chesscom/doctrine-timestamp": "^1"
}
}
```
Expand Down
6 changes: 5 additions & 1 deletion composer.json
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
{
"name": "mmerian/doctrine-timestamp",
"name": "chesscom/doctrine-timestamp",
"type": "library",
"description": "A library adding the timestamp type to Doctrine ORM",
"keywords": ["Doctrine", "ORM", "timestamp", "DateTime"],
Expand All @@ -8,6 +8,10 @@
{
"name": "Maxime Mérian",
"email": "[email protected]"
},
{
"name": "Michael Dwyer",
"email": "[email protected]"
}
],
"require" : {
Expand Down

0 comments on commit 0cacdfd

Please sign in to comment.