-
Notifications
You must be signed in to change notification settings - Fork 6
/
Copy pathcomposer.json
69 lines (69 loc) · 2.02 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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
{
"name": "fazland/skebby-rest-client",
"description": "Unofficial Skebby Rest Client",
"type": "library",
"authors": [
{
"name": "Massimiliano Braglia",
"email": "[email protected]"
},
{
"name": "Alessandro Chitolina",
"email": "[email protected]"
}
],
"scripts": {
"phpstan": "phpstan analyse lib/ tests/ -c phpstan.neon --level=8 --no-progress -vvv --memory-limit=2048M",
"cscheck": "vendor/bin/phpcs --standard=Solido lib/ tests/",
"csfix": "vendor/bin/phpcbf --standard=Solido lib/ tests/"
},
"require": {
"php": "^7.4 || ^8.0",
"ext-json": "*",
"ext-libxml": "*",
"ext-simplexml": "*",
"giggsey/libphonenumber-for-php": "^8.0",
"psr/event-dispatcher": "^1.0",
"symfony/options-resolver": "^4.4 || ^5.0"
},
"require-dev": {
"ext-curl": "*",
"guzzlehttp/guzzle": "^6.0",
"jangregor/phpstan-prophecy": "^0.8.1",
"nyholm/psr7": "^1.0",
"php-http/discovery": "^1.0",
"php-http/guzzle6-adapter": "^2.0",
"php-http/message": "^1.4",
"php-http/message-factory": "^1.0",
"phpspec/prophecy-phpunit": "^2.0",
"phpunit/phpunit": "^9.0",
"psr/http-client": "^1.0",
"psr/http-factory": "^1.0",
"roave/security-advisories": "dev-master",
"solido/php-coding-standards": "dev-master",
"symfony/event-dispatcher": "^4.4 || ^5.0",
"symfony/http-client": "^5.2"
},
"autoload": {
"psr-4": {
"Fazland\\SkebbyRestClient\\": "lib/"
}
},
"autoload-dev": {
"psr-4": {
"Tests\\": "tests/"
}
},
"config": {
"sort-packages": true
},
"extra": {
"branch-alias": {
"dev-master": "1.0.x-dev"
}
},
"archive": {
"exclude": [ "tests", ".scrutinizer.yml", ".github", "phpunit.xml" ]
},
"license": "MIT"
}