forked from avto-dev/dev-tools
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathcomposer.json
More file actions
69 lines (69 loc) · 1.96 KB
/
composer.json
File metadata and controls
69 lines (69 loc) · 1.96 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
63
64
65
66
67
68
69
{
"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.0",
"phpunit/phpunit": "^6.5 || ~7.0 <7.5.0",
"symfony/var-dumper": "~3.3 || ^4.0",
"tarampampam/guzzle-url-mock": "^1.0"
},
"require-dev": {
"ext-pdo_sqlite": "*",
"ext-sqlite3": "*",
"jeremeamia/superclosure": "^2.4",
"nikic/php-parser": "^2.0 || ^3.0 || ^4.0",
"laravel/laravel": ">=5.5 <5.8.0",
"phpstan/phpstan": "~0.9 || ^0.10",
"mockery/mockery": "~1.0"
},
"autoload": {
"psr-4": {
"AvtoDev\\DevTools\\": "src"
},
"files": [
"src/functions/dump.php"
]
},
"autoload-dev": {
"psr-4": {
"Tests\\AvtoDev\\DevTools\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"AvtoDev\\DevTools\\Laravel\\VarDumper\\ServiceProvider"
]
}
},
"scripts": {
"test": "@php ./vendor/bin/phpunit --no-coverage --testdox --colors=always",
"test-cover": "@php ./vendor/bin/phpunit",
"phpstan": "@php ./vendor/bin/phpstan analyze --no-progress --ansi --level=max ./src"
},
"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"
},
"config": {
"sort-packages": true
},
"prefer-stable": true
}