forked from corcel/corcel
-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
43 lines (43 loc) · 1.17 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
{
"name": "jgrossi/corcel",
"replace": { "juniorgrossi/corcel": "self.version" },
"description": "Use WordPress backend with Laravel or any PHP framework",
"homepage": "http://github.com/corcel/corcel",
"license": "MIT",
"authors": [
{
"name": "Junior Grossi",
"email": "juniorgro@gmail.com",
"homepage": "http://jgrossi.com"
}
],
"require": {
"php": "^8.0.2",
"illuminate/database": "^9.0",
"illuminate/filesystem": "^9.0",
"illuminate/support": "^9.0",
"fakerphp/faker": "^1.19",
"bordoni/phpass": "0.3.*",
"thunderer/shortcode": "^0.7.3"
},
"require-dev": {
"laravel/legacy-factories": "^1.0",
"orchestra/testbench": "^7.0",
"symfony/thanks": "^1.0",
"mockery/mockery": "^1.4.4",
"dms/phpunit-arraysubset-asserts": "^0.3"
},
"autoload": {
"psr-4": {
"Corcel\\": "src/",
"Corcel\\Tests\\": "tests/"
}
},
"extra": {
"laravel": {
"providers": [
"Corcel\\Laravel\\CorcelServiceProvider"
]
}
}
}