loglib2/project.json
netkas 27681d53da
Some checks are pending
CI / release (push) Waiting to run
CI / debug (push) Waiting to run
CI / check-phpunit (push) Waiting to run
CI / check-phpdoc (push) Waiting to run
CI / generate-phpdoc (push) Blocked by required conditions
CI / test (push) Blocked by required conditions
CI / release-documentation (push) Blocked by required conditions
CI / release-artifacts (push) Blocked by required conditions
Update CHANGELOG.md for version 1.0.3 and modify project.json to reflect new version and updated dependency source
2025-03-14 14:07:49 -04:00

47 lines
No EOL
1.3 KiB
JSON

{
"project": {
"compiler": {
"extension": "php",
"minimum_version": "8.0",
"maximum_version": "8.2"
}
},
"assembly": {
"name": "LogLib2",
"package": "net.nosial.loglib2",
"version": "1.0.3",
"uuid": "11ac2c4d-94e5-4cc1-a2d3-054ac3f425b4"
},
"build": {
"source_path": "src/LogLib2",
"default_configuration": "release",
"main": "main_policy",
"define_constants": {
"ASSEMBLY_PACKAGE": "%ASSEMBLY.PACKAGE%",
"ASSEMBLY_VERSION": "%ASSEMBLY.VERSION%",
"ASSEMBLY_UID": "%ASSEMBLY.UID%"
},
"dependencies": [
{
"name": "net.nosial.optslib",
"version": "latest",
"source": "nosial/optslib=latest@github"
}
],
"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"
}
}
]
}
}