Skip to content

Commit 4738ea9

Browse files
committed
chore(repo): ownership transfer
1 parent f845193 commit 4738ea9

15 files changed

Lines changed: 32 additions & 29 deletions

LICENSE.txt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
MIT License
22

3-
Copyright (c) 2021 Waap
3+
Copyright (c) 2021 CodeTech
44

55
Permission is hereby granted, free of charge, to any person obtaining a copy
66
of this software and associated documentation files (the "Software"), to deal

README.md

Lines changed: 10 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,18 +1,21 @@
11
# Laravel Vendus
22

3-
Laravel wrapper for the waap/vendus-api package.
3+
Laravel wrapper for the codetech/vendus-api package.
4+
5+
[![Latest version](https://img.shields.io/github/release/CodeTechAgency/laravel-vendus?style=flat-square)](https://github.com/CodeTechAgency/laravel-vendus/releases)
6+
[![GitHub license](https://img.shields.io/github/license/CodeTechAgency/laravel-vendus?style=flat-square)](https://github.com/CodeTechAgency/laravel-vendus/blob/master/LICENSE)
47

58

69
## Installation
710

811
Install the PHP dependency
912
```
10-
composer require waap/laravel-vendus
13+
composer require codetech/laravel-vendus
1114
```
1215

1316
Publish the configuration file (optional)
1417
```
15-
php artisan vendor:publish --provider=Waap\\Vendus\\Providers\\VendusServiceProvider --tag=config
18+
php artisan vendor:publish --provider=CodeTech\\Vendus\\Providers\\VendusServiceProvider --tag=config
1619
```
1720

1821
For setting up the API key, add this line to your `.env` file:
@@ -33,16 +36,16 @@ This package comes with some translations available that you can use to present
3336
Publish the translations file (optional)
3437

3538
```
36-
php artisan vendor:publish --provider=Waap\\Vendus\\Providers\\VendusServiceProvider --tag=translations
39+
php artisan vendor:publish --provider=CodeTech\\Vendus\\Providers\\VendusServiceProvider --tag=translations
3740
```
3841

3942
---
4043

4144
## License
4245

43-
**waap/laravel-vendus** is open-sourced software licensed under the [MIT license](https://github.com/waap-agency/laravel-vendus/blob/master/LICENSE).
46+
**codetech/laravel-vendus** is open-sourced software licensed under the [MIT license](https://github.com/CodeTechAgency/laravel-vendus/blob/master/LICENSE).
4447

4548

46-
## About waap
49+
## About CodeTech
4750

48-
[waap](https://www.waap.pt) is a web development agency based in Matosinhos, Portugal. Oh, and we LOVE Laravel!
51+
[CodeTech](https://www.codetech.pt) is a web development agency based in Matosinhos, Portugal. Oh, and we LOVE Laravel!

composer.json

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -1,14 +1,14 @@
11
{
2-
"name": "waap/laravel-vendus",
3-
"description": "Laravel wrapper for the waap/vendus-api package.",
2+
"name": "codetech/laravel-vendus",
3+
"description": "Laravel wrapper for the codetech/vendus-api package.",
44
"keywords": [
55
"vendus",
66
"faturação",
77
"faturas",
88
"recibos",
99
"laravel-vendus",
1010
"laravel",
11-
"waap"
11+
"codetech"
1212
],
1313
"authors": [
1414
{
@@ -21,19 +21,19 @@
2121
"require": {
2222
"php": "^7.3|^8.0",
2323
"laravel/framework": "^7.0|^8.0",
24-
"waap/vendus-api": "^1.1.0"
24+
"codetech/vendus-api": "^1.1.0"
2525
},
2626
"autoload": {
2727
"psr-4": {
28-
"Waap\\Vendus\\": "src/"
28+
"CodeTech\\Vendus\\": "src/"
2929
}
3030
},
3131
"minimum-stability": "dev",
3232
"prefer-stable": true,
3333
"extra": {
3434
"laravel": {
3535
"providers": [
36-
"Waap\\Vendus\\Providers\\VendusServiceProvider"
36+
"CodeTech\\Vendus\\Providers\\VendusServiceProvider"
3737
]
3838
}
3939
}

src/Contracts/VendusApiResource.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Waap\Vendus\Contracts;
3+
namespace CodeTech\Vendus\Contracts;
44

55
interface VendusApiResource
66
{

src/Contracts/VendusClient.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Waap\Vendus\Contracts;
3+
namespace CodeTech\Vendus\Contracts;
44

55
interface VendusClient extends VendusApiResource
66
{

src/Contracts/VendusProduct.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Waap\Vendus\Contracts;
3+
namespace CodeTech\Vendus\Contracts;
44

55
interface VendusProduct extends VendusApiResource
66
{

src/Entities/VendusItem.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Waap\Vendus\Entities;
3+
namespace CodeTech\Vendus\Entities;
44

55
class VendusItem
66
{

src/Entities/VendusSalesDocument.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Waap\Vendus\Entities;
3+
namespace CodeTech\Vendus\Entities;
44

55
class VendusSalesDocument
66
{

src/Entities/VendusStock.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Waap\Vendus\Entities;
3+
namespace CodeTech\Vendus\Entities;
44

55
class VendusStock
66
{

src/Entities/VendusTax.php

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
<?php
22

3-
namespace Waap\Vendus\Entities;
3+
namespace CodeTech\Vendus\Entities;
44

55
abstract class VendusTax
66
{

0 commit comments

Comments
 (0)