-
Notifications
You must be signed in to change notification settings - Fork 3
/
Copy pathcomposer.json
37 lines (37 loc) · 929 Bytes
/
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
{
"name": "lombervid/shoppingcart",
"type": "library",
"description": "A simple shopping cart class for PHP",
"keywords": [
"shopping cart"
],
"homepage": "https://github.com/lombervid/shoppingcart",
"license": "MIT",
"authors": [
{
"name": "David Lombera",
"email": "[email protected]"
}
],
"require": {
"php": "^8.1"
},
"require-dev": {
"phpunit/phpunit": "^10.1",
"symfony/var-dumper": "^6.2",
"phpstan/phpstan": "^1.10",
"phpstan/phpstan-strict-rules": "^1.5",
"phpstan/phpstan-phpunit": "^1.3",
"phpstan/phpstan-deprecation-rules": "^1.1"
},
"autoload": {
"psr-4": {
"Lombervid\\ShoppingCart\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Lombervid\\ShoppingCart\\Tests\\": "tests/"
}
}
}