You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
35 lines
812 B
35 lines
812 B
4 years ago
|
{
|
||
|
"name": "phpunit/php-token-stream",
|
||
|
"description": "Wrapper around PHP's tokenizer extension.",
|
||
|
"type": "library",
|
||
|
"keywords": ["tokenizer"],
|
||
|
"homepage": "https://github.com/sebastianbergmann/php-token-stream/",
|
||
|
"license": "BSD-3-Clause",
|
||
|
"authors": [
|
||
|
{
|
||
|
"name": "Sebastian Bergmann",
|
||
|
"email": "sebastian@phpunit.de"
|
||
|
}
|
||
|
],
|
||
|
"support": {
|
||
|
"issues": "https://github.com/sebastianbergmann/php-token-stream/issues"
|
||
|
},
|
||
|
"require": {
|
||
|
"php": ">=5.3.3",
|
||
|
"ext-tokenizer": "*"
|
||
|
},
|
||
|
"require-dev": {
|
||
|
"phpunit/phpunit": "~4.2"
|
||
|
},
|
||
|
"autoload": {
|
||
|
"classmap": [
|
||
|
"src/"
|
||
|
]
|
||
|
},
|
||
|
"extra": {
|
||
|
"branch-alias": {
|
||
|
"dev-master": "1.4-dev"
|
||
|
}
|
||
|
}
|
||
|
}
|