-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
45 lines (45 loc) · 937 Bytes
/
composer.json
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
{
"name": "change/me",
"type": "project",
"require": {
"bottledcode/swytch-framework": "dev-streaming",
"monolog/monolog": "^3.3"
},
"require-dev": {
"php": ">=8.2",
"roave/security-advisories": "dev-latest",
"pestphp/pest": "^2.23",
"spatie/pest-plugin-snapshots": "^2.1"
},
"autoload": {
"psr-4": {
"Change\\Me\\": "src/"
}
},
"authors": [
{
"name": "You",
"email": "[email protected]"
}
],
"config": {
"allow-plugins": {
"olvlvl/composer-attribute-collector": true,
"pestphp/pest-plugin": true
}
},
"replace": {
"symfony/polyfill-ctype": "*",
"symfony/polyfill-intl-grapheme": "*",
"symfony/polyfill-intl-normalizer": "*",
"symfony/polyfill-mbstring": "*"
},
"extra": {
"composer-attribute-collector": {
"include": [
"src/",
"vendor/bottledcode/swytch-framework/src/"
]
}
}
}