8000 Added to .gitignore, and created composer.json for packagist · ReservedDeveloper/csv-bundle@34eff7c · GitHub
[go: up one dir, main page]

Skip to content

Commit 34eff7c

Browse files
committed
Added to .gitignore, and created composer.json for packagist
1 parent 29fd100 commit 34eff7c

File tree

2 files changed

+26
-0
lines changed

2 files changed

+26
-0
lines changed

.gitignore

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,6 @@
1+
vendor
2+
composer.lock
3+
14
# IDE specific project files
25
.nbproject
36
*.iml

composer.json

Lines changed: 23 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,23 @@
1+
{
2+
"name": "nerdery/csv-bundle",
3+
"description": "Symfony bundle for handling CSV files.",
4+
"keywords": ["csv"],
5+
"homepage": "https://github.com/thenerdery/csv-bundle",
6+
"type": "symfony-bundle",
7+
"license": "BSD-2-Clause",
8+
"minimum-stability": "dev",
9+
"authors": [
10+
{
11+
"name": "Thomas Houfek",
12+
"email": "thomas.houfek@nerdery.com"
13+
}
14+
],
15+
"require": {
16+
"php": ">=5.3.0",
17+
"symfony/symfony": ">=2.1.0"
18+
},
19+
"autoload": {
20+
"psr-0": { "Nerdery\\CsvBundle": "" }
21+
},
22+
"target-dir": "Nerdery/CsvBundle"
23+
}

0 commit comments

Comments
 (0)
0