FederationServer/project.json

79 lines
No EOL
2.2 KiB
JSON

{
"project": {
"compiler": {
"extension": "php",
"minimum_version": "8.0",
"maximum_version": "8.2"
},
"options": {
"create_symlink": true
}
},
"assembly": {
"name": "FederationServer",
"package": "net.nosial.federation",
"version": "1.0.0",
"uuid": "b93eb819-0eac-46c5-a721-9893a046bec9"
},
"build": {
"source_path": "src/FederationServer",
"default_configuration": "release",
"main": "main_policy",
"define_constants": {
"ASSEMBLY_PACKAGE": "%ASSEMBLY.PACKAGE%",
"ASSEMBLY_VERSION": "%ASSEMBLY.VERSION%",
"ASSEMBLY_UID": "%ASSEMBLY.UID%"
},
"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"
}
}
],
"dependencies": [
{
"name": "net.nosial.configlib",
"version": "latest",
"source": "nosial/configlib=latest@github"
},
{
"name": "net.nosial.loglib2",
"version": "latest",
"source": "nosial/loglib2=latest@github"
},
{
"name": "net.nosial.optslib",
"version": "latest",
"source": "nosial/optslib=latest@github"
},
{
"name": "com.symfony.uid",
"version": "latest",
"source": "symfony/uid=latest@packagist"
}
]
},
"execution_policies": [
{
"name": "main_policy",
"runner": "php",
"execute": {
"working_directory": "%CWD%",
"silent": false,
"tty": true,
"timeout": null,
"idle_timeout": null,
"target": "main"
}
}
]
}