-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 1.27 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
{
"name": "avid/candidate-challenge",
"description": "Challenge for assessing the level of developer candidates.",
"require": {
"php": "~5.4",
"ext-pdo_sqlite": "*",
"silex/silex": "~1.2",
"symfony/console": "~2.3",
"symfony/process": "~2.3",
"symfony/form": "~2.3",
"symfony/validator": "~2.3",
"symfony/config": "~2.3",
"symfony/translation": "~2.3",
"symfony/locale": "~2.3",
"symfony/icu": "1.0.*",
"twig/twig": ">=1.8,<2.0-dev",
"symfony/twig-bridge": "~2.3",
"doctrine/dbal": "2.2.*",
"silex/web-profiler": "~1.0",
"fzaninotto/faker": "v1.3.0",
"sorien/silex-dbal-profiler": "1.1.0",
"jdorn/sql-formatter": "~1.2"
},
"require-dev": {
"phpunit/phpunit": "~4.0",
"phpunit/dbunit": "~1.3"
},
"license": "proprietary",
"authors": [
{
"name": "Kevin Archer",
"email": "[email protected]"
}
],
"minimum-stability": "dev",
"config": {
"bin-dir": "bin"
},
"autoload": {
"psr-4": {
"Avid\\CandidateChallenge\\": ["src", "tests/unit", "tests/edge-to-edge"]
},
"files": ["src/functions.php"]
}
}