Thanks to visit codestin.com
Credit goes to github.com

Skip to content

Commit 0424c41

Browse files
committed
[Notifier] Add symfony/event-dispatcher to bridges' require-dev section
Also increase some php requirements to `>=8.1` and remove `ext-json` from `require` section as its always available since PHP 8 Not sure if this is the right branch
1 parent 45113ba commit 0424c41

File tree

48 files changed

+198
-62
lines changed

Some content is hidden

Large Commits have some content hidden by default. Use the searchbox below for content that may be hidden.

48 files changed

+198
-62
lines changed

src/Symfony/Component/Notifier/Bridge/AllMySms/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\AllMySms\\": "" },
2528
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/AmazonSns/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
"symfony/notifier": "^6.2",
2222
"async-aws/sns": "^1.0"
2323
},
24+
"require-dev": {
25+
"symfony/event-dispatcher": "^5.4|^6.0"
26+
},
2427
"autoload": {
2528
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\AmazonSns\\": "" },
2629
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/Chatwork/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\Chatwork\\": "" },
2528
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/ContactEveryone/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\ContactEveryone\\": "" },
2528
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/Engagespot/composer.json

Lines changed: 4 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,10 +16,13 @@
1616
}
1717
],
1818
"require": {
19-
"php": ">=7.2.5",
19+
"php": ">=8.1",
2020
"symfony/http-client": "^4.3|^5.0|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\Engagespot\\": "" },
2528
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/Esendex/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\Esendex\\": "" },
2528
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/Expo/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\Expo\\": "" },
2528
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/FakeChat/composer.json

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,9 +24,11 @@
2424
"php": ">=8.1",
2525
"symfony/http-client": "^5.4|^6.0",
2626
"symfony/notifier": "^6.2",
27-
"symfony/event-dispatcher-contracts": "^2|^3",
2827
"symfony/mailer": "^5.4|^6.0"
2928
},
29+
"require-dev": {
30+
"symfony/event-dispatcher": "^5.4|^6.0"
31+
},
3032
"autoload": {
3133
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\FakeChat\\": "" },
3234
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/FakeSms/composer.json

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -23,10 +23,10 @@
2323
"require": {
2424
"php": ">=8.1",
2525
"symfony/http-client": "^5.4|^6.0",
26-
"symfony/notifier": "^6.2",
27-
"symfony/event-dispatcher-contracts": "^2|^3"
26+
"symfony/notifier": "^6.2"
2827
},
2928
"require-dev": {
29+
"symfony/event-dispatcher": "^5.4|^6.0",
3030
"symfony/mailer": "^5.4|^6.0",
3131
"psr/log": "^1|^2|^3"
3232
},

src/Symfony/Component/Notifier/Bridge/Firebase/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\Firebase\\": "" },
2528
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/FortySixElks/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\FortySixElks\\": "" },
2528
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/FreeMobile/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
"symfony/http-client": "^5.4|^6.0",
2222
"symfony/notifier": "^6.2"
2323
},
24+
"require-dev": {
25+
"symfony/event-dispatcher": "^5.4|^6.0"
26+
},
2427
"autoload": {
2528
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\FreeMobile\\": "" },
2629
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/GatewayApi/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
"symfony/http-client": "^5.4|^6.0",
2525
"symfony/notifier": "^6.2"
2626
},
27+
"require-dev": {
28+
"symfony/event-dispatcher": "^5.4|^6.0"
29+
},
2730
"autoload": {
2831
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\GatewayApi\\": "" },
2932
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/Gitter/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\Gitter\\": "" },
2528
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/GoogleChat/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\GoogleChat\\": "" },
2528
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/Infobip/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
"symfony/http-client": "^5.4|^6.0",
2525
"symfony/notifier": "^6.2"
2626
},
27+
"require-dev": {
28+
"symfony/event-dispatcher": "^5.4|^6.0"
29+
},
2730
"autoload": {
2831
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\Infobip\\": "" },
2932
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/Iqsms/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
"symfony/http-client": "^5.4|^6.0",
2525
"symfony/notifier": "^6.2"
2626
},
27+
"require-dev": {
28+
"symfony/event-dispatcher": "^5.4|^6.0"
29+
},
2730
"autoload": {
2831
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\Iqsms\\": "" },
2932
"exclude-from-classmap": [
Lines changed: 32 additions & 29 deletions
Original file line numberDiff line numberDiff line change
@@ -1,32 +1,35 @@
11
{
2-
"name": "symfony/kaz-info-teh-notifier",
3-
"type": "symfony-bridge",
4-
"description": "Symfony KazInfoTeh Notifier Bridge",
5-
"keywords": ["KazInfoTeh", "notifier", "symfony", "sms"],
6-
"homepage": "https://symfony.com",
7-
"license": "MIT",
8-
"authors": [
9-
{
10-
"name": "Egor Taranov",
11-
"email": "[email protected]",
12-
"homepage": "https://taranovegor.com/contribution"
2+
"name": "symfony/kaz-info-teh-notifier",
3+
"type": "symfony-bridge",
4+
"description": "Symfony KazInfoTeh Notifier Bridge",
5+
"keywords": ["KazInfoTeh", "notifier", "symfony", "sms"],
6+
"homepage": "https://symfony.com",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Egor Taranov",
11+
"email": "[email protected]",
12+
"homepage": "https://taranovegor.com/contribution"
13+
},
14+
{
15+
"name": "Symfony Community",
16+
"homepage": "https://symfony.com/contributors"
17+
}
18+
],
19+
"require": {
20+
"php": ">=8.1",
21+
"ext-simplexml": "*",
22+
"symfony/http-client": "^5.4|^6.0",
23+
"symfony/notifier": "^6.2"
1324
},
14-
{
15-
"name": "Symfony Community",
16-
"homepage": "https://symfony.com/contributors"
17-
}
18-
],
19-
"require": {
20-
"php": ">=8.1",
21-
"ext-simplexml": "*",
22-
"symfony/http-client": "^5.4|^6.0",
23-
"symfony/notifier": "^6.2"
24-
},
25-
"autoload": {
26-
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\KazInfoTeh\\": "" },
27-
"exclude-from-classmap": [
28-
"/Tests/"
29-
]
30-
},
31-
"minimum-stability": "dev"
25+
"require-dev": {
26+
"symfony/event-dispatcher": "^5.4|^6.0"
27+
},
28+
"autoload": {
29+
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\KazInfoTeh\\": "" },
30+
"exclude-from-classmap": [
31+
"/Tests/"
32+
]
33+
},
34+
"minimum-stability": "dev"
3235
}

src/Symfony/Component/Notifier/Bridge/LightSms/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\LightSms\\": "" },
2528
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/Mailjet/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
"symfony/http-client": "^5.4|^6.0",
2525
"symfony/notifier": "^6.2"
2626
},
27+
"require-dev": {
28+
"symfony/event-dispatcher": "^5.4|^6.0"
29+
},
2730
"autoload": {
2831
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\Mailjet\\": "" },
2932
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/Mastodon/composer.json

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,7 @@
2121
"symfony/notifier": "^6.2"
2222
},
2323
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0",,
2425
"symfony/mime": "^6.2"
2526
},
2627
"autoload": {

src/Symfony/Component/Notifier/Bridge/Mattermost/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\Mattermost\\": "" },
2528
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/Mercure/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -21,6 +21,9 @@
2121
"symfony/notifier": "^6.2",
2222
"symfony/service-contracts": "^1.10|^2|^3"
2323
},
24+
"require-dev": {
25+
"symfony/event-dispatcher": "^5.4|^6.0"
26+
},
2427
"autoload": {
2528
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\Mercure\\": "" },
2629
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/MessageBird/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\MessageBird\\": "" },
2528
"exclude-from-classmap": [
Lines changed: 30 additions & 27 deletions
Original file line numberDiff line numberDiff line change
@@ -1,30 +1,33 @@
11
{
2-
"name": "symfony/message-media-notifier",
3-
"type": "symfony-notifier-bridge",
4-
"description": "Symfony MessageMedia Notifier Bridge",
5-
"keywords": ["sms", "messagemedia", "notifier"],
6-
"homepage": "https://symfony.com",
7-
"license": "MIT",
8-
"authors": [
9-
{
10-
"name": "Adrian Nguyen",
11-
"email": "[email protected]"
2+
"name": "symfony/message-media-notifier",
3+
"type": "symfony-notifier-bridge",
4+
"description": "Symfony MessageMedia Notifier Bridge",
5+
"keywords": ["sms", "messagemedia", "notifier"],
6+
"homepage": "https://symfony.com",
7+
"license": "MIT",
8+
"authors": [
9+
{
10+
"name": "Adrian Nguyen",
11+
"email": "[email protected]"
12+
},
13+
{
14+
"name": "Symfony Community",
15+
"homepage": "https://symfony.com/contributors"
16+
}
17+
],
18+
"require": {
19+
"php": ">=8.1",
20+
"symfony/http-client": "^5.4|^6.0",
21+
"symfony/notifier": "^6.2"
1222
},
13-
{
14-
"name": "Symfony Community",
15-
"homepage": "https://symfony.com/contributors"
16-
}
17-
],
18-
"require": {
19-
"php": ">=8.1",
20-
"symfony/http-client": "^5.4|^6.0",
21-
"symfony/notifier": "^6.2"
22-
},
23-
"autoload": {
24-
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\MessageMedia\\": "" },
25-
"exclude-from-classmap": [
26-
"/Tests/"
27-
]
28-
},
29-
"minimum-stability": "dev"
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
26+
"autoload": {
27+
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\MessageMedia\\": "" },
28+
"exclude-from-classmap": [
29+
"/Tests/"
30+
]
31+
},
32+
"minimum-stability": "dev"
3033
}

src/Symfony/Component/Notifier/Bridge/MicrosoftTeams/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -24,6 +24,9 @@
2424
"symfony/http-client": "^5.4|^6.0",
2525
"symfony/notifier": "^6.2"
2626
},
27+
"require-dev": {
28+
"symfony/event-dispatcher": "^5.4|^6.0"
29+
},
2730
"autoload": {
2831
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\MicrosoftTeams\\": "" },
2932
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/Mobyt/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\Mobyt\\": "" },
2528
"exclude-from-classmap": [

src/Symfony/Component/Notifier/Bridge/Octopush/composer.json

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -20,6 +20,9 @@
2020
"symfony/http-client": "^5.4|^6.0",
2121
"symfony/notifier": "^6.2"
2222
},
23+
"require-dev": {
24+
"symfony/event-dispatcher": "^5.4|^6.0"
25+
},
2326
"autoload": {
2427
"psr-4": { "Symfony\\Component\\Notifier\\Bridge\\Octopush\\": "" },
2528
"exclude-from-classmap": [

0 commit comments

Comments
 (0)