-
Notifications
You must be signed in to change notification settings - Fork 0
/
composer.json
49 lines (49 loc) · 1.25 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
{
"name": "choccybiccy/smpp",
"description": "SMPP protocol library.",
"type": "library",
"require-dev": {
"phpunit/phpunit": "^6.1",
"friendsofphp/php-cs-fixer": "^2.3",
"squizlabs/php_codesniffer": "^3.0"
},
"license": "MIT",
"authors": [
{
"name": "Martin Hughes",
"email": "[email protected]"
}
],
"minimum-stability": "stable",
"require": {
"php": "^5.6|^7.0",
"league/container": "^2.4",
"react/socket": "^0.8.0",
"monolog/monolog": "^1.22",
"symfony/yaml": "^3.3",
"illuminate/config": "^5.4",
"league/event": "^2.1"
},
"autoload": {
"psr-4": {
"App\\": "app/",
"Choccybiccy\\Smpp\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"Choccybiccy\\Smpp\\": "tests/"
}
},
"scripts": {
"standards": [
"php ./vendor/bin/php-cs-fixer fix src/",
"php ./vendor/bin/php-cs-fixer fix tests/",
"php ./vendor/bin/phpcs --standard=PSR2 src/",
"php ./vendor/bin/phpcs --standard=PSR2 tests/"
],
"tests": [
"php ./vendor/bin/phpunit"
]
}
}