-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
67 lines (67 loc) · 1.75 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
64
65
66
67
{
"name": "view-components/testing-helpers",
"description": "Helpers for view-components testing",
"keywords": [
"phpunit",
"test",
"tests",
"testing",
"acceptance-tests",
"acceptance-testing"
],
"homepage": "https://github.com/view-components/testing-helpers",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vitalii [Nayjest] Stepanenko",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"php": "^5.5||^7",
"phpunit/phpunit": "^4||^5",
"vlucas/phpdotenv": "~1",
"ext-curl": "*",
"guzzlehttp/guzzle": "*",
"silex/silex": "~1.3",
"nayjest/str-case-converter": "^1",
"symfony/var-dumper": "~2||~3",
"squizlabs/php_codesniffer": "~2.3"
},
"require-dev": {
"view-components/view-components": "*",
"ext-pdo_sqlite" : "*"
},
"autoload": {
"psr-4": {
"ViewComponents\\TestingHelpers\\": "src/"
}
},
"support": {
"email": "[email protected]",
"source": "https://github.com/view-components/testing-helpers",
"issues": "https://github.com/view-components/testing-helpers/issues"
},
"bin": [
"serve",
"uninstall"
],
"scripts": {
"post-create-project-cmd": [
"ViewComponents\\TestingHelpers\\Installer\\Installer::runFromComposer"
],
"post-update-cmd": [
"ViewComponents\\TestingHelpers\\Installer\\Installer::runFromComposer"
],
"post-install-cmd": [
"ViewComponents\\TestingHelpers\\Installer\\Installer::runFromComposer"
],
"test": "php vendor/phpunit/phpunit/phpunit",
"serve": "php serve",
"cs": "php vendor/squizlabs/php_codesniffer/scripts/phpcs --standard=psr2 src/",
"uninstall": "php uninstall"
},
"minimum-stability": "stable"
}