Skip to content

Commit 9da3fe8

Browse files
authored
Polish (#8)
1 parent 982f235 commit 9da3fe8

File tree

2 files changed

+45
-40
lines changed

2 files changed

+45
-40
lines changed

.travis.yml

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -35,3 +35,7 @@ cache:
3535
directories:
3636
- $HOME/.composer
3737
- vendor
38+
39+
branches:
40+
except:
41+
- /.*\-dev$/

composer.json

Lines changed: 41 additions & 40 deletions
Original file line numberDiff line numberDiff line change
@@ -1,43 +1,44 @@
11
{
2-
"name": "yoanm/jsonrpc-params-symfony-validator-sdk",
3-
"description": "Simple JSON-RPC params validator that use Symfony validator component",
4-
"license": "MIT",
5-
"type": "library",
6-
"support": {
7-
"issues": "https://github.com/yoanm/php-jsonrpc-params-symfony-validator-sdk/issues"
8-
},
9-
"authors": [
10-
{
11-
"name": "Yoanm",
12-
"email": "[email protected]",
13-
"role": "Developer"
14-
}
15-
],
16-
"autoload": {
17-
"psr-4": {
18-
"Yoanm\\JsonRpcParamsSymfonyValidator\\": "src"
19-
}
20-
},
21-
"autoload-dev": {
22-
"psr-4": {
23-
"Tests\\": "tests",
24-
"Tests\\Functional\\BehatContext\\": "features/bootstrap",
25-
"DemoApp\\": "features/demo_app/src"
26-
}
27-
},
28-
"require": {
29-
"php": ">=7.1",
30-
"yoanm/jsonrpc-server-sdk": "dev-release/3.0.0",
31-
"symfony/validator": "^3.0 || ^4.0"
32-
},
33-
"suggest": {
34-
"yoanm/jsonrpc-params-symfony-constraint-doc-sdk": "To generate payload documentation from validation constraints",
35-
"yoanm/symfony-jsonrpc-server-doc": "For automatic payload documentation"
36-
},
37-
"require-dev": {
38-
"behat/behat": "~3.0",
39-
"squizlabs/php_codesniffer": "3.*",
40-
"phpunit/phpunit": "^6.0 || ^7.0",
41-
"yoanm/php-unit-extended": "^1.0"
2+
"name": "yoanm/jsonrpc-params-symfony-validator-sdk",
3+
"description": "Simple JSON-RPC params validator that use Symfony validator component",
4+
"license": "MIT",
5+
"type": "library",
6+
"support": {
7+
"issues": "https://github.com/yoanm/php-jsonrpc-params-symfony-validator-sdk/issues"
8+
},
9+
"authors": [
10+
{
11+
"name": "Yoanm",
12+
"email": "[email protected]",
13+
"role": "Developer"
4214
}
15+
],
16+
"autoload": {
17+
"psr-4": {
18+
"Yoanm\\JsonRpcParamsSymfonyValidator\\": "src"
19+
}
20+
},
21+
"autoload-dev": {
22+
"psr-4": {
23+
"Tests\\": "tests",
24+
"Tests\\Functional\\BehatContext\\": "features/bootstrap",
25+
"DemoApp\\": "features/demo_app/src"
26+
}
27+
},
28+
"suggest": {
29+
"yoanm/symfony-jsonrpc-params-validator": "Symfony bundle for easy JSON-RPC params validation",
30+
"yoanm/symfony-jsonrpc-http-server": "Symfony Bundle to convert an HTTP json-rpc request into HTTP json-rpc response",
31+
"yoanm/jsonrpc-params-symfony-constraint-doc-sdk": "To generate payload documentation from validation constraints"
32+
},
33+
"require": {
34+
"php": ">=7.1",
35+
"yoanm/jsonrpc-server-sdk": "dev-release/3.0.0",
36+
"symfony/validator": "^3.0 || ^4.0"
37+
},
38+
"require-dev": {
39+
"behat/behat": "~3.0",
40+
"squizlabs/php_codesniffer": "3.*",
41+
"phpunit/phpunit": "^6.0 || ^7.0",
42+
"yoanm/php-unit-extended": "^1.0"
43+
}
4344
}

0 commit comments

Comments
 (0)