summaryrefslogtreecommitdiffstats
path: root/composer.json
blob: 1569e61242ed4e538617aa28067619aa6f01e287 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
{
	"name": "andrewsville/php-token-reflection",
	"type": "library",
	"description": "Library emulating the PHP internal reflection using just the tokenized source code.",
	"keywords": ["library", "tokenizer", "reflection"],
	"homepage": "http://andrewsville.github.com/PHP-Token-Reflection/",
	"license": "BSD-3",

	"authors": [
		{
			"name": "Ondřej Nešpor",
			"homepage": "https://github.com/Andrewsville"
		},
		{
			"name": "Jaroslav Hanslík",
			"homepage": "https://github.com/kukulich"
		}
	],

	"require": {
		"php": ">=5.3.0",
		"ext-tokenizer": "*"
	},

	"autoload": {
		"psr-0": {
			"TokenReflection": "./"
		}
	}
}