forked from pixelcollective/acorn-db
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
51 lines (51 loc) · 1.19 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
{
"name": "tiny-pixel/acorn-db",
"type": "package",
"license": "MIT",
"description": "Eloquent database support for Acorn projects",
"authors": [
{
"name": "Kelly Mears",
"email": "kelly@tinypixel.dev"
}
],
"support": {
"issues": "https://github.com/pixelcollective/acorn-db/issues"
},
"autoload": {
"psr-4": {
"AcornDB\\": "src/",
"Corcel\\": "src/"
}
},
"require": {
"php": ">=7.3",
"fzaninotto/faker": "^1",
"illuminate/container": "^7",
"illuminate/database": "^7",
"illuminate/pagination": "^7",
"symfony/console": "^5",
"jgrossi/corcel": "^4.0"
},
"extra": {
"acorn": {
"providers": [
"AcornDB\\Providers\\PaginationServiceProvider",
"AcornDB\\Providers\\DatabaseServiceProvider",
"AcornDB\\Providers\\MigrationServiceProvider",
"AcornDB\\Providers\\PackageServiceProvider"
]
}
},
"require-dev": {
"squizlabs/php_codesniffer": "^3.4.2",
"roots/support": "dev-master",
"illuminate/console": "^7.25",
"roots/acorn": "^1.0.9"
},
"scripts": {
"lint": [
"phpcs --ignore=vendor,publishes --extensions=php --standard=PSR12 ."
]
}
}