2023-02-23 13:11:50 -05:00
|
|
|
{
|
|
|
|
"project": {
|
|
|
|
"compiler": {
|
|
|
|
"extension": "php",
|
|
|
|
"minimum_version": "8.0",
|
|
|
|
"maximum_version": "8.2"
|
|
|
|
},
|
2024-10-13 12:49:20 -04:00
|
|
|
"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",
|
2024-10-13 12:49:20 -04:00
|
|
|
"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",
|
2024-09-27 13:18:53 -04:00
|
|
|
"version": "1.1.2",
|
2023-02-23 13:11:50 -05:00
|
|
|
"uuid": "9347259e-8e4d-11ed-85a7-fd07cf28ef35"
|
|
|
|
},
|
|
|
|
"build": {
|
|
|
|
"source_path": "src",
|
|
|
|
"default_configuration": "release",
|
|
|
|
"main": "main",
|
2023-02-23 16:22:20 -05:00
|
|
|
"define_constants": {
|
2024-09-19 14:00:33 -04:00
|
|
|
"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/libs.opts=latest@n64"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "net.nosial.loglib",
|
|
|
|
"version": "latest",
|
|
|
|
"source": "nosial/libs.log=latest@n64"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"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": [
|
2024-09-19 14:00:33 -04:00
|
|
|
{
|
2023-02-23 13:11:50 -05:00
|
|
|
"name": "release",
|
2024-09-17 12:03:01 -04:00
|
|
|
"build_type": "ncc",
|
|
|
|
"output": "build/release/%ASSEMBLY.PACKAGE%.ncc"
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "debug",
|
|
|
|
"build_type": "ncc",
|
|
|
|
"output": "build/debug/%ASSEMBLY.PACKAGE%.ncc",
|
|
|
|
"define_constants": {
|
|
|
|
"DEBUG": "1"
|
|
|
|
}
|
2024-10-13 12:49:20 -04:00
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "release-compressed",
|
|
|
|
"build_type": "ncc",
|
|
|
|
"output": "build/release/%ASSEMBLY.PACKAGE%.gz.ncc",
|
|
|
|
"options": {
|
|
|
|
"compression": "high"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "debug-compressed",
|
|
|
|
"build_type": "ncc",
|
|
|
|
"output": "build/debug/%ASSEMBLY.PACKAGE%.gz.ncc",
|
|
|
|
"options": {
|
|
|
|
"compression": "high"
|
|
|
|
},
|
|
|
|
"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-compressed-executable",
|
|
|
|
"build_type": "executable",
|
|
|
|
"output": "build/release/release_compressed_executable",
|
|
|
|
"options": {
|
|
|
|
"ncc_configuration": "release-compressed"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "debug-compressed-executable",
|
|
|
|
"build_type": "executable",
|
|
|
|
"output": "build/debug/debug_compressed_executable",
|
|
|
|
"options": {
|
|
|
|
"ncc_configuration": "debug-compressed"
|
|
|
|
}
|
2023-02-23 13:11:50 -05:00
|
|
|
}
|
|
|
|
]
|
2024-10-13 12:49:20 -04:00
|
|
|
},
|
|
|
|
"installer": {
|
|
|
|
"post_install": [
|
|
|
|
"setup"
|
|
|
|
]
|
|
|
|
},
|
|
|
|
"execution_policies": [
|
|
|
|
{
|
|
|
|
"name": "main",
|
|
|
|
"runner": "php",
|
|
|
|
"execute": {
|
|
|
|
"working_directory": "%CWD%",
|
|
|
|
"silent": false,
|
|
|
|
"tty": true,
|
|
|
|
"timeout": null,
|
|
|
|
"idle_timeout": null,
|
|
|
|
"target": "main"
|
|
|
|
}
|
|
|
|
},
|
|
|
|
{
|
|
|
|
"name": "setup",
|
|
|
|
"runner": "php",
|
|
|
|
"execute": {
|
|
|
|
"working_directory": "%CWD%",
|
|
|
|
"silent": false,
|
|
|
|
"tty": true,
|
|
|
|
"timeout": null,
|
|
|
|
"idle_timeout": null,
|
|
|
|
"target": "setup"
|
|
|
|
}
|
|
|
|
}
|
|
|
|
]
|
2024-09-19 14:00:33 -04:00
|
|
|
}
|