feat(composer): Installablle en tant que package Composer

pull/7/head
JamesRezo 7 months ago committed by Matthieu Marcillaud
parent 50d01bfede
commit d6a2e53fe9

@ -0,0 +1,18 @@
# EditorConfig is awesome: https://EditorConfig.org
# top-most EditorConfig file
root = true
[*]
indent_style = tab
indent_size = 4
end_of_line = lf
charset = utf-8
trim_trailing_whitespace = false
insert_final_newline = false
[composer.json]
indent_style = space
[*.md]
indent_size = 2

3
.gitattributes vendored

@ -0,0 +1,3 @@
/.editorconfig export-ignore
/.gitignore export-ignore
/.gitattributes export-ignore

2
.gitignore vendored

@ -0,0 +1,2 @@
/vendor/
/composer.lock

@ -0,0 +1,17 @@
# Changelog
## Unreleased
### Added
- Installablle en tant que package Composer
## [1.5.0] - 2023-02-27
### Added
- Sanitizer toutes les valeurs passées aux formulaires preventivement dans l'écran de sécurité
### Fixed
- Notice PHP :Conversion `int` pour `rand()`

@ -0,0 +1,21 @@
MIT License
Copyright (c) 2009-2023 Collectif SPIP
Permission is hereby granted, free of charge, to any person obtaining a copy
of this software and associated documentation files (the "Software"), to deal
in the Software without restriction, including without limitation the rights
to use, copy, modify, merge, publish, distribute, sublicense, and/or sell
copies of the Software, and to permit persons to whom the Software is
furnished to do so, subject to the following conditions:
The above copyright notice and this permission notice shall be included in all
copies or substantial portions of the Software.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR
IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY,
FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE
AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER
LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM,
OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE
SOFTWARE.

@ -0,0 +1,3 @@
# spip/security
Protection du site par blocage de certaines attaques.

@ -0,0 +1,16 @@
{
"name": "spip/security",
"description": "Protection du site par blocage de certaines attaques",
"type": "spip-security",
"license": "MIT",
"authors": [
{
"name": "Collectif SPIP"
}
],
"extra": {
"branch-alias": {
"dev-composer": "1.5.x-dev"
}
}
}
Loading…
Cancel
Save