-
Notifications
You must be signed in to change notification settings - Fork 5
/
composer.json
54 lines (54 loc) · 1.34 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
{
"name": "nasyrov/laravel-interactions",
"type": "library",
"description": "Laravel package for interactions.",
"keywords": [
"laravel",
"interactions"
],
"homepage": "https://github.com/nasyrov/laravel-interactions",
"license": "MIT",
"authors": [
{
"name": "Evgenii Nasyrov",
"email": "[email protected]",
"homepage": "https://github.com/nasyrov",
"role": "Developer"
}
],
"require": {
"php": ">=7.0",
"illuminate/console": "5.5.*|5.6.*",
"illuminate/support": "5.5.*|5.6.*"
},
"require-dev": {
"mockery/mockery": "~1.0",
"orchestra/testbench": "~3.5|~3.6",
"phpunit/phpunit": "~6.0|~7.0",
"squizlabs/php_codesniffer": "~3.2"
},
"autoload": {
"psr-4": {
"Nasyrov\\Laravel\\Interactions\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Nasyrov\\Laravel\\Interactions\\Tests\\": "tests"
}
},
"scripts": {
"lint": "phpcs -p --standard=psr2 src",
"test": "phpunit"
},
"extra": {
"laravel": {
"providers": [
"Nasyrov\\Laravel\\Interactions\\InteractionServiceProvider"
]
}
},
"config": {
"sort-packages": true
}
}