configlib/project.json

141 lines
4.2 KiB
JSON
Raw Permalink Normal View History

2023-02-23 13:11:50 -05:00
{
"project": {
"compiler": {
"extension": "php",
"minimum_version": "8.0",
"maximum_version": "8.2"
},
"options": {
"create_symlink": true
},
2023-02-23 13:11:50 -05:00
"update_source": {
"source": "nosial/libs.config@n64",
"repository": {
"name": "n64",
"type": "gitlab",
"host": "git.n64.cc",
"ssl": true
}
}
},
"assembly": {
"name": "ConfigLib",
"package": "net.nosial.configlib",
"description": "ConfigLib is a library for reading and writing configuration files via the NCC Runtime API",
2023-02-23 13:11:50 -05:00
"company": "Nosial",
"copyright": "Copyright (c) 2022-2023 Nosial",
"version": "1.1.7",
2023-02-23 13:11:50 -05:00
"uuid": "9347259e-8e4d-11ed-85a7-fd07cf28ef35"
},
"build": {
"source_path": "src",
"default_configuration": "release",
"main": "main_policy",
2023-02-23 16:22:20 -05:00
"define_constants": {
"VERSION": "%ASSEMBLY.VERSION%"
2023-02-23 16:22:20 -05:00
},
2023-02-23 13:11:50 -05:00
"dependencies": [
{
"name": "net.nosial.optslib",
"version": "latest",
"source": "nosial/optslib=latest@github"
2023-02-23 13:11:50 -05:00
},
{
"name": "net.nosial.loglib2",
2023-02-23 13:11:50 -05:00
"version": "latest",
"source": "nosial/loglib2=latest@github"
2023-02-23 13:11:50 -05:00
},
{
"name": "com.symfony.filesystem",
"version": "latest",
2024-09-17 14:33:27 -04:00
"source": "symfony/filesystem=latest@packagist"
2023-02-23 13:11:50 -05:00
},
{
"name": "com.symfony.yaml",
"version": "latest",
2024-09-17 14:33:27 -04:00
"source": "symfony/yaml=latest@packagist"
2023-02-23 13:11:50 -05:00
},
{
"name": "com.symfony.process",
"version": "latest",
2024-09-17 14:33:27 -04:00
"source": "symfony/process=latest@packagist"
2023-02-23 13:11:50 -05:00
}
],
"configurations": [
{
2023-02-23 13:11:50 -05:00
"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/release_executable_gz",
"options": {
"ncc_configuration": "release"
}
},
{
"name": "debug-executable",
"build_type": "executable",
"output": "build/debug/debug_executable_gz",
"options": {
"ncc_configuration": "debug"
}
},
{
"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"
}
2023-02-23 13:11:50 -05:00
}
]
},
"execution_policies": [
{
"name": "main",
"runner": "php",
"execute": {
"working_directory": "%CWD%",
"silent": false,
"tty": true,
"timeout": null,
"idle_timeout": null,
"target": "main"
}
},
{
"name": "main_policy",
"runner": "php",
"execute": {
"working_directory": "%CWD%",
"silent": false,
"tty": true,
"timeout": null,
"idle_timeout": null,
"target": "main"
}
}
]
}