Skip to content

Commit cc10e84

Browse files
authored
Merge pull request #2 from assoconnect/flo_fix_dependancies
update composer.lock
2 parents aca6976 + e8bdcda commit cc10e84

18 files changed

Lines changed: 139 additions & 3445 deletions

.github/workflows/build.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ jobs:
1111
strategy:
1212
fail-fast: false
1313
matrix:
14-
php-versions: ['8.2', '8.3']
14+
php-versions: ['8.3']
1515
dependency-versions: ['lowest', 'highest']
1616
runs-on: ubuntu-latest
1717
steps:

.github/workflows/build.yml:Zone.Identifier

Whitespace-only changes.

.github/workflows/php_lint.yml

Lines changed: 0 additions & 14 deletions
This file was deleted.

.github/workflows/phpunit.yml

Lines changed: 0 additions & 31 deletions
This file was deleted.

.github/workflows/symfony.yml

Lines changed: 0 additions & 37 deletions
This file was deleted.

.gitignore

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22
/vendor/
33
.idea/
44
.idea
5-
composer.lock
65
.php_cs.cache
76
.php-cs-fixer.cache
87
.phpunit.result.cache

.php-cs-fixer.dist.php

Lines changed: 0 additions & 60 deletions
This file was deleted.

.php-cs-fixer.php-highest.php

Lines changed: 0 additions & 20 deletions
This file was deleted.

README.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ Installation
3030
Open a command console and execute the following command to download the latest stable version of this bundle:
3131

3232
```shell
33-
composer require ang3/php-excel-encoder
33+
composer require assoconnect/php-excel-encoder
3434
```
3535

3636
If you install this component outside of a Symfony application, you must require the vendor/autoload.php
@@ -52,7 +52,7 @@ Usage
5252

5353
require_once 'vendor/autoload.php';
5454

55-
use Ang3\Component\Serializer\Encoder\ExcelEncoder;
55+
use assoconnect\Serializer\Encoder\ExcelEncoder;
5656

5757
// Create the encoder with default context
5858
$encoder = new ExcelEncoder($defaultContext = []);
@@ -212,13 +212,13 @@ configure it as service by adding the contents below into the file `config/servi
212212
# config/services.yaml
213213
services:
214214
# ...
215-
Ang3\Component\Serializer\Encoder\ExcelEncoder: ~
215+
AssoConnect\Serializer\Encoder\ExcelEncoder: ~
216216
```
217217
218218
Run tests
219219
---------
220220
221-
```$ git clone https://github.com/Ang3/php-excel-encoder.git```
221+
```$ git clone https://github.com/assoconnect/php-excel-encoder.git```
222222

223223
```$ composer install```
224224

composer.json

Lines changed: 12 additions & 8 deletions
Original file line numberDiff line numberDiff line change
@@ -1,34 +1,38 @@
11
{
2-
"name": "ang3/php-excel-encoder",
2+
"name": "assoconnect/php-excel-encoder",
33
"type": "library",
4-
"homepage": "https://github.com/Ang3/php-excel-encoder",
4+
"homepage": "https://github.com/assoconnect/php-excel-encoder",
55
"description": "PHP Excel encoder",
66
"license": "MIT",
77
"authors": [
88
{
99
"name": "Joanis ROUANET",
1010
"email": "joanis.ang3@gmail.com"
11+
},
12+
{
13+
"name": "Florian GUIMIER",
14+
"email": "florian.guimier@gmail.com"
1115
}
1216
],
1317
"autoload": {
1418
"psr-4": {
15-
"Ang3\\Component\\Serializer\\Encoder\\": "src/"
19+
"AssoConnect\\Serializer\\Encoder\\": "src/"
1620
}
1721
},
1822
"autoload-dev": {
1923
"psr-4": {
20-
"Ang3\\Component\\Serializer\\Encoder\\Tests\\": "tests/"
24+
"AssoConnect\\Serializer\\Encoder\\Tests\\": "tests/"
2125
}
2226
},
2327
"require": {
24-
"php": ">=8.1",
28+
"php": "^8.2",
2529
"phpoffice/phpspreadsheet": "^1.16|^2.0",
2630
"symfony/serializer": "^6.0|^7.0",
2731
"symfony/filesystem": "^6.0|^7.0"
28-
},
29-
"require-dev": {
32+
},
33+
"require-dev": {
3034
"symfony/test-pack": "^1.0",
31-
"assoconnect/php-quality-config": "^1.11"
35+
"assoconnect/php-quality-config": "^1.13"
3236
},
3337
"config": {
3438
"allow-plugins": {

0 commit comments

Comments
 (0)