Add PSR HTTP Message Interfaces and Dependencies

- Implemented StreamInterface, UploadedFileInterface, and UriInterface as per PSR standards.
- Added getallheaders function to retrieve HTTP headers in a compatible manner.
- Included LICENSE files for ralouphie/getallheaders and symfony/deprecation-contracts.
- Introduced function for triggering deprecation notices in Symfony.
This commit is contained in:
2025-12-28 12:44:00 +01:00
parent cf600ae727
commit cd264483f8
410 changed files with 60841 additions and 16 deletions

View File

@@ -0,0 +1,99 @@
.el-atfpp-license-container {
margin: 20px;
padding: 35px;
background: #fff;
border-radius: 4px;
display: flex;
}
.el-atfpp-license-container .el-atfpp-license-field {
display: block;
margin-bottom: 15px;
}
.el-atfpp-license-container .el-atfpp-license-field input {
font-size: 100%;
/* padding: 8px 10px 10px; */
width: 100%;
}
.el-atfpp-license-container .notice-error,
.el-atfpp-license-container div.error {
background: rgba(220, 50, 50, 0.11);
margin: 0;
}
.el-atfpp-license-container .el-atfpp-license-title {
margin-top: 0;
/* font-size: 30px; */
}
.el-atfpp-license-container .el-atfpp-license-info li {
list-style: none;
padding: 0;
}
.el-atfpp-license-container .el-atfpp-license-info-title {
width: 150px;
display: inline-block;
position: relative;
padding-right: 5px;
}
.el-atfpp-license-container .el-atfpp-license-info-title:after {
content: ":";
position: absolute;
right: 2px;
}
.el-atfpp-license-container .el-atfpp-license-valid,
.el-atfpp-license-container .el-atfpp-license-invalid {
padding: 0 5px 2px;
color: #fff;
background-color: #8fcc77;
border-radius: 3px;
}
.el-atfpp-license-container .el-atfpp-license-invalid {
background-color: #f44336;
}
.el-atfpp-license-container .el-atfpp-license-key {
font-weight: 700;
opacity: 0.8;
}
.el-atfpp-license-container .el-cfefp-green-btn {
padding: 0 5px 2px;
color: #fff;
background-color: #8fcc77;
border-radius: 3px;
text-decoration: none;
-webkit-box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.38);
-moz-box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.38);
box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.38);
}
.el-atfpp-license-container .el-cfefp-green-btn:hover {
color: #fff;
background-color: #84bc6c;
}
.el-atfpp-license-container .el-cfefp-blue-btn {
padding: 0 5px 2px;
color: #fff;
background-color: #20b1d2;
border-radius: 3px;
text-decoration: none;
-webkit-box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.38);
-moz-box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.38);
box-shadow: 0 0 3px -1px rgba(0, 0, 0, 0.38);
}
.el-atfpp-license-container .el-cfefp-blue-btn:hover {
color: #fff;
background-color: #219dbf;
}
.el-atfpp-license-container .el-atfpp-license-field label {
display: block;
margin-bottom: 5px;
}
.el-atfpp-license-container .el-atfpp-license-active-btn {
margin-top: 25px;
}
.el-atfpp-left-cont{
border: 5px solid whitesmoke;
border-radius: 10px;
padding: 10px;
transition: border-color .5s;
}
.el-atfpp-left-cont:hover{
border-color:#4aba4a42;
}