Skip to content

Commit

Permalink
Add Composer support.
Browse files Browse the repository at this point in the history
  • Loading branch information
Aliance committed May 20, 2017
1 parent 715d390 commit 9fd967a
Show file tree
Hide file tree
Showing 3 changed files with 1,510 additions and 0 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1 @@
vendor/
39 changes: 39 additions & 0 deletions composer.json
Original file line number Diff line number Diff line change
@@ -0,0 +1,39 @@
{
"name": "aliance/morton",
"description": "Z-order curve implementation",
"keywords": [
"Z-order curve",
"Z curve",
"Lebesgue curve",
"Morton order",
"Morton code",
"Bit",
"Bits",
"Bits interleaving",
"Morton"
],
"homepage": "https://github.com/Aliance/Morton",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Aliance",
"email": "[email protected]"
}
],
"support": {
"email": "[email protected]",
"issues": "https://github.com/Aliance/Morton/issues"
},
"autoload": {
"psr-4": {
"Aliance\\Morton\\": "src/"
}
},
"require": {
"php": ">=7.0"
},
"require-dev": {
"phpunit/phpunit": "^6.1"
}
}
Loading

0 comments on commit 9fd967a

Please sign in to comment.