-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
60 lines (60 loc) · 1.33 KB
/
composer.json
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
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
{
"name": "lucatume/klein52",
"description": "A lightning fast router for PHP 5.2 (fork of chriso/klein.php) ",
"keywords": [
"router",
"routing",
"sinatra",
"boilerplate"
],
"homepage": "https://github.com/lucatume/klein.php",
"license": "MIT",
"authors": [
{
"name": "Chris O'Hara",
"email": "[email protected]",
"homepage": "http://chris6f.com/",
"role": "Developer"
},
{
"name": "Luca Tumedei",
"email": "[email protected]",
"homepage": "http://theaveragedev.com",
"role": "PHP 5.2 adaptation"
}
],
"require": {
"php": ">=5.2.17",
"xrstf/composer-php52": "1.*"
},
"require-dev": {
"phpunit/phpunit-php52": "dev-3.6.12-php52",
"phpunit/phpunit-mock-objects-php52": "dev-1.1.0-php52"
},
"repositories": [
{
"type": "git",
"url": "https://github.com/garex/phpunit"
},
{
"type": "git",
"url": "https://github.com/garex/phpunit-mock-objects"
}
],
"autoload": {
"files": [
"klein_load.php"
]
},
"scripts": {
"post-install-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-update-cmd": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
],
"post-autoload-dump": [
"xrstf\\Composer52\\Generator::onPostInstallCmd"
]
}
}