-
Notifications
You must be signed in to change notification settings - Fork 29
/
composer.json
38 lines (38 loc) · 1.01 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
{
"name": "corcel/woocommerce",
"description": "WooCommerce plugin for Corcel",
"homepage": "http://github.com/corcel/woocommerce",
"license": "MIT",
"authors": [
{
"name": "Krzysztof Grabania",
"email": "[email protected]",
"homepage": "https://grabania.pl"
}
],
"require": {
"php": "^8.2",
"illuminate/database": "^10.0|^11.0",
"illuminate/support": "^10.0|^11.0",
"jgrossi/corcel": "^7.0|^8.0",
"nesbot/carbon": "^2.66|^3.0"
},
"require-dev": {
"orchestra/testbench": "^8.0|^9.0",
"phpstan/phpstan": "^1.9",
"phpunit/phpunit": "^9.5.10|^10.5",
"larastan/larastan": "^2.4",
"laravel/pint": "^1.4"
},
"autoload": {
"psr-4": {
"Corcel\\WooCommerce\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/",
"Database\\Factories\\": "tests/database/factories/"
}
}
}