Skip to content

Commit 57d2d48

Browse files
committed
initialize the project
1 parent 48ccd76 commit 57d2d48

File tree

8 files changed

+1203
-3
lines changed

8 files changed

+1203
-3
lines changed

.gitignore

Lines changed: 1 addition & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
11
composer.phar
22
vendor/
3+
build/
34

4-
# Commit your application's lock file http://getcomposer.org/doc/01-basic-usage.md#composer-lock-the-lock-file
5-
# You may choose to ignore a library lock file http://getcomposer.org/doc/02-libraries.md#lock-file
6-
# composer.lock

composer.json

Lines changed: 21 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,21 @@
1+
{
2+
"name": "phpdocumentor/reflectioncommon",
3+
"keywords": ["phpdoc", "phpDocumentor", "reflection", "static analysis", "FQSEN"],
4+
"homepage": "http://www.phpdoc.org",
5+
"description": "Common reflection classes used by phpdocumentor to reflect the code structure",
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "Jaap van Otterdijk",
10+
"email": "opensource@ijaap.nl"
11+
}
12+
],
13+
"autoload" : {
14+
"psr-4" : {
15+
"phpDocumentor\\Reflection\\": ["src"]
16+
}
17+
},
18+
"require-dev": {
19+
"phpunit/phpunit": "^4.6"
20+
}
21+
}

0 commit comments

Comments
 (0)