-
Notifications
You must be signed in to change notification settings - Fork 1
/
composer.json
executable file
·45 lines (42 loc) · 1.57 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": "tps/util-bundle",
"type": "symfony-bundle",
"version": "1.0.1",
"description": "generate phpunit-templates for services, including mocked dependencies",
"homepage": "https://github.com/leberknecht/util-bundle",
"minimum-stability": "dev",
"authors": [
{
"name": "Delf Tonder",
"homepage": "https://github.com/leberknecht/util-bundle"
}
],
"require": {
"php": ">=5.6.0",
"symfony/finder": ">=2.3.0|~3|~4",
"symfony/filesystem": ">=2.3.0|~3|~4",
"symfony/framework-bundle": ">=2.3.0|~3|~4",
"symfony/twig-bundle": ">=2.3.0|~3|~4",
"twig/twig": ">=1.0,~1.0",
"sensio/framework-extra-bundle": ">=2.3.0|~3|~4",
"symfony/validator": ">=2.3.0|~3|~4",
"symfony/translation": ">=2.3.0|~3|~4",
"symfony/form": ">=2.3.0|~3|~4",
"symfony/console": ">=2.3.0|~3|~4",
"symfony/templating": ">=3.1.0|~4"
},
"require-dev": {
"symfony/yaml": ">=2.3.0|~3|~4",
"phpunit/phpunit": ">=4.8.0|~5",
"satooshi/php-coveralls": "0.7.*@dev",
"symfony/browser-kit": ">=2.3.0|~3|~4",
"symfony/routing": ">=2.3.0|~3|~4"
},
"autoload": {
"psr-0": { "Tps\\UtilBundle": "." },
"classmap": [
"Tests/Fixtures"
]
},
"target-dir": "Tps/UtilBundle"
}