mirror of
https://codeberg.org/vlw/php-globalsnapshot.git
synced 2025-09-14 04:13:42 +02:00
chore: change project namespace
This commit is contained in:
parent
80cb5d17b2
commit
63f03472ee
2 changed files with 4 additions and 4 deletions
|
@ -1,18 +1,18 @@
|
||||||
{
|
{
|
||||||
"name": "victorwesterlund/globalsnapshot",
|
"name": "vlw/globalsnapshot",
|
||||||
"description": "Capture and restore the state of all PHP superglobals.",
|
"description": "Capture and restore the state of all PHP superglobals.",
|
||||||
"type": "library",
|
"type": "library",
|
||||||
"license": "Unlicense",
|
"license": "Unlicense",
|
||||||
"authors": [
|
"authors": [
|
||||||
{
|
{
|
||||||
"name": "Victor Westerlund",
|
"name": "Victor Westerlund",
|
||||||
"email": "victor.vesterlund@gmail.com"
|
"email": "victor@vlw.se"
|
||||||
}
|
}
|
||||||
],
|
],
|
||||||
"minimum-stability": "dev",
|
"minimum-stability": "dev",
|
||||||
"autoload": {
|
"autoload": {
|
||||||
"psr-4": {
|
"psr-4": {
|
||||||
"victorwesterlund\\": "src/"
|
"vlw\\": "src/"
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
}
|
}
|
||||||
|
|
|
@ -1,6 +1,6 @@
|
||||||
<?php
|
<?php
|
||||||
|
|
||||||
namespace victorwesterlund;
|
namespace vlw;
|
||||||
|
|
||||||
// Capture the current state of all superglobals.
|
// Capture the current state of all superglobals.
|
||||||
// This will save a copy of all keys and values and any changes made to the superglobals
|
// This will save a copy of all keys and values and any changes made to the superglobals
|
||||||
|
|
Loading…
Add table
Reference in a new issue