Skip to content

Commit 93e77f0

Browse files
committed
wip
1 parent f8af2e4 commit 93e77f0

File tree

2 files changed

+53
-76
lines changed

2 files changed

+53
-76
lines changed

composer.json

Lines changed: 51 additions & 51 deletions
Original file line numberDiff line numberDiff line change
@@ -1,53 +1,53 @@
11
{
2-
"name": "lukepolo/laracart",
3-
"description": "A simple cart for Laravel",
4-
"keywords": [
5-
"laravel",
6-
"cart",
7-
"shopping",
8-
"shopping cart"
9-
],
10-
"homepage": "https://github.com/lukepolo/laracart",
11-
"license": "MIT",
12-
"authors": [
13-
{
14-
"name": "Luke Policinski",
15-
"email": "Luke@LukePOLO.com",
16-
"homepage": "http://LukePOLO.com"
17-
}
18-
],
19-
"require": {
20-
"php": "^8.2",
21-
"ext-intl": "*",
22-
"illuminate/support": "^11.0 || ^12.0",
23-
"illuminate/session": "^11.0 || ^12.0",
24-
"illuminate/events": "^11.0 || ^12.0"
25-
},
26-
"require-dev": {
27-
"phpunit/phpunit": "^10.5 || ^11.5.3",
28-
"orchestra/testbench": "^10.0",
29-
"mockery/mockery": "^1.0",
30-
"phpunit/php-code-coverage": "^11.0"
31-
},
32-
"autoload": {
33-
"psr-4": {
34-
"LukePOLO\\LaraCart\\": "src/"
35-
}
36-
},
37-
"autoload-dev": {
38-
"psr-4": {
39-
"LukePOLO\\LaraCart\\Tests\\": "tests"
40-
}
41-
},
42-
"extra": {
43-
"laravel": {
44-
"providers": [
45-
"LukePOLO\\LaraCart\\LaraCartServiceProvider"
46-
],
47-
"aliases": {
48-
"LaraCart": "LukePOLO\\LaraCart\\Facades\\LaraCart"
49-
}
50-
}
51-
},
52-
"minimum-stability": "stable"
2+
"name": "lukepolo/laracart",
3+
"description": "A simple cart for Laravel",
4+
"keywords": [
5+
"laravel",
6+
"cart",
7+
"shopping",
8+
"shopping cart"
9+
],
10+
"homepage": "https://github.com/lukepolo/laracart",
11+
"license": "MIT",
12+
"authors": [
13+
{
14+
"name": "Luke Policinski",
15+
"email": "Luke@LukePOLO.com",
16+
"homepage": "http://LukePOLO.com"
17+
}
18+
],
19+
"require": {
20+
"php": "^8.2",
21+
"ext-intl": "*",
22+
"illuminate/support": "^11.0 || ^12.0",
23+
"illuminate/session": "^11.0 || ^12.0",
24+
"illuminate/events": "^11.0 || ^12.0"
25+
},
26+
"require-dev": {
27+
"phpunit/phpunit": "^10.5 || ^11.5.3",
28+
"orchestra/testbench": "^10.0",
29+
"mockery/mockery": "^1.0",
30+
"phpunit/php-code-coverage": "^11.0"
31+
},
32+
"autoload": {
33+
"psr-4": {
34+
"LukePOLO\\LaraCart\\": "src/"
35+
}
36+
},
37+
"autoload-dev": {
38+
"psr-4": {
39+
"LukePOLO\\LaraCart\\Tests\\": "tests"
40+
}
41+
},
42+
"extra": {
43+
"laravel": {
44+
"providers": [
45+
"LukePOLO\\LaraCart\\LaraCartServiceProvider"
46+
],
47+
"aliases": {
48+
"LaraCart": "LukePOLO\\LaraCart\\Facades\\LaraCart"
49+
}
50+
}
51+
},
52+
"minimum-stability": "stable"
5353
}

readme.md

Lines changed: 2 additions & 25 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
## LaraCart - Laravel Shopping Cart Package (<a href="http://laracart.lukepolo.com/">http://laracart.lukepolo.com</a>)
1+
## LaraCart - Laravel Shopping Cart Package
22

33
[![Total Downloads](https://poser.pugx.org/lukepolo/laracart/downloads)](https://packagist.org/packages/lukepolo/laracart)
44
[![License](https://poser.pugx.org/lukepolo/laracart/license)](https://packagist.org/packages/lukepolo/laracart)
@@ -19,34 +19,11 @@
1919

2020
## Installation
2121

22-
composer require lukepolo/laracart
23-
24-
If using 5.4 you will need to include the service providers / facade in `app/config/app.php`:
25-
26-
```php
27-
LukePOLO\LaraCart\LaraCartServiceProvider::class,
28-
```
29-
30-
Include the Facade :
31-
32-
```php
33-
'LaraCart' => LukePOLO\LaraCart\Facades\LaraCart::class,
34-
```
35-
36-
Copy over the configuration file by running the command:
37-
3822
```
23+
composer require lukepolo/laracart
3924
php artisan vendor:publish --provider='LukePOLO\LaraCart\LaraCartServiceProvider'
4025
```
4126

4227
### Documentation
4328

4429
<a href="http://laracart.lukepolo.com/">http://laracart.lukepolo.com</a>
45-
46-
To Contribute to documentation use this repo :
47-
48-
https://github.com/lukepolo/laracart-docs
49-
50-
## License
51-
52-
MIT

0 commit comments

Comments
 (0)