Skip to content

Commit 9b7d843

Browse files
committed
Added composer.json
1 parent 5f02c3e commit 9b7d843

File tree

3 files changed

+246
-0
lines changed

3 files changed

+246
-0
lines changed

.gitignore

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,6 @@
1+
build/*
2+
!build/phpcs.xml
3+
!build/phpmd.xml
4+
vendor/*
5+
.idea/*
6+
.DS_Store

composer.json

Lines changed: 22 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,22 @@
1+
{
2+
"name": "smrtr/mysql-version-control",
3+
"description": "A crude version control system for mysql written in php",
4+
"keywords": ["database", "db", "mysql", "version control", "version", "migration", "update", "data", "structure"],
5+
"bin": ["bin/mysql-version-control", "bin/mysql-version-control"],
6+
"authors": [
7+
{
8+
"name": "Joe Green",
9+
"email": "[email protected]"
10+
}
11+
],
12+
"require": {
13+
"symfony/console": "v2.3.6",
14+
"symfony/process": "v2.3.7",
15+
"hearstuk/zf1-component-config": "~1.1"
16+
},
17+
"autoload": {
18+
"psr-0": {
19+
"": "src/"
20+
}
21+
}
22+
}

composer.lock

Lines changed: 218 additions & 0 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

0 commit comments

Comments
 (0)