tempfilelib/project.json

37 lines
1 KiB
JSON
Raw Permalink Normal View History

2023-02-25 00:05:03 -05:00
{
"project": {
"compiler": {
"extension": "php",
"minimum_version": "8.0",
"maximum_version": "8.2"
},
"options": []
},
"assembly": {
"name": "TempFile",
"package": "net.nosial.tempfile",
2023-02-25 01:00:41 -05:00
"copyright": "Copyright (c) 2022-2023 Nosial",
"description": "TempFile is a PHP library for creating temporary files.",
2024-09-29 21:24:54 -04:00
"version": "1.2.0",
2023-02-25 00:05:03 -05:00
"uuid": "910f98fe-b4c9-11ed-b13f-fdc283a6db6d"
},
"build": {
"source_path": "src",
2023-02-25 01:00:41 -05:00
"default_configuration": "release",
2023-02-25 00:05:03 -05:00
"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"
}
2023-02-25 00:05:03 -05:00
}
]
}
}