optslib/project.json

46 lines
1.3 KiB
JSON
Raw Normal View History

{
"project": {
"compiler": {
"extension": "php",
"minimum_version": "8.0",
"maximum_version": "8.2"
},
2022-12-16 01:52:50 -05:00
"update_source": {
2022-12-18 13:35:22 -05:00
"source": "nosial/libs.opts@n64",
2022-12-16 01:52:50 -05:00
"repository": {
"name": "n64",
"type": "gitlab",
"host": "git.n64.cc",
"ssl": true
}
},
"options": []
},
"assembly": {
"name": "OptsLib",
"package": "net.nosial.optslib",
2022-12-18 13:44:23 -05:00
"copyright": "Copyright (c) 2022 Nosial",
"description": "A simple options parser library for PHP",
2022-12-19 23:36:05 -05:00
"version": "1.0.1",
"uuid": "20aefdfa-7b91-11ed-919f-cb63712c8e36"
},
"build": {
"source_path": "src",
"default_configuration": "release",
"define_constants": {
"ASSEMBLY_NAME": "%ASSEMBLY.NAME%",
"ASSEMBLY_PACKAGE": "%ASSEMBLY.PACKAGE%",
"ASSEMBLY_VERSION": "%ASSEMBLY.VERSION%",
"ASSEMBLY_UID": "%ASSEMBLY.UID%"
},
"configurations": [
{
"name": "release",
"output_path": "build/release",
"define_constants": {
"DEBUG": "0"
}
}
]
}
}