-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
cf3700a
commit 766ab12
Showing
6 changed files
with
1,467 additions
and
83 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,12 @@ | ||
{ | ||
"name": "borislavsabev/simple-xml-loader", | ||
"description": "A minimalistic SimpleXml loader. Wraps the simplexml_load_XXXX() methods and provides error handling.", | ||
"keywords" : ["xml", "simplexml", "SimpleXml", "XmlLoader", "SimpleXmlLoader"], | ||
"homepage" : "https://github.com/BorislavSabev/SimpleXmlLoader", | ||
"type": "library", | ||
"license": "GPL-3.0", | ||
"prefer-stable": true, | ||
"minimum-stability": "stable", | ||
"require": { | ||
"ext-libxml" : "*", | ||
"ext-SimpleXML": "*" | ||
|
@@ -12,15 +16,18 @@ | |
}, | ||
"autoload": { | ||
"psr-4": { | ||
"BorislavSabev\\SimpleXmlLoader\\": "src/", | ||
"BorislavSabev\\SimpleXmlLoader\\Tests": "tests/" | ||
"BorislavSabev\\SimpleXmlLoader\\": "src/" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"BorislavSabev\\SimpleXmlLoader\\Tests\\": "tests/" | ||
} | ||
}, | ||
"authors": [ | ||
{ | ||
"name": "Borislav Sabev", | ||
"email": "[email protected]" | ||
} | ||
], | ||
"minimum-stability": "dev" | ||
] | ||
} |
Oops, something went wrong.