configlib/project.json

97 lines
2.8 KiB
JSON
Raw Normal View History

2023-02-23 13:11:50 -05:00
{
"project": {
"compiler": {
"extension": "php",
"minimum_version": "8.0",
"maximum_version": "8.2"
},
"update_source": {
"source": "nosial/libs.config@n64",
"repository": {
"name": "n64",
"type": "gitlab",
"host": "git.n64.cc",
"ssl": true
}
},
"options": {
"create_symlink": true
}
},
"execution_policies":[
{
"name": "main",
"runner": "php",
"execute": {
"target": "main",
"working_directory": "%CWD%",
"tty": true
}
}
],
"assembly": {
"name": "ConfigLib",
"package": "net.nosial.configlib",
"company": "Nosial",
"copyright": "Copyright (c) 2022-2023 Nosial",
"description": "ConfigLib is a library for reading and writing configuration files via the NCC Runtime API",
"version": "1.1.0",
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": {
"version": "%ASSEMBLY.VERSION%"
},
2023-02-23 13:11:50 -05:00
"dependencies": [
{
"name": "net.nosial.optslib",
"version": "latest",
"source_type": "remote",
"source": "nosial/libs.opts=latest@n64"
},
{
"name": "net.nosial.loglib",
"version": "latest",
"source_type": "remote",
"source": "nosial/libs.log=latest@n64"
},
{
"name": "com.symfony.filesystem",
"version": "latest",
"source_type": "remote",
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",
"source_type": "remote",
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",
"source_type": "remote",
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"
}
2023-02-23 13:11:50 -05:00
}
]
}
}