This repository was archived by the owner on Sep 10, 2020. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
62 lines (62 loc) · 1.79 KB
/
composer.json
File metadata and controls
62 lines (62 loc) · 1.79 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
49
50
51
52
53
54
55
56
57
58
59
60
61
62
{
"name": "avto-dev/dev-tools",
"description": "PHP developer tools",
"keywords": [
"dev",
"tools"
],
"type": "library",
"license": "MIT",
"authors": [
{
"name": "avto-dev",
"homepage": "https://github.com/avto-dev"
}
],
"require": {
"php": ">=7.2",
"ext-json": "*",
"phpunit/phpunit": "^7.5 || ~8.0",
"avto-dev/stacked-dumper-laravel": "^1.1",
"tarampampam/guzzle-url-mock": "^1.1"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"ext-sqlite3": "*",
"jeremeamia/superclosure": "^2.4",
"laravel/laravel": "^5.6 || ~6.0 || ~7.0",
"phpstan/phpstan": "^0.12"
},
"autoload": {
"psr-4": {
"AvtoDev\\DevTools\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\AvtoDev\\DevTools\\": "tests/"
}
},
"scripts": {
"phpunit": "@php ./vendor/bin/phpunit --no-coverage --colors=always",
"phpunit-cover": "@php ./vendor/bin/phpunit --coverage-html='./coverage/html'",
"phpstan": "@php ./vendor/bin/phpstan analyze -c ./phpstan.neon.dist --no-progress --ansi",
"test": [
"@phpstan",
"@phpunit"
],
"test-cover": [
"@phpstan",
"@phpunit-cover"
]
},
"suggest": {
"jeremeamia/superclosure": "Library for closures serialization and hashing",
"codedungeon/phpunit-result-printer": "PHPUnit Pretty Result Printer",
"johnkary/phpunit-speedtrap": "Reports on slow-running tests in your PHPUnit test suite"
},
"support": {
"issues": "https://github.com/avto-dev/dev-tools/issues",
"source": "https://github.com/avto-dev/dev-tools"
}
}