2016-12-08 19:16:49 +00:00
|
|
|
{
|
|
|
|
"name": "google/protobuf",
|
|
|
|
"type": "library",
|
|
|
|
"description": "proto library for PHP",
|
|
|
|
"keywords": ["proto"],
|
|
|
|
"homepage": "https://developers.google.com/protocol-buffers/",
|
|
|
|
"license": "BSD-3-Clause",
|
|
|
|
"require": {
|
2020-12-04 21:46:34 +00:00
|
|
|
"php": ">=7.0.0"
|
2016-12-08 19:16:49 +00:00
|
|
|
},
|
|
|
|
"require-dev": {
|
2020-12-04 21:46:34 +00:00
|
|
|
"phpunit/phpunit": ">=6.0.0"
|
2016-12-08 19:16:49 +00:00
|
|
|
},
|
|
|
|
"autoload": {
|
|
|
|
"psr-4": {
|
2017-08-04 23:35:22 +00:00
|
|
|
"Google\\Protobuf\\": "src/Google/Protobuf",
|
2018-07-23 20:33:23 +00:00
|
|
|
"GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
"autoload-dev": {
|
|
|
|
"psr-4": {
|
2017-03-17 18:08:06 +00:00
|
|
|
"": "tests/generated"
|
2017-06-14 22:57:11 +00:00
|
|
|
}
|
2018-07-23 20:33:23 +00:00
|
|
|
},
|
|
|
|
"scripts": {
|
2020-06-09 22:40:29 +00:00
|
|
|
"test": "tests/generate_protos.sh && vendor/bin/phpunit",
|
|
|
|
"aggregate_metadata_test": "tests/generate_protos.sh --aggregate_metadata && vendor/bin/phpunit"
|
2016-12-08 19:16:49 +00:00
|
|
|
}
|
|
|
|
}
|