-
-
Notifications
You must be signed in to change notification settings - Fork 16
/
composer.json
57 lines (57 loc) · 1.53 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
{
"name": "sofa/eloquence-mutable",
"description": "Flexible Searchable, Mappable, Metable, Validation and more extensions for Laravel Eloquent ORM.",
"license": "MIT",
"support": {
"issues": "https://github.com/jarektkaczyk/eloquence-mutable/issues",
"source": "https://github.com/jarektkaczyk/eloquence-mutable"
},
"keywords": [
"laravel",
"eloquent",
"metable",
"searchable",
"mappable",
"mutable"
],
"authors": [
{
"name": "Jarek Tkaczyk",
"email": "jarek@softonsofa.com",
"homepage": "https://softonsofa.com/",
"role": "Developer"
}
],
"require": {
"php": ">=7.1.0",
"sofa/eloquence-base": ">=5.5"
},
"require-dev": {
"phpunit/phpunit": "^9.5",
"squizlabs/php_codesniffer": "2.3.3",
"mockery/mockery": "^1.0",
"friendsofphp/php-cs-fixer": "^2.0"
},
"autoload": {
"psr-4": {
"Sofa\\Eloquence\\": "src"
}
},
"autoload-dev": {
"psr-4": {
"Sofa\\Eloquence\\Tests\\": "tests"
}
},
"extra": {
"laravel": {
"providers": [
"Sofa\\Eloquence\\MutableServiceProvider"
]
}
},
"minimum-stability": "stable",
"scripts": {
"test": "phpunit && ./vendor/bin/phpcs src --standard=psr2 --report=diff --colors",
"phpcs": "./vendor/bin/phpcs src --standard=psr2 --report=diff --colors"
}
}