Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Updated/New Composer support for PHP_ParserGenerator #1

Merged
merged 1 commit into from Feb 20, 2014
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Jump to
Jump to file
Failed to load files.
Diff view
Diff view
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
# composer related
composer.lock
composer.phar
vendor
28 changes: 28 additions & 0 deletions composer.json
@@ -0,0 +1,28 @@
{
"authors": [
{
"email": "cellog@php.net",
"name": "Greg Beaver",
"role": "Lead"
}
],
"autoload": {
"classmap": [
"./"
]
},
"description": "More info available on: http://pear.php.net/package/PHP_ParserGenerator",
"license": "New BSD License",
"name": "pear/php_parsergenerator",
"support": {
"issues": "http://pear.php.net/bugs/search.php?cmd=display&package_name[]=PHP_ParserGenerator",
"source": "https://github.com/pear/PHP_ParserGenerator"
},
"type": "library",
"require": {
"pear/pear_exception": "*"
},
"require-dev": {
"phpunit/phpunit": "*"
}
}