Files
cake-addresses/composer.json
Brandon Shipley 03d3a84633
Some checks failed
CI / testsuite (mysql, 8.4, ) (push) Successful in 7m47s
CI / testsuite (pgsql, 8.2, ) (push) Successful in 5m16s
CI / testsuite (mysql, 8.2, ) (push) Successful in 14m13s
CI / testsuite (sqlite, 8.2, ) (push) Successful in 5m48s
CI / Coding Standard & Static Analysis (push) Failing after 2m54s
CI / testsuite (sqlite, 8.2, prefer-lowest) (push) Successful in 14m36s
CI / testsuite (pgsql, 8.4, ) (push) Successful in 21m13s
CI / testsuite (sqlite, 8.4, ) (push) Successful in 18m4s
doesnt require bc math extension
2026-01-23 03:17:47 -08:00

33 lines
846 B
JSON

{
"name": "hi-powered-dev/cake-addresses",
"description": "Address plugin for CakePHP",
"type": "cakephp-plugin",
"license": "MIT",
"require": {
"php": ">=8.2",
"cakephp/cakephp": "^5.1"
},
"require-dev": {
"phpunit/phpunit": "^10.3",
"php-collective/decimal-object": "^1.3",
"cakephp/migrations": "^4.0.0",
"phpstan/phpstan": "^2.1",
"dereuromark/composer-prefer-lowest": "^0.1.10"
},
"suggest": {
"dereuromark/cakephp-geo": "^3.2"
},
"autoload": {
"psr-4": {
"CakeAddresses\\": "src/"
}
},
"autoload-dev": {
"psr-4": {
"CakeAddresses\\Test\\": "tests/",
"Cake\\Test\\": "vendor/cakephp/cakephp/tests/",
"TestApp\\": "tests/test_app/src/"
}
}
}