12345678910111213141516171819202122232425262728293031 |
- <?xml version="1.0" encoding="UTF-8"?>
- <plugin_manifest xmlns="http://www.elgg.org/plugin_manifest/1.8">
- <name>Twitter API</name>
- <id>twitter_api</id>
- <author>Core developers</author>
- <version>1.9</version>
- <description>Allows users to log in with their Twitter account and provides access to the Twitter API.</description>
- <category>api</category>
- <category>bundled</category>
- <website>http://www.elgg.org/</website>
- <copyright>See COPYRIGHT.txt</copyright>
- <license>GNU General Public License version 2</license>
- <requires>
- <type>elgg_release</type>
- <version>1.9</version>
- </requires>
- <requires>
- <type>php_extension</type>
- <name>curl</name>
- </requires>
- <conflicts>
- <type>plugin</type>
- <name>oauth_api</name>
- </conflicts>
- <conflicts>
- <type>plugin</type>
- <name>twitterservice</name>
- </conflicts>
- </plugin_manifest>
|