-
Notifications
You must be signed in to change notification settings - Fork 2
/
composer.json
59 lines (59 loc) · 1.84 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
{
"name": "view-components/eloquent-data-processing",
"description": "Eloquent ORM support for ViewComponents",
"keywords": [
"laravel",
"laravel-5",
"laravel5",
"laravel4",
"laravel-4"
],
"homepage": "https://github.com/view-components/eloquent-data-processing",
"type": "library",
"license": "MIT",
"authors": [
{
"name": "Vitalii [Nayjest] Stepanenko",
"email": "[email protected]",
"role": "Developer"
}
],
"require": {
"view-components/view-components": "^0.24.2||^0.25||^0.26.6",
"php": "^5.5||^7||^8"
},
"require-dev": {
"view-components/testing-helpers":"^2.0.1",
"illuminate/database": "*"
},
"autoload": {
"psr-4": {
"ViewComponents\\Eloquent\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"ViewComponents\\Eloquent\\Test\\Mock\\": "tests/mock/",
"ViewComponents\\Eloquent\\Test\\": "tests/phpunit/"
}
},
"scripts": {
"post-create-project-cmd": [
"ViewComponents\\TestingHelpers\\Installer\\Installer::runFromComposer"
],
"post-update-cmd": [
"ViewComponents\\TestingHelpers\\Installer\\Installer::runFromComposer"
],
"post-install-cmd": [
"ViewComponents\\TestingHelpers\\Installer\\Installer::runFromComposer"
],
"test": "php vendor/phpunit/phpunit/phpunit",
"cs": "php vendor/squizlabs/php_codesniffer/scripts/phpcs --standard=psr2 src/"
},
"support": {
"email": "[email protected]",
"source": "https://github.com/view-components/eloquent-data-processing",
"issues": "https://github.com/view-components/eloquent-data-processing/issues"
},
"minimum-stability": "stable"
}