forked from jarektkaczyk/eloquence
-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
53 lines (53 loc) · 1.41 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
{
"name": "ortic/eloquence",
"description": "Flexible Searchable, Mappable, Metable, Validation and more extensions for Laravel Eloquent ORM.",
"license": "MIT",
"support": {
"issues": "https://github.com/jarektkaczyk/eloquence/issues",
"source": "https://github.com/jarektkaczyk/eloquence"
},
"keywords": [
"laravel",
"eloquent",
"metable",
"searchable",
"mappable",
"mutable"
],
"authors": [
{
"name": "Jarek Tkaczyk",
"email": "jarek@softonsofa.com",
"homepage": "http://softonsofa.com/",
"role": "Developer"
}
],
"require": {
"php": ">=5.6.4",
"ortic/hookable": "5.4.*",
"illuminate/database": "5.3.*|5.4.*"
},
"require-dev": {
"phpunit/phpunit": "4.5.0",
"squizlabs/php_codesniffer": "2.3.3",
"mockery/mockery": "0.9.4"
},
"autoload": {
"psr-4": {
"Sofa\\Eloquence\\": "src"
},
"files": [
"src/helpers.php"
]
},
"autoload-dev": {
"psr-4": {
"Sofa\\Eloquence\\Tests\\": "tests"
}
},
"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"
}
}