-
Notifications
You must be signed in to change notification settings - Fork 21
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Related with issue #39 (Adapt to PSR-4)
- Move tests to "tests/Sifo" folder to reproduce the same structure under /src - Apply correct namespace to /src/Sifo files (most of them keep the same namespace. Only those under /Cache and /Debug folders have changed.) - Fix names for those classes under /Cache and /Debug folders. - Separate some classes in multiple files (MysqlStatement for instance). - Add sifo-common-instance - Add coverall actions to travis config.
- Loading branch information
1 parent
051f006
commit a9317b7
Showing
37 changed files
with
472 additions
and
395 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
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -8,3 +8,4 @@ logs/* | |
instances/*/ | ||
!instances/common | ||
vendor/ | ||
composer.lock |
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,15 +1,38 @@ | ||
{ | ||
"name": "sifophp/sifo", | ||
"description": "SIFO framework.", | ||
"license": "Apache-2.0", | ||
"keywords": [], | ||
"homepage": "https://github.com/sifophp/SIFO", | ||
"type": "project", | ||
"require": { | ||
"php": ">=5.3.2", | ||
"smarty/smarty": "dev-master#c8ecad0", | ||
"tpyo/amazon-s3-php-class": "0.5.*", | ||
"phpmailer/phpmailer": "5.2.*", | ||
"symfony/yaml": "2.6.0" | ||
} | ||
"name": "sifophp/sifo", | ||
"description": "SIFO framework.", | ||
"license": "Apache-2.0", | ||
"keywords": [], | ||
"homepage": "https://github.com/sifophp/SIFO", | ||
"type": "project", | ||
"repositories": [ | ||
{ | ||
"type": "vcs", | ||
"url": "https://github.com/sifophp/sifo-common-instance" | ||
} | ||
], | ||
"require": { | ||
"php": ">=5.3.2", | ||
"sifophp/sifo-common-instance": "*@dev", | ||
"smarty/smarty": "dev-master#c8ecad0", | ||
"tpyo/amazon-s3-php-class": "^0.5.1", | ||
"phpmailer/phpmailer": "^5.2", | ||
"symfony/yaml": "^2.7" | ||
}, | ||
"require-dev": { | ||
"phpunit/phpunit": "^4.0" | ||
}, | ||
"autoload": { | ||
"psr-4": { | ||
"Sifo\\": "src/Sifo" | ||
} | ||
}, | ||
"autoload-dev": { | ||
"psr-4": { | ||
"SifoTest\\": "tests/Sifo" | ||
} | ||
}, | ||
"config": { | ||
"optimize-autoloader": true | ||
} | ||
} |
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
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
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
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
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
Oops, something went wrong.