-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
47 lines (47 loc) · 1.29 KB
/
composer.json
File metadata and controls
47 lines (47 loc) · 1.29 KB
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
{
"name": "dayspring-tech/service-test-helper",
"description": "Helper for testing services",
"keywords": [
"unit test",
"symfony service"
],
"type": "symfony-bundle",
"license": "MIT",
"authors": [
{
"name": "Jeffrey Wong",
"email": "jwong@dayspringpartners.com",
"homepage": "https://dayspringpartners.com"
},
{
"name": "Stanley Situ",
"email": "ssitu@dayspringpartners.com",
"homepage": "https://dayspringpartners.com"
}
],
"require": {
"php": ">=7.4",
"symfony/http-kernel": "^4.4.12|^5.0|^6.0",
"phpunit/phpunit": "^8.5.23|^9.0"
},
"require-dev": {
"symfony/config": "^4.4.12|^5.0|^6.0",
"symfony/dependency-injection": "^4.4.12|^5.0|^6.0",
"symfony/yaml": "^4.4.12|^5.0|^6.0",
"rector/rector": "^0.19.0"
},
"autoload": {
"psr-4": {
"Dayspring\\ServiceTestHelper\\": ""
},
"exclude-from-classmap": [
"Tests/"
]
},
"scripts": {
"ci-test": [
"Composer\\Config::disableProcessTimeout",
"vendor/phpunit/phpunit/phpunit -c ./phpunit.xml.dist"
]
}
}