-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
50 lines (49 loc) · 1.6 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
{
"name": "icomefromthenet/faker",
"description": "Test data generator using Doctrine DBAL and Symfony2 components",
"keywords": ["database", "testing","generator"],
"homepage": "https://github.com/icomefromthenet/Faker",
"type": "library",
"license": "Apache-2.0",
"authors": [
{
"name": "Lewis Dyer",
"email": "getintouch@icomefromthenet.com",
"homepage": "http://www.icomefromthenet.com"
}
],
"config": {
"minimum-stability": "dev"
},
"require-dev": {
"phpunit/phpunit": ">=4.6",
"phpunit/dbunit": ">=1.2"
},
"require": {
"icomefromthenet/reverse-regex" : ">=0.0.6",
"monolog/monolog" : "~1.5",
"symfony/filesystem" : "2.3.*",
"symfony/class-loader" : "2.3.*",
"symfony/config" : "2.3.*",
"symfony/console" : "2.3.*",
"symfony/event-dispatcher" : "2.3.*",
"symfony/finder" : "2.3.*",
"symfony/yaml" : "2.3.*",
"symfony/http-kernel" : "2.3.*",
"twig/twig" : "~1.13",
"pimple/pimple" : "1.0.*",
"doctrine/common" : "2.3.*",
"doctrine/dbal" : "2.3.*",
"ext-dom": "*",
"ext-spl": "*",
"ext-pcre": "*"
},
"autoload": {
"psr-0": {
"Faker" : "src",
"PHPStats" : "lib",
"Zend" : "lib"
}
},
"bin" : ["bin/faker.php"]
}