-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
47 lines (47 loc) · 1.1 KB
/
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
46
47
{
"name": "own3d/socket",
"description": "OWN3D Socket Client",
"type": "library",
"license": "proprietary",
"authors": [
{
"name": "René Preuß",
"email": "[email protected]"
}
],
"require": {
"php": "^8.0",
"illuminate/support": "~5.4|~5.7.0|~5.8.0|^6.0|^7.0|^8.0|^9.0|^10.0|^11.0",
"guzzlehttp/guzzle": "^6.3|^7.0",
"own3d/id": "^1.7|^2.0"
},
"require-dev": {
"own3d/php-cs-fixer-config": "^1.0",
"friendsofphp/php-cs-fixer": "^2.18",
"phpunit/phpunit": "^9.5",
"orchestra/testbench": "^6.14"
},
"autoload": {
"psr-4": {
"Own3d\\Socket\\": "src/Own3d/Socket"
}
},
"autoload-dev": {
"psr-4": {
"Own3d\\Socket\\Tests\\": "tests"
}
},
"scripts": {
"test": "vendor/bin/phpunit",
"fix": [
"vendor/bin/php-cs-fixer fix"
]
},
"extra": {
"laravel": {
"providers": [
"Own3d\\Socket\\ServiceProvider"
]
}
}
}