Skip to content

Commit

Permalink
Restructure package to PSR-4
Browse files Browse the repository at this point in the history
  • Loading branch information
mbabker committed Feb 9, 2014
1 parent d4dabd1 commit bf3591d
Show file tree
Hide file tree
Showing 5 changed files with 24 additions and 6 deletions.
3 changes: 3 additions & 0 deletions .gitattributes
@@ -0,0 +1,3 @@
.gitattributes export-ignore
.gitignore export-ignore
.travis.yml export-ignore
4 changes: 4 additions & 0 deletions .gitignore
@@ -0,0 +1,4 @@
vendor/
composer.phar
composer.lock
phpunit.xml
11 changes: 11 additions & 0 deletions .travis.yml
@@ -0,0 +1,11 @@
language: php

php:
- 5.3
- 5.4

before_script:
- composer update --dev

script:
- phpunit
12 changes: 6 additions & 6 deletions composer.json
@@ -1,19 +1,19 @@
{
"name": "joomla/ldap",
"type": "joomla-package",
"description": "Joomla Ldap Package",
"description": "Joomla LDAP Package",
"keywords": ["joomla", "framework", "ldap"],
"homepage": "https://github.com/joomla/joomla-framework-ldap",
"homepage": "https://github.com/joomla-framework/ldap",
"license": "GPL-2.0+",
"require": {
"php": ">=5.3.10",
"joomla/log": "~1.0"
},
"target-dir": "Joomla/Ldap",
"autoload": {
"psr-0": {
"Joomla\\Ldap": ""
}
"psr-4": {
"Joomla\\Ldap\\": "src/",
"Joomla\\Ldap\\Tests\\": "Tests/"
}
},
"minimum-stability": "beta"
}
File renamed without changes.

0 comments on commit bf3591d

Please sign in to comment.