socialbox-php/project.json
2025-01-22 13:18:55 -05:00

103 lines
No EOL
3 KiB
JSON

{
"project": {
"compiler": {
"extension": "php",
"minimum_version": "8.3",
"maximum_version": "8.0"
},
"options": {
"create_symlink": true
}
},
"assembly": {
"name": "Socialbox",
"package": "net.nosial.socialbox",
"version": "1.0.0",
"uuid": "573597f7-c7f0-408a-8a02-462756927cb6"
},
"build": {
"source_path": "src/Socialbox",
"default_configuration": "release",
"main": "main_policy",
"define_constants": {
"ASSEMBLY_PACKAGE": "%ASSEMBLY.PACKAGE%",
"ASSEMBLY_VERSION": "%ASSEMBLY.VERSION%",
"ASSEMBLY_UID": "%ASSEMBLY.UID%"
},
"dependencies": [
{
"name": "com.symfony.uid",
"version": "latest",
"source": "symfony/uid=latest@packagist"
},
{
"name": "net.nosial.configlib",
"version": "latest",
"source": "nosial/libs.config=latest@n64"
},
{
"name": "net.nosial.loglib2",
"version": "latest",
"source": "nosial/loglib2=latest@github"
},
{
"name": "net.nosial.optslib",
"version": "latest",
"source": "nosial/libs.opts=latest@n64"
},
{
"name": "com.gregwar.captcha",
"version": "latest",
"source": "gregwar/captcha=latest@packagist"
}
],
"configurations": [
{
"name": "release",
"build_type": "ncc",
"output": "build/release/%ASSEMBLY.PACKAGE%.ncc"
},
{
"name": "debug",
"build_type": "ncc",
"output": "build/debug/%ASSEMBLY.PACKAGE%.ncc",
"define_constants": {
"DEBUG": "1"
}
},
{
"name": "release_executable",
"build_type": "executable",
"output": "build/release/%ASSEMBLY.NAME%",
"options": {
"ncc_configuration": "release"
}
},
{
"name": "debug_executable",
"build_type": "executable",
"output": "build/debug/%ASSEMBLY.NAME%",
"options": {
"ncc_configuration": "debug"
},
"define_constants": {
"DEBUG": "1"
}
}
]
},
"execution_policies": [
{
"name": "main_policy",
"runner": "php",
"execute": {
"working_directory": "%CWD%",
"silent": false,
"tty": false,
"timeout": null,
"idle_timeout": null,
"target": "main"
}
}
]
}