-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathcomposer.json
61 lines (61 loc) · 1.64 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
55
56
57
58
59
60
61
{
"name": "fanmade/laravel-service-binding",
"description": "Provide configuration to allow service and repository binding and switching between them via environment variables",
"keywords": [
"fanmade",
"laravel",
"service",
"repository",
"repositories",
"configuration"
],
"homepage": "https://github.com/Fanmade/laravel-service-binding",
"license": "MIT",
"version": "0.0.1",
"authors": [
{
"name": "Benjamin Reuter",
"email": "ben@reuterben.de",
"role": "Developer"
}
],
"require": {
"php": ">=7.4",
"illuminate/support": "^6 || ^7 || ^8",
"illuminate/config": "^6 || ^7 || ^8",
"illuminate/console": "^6 || ^7 || ^8"
},
"require-dev": {
"friendsofphp/php-cs-fixer": "^2",
"mockery/mockery": "^1.3",
"phpunit/phpunit": "^8.5 || ^9"
},
"minimum-stability": "dev",
"prefer-stable": true,
"scripts": {
"fix-style": [
"php-cs-fixer fix",
"php-cs-fixer fix --config=.php_cs.tests.php"
],
"test": "phpunit",
"test-ci": "phpunit -d --without-creating-snapshots",
"test-regenerate": "phpunit -d --update-snapshots"
},
"autoload": {
"psr-4": {
"Fanmade\\ServiceBinding\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Fanmade\\ServiceBinding\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Fanmade\\ServiceBinding\\BindingServiceProvider"
]
}
}
}