You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
34 lines
1.0 KiB
34 lines
1.0 KiB
{
|
|
"name": "hearttrack/package",
|
|
"autoload": {
|
|
"psr-4": {
|
|
"Hearttrack\\": "src/",
|
|
"App\\": "src/app",
|
|
"Data\\": "src/data",
|
|
"Model\\": "src/data/model",
|
|
"Repository\\": "src/data/model/repository",
|
|
"Manager\\": "src/data/model/manager",
|
|
"Network\\": "src/data/core/network",
|
|
"Console\\": "src/console",
|
|
"Stub\\": [
|
|
"src/data/stub",
|
|
"src/data/stub/service",
|
|
"src/data/stub/repository"
|
|
],
|
|
"Shared\\": "src/shared",
|
|
"Shared\\Exception\\": "src/shared/exception"
|
|
}
|
|
},
|
|
"require": {
|
|
"twig/twig": "^3.0",
|
|
"vlucas/phpdotenv": "^5.5",
|
|
"ext-cassandra": "*"
|
|
},
|
|
"require-dev": {
|
|
"phpunit/phpunit": "*"
|
|
},
|
|
"scripts": {
|
|
"dev": "php -S localhost:8080 -t public -d display_errors=1 -d error_reporting=E_ALL",
|
|
"dev:console": "export APP_ENV=console && php public/index.php"
|
|
}
|
|
} |