forked from jon-acker/phpspec-kohana
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
63 lines (63 loc) · 1.83 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
61
62
63
{
"name": "dohzoh/phpspec-fuel",
"description": "fuelphp1.x extension for phpspec",
"type": "library",
"keywords": ["phpspec", "fuelphp"],
"homepage": "https://github.com/dohzoh/PhpspecFuelExtension.git",
"license": "MIT",
"require": {
"php": ">=5.3.3",
"phpunit/phpunit": "3.7.*",
"phpspec/phpspec": "~2.0",
"monolog/monolog": "1.5.*"
},
"require-dev": {
"behat/behat": "dev-master",
"squizlabs/php_codesniffer": "dev-phpcs-fixer",
"fuel/core": "1.7.2",
"bossa/phpspec2-expect": "dev-master"
},
"autoload": {
"psr-0": {
"PhpSpec\\Fuelphp": "src/"
}
},
"autoload-dev":{
"classmap":[
"vendor/behat/behat/features/bootstrap/FeatureContext.php",
"vendor/phpspec/phpspec/features/bootstrap/PhpSpecContext.php",
"vendor/phpspec/phpspec/features/bootstrap/Console",
"vendor/fuel/core",
"vendor/fuel/core/classes"
]
},
"config": {
"bin-dir": "bin"
},
"minimum-stability": "dev",
"authors": [
{
"name": "dozo",
"email": "[email protected]"
}
],
"repositories": [
{
"type": "package",
"package": {
"name": "fuel/core",
"type": "fuel-package",
"version": "1.7.2",
"dist": {
"url": "https://github.com/fuel/core/archive/1.7/master.zip",
"type": "zip"
},
"source": {
"url": "https://github.com/fuel/core.git",
"type": "git",
"reference": "1.8/develop"
}
}
}
]
}