-
Notifications
You must be signed in to change notification settings - Fork 10
Expand file tree
/
Copy pathcomposer.json
More file actions
48 lines (48 loc) · 1.25 KB
/
composer.json
File metadata and controls
48 lines (48 loc) · 1.25 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
48
{
"name": "dlundgren/phagrancy",
"description": "Private Vagrant Cloud",
"type": "project",
"license": "MIT",
"authors": [
{
"name": "David Lundgren",
"email": "dlundgren@syberisle.net"
}
],
"autoload": {
"psr-4" :{
"Phagrancy\\":"src"
}
},
"autoload-dev": {
"psr-4" : {
"Phagrancy\\":"tests/src"
}
},
"require": {
"php": ">=7.4",
"josegonzalez/dotenv": "~4.0",
"slim/slim": "~3.0",
"validator/livr": "dev-master",
"league/flysystem": "^2.5"
},
"require-dev": {
"phpunit/phpunit": "~9.6",
"mikey179/vfsstream": "~1.6",
"helmich/phpunit-psr7-assert": "~4.1",
"syberisle/mock-php-stream": "~1.1",
"phpstan/phpstan": "^1.12",
"symfony/process": "^5.4"
},
"scripts" : {
"test-packer": [
"@putenv PHAGRANCY_TEST_USE_DOCKER_COMPOSE=1",
"vendor/bin/phpunit --testsuite Packer"
],
"test": "vendor/bin/phpunit --testsuite Phagrancy",
"ci-test": "vendor/bin/phpunit --testsuite Phagrancy,Packer",
"stan": "vendor/bin/phpstan analyze src",
"test-coverage": "vendor/bin/phpunit --testsuite Phagrancy --coverage-clover build/logs/clover.xml",
"test-html": "vendor/bin/phpunit --testsuite Phagrancy --coverage-html build/html"
}
}