Skip to content

Commit d1932f7

Browse files
committed
prepare release
1 parent 34861a9 commit d1932f7

File tree

10 files changed

+305
-305
lines changed

10 files changed

+305
-305
lines changed

src/batch-box-spout/composer.json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
{
2-
"name": "yokai/batch-box-spout",
3-
"description": "box/spout bridge for yokai/batch",
4-
"keywords": ["batch", "job", "reader", "writer", "flat", "csv", "xlsx", "ods"],
5-
"type": "library",
6-
"license": "MIT",
7-
"authors": [
8-
{
9-
"name": "Yann Eugoné",
10-
"email": "[email protected]"
2+
"name": "yokai/batch-box-spout",
3+
"description": "box/spout bridge for yokai/batch",
4+
"keywords": ["batch", "job", "reader", "writer", "flat", "csv", "xlsx", "ods"],
5+
"type": "library",
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "Yann Eugoné",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"require": {
14+
"php": "^7.4|^8.0",
15+
"box/spout": "^3.0",
16+
"yokai/batch": "^0.3.1"
17+
},
18+
"autoload": {
19+
"psr-4": {
20+
"Yokai\\Batch\\Bridge\\Box\\Spout\\": "src/"
21+
}
22+
},
23+
"require-dev": {
24+
"phpunit/phpunit": "^9.4",
25+
"symfony/filesystem": "^4.4|^5.0"
26+
},
27+
"autoload-dev": {
28+
"psr-4": {
29+
"Yokai\\Batch\\Tests\\Bridge\\Box\\Spout\\": "tests/"
30+
}
1131
}
12-
],
13-
"require": {
14-
"php": "^7.4|^8.0",
15-
"box/spout": "^3.0",
16-
"yokai/batch": "self.version"
17-
},
18-
"autoload": {
19-
"psr-4": {
20-
"Yokai\\Batch\\Bridge\\Box\\Spout\\": "src/"
21-
}
22-
},
23-
"require-dev": {
24-
"phpunit/phpunit": "^9.4",
25-
"symfony/filesystem": "^4.4|^5.0"
26-
},
27-
"autoload-dev": {
28-
"psr-4": {
29-
"Yokai\\Batch\\Tests\\Bridge\\Box\\Spout\\": "tests/"
30-
}
31-
}
3232
}

src/batch-doctrine-dbal/composer.json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
{
2-
"name": "yokai/batch-doctrine-dbal",
3-
"description": "doctrine/dbal bridge for yokai/batch",
4-
"keywords": ["batch", "job", "execution", "dbal"],
5-
"type": "library",
6-
"license": "MIT",
7-
"authors": [
8-
{
9-
"name": "Yann Eugoné",
10-
"email": "[email protected]"
2+
"name": "yokai/batch-doctrine-dbal",
3+
"description": "doctrine/dbal bridge for yokai/batch",
4+
"keywords": ["batch", "job", "execution", "dbal"],
5+
"type": "library",
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "Yann Eugoné",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"require": {
14+
"php": "^7.4|^8.0",
15+
"ext-json": "*",
16+
"doctrine/dbal": "^2.11",
17+
"yokai/batch": "^0.3.1"
18+
},
19+
"autoload": {
20+
"psr-4": {
21+
"Yokai\\Batch\\Bridge\\Doctrine\\DBAL\\": "src/"
22+
}
23+
},
24+
"require-dev": {
25+
"phpunit/phpunit": "^9.4"
26+
},
27+
"autoload-dev": {
28+
"psr-4": {
29+
"Yokai\\Batch\\Tests\\Bridge\\Doctrine\\DBAL\\": "tests/"
30+
}
1131
}
12-
],
13-
"require": {
14-
"php": "^7.4|^8.0",
15-
"ext-json": "*",
16-
"doctrine/dbal": "^2.11",
17-
"yokai/batch": "self.version"
18-
},
19-
"autoload": {
20-
"psr-4": {
21-
"Yokai\\Batch\\Bridge\\Doctrine\\DBAL\\": "src/"
22-
}
23-
},
24-
"require-dev": {
25-
"phpunit/phpunit": "^9.4"
26-
},
27-
"autoload-dev": {
28-
"psr-4": {
29-
"Yokai\\Batch\\Tests\\Bridge\\Doctrine\\DBAL\\": "tests/"
30-
}
31-
}
3232
}

src/batch-doctrine-orm/composer.json

Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
{
2-
"name": "yokai/batch-doctrine-orm",
3-
"description": "doctrine/orm bridge for yokai/batch",
4-
"keywords": ["batch", "job", "reader", "entity"],
5-
"type": "library",
6-
"license": "MIT",
7-
"authors": [
8-
{
9-
"name": "Yann Eugoné",
10-
"email": "[email protected]"
2+
"name": "yokai/batch-doctrine-orm",
3+
"description": "doctrine/orm bridge for yokai/batch",
4+
"keywords": ["batch", "job", "reader", "entity"],
5+
"type": "library",
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "Yann Eugoné",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"require": {
14+
"php": "^7.4|^8.0",
15+
"doctrine/orm": "^2.8",
16+
"yokai/batch": "^0.3.1"
17+
},
18+
"autoload": {
19+
"psr-4": {
20+
"Yokai\\Batch\\Bridge\\Doctrine\\ORM\\": "src/"
21+
}
22+
},
23+
"require-dev": {
24+
"phpspec/prophecy-phpunit": "^2.0",
25+
"phpunit/phpunit": "^9.4"
26+
},
27+
"autoload-dev": {
28+
"psr-4": {
29+
"Yokai\\Batch\\Tests\\Bridge\\Doctrine\\ORM\\": "tests/"
30+
}
1131
}
12-
],
13-
"require": {
14-
"php": "^7.4|^8.0",
15-
"doctrine/orm": "^2.8",
16-
"yokai/batch": "self.version"
17-
},
18-
"autoload": {
19-
"psr-4": {
20-
"Yokai\\Batch\\Bridge\\Doctrine\\ORM\\": "src/"
21-
}
22-
},
23-
"require-dev": {
24-
"phpspec/prophecy-phpunit": "^2.0",
25-
"phpunit/phpunit": "^9.4"
26-
},
27-
"autoload-dev": {
28-
"psr-4": {
29-
"Yokai\\Batch\\Tests\\Bridge\\Doctrine\\ORM\\": "tests/"
30-
}
31-
}
3232
}
Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
{
2-
"name": "yokai/batch-doctrine-persistence",
3-
"description": "doctrine/persistence bridge for yokai/batch",
4-
"keywords": ["batch", "job", "writer", "object"],
5-
"type": "library",
6-
"license": "MIT",
7-
"authors": [
8-
{
9-
"name": "Yann Eugoné",
10-
"email": "[email protected]"
2+
"name": "yokai/batch-doctrine-persistence",
3+
"description": "doctrine/persistence bridge for yokai/batch",
4+
"keywords": ["batch", "job", "writer", "object"],
5+
"type": "library",
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "Yann Eugoné",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"require": {
14+
"php": "^7.4|^8.0",
15+
"doctrine/persistence": "^2.0",
16+
"yokai/batch": "^0.3.1"
17+
},
18+
"autoload": {
19+
"psr-4": {
20+
"Yokai\\Batch\\Bridge\\Doctrine\\Persistence\\": "src/"
21+
}
22+
},
23+
"require-dev": {
24+
"phpspec/prophecy-phpunit": "^2.0",
25+
"phpunit/phpunit": "^9.4"
26+
},
27+
"autoload-dev": {
28+
"psr-4": {
29+
"Yokai\\Batch\\Tests\\Bridge\\Doctrine\\Persistence\\": "tests/"
30+
}
1131
}
12-
],
13-
"require": {
14-
"php": "^7.4|^8.0",
15-
"doctrine/persistence": "^2.0",
16-
"yokai/batch": "self.version"
17-
},
18-
"autoload": {
19-
"psr-4": {
20-
"Yokai\\Batch\\Bridge\\Doctrine\\Persistence\\": "src/"
21-
}
22-
},
23-
"require-dev": {
24-
"phpspec/prophecy-phpunit": "^2.0",
25-
"phpunit/phpunit": "^9.4"
26-
},
27-
"autoload-dev": {
28-
"psr-4": {
29-
"Yokai\\Batch\\Tests\\Bridge\\Doctrine\\Persistence\\": "tests/"
30-
}
31-
}
3232
}
Lines changed: 36 additions & 36 deletions
Original file line numberDiff line numberDiff line change
@@ -1,39 +1,39 @@
11
{
2-
"name": "yokai/batch-symfony-console",
3-
"description": "symfony/console bridge for yokai/batch",
4-
"keywords": ["batch", "job", "execution", "command", "async"],
5-
"type": "library",
6-
"license": "MIT",
7-
"authors": [
8-
{
9-
"name": "Yann Eugoné",
10-
"email": "[email protected]"
2+
"name": "yokai/batch-symfony-console",
3+
"description": "symfony/console bridge for yokai/batch",
4+
"keywords": ["batch", "job", "execution", "command", "async"],
5+
"type": "library",
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "Yann Eugoné",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"require": {
14+
"php": "^7.4|^8.0",
15+
"ext-json": "*",
16+
"symfony/console": "^4.4|^5.0",
17+
"yokai/batch": "^0.3.1"
18+
},
19+
"autoload": {
20+
"psr-4": {
21+
"Yokai\\Batch\\Bridge\\Symfony\\Console\\": "src/"
22+
}
23+
},
24+
"require-dev": {
25+
"phpspec/prophecy-phpunit": "^2.0",
26+
"phpunit/phpunit": "^9.4"
27+
},
28+
"autoload-dev": {
29+
"psr-4": {
30+
"Yokai\\Batch\\Tests\\Bridge\\Symfony\\Console\\": "tests/"
31+
}
32+
},
33+
"suggest": {
34+
"symfony/process": "Used to determine PHP bin location when using command job launcher (^4.4)"
35+
},
36+
"conflict": {
37+
"symfony/process": "<4.4"
1138
}
12-
],
13-
"require": {
14-
"php": "^7.4|^8.0",
15-
"ext-json": "*",
16-
"symfony/console": "^4.4|^5.0",
17-
"yokai/batch": "self.version"
18-
},
19-
"autoload": {
20-
"psr-4": {
21-
"Yokai\\Batch\\Bridge\\Symfony\\Console\\": "src/"
22-
}
23-
},
24-
"require-dev": {
25-
"phpspec/prophecy-phpunit": "^2.0",
26-
"phpunit/phpunit": "^9.4"
27-
},
28-
"autoload-dev": {
29-
"psr-4": {
30-
"Yokai\\Batch\\Tests\\Bridge\\Symfony\\Console\\": "tests/"
31-
}
32-
},
33-
"suggest": {
34-
"symfony/process": "Used to determine PHP bin location when using command job launcher (^4.4)"
35-
},
36-
"conflict": {
37-
"symfony/process": "<4.4"
38-
}
3939
}
Lines changed: 29 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,32 @@
11
{
2-
"name": "yokai/batch-symfony-framework",
3-
"description": "symfony/framework-bundle bridge for yokai/batch",
4-
"keywords": ["batch", "job", "framework", "symfony"],
5-
"type": "symfony-bundle",
6-
"license": "MIT",
7-
"authors": [
8-
{
9-
"name": "Yann Eugoné",
10-
"email": "[email protected]"
2+
"name": "yokai/batch-symfony-framework",
3+
"description": "symfony/framework-bundle bridge for yokai/batch",
4+
"keywords": ["batch", "job", "framework", "symfony"],
5+
"type": "symfony-bundle",
6+
"license": "MIT",
7+
"authors": [
8+
{
9+
"name": "Yann Eugoné",
10+
"email": "[email protected]"
11+
}
12+
],
13+
"require": {
14+
"php": "^7.4|^8.0",
15+
"composer-runtime-api": "^2.0",
16+
"symfony/framework-bundle": "^4.4|^5.0",
17+
"yokai/batch": "^0.3.1"
18+
},
19+
"autoload": {
20+
"psr-4": {
21+
"Yokai\\Batch\\Bridge\\Symfony\\Framework\\": "src/"
22+
}
23+
},
24+
"require-dev": {
25+
"phpunit/phpunit": "^9.4"
26+
},
27+
"autoload-dev": {
28+
"psr-4": {
29+
"Yokai\\Batch\\Tests\\Bridge\\Symfony\\Framework\\": "tests/"
30+
}
1131
}
12-
],
13-
"require": {
14-
"php": "^7.4|^8.0",
15-
"composer-runtime-api": "^2.0",
16-
"symfony/framework-bundle": "^4.4|^5.0",
17-
"yokai/batch": "self.version"
18-
},
19-
"autoload": {
20-
"psr-4": {
21-
"Yokai\\Batch\\Bridge\\Symfony\\Framework\\": "src/"
22-
}
23-
},
24-
"require-dev": {
25-
"phpunit/phpunit": "^9.4"
26-
},
27-
"autoload-dev": {
28-
"psr-4": {
29-
"Yokai\\Batch\\Tests\\Bridge\\Symfony\\Framework\\": "tests/"
30-
}
31-
}
3232
}

0 commit comments

Comments
 (0)