Code Monkey home page Code Monkey logo

system's Issues

Never Submit System to Packagist

Though we have composer.json for system. Don't submit system to packagist .

If we submit people will try to download system like

{
    "minimum-stability": "dev",
    "require": {
        "hari/aura-system": "dev-master"
    }
}

So in this case it will download to vendor only of the composer.

The desired way without the issue mentioned above :

Download system tar or zip

Uncompress it and place it in your document root.

cd system

// Download composer via wget if you are a *nix environment or get it from http://getcomposer.org
wget http://getcomposer.org/composer.phar

php composer.phar update

or if you have git itself installed, don't need composer itself. Just run

php update.php

Pear Packages

We have not yet released packages as pear .

I feel its a good idea to start from the coming release.

Remove composer.phar

Hi Paul,

I don't like the idea of we keeping the composer.phar , for at times if I only need the system for I have composer.phar . Its waste of my bandwidth .

So I love you to remove composer.phar from the system .

We will document where to download etc , but not composer.phar itself .

Also the composer.phar needs to be updated which can be done by composer.phar self-update . If so we want to document also about composer. So let the user download it .

Aura.Uri

Hi Paul ,

The Aura.Uri cannot create issues currently .

The Aura.Uri is showing its a fork currently. Can we change the one in .git/config to make Aura.Uri as the main one ? I guess its possible. Not possible .

This project not work

This is a result of command composer create-project aura/system my-project

Schermata del 2019-06-20 15-35-25

In any case, it uses too many dependencies (psr and monolog but unfortunately I noticed zend dependencies too)

Too bad ... it could be nice to do something simple.

let composer do autoloading

Check autoload via composer is added for Aura.Di , Aura.Marshal , Aura.Session , Aura.Sql , Aura.Http , Aura.Router , Aura.Signal , Aura.Uri

GitHub Service Hook for Packagist

This package is not auto-updated. Go and set up the GitHub Service Hook for Packagist so that it gets updated whenever you push!

Please make the necessary changes in the admin of all repo .

Thanks

Hari

Travis-ci Hook

Hey Paul ,

Please add the travis-ci hooks to all repos, so it can notify if a test fails before merge .

In this way even if the user doesn't run a test we can make sure everything works as expected.

Refactor

Refactoring may increase speed ? Not sure :) .

Functions
Currently
public function dashesToCamel($str)
{
$str = ucwords(str_replace('-', ' ', $str));
$str = str_replace(' ', '', $str);
return lcfirst($str);
}

public function dashesToCamel($str)
{
    $str = ucwords(str_replace(array('-',' '), '', $str));
    return lcfirst($str);
}

public function underToCamel 

Currently
$str = ucwords(str_replace('_', ' ', $str));
$str = str_replace(' ', '', $str);

Can't we use
$str = ucwords(str_replace(array('_', ' ') , '', $str));

Is there any benifict over the other ?

No package directory

Just cloned the system and then ran the update php script. Update tries to put the packages into a package folder which doesn't exist.

Comments

We need a way to comment the packages .

#Aura.View 
;Aura.View

Something like this for config/_packages

Thanks

print_r , var_dump issues

Hi Guys,

Someone was mentioning to me, the problem he didn't like working with Aura framework is when a print_r() is given it throws the whole reflection classes , and make the browser not responding. So I suggest we need to make a good debugger tool to fix this issue.

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.