blob: 8412c7ce7ab192f5ad8cad738e9f38e19fb13148 [file] [log] [blame]
Paul Yang46ae90d2016-12-08 11:16:49 -08001{
2 "name": "google/protobuf",
3 "type": "library",
4 "description": "proto library for PHP",
5 "keywords": ["proto"],
6 "homepage": "https://developers.google.com/protocol-buffers/",
7 "license": "BSD-3-Clause",
8 "require": {
Matt Kulukundisa5516ca2023-07-06 12:07:47 -07009 "php": ">=8.0.0"
Paul Yang46ae90d2016-12-08 11:16:49 -080010 },
Brett McBrided603b412023-07-07 10:08:55 -070011 "provide": {
12 "ext-protobuf": "*"
13 },
Paul Yang46ae90d2016-12-08 11:16:49 -080014 "require-dev": {
Deanna Garcia75cc3a22022-07-08 16:15:02 +000015 "phpunit/phpunit": ">=5.0.0 <8.5.27"
Paul Yang46ae90d2016-12-08 11:16:49 -080016 },
17 "autoload": {
18 "psr-4": {
michaelbausor21b0e552017-08-04 16:35:22 -070019 "Google\\Protobuf\\": "src/Google/Protobuf",
Timothy Younger5134f1a2018-07-23 13:33:23 -070020 "GPBMetadata\\Google\\Protobuf\\": "src/GPBMetadata/Google/Protobuf"
21 }
22 },
23 "autoload-dev": {
24 "psr-4": {
Joshua Haberman8b870752021-05-04 10:19:22 -070025 "": "tmp"
Brent Shaffer7ed2c262022-05-31 15:19:28 -070026 },
27 "classmap": [
28 "tests/generated_previous"
29 ]
Timothy Younger5134f1a2018-07-23 13:33:23 -070030 },
31 "scripts": {
Joshua Haberman8b870752021-05-04 10:19:22 -070032 "test_c": "./generate_test_protos.sh && ./tests/compile_extension.sh && php -dextension=ext/google/protobuf/modules/protobuf.so vendor/bin/phpunit --bootstrap tests/force_c_ext.php tests",
Joshua Habermanb0d90e32021-05-13 23:16:49 -070033 "test_valgrind": "./generate_test_protos.sh && ./tests/compile_extension.sh && ZEND_DONT_UNLOAD_MODULES=1 USE_ZEND_ALLOC=0 valgrind --leak-check=full --error-exitcode=1 php -dextension=ext/google/protobuf/modules/protobuf.so vendor/bin/phpunit --bootstrap tests/force_c_ext.php tests",
Joshua Haberman8b870752021-05-04 10:19:22 -070034 "test": "./generate_test_protos.sh && vendor/bin/phpunit tests",
35 "aggregate_metadata_test": "./generate_test_protos.sh --aggregate_metadata && vendor/bin/phpunit tests"
Mike Kruskal41608372022-08-25 14:01:00 -070036 },
37 "config": {
38 "process-timeout": 1200
Paul Yang46ae90d2016-12-08 11:16:49 -080039 }
40}