-
Notifications
You must be signed in to change notification settings - Fork 3
Expand file tree
/
Copy pathcomposer.json
More file actions
55 lines (53 loc) · 1.6 KB
/
Copy pathcomposer.json
File metadata and controls
55 lines (53 loc) · 1.6 KB
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
46
47
48
49
50
51
52
53
54
55
{
"name": "ragnarok/fenrir",
"description": "Discord API & WS wrapper",
"type": "library",
"license": "MIT",
"autoload": {
"psr-4": {
"Ragnarok\\Fenrir\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\Ragnarok\\Fenrir\\": "tests/",
"Fakes\\Ragnarok\\Fenrir\\": "fakes/"
}
},
"minimum-stability": "stable",
"require": {
"php": "^8.5",
"react/event-loop": "^1.3.0",
"evenement/evenement": "^3.0.0",
"nesbot/carbon": "^3.0",
"discord-php/http": "^v10.3.0",
"ralouphie/mimey": "^1.0",
"react/async": "^4.0.0",
"exan/eventer": "^1.0.3",
"exan/reactphp-retrier": "^2.0",
"react/promise": "^3",
"ratchet/pawl": "^0.4.3"
},
"require-dev": {
"monolog/monolog": "^3.2",
"phpunit/phpunit": "^9.5 || ^10.0",
"symfony/var-dumper": "^6.2 || ^7.0 || ^8.0",
"mockery/mockery": "^1.6",
"friendsofphp/php-cs-fixer": "^3.20"
},
"scripts": {
"cs": "php-cs-fixer fix --using-cache=no --diff --dry-run --allow-risky=yes",
"csf": "php-cs-fixer fix --using-cache=no --allow-risky=yes",
"test": "phpunit",
"test-coverage": "@php -d xdebug.mode=coverage ./vendor/bin/phpunit --coverage-html .phpunit.cache/cov-html",
"test-8.5": "docker-compose run php8.5 composer test",
"test-all": [
"composer test-8.5"
]
},
"config": {
"allow-plugins": {
"dealerdirect/phpcodesniffer-composer-installer": true
}
}
}